From 52dce6ae18e67c2f975d45e417adb04bc0e39746 Mon Sep 17 00:00:00 2001 From: Thomas Camlong Date: Tue, 11 Oct 2022 10:28:22 +0900 Subject: [PATCH 1/8] =?UTF-8?q?=F0=9F=94=A8Remove=20the=20requirements=20f?= =?UTF-8?q?or=20qbittorrent=20logins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/AppShelf/AddAppShelfItem.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/AppShelf/AddAppShelfItem.tsx b/src/components/AppShelf/AddAppShelfItem.tsx index 804e4f826..e447f1dc0 100644 --- a/src/components/AppShelf/AddAppShelfItem.tsx +++ b/src/components/AppShelf/AddAppShelfItem.tsx @@ -318,7 +318,6 @@ export function AddAppShelfItemForm(props: AddAppShelfItemFormProps) { {form.values.type === 'qBittorrent' && ( <> Date: Tue, 11 Oct 2022 11:11:21 +0900 Subject: [PATCH 2/8] =?UTF-8?q?=F0=9F=8C=90=20Add=20proper=20translation?= =?UTF-8?q?=20for=20container=20actions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/locales/en/modules/docker.json | 20 ++++++++++++++++---- src/modules/docker/ContainerActionBar.tsx | 6 +++--- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/public/locales/en/modules/docker.json b/public/locales/en/modules/docker.json index f54db9bd9..047bdec30 100644 --- a/public/locales/en/modules/docker.json +++ b/public/locales/en/modules/docker.json @@ -47,10 +47,22 @@ "title": "Add to Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "Container {{containerName}} {{action}}ed", - "message": "Your container was successfully {{action}}ed" + "actions": { + "start": { + "start": "Starting", + "end": "Started" + }, + "stop": { + "start": "Stopping", + "end": "Stopped" + }, + "restart": { + "start": "Restarting", + "end": "Restarted" + }, + "remove": { + "start": "Removing", + "end": "Removed" } }, "errors": { diff --git a/src/modules/docker/ContainerActionBar.tsx b/src/modules/docker/ContainerActionBar.tsx index 125ccd80c..d83b0d272 100644 --- a/src/modules/docker/ContainerActionBar.tsx +++ b/src/modules/docker/ContainerActionBar.tsx @@ -31,7 +31,7 @@ function sendDockerCommand( showNotification({ id: containerId, loading: true, - title: `${action}ing container ${containerName}`, + title: `${t(`actions.${action}.start`)} ${containerName}`, message: undefined, autoClose: false, disallowClose: true, @@ -41,8 +41,8 @@ function sendDockerCommand( .then((res) => { updateNotification({ id: containerId, - title: t('messages.successfullyExecuted.message', { containerName, action }), - message: t('messages.successfullyExecuted.message', { action }), + title: containerName, + message: `${t(`actions.${action}.end`)} ${containerName}`, icon: , autoClose: 2000, }); From f951bcd750ad6413a2add2902e337be80aaa78e2 Mon Sep 17 00:00:00 2001 From: Manuel Ruwe Date: Sat, 15 Oct 2022 23:45:46 +0200 Subject: [PATCH 3/8] =?UTF-8?q?=F0=9F=90=9B=20wrong=20absolute=20position?= =?UTF-8?q?=20of=20torrent=20options=20menu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/locales/en/layout/app-shelf.json | 4 +++- src/components/AppShelf/AppShelf.tsx | 12 +++++++----- src/modules/ModuleTypes.d.ts | 9 +++++++++ src/modules/moduleWrapper.tsx | 16 +++++++++++----- src/modules/torrents/TorrentsModule.tsx | 4 ++++ 5 files changed, 34 insertions(+), 11 deletions(-) diff --git a/public/locales/en/layout/app-shelf.json b/public/locales/en/layout/app-shelf.json index 3297ffe7d..2074f4105 100644 --- a/public/locales/en/layout/app-shelf.json +++ b/public/locales/en/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Your downloads" + "text": "Your downloads", + "torrents": "Your Torrent downloads", + "usenet": "Your Usenet downloads" }, "others": { "text": "Others" diff --git a/src/components/AppShelf/AppShelf.tsx b/src/components/AppShelf/AppShelf.tsx index c4e59219a..114d98ec4 100644 --- a/src/components/AppShelf/AppShelf.tsx +++ b/src/components/AppShelf/AppShelf.tsx @@ -5,6 +5,7 @@ import { Grid, Paper, Stack, + Text, Title, useMantineColorScheme, } from '@mantine/core'; @@ -200,17 +201,18 @@ const AppShelf = (props: any) => { > {t('accordions.downloads.text')} - - {torrentEnabled && ( + + {torrentEnabled && ( <> - + {t('accordions.downloads.torrents')} + )} {usenetEnabled && ( <> - {torrentEnabled && } - + {t('accordions.downloads.usenet')} + )} diff --git a/src/modules/ModuleTypes.d.ts b/src/modules/ModuleTypes.d.ts index 8ccf82c9d..177ce5ae7 100644 --- a/src/modules/ModuleTypes.d.ts +++ b/src/modules/ModuleTypes.d.ts @@ -11,6 +11,15 @@ export interface IModule { icon: TablerIcon; component: React.ComponentType; options?: Option; + padding?: PaddingOptions = { + right: 15, + top: 15, + }, +} + +interface PaddingOptions { + top: number; + right: number; } interface Option { diff --git a/src/modules/moduleWrapper.tsx b/src/modules/moduleWrapper.tsx index c429e80af..d62e6b02e 100644 --- a/src/modules/moduleWrapper.tsx +++ b/src/modules/moduleWrapper.tsx @@ -186,8 +186,13 @@ export function ModuleWrapper(props: any) { ); } -export function ModuleMenu(props: any) { - const { module, styles, hovered } = props; +interface ModuleMenuProps { + hovered: boolean; + module: IModule; +} + +export function ModuleMenu(props: ModuleMenuProps) { + const { module, hovered } = props; const items: JSX.Element[] = getItems(module); const { t } = useTranslation('modules/common'); return ( @@ -207,12 +212,13 @@ export function ModuleMenu(props: any) { diff --git a/src/modules/torrents/TorrentsModule.tsx b/src/modules/torrents/TorrentsModule.tsx index aa4e12a18..d81696e24 100644 --- a/src/modules/torrents/TorrentsModule.tsx +++ b/src/modules/torrents/TorrentsModule.tsx @@ -34,6 +34,10 @@ export const TorrentsModule: IModule = { value: false, }, }, + padding: { + right: 0, + top: -10, + }, }; export default function TorrentsComponent() { From 9aaf5e0dc0a2e1553e489dffe115fdfc8d6143d4 Mon Sep 17 00:00:00 2001 From: Manuel Ruwe Date: Mon, 10 Oct 2022 20:46:22 +0200 Subject: [PATCH 4/8] =?UTF-8?q?=F0=9F=92=84=20apple=20standalone=20page=20?= =?UTF-8?q?improvements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/icons/.gitkeep | 0 public/imgs/favicon.png | Bin 9384 -> 0 bytes public/{ => imgs/favicon}/favicon-squared.png | Bin public/{ => imgs/favicon}/favicon.png | Bin public/{ => imgs/favicon}/favicon.svg | 0 public/imgs/{ => logo}/logo-color.svg | 0 public/imgs/{ => logo}/logo.png | Bin public/imgs/{ => logo}/logo.svg | 0 public/imgs/pwa/apple-icon-180.png | Bin 0 -> 3250 bytes public/imgs/pwa/favicon-196.png | Bin 0 -> 3607 bytes .../manifest/manifest-icon-192.maskable.png | Bin 0 -> 3478 bytes .../manifest/manifest-icon-512.maskable.png | Bin 0 -> 11657 bytes public/site.webmanifest | 29 ++++++++++++++++++ src/components/layout/Layout.tsx | 12 ++++++-- src/components/layout/Logo.tsx | 2 +- src/components/layout/{ => header}/Header.tsx | 16 +++++----- .../layout/{ => header}/HeaderConfig.tsx | 15 ++++++--- .../layout/header/safariStatusBarStyle.tsx | 13 ++++++++ 18 files changed, 70 insertions(+), 17 deletions(-) delete mode 100644 public/icons/.gitkeep delete mode 100644 public/imgs/favicon.png rename public/{ => imgs/favicon}/favicon-squared.png (100%) rename public/{ => imgs/favicon}/favicon.png (100%) rename public/{ => imgs/favicon}/favicon.svg (100%) rename public/imgs/{ => logo}/logo-color.svg (100%) rename public/imgs/{ => logo}/logo.png (100%) rename public/imgs/{ => logo}/logo.svg (100%) create mode 100644 public/imgs/pwa/apple-icon-180.png create mode 100644 public/imgs/pwa/favicon-196.png create mode 100644 public/imgs/pwa/manifest/manifest-icon-192.maskable.png create mode 100644 public/imgs/pwa/manifest/manifest-icon-512.maskable.png create mode 100644 public/site.webmanifest rename src/components/layout/{ => header}/Header.tsx (73%) rename src/components/layout/{ => header}/HeaderConfig.tsx (56%) create mode 100644 src/components/layout/header/safariStatusBarStyle.tsx diff --git a/public/icons/.gitkeep b/public/icons/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/public/imgs/favicon.png b/public/imgs/favicon.png deleted file mode 100644 index cb0dc44894716b3c2c974ec0d6be5262e7cf794f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9384 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 F{~vbP06PEx diff --git a/public/favicon-squared.png b/public/imgs/favicon/favicon-squared.png similarity index 100% rename from public/favicon-squared.png rename to public/imgs/favicon/favicon-squared.png diff --git a/public/favicon.png b/public/imgs/favicon/favicon.png similarity index 100% rename from public/favicon.png rename to public/imgs/favicon/favicon.png diff --git a/public/favicon.svg b/public/imgs/favicon/favicon.svg similarity index 100% rename from public/favicon.svg rename to public/imgs/favicon/favicon.svg diff --git a/public/imgs/logo-color.svg b/public/imgs/logo/logo-color.svg similarity index 100% rename from public/imgs/logo-color.svg rename to public/imgs/logo/logo-color.svg diff --git a/public/imgs/logo.png b/public/imgs/logo/logo.png similarity index 100% rename from public/imgs/logo.png rename to public/imgs/logo/logo.png diff --git a/public/imgs/logo.svg b/public/imgs/logo/logo.svg similarity index 100% rename from public/imgs/logo.svg rename to public/imgs/logo/logo.svg diff --git a/public/imgs/pwa/apple-icon-180.png b/public/imgs/pwa/apple-icon-180.png new file mode 100644 index 0000000000000000000000000000000000000000..c153ef52272e0419deb05de5a93964bf84f53b44 GIT binary patch literal 3250 zcmdT{_g53h77pSDr9`C&NDNO=ib#_n5PAnOARr)J$Qo({mJ*~ZOnPnHy7{4+ZwGleVymh;2#?hr**a zCQYtaNrfdACE62pdbe$g;8~h!$dvD58>5hi)*n2^>m-Jg9|Tq71jcJEtYNMLf4as( zQEp`eEJ4%CVrDh3 zZU(a)`(3a|*7CbEYHoEA!1t~{cLjDNQnWd}!w$8htOlCv5R<0ed`Av)@38Kfmu>w8 zL_*ogQ|;+n7ulzp(uQ{*&|Eym@yYZ=(OXl~ZpU?vGLTK(QyJBlX;s)KARBXTu=~YX z{;;eP5_Xb+WjJ%g0y_r+KRQyy2RPj7)1!WC4i-uncH8ybZn-kX z>D5Fvvt&aX7z|t<396jNIv<}NY~<;mr#O6$3^O+Rm>{IAhGmqMyApqp(Ew|0Zt9HD zfKPax*k#{o?*9}*u9+Y4oE;f?{vo)saE&iBOXutdH>9jIa%SNiz{9&yy0tnSOV>56 z+>hT4qHb(EIeBXgNxdvqsVfyd__0NrYhbA#ODVWA$QLV&{V-v3ea0+wVY0~eEPRCS zO3}M{u;`qZOnDK67I{^6dgnu}GuDLXH^KFgTc^j5r7kl+=gr;;?6;fON?VPUn%Sn2 z*zs>#YL#C1b;m_66p=){kjEe((wQTN_pTI6c*3Qa3PH9aR^Jn;w%D^o+Ck#mgzruL z{`BntuQrExNCayzd$x?@D-MD>3HJGAWt4y59EfX^dm9`Y(D)RxI05dFoM29icO( z!Jmc8{;}0Z1~iKb=Nk|ry5DV7AI!zi{LIPdJIXm0A}0of(X-{W*n|W^s@C;wsm#Km z`lW-hLhwX|;W0-(yFv!0zfXcJl0}q}CpEj2Pnzc3f2VsZ>_aF=wp#iNNxHyCuEh1G z2YRHf5^b6yqG``=X3j-9-_JqZdSZgPw5M7_vsV=6PUqTnlGe4Qss|$4)zbxvU`jQd zyGNfq(lP=#e?O`5uuZyBF6waVJ`W9Z#eCh8{TFoEmlRz(m|kBjZzC+je2+v4r{>D? z3zQm(*iU^=9hUK{EQzaWCcAdBcY)QIH6x6i!7bL+HRq)2&;L=a)40`*vpCOzY4p@y zJ>b854f^Jg?-S!}PsA`cc;ik~rS_^|$7!IFd1rMmszv8(!q_#@<-C|u(ST<*?wyo0 zSSav33+h<{pQz8gm)6|vtf)CJtq|S$MZW)rq+<#YAbAh5t`-Kc6eg>0&o3E5)Ry> za|nu*-|B$h$b351i@Kn`yfWak6s)9(%!U_1^Ug^^pig@?n zO;OhA_Zbgh8{5krHV#ay3yV|l$4QzD!RMPhDSBylF6V!OBR*RR@X=Beq_%utw!BMqIlgXa$RxoQv%n%p9$+_$`m(3NtWN*f zqo|bNyckekxOPFW;9^gr@LL({s~BCl9pY^nqP-T6nU3F6BBQjmsY3lPz+n8Fq++st z)_0}g7vxEQnhQ6nO2nvblow*hMZkT2Jx%Meno9NUU4?-_c9(tn|EzG}uH-EjCCx-A z(Y_5Byw-rX*XG3+3Rc}=#VeareM89QXS!H6hWMCsv-eHI#S6`{lxqB0m9P5T0H^j| zHDTO{2?19@_Ifbod$K(DthveUT&HIB%u>gi5(IZlkG$!l5V-4OBEzg14KCwgh!T-1 z-S5;wq+Z zo=TO*u$~Ux_0|Fj{fF$`pdoPGLfMJG46|G$#I@Y5_%rMzhf-lQKgqL(>bl6+l?aOw znWkcdha;09dAg(Vbt6UFN@`4mhwq}^5<`!C&7^p{((*6Bgc;nydu>%-*)G(@Wpt;W z3u|F9welH?5?7!60q4<0~RMDmU3vJW{%NqXhV+KjS61(+vZ0y#=BNb~bE4$VAfMJIe_(^H_QG z&$e%UpmhToi=Qn49h*Z0yBTjMa}!{Q|CEj@ZCM!<9nIlzsAg>yi-wFv(NS9>lMVcP zC6Hrx^yRAC>6s>jeqi?75b|5qGu?YS{5$%-st|S2doe|-DxQ4XY#h4^E$+@5&4`6? z0?3mN$|t5AFzshl&X*WdNc%$_(tk%C=3iD1#-evt<=X!`8=8*x92tJTD4c$;u{vDP z0srbu_=Q=Uu0xuyjsSz>4ECKuHc$b000NU9wh5qIa(DnM*Wax-uuNvWG=s2Nf~UL0 z@;jzBbJJI9^Z zJNNJZ2$CI`^Mh@rWlfk^d=W&j6Sx4@lh2#oXtIXCN;)<=rI;6|lb*2iLBrMR8uIc1 zNWJc%?cGpi`)4SmsaTxqGOxhu*6sMgp~d&@v^MvR3UFXwU=WA|dR zI|TDlDz(B&%4v<%jZgJ#;^^#E3od5z#3at2MzD+>>W)3^&pr}PkMr-+xF_=uYJdM< c?|#No^#Y15EU*D=`fdQfXMxTo6K%XWDUi!M+aZ&+Z9(Bxy>0|gnl*c@7HiKZ z14J1n)np>05o|iED=bxNHfNn$q;b>FZZD0i%y>Kl-lhJYv0NqmFOG5*8Ppi38A6EK zDLOGRkvqo4W!2^yY1ZY~5vsWzJ{S`0-d2zin>Ul!PCgqxtvpH@8XFJ045tN&_61WV zFf!2GyD7^Cr~bbb)BiX;cV0yx?yloup$<}~SAXuLr&EE7xw&Lzl~c4-lFs|YT0=e6 z++BUe`p@Lih^yxqe~XMa)F55&#omtjyT>9WJNJC)qI^}{f6Cs-DJeTLZeucKZY{@@ z5Cp?o7V<{V$C#K7&!$yEe3I^sJ=N}CGUF8R@akaY+uXhk&6@fmvg7ZV)~U}>$XS9r&Nz~W7y64a zB4<9aFQTmZgRi0d*xh3ko`Zd7iag)CVxkY4Z9yGbjO`P z$ET@@cQ@X7Ol5&D5Y^aUCS~jAz|{!7Q^fCuq<`X78y@Kq*HKE zAXN0;=oc~NS2WAA3$3bglQr_6-efFBp51f5y3nkez8?T!^7lDP0=ZR?+qFEP&C?9I zU&fqWu{u&<)UjoXKdzFJuu&QB(K;rZ#Z#khb}? zg&h`U-~O&&LH5qe81BmozpK@nP)zngmmIXac`^$gS}(9r_yWgUwqLC0--x-knpbAW z3u(8`)L@g=>1>iACpQ_{*?-=;qP+Wp--U;vr-H8Ox6(iiKx0R;yK}g@`TTDkT#O-t3t#-IW3aj%Hw>4_;NyYVCl?)5UP()2(z54|1buBteor;jvYMex8w_z+B_Pjz6s#3DSR{-UrMC^Ncp)G>D5%)irRa zE^N7xoPbu_B*woGs)2l4!((Pe_7sao22%-EW%RLKes>^)y&O>>`8(ab5KN#p!{e!z zt73o4f+m~PKwOOQa&m$`RYvPDjSfGJRRg3{!!&Vig?M{mbM#ku-F8X6c~`SfqVL%o=uWSUp->!Kt0O zt;WB1VNSH(*aTTivdv7!QKlxGBT=X9Yp`0Nx=v}T1JQW-OAZdDqtJStAR8`hckjpSSaqaq5%-186tg6`wswzilQt6e3sR^#Y zl)py`-H1UT{1jl1hrVbygj`n_A7(7ggHS?Vmvp?zsr&8u1{-T{<_il^!LpCT#|rrA z2#{gTrmkH!MK)=kMTaPuRT27N;C)e~Kco9?@OeKbw$`YwM`z!jzo&yF@Tq6Ndu|Pb z6uapFAV*&GEFK_na+uGM#&YC zQ#*waAEn{H_*jsGq_%%x&KU8rj(K||b}QiV!pE|Wkij_^&9bkhg1y7R^vkTD**4x# zc^&B91b+>|`A_Bjz8^S4W;j)~vyXnE+`wW7XA}=ZoS$FNADq!qdH&7UDZ8mJYXgcm zQh`IDrNe1=T!dkzEjlK^=ovj+BZAW8oUOJ0(3n@g?G+Y=S1$N&*`R)P{3)RNxG5LV zcRT7^AmqypE*gp3WW@=fj+auif6%yZka8Y=spO|q)cfglE}fqOFu0oC~buFSjCOBI@y^v539kGTvkOTJUvZSYpG57mgooDTQ~M;b(y5!&&VU7ptrwf zMThZb+>X%PSs~|h%wA??NsY95&B)hJhBInKPgJ~Xa5RoxTA&VqbaR!fk~2@awn*7z z-l>F~x32-`EUYX)_j!(-`?daR#&&0D3~$Jd@+M%cMzD1WeywrIV`aEs{;woUx6oco zH^va@zvakRVyTy9fi@cu*y6rD?JhP_$kz;sE|yt{6iTgcO!%eIgi&@0wCbIud`JZy z-@0WkoipG)GBa{Ezf)2ifq5n7)^h9hOGVq5W^84?dd7E~QCzv0=GOJRaN&%1OJ{@@ z@HT3zSw6S+!x2-Q7|zfPU{99ZcE`U6&5`m)3M(rHznJnjw9RhETppkK+80+F0?abix^8-Pq`x@sL<5s7Oid+Opva08fKR0_<14t_Z+{fMRg)asWs?U2 zEHqazulgo+YAYy&^9ykSF_^e$>lV$jMxv#0S|mKa<2Qy8Js?n8H)o1!=>8yT-C7%K z6V6cEj9nV#DCXw&3v%PSn24q)_K_a`2q;DSjQsv_hq1FICa1^u>fogZbg<3R;37h? z+K15hq0~iBB25o0ELZsJCeV$uaq5UHDZ`!fPw|uz#n#X*F6og)<1Ip-QGS{r`=q97 zoboO2?DOiDK5Gp&%FUA%TA0(_{pF@KjV;d!=`c?tNE^}t++gcr!A=FbHaxiW&}CIc zQ8jMv!2<(Iuo$B;d6vp2`pI$@EfH_1*d)W>w+4a;w&w0D1X)=waZ3#yIsEO<&D8GxrMqo=6+ zkXW32IA^0WFu^&V?f^zT5 z@Vb|uimykBCix4%Gwn6hk;H27$n9q<=cb_*$+|;{w&Xh`MhMOIug!r|=}rO!HIBLz zaEEy^80}8M;;k+eY!ip#3!bSTzKoREeBh$ImV$)Xn1(x_I0@6iR3OYkK$V9rnaz8Q zKH#_AfxTpP6^=W>oz#pa1_vGOrmILirzAgI+KqZZzo|CI%05lbj(_B1owALW$}dTc zfAi*>+z$KjFQ>$OXGCL36ScXQ69}Ydz;NF9G~k|ehIuJZ0_WXDl2o(oyt$PvMiVuc zv`KA;E;Ny2Gq_tnnS8Cnb1+!0rlz`80C-rWZ98*bq7#aeu|TYR0QWA~r^x`%vRo?+IHsIw5hy2WFxuka|uw7pmV;NS-t_(_oc)-C2|I@`WMNu$)O?Q zSoEL`VcHzgQ*KVp3}@E-gC7WH_umxB*H!VV592O^%CWIemWd16*%fR%|FEbdVnqzk z72GgU2|Ma9!%VSgKGS|2oO1!n>ExngGb;97DF-YZ{N}>5doQ+~!|t$g^ zdu5MH;oA3m`~Df9AI^C`9;{-Njv3L1%cH=y!&k4JB#p5MLwfP*PYO%wj#`!P% zk-9qC4;3R*LsSmrLRf>rFR5^xC#Rc#vHnngMcL&j_lyPdamEPomfU)kM4+a~(*|x> zoIVJMXak}h|9gP*g=Qu3t! zn^jnCfr@b)Gjdx}BFoj6`ijt}uV1nEZ~uF!#oCLZC56)w?FGC66A0av!{v72?PkK< zTRQx6*#*yu%GcoSGEi^tLVB6ouCKrNwc`8TG3nZ4TpwSIH!P`GZ?qbicVQ=w9!5M9RCui?G5GI?_c z!m52i_}u+cF-AS2W2E;msizyp`bZ5{CM^Q2F^!kmE*25 zK=LQQMDd5~j8GX|7F?As{Zw(uwL+%lk>S^)q+X&1sSmTOKl5pse0(8i3Q4$bhJ=$jI63h*?)!tET*$i2S)VwRdW^=s`JJU@4m~3~6Rl#U5i2wvBO+oOr3+!$- z>t*rtpLz&hZPi@D+>_g*F6Zk@%vO)sXC192^<=)cKnAF(c6D{;^LkyMjPjn^x>O}D z7{RZx_$cYUlKDh&_>DyOJz~q>zX!uusdisNYd!Lb;NV}VQp=b^1n-G+b+>)p>KGSk zpbL3xVa!{Y#mFSY4*@hWLBrgZdNj3C)%b^^q{k0)M zX@5uf;_-#17tG|&9&jO+nE4BRux2|vzC>Y7F$Rg~b2xW*w?Dq9LFo{;E{>lbyQ|Zl zZ=>K`;8s$6S@`NC#Yy7Gm7UO$%@6YV{guz1d2Ea?r8%M(tSp_ogR%0QgL`<^m3u(b zpPSF_X{;mM++4ZkH}>BW8(m*8TFiF&x1TX;3@$_Ri_A{VnP}OzJcM&vQ0VwCyk;6UO!%M3*D)-pdurL@9Fo-a(58;as=8b+trct4eMo3PW!_y5M$_&88g}SS= z49^D10ntD%yeq>I-SSkNVC(#XLVpH*@g~9@3VfxP3zfFg@R}7Injn>njq?El&()M3O-!I;Se)nr*~}eI_`+~!leKY zXN#d{%^w6-E;!7`YHOdeo@0d7oB~KX~&*;1y>|;>ynp}!$7HYH`5%OJPDQ&B~ z)&8Lv;1>%ooT2_3_n@Jmh%QKO<5X_(j<1EwYUb%?WDvIvR%C9OwYz(M_POi$G2v4- zYZF5Xy=lrd-VTImS70yP2U$ULZ>qI$d?*TDR8CM(Nd4<)Z_!Vp`m^()SS-|YIv@JU ze-UczEs_|i2pq0dJkKsqc3Rc((~O76cdPRP#0{&q#{23!%-!98*s~1k3KlTVjPZ{X z%m>whBca{e7v>+meLN&)bbp37uM_fYM;immJs-S~HAmVCRrkN|Srhv%!SSz*Hvcvn z{3dIxjz42$m^4}cbCvAb&ORO1+ZbIwHw&4OoGQ9f@CE?7$fEB@j6V5&5Wfh=kFLKd z*;^`E`jXcbw!FNvvKYwB5M3a0aJ-f9#pfa=z7`^AO<(^#Ty|#*Shc<2fH8WpmQ70y zNOJy2o~S;2Z(e%?E1|I_i!`g6L4KQm7E&sf;evMkeo-S#we>?ybBd40(tbFq=PckI zH6S4+IGP#!v06>|?Kcf`r=I82UbuI=W<@h)j~f$CwOme9aJ3URR>c4S?SdBBd_~^5 zE`J6_Cf!VycFb0d;w>`wyTOeMR_5X6>0DF%qwGo57o>dB=X1xIU(>$XjJRSpT9d{9 z0kNX#U?O<|<{FeEnTRXD60jOiGSbh}55M6WO{tkpKC$qF$C%3!ZQb@K^&Ou>Tsc3| z1$&XURVMoFxq2?jvD$0Xv=B?tlx&^KhsG{H`|Kr4cu`4YPx@xjeYG zZ){?lsoEOYsU4SUNDR=YqxP~%Z42Ewel+Rj9bU6%*= z%UBX9@f4<5!&W6RYHksEBaxk1P$j8GZ`r78~^iX zBf{@QW%;alcLz6iAn?4NGIJ*x!$sf|z`)orDDy6KVSf6)+(aE%LA&@?rqYHDjMTT6 zKjD50lg)V(2v>~CIv$V8$6!M{LNagmRfB>Nh{-E?$S-f>ucKe&TEVK9uw^>g!bx3D|=B(n*`|O;h|GEjdnStm}o|{THBm{ng zx(j}(2;sE`{}6oXv0!)pQZT{shh;{(I%b$!CV3beKR1}Y?H2qKOk7$q^B9!+uFNeJ6m z^eU(nqDaj^P4W)_sXNGE!vNLv&qs?K&^4ytHR>Oq0KAYm9~ zX>rOWUK&*)SuypUmJ`H{C9nC9Am3C%3=_K|u#B}_FD23#m9xue1^PJwwkRsT{~(;P Z#+VvfY*UZUQ$AXNmb#u=iHdE|{{ZGcfT;ig literal 0 HcmV?d00001 diff --git a/public/imgs/pwa/manifest/manifest-icon-512.maskable.png b/public/imgs/pwa/manifest/manifest-icon-512.maskable.png new file mode 100644 index 0000000000000000000000000000000000000000..d6366700a9b692210d0393887ba5f4d44095dab3 GIT binary patch literal 11657 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 GzxqFr#9S8u literal 0 HcmV?d00001 diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 000000000..96dae66d5 --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1,29 @@ +{ + "display": "standalone", + "icons": [ + { + "src": "/imgs/pwa/manifest/manifest-icon-192.maskable.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "any" + }, + { + "src": "/imgs/pwa/manifest/manifest-icon-192.maskable.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/imgs/pwa/manifest/manifest-icon-512.maskable.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "any" + }, + { + "src": "/imgs/pwa/manifest/manifest-icon-512.maskable.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} \ No newline at end of file diff --git a/src/components/layout/Layout.tsx b/src/components/layout/Layout.tsx index d762c2cb0..f010f5724 100644 --- a/src/components/layout/Layout.tsx +++ b/src/components/layout/Layout.tsx @@ -1,14 +1,22 @@ import { AppShell, createStyles } from '@mantine/core'; -import { Header } from './Header'; +import { Header } from './header/Header'; import { Footer } from './Footer'; import Aside from './Aside'; import Navbar from './Navbar'; -import { HeaderConfig } from './HeaderConfig'; +import { HeaderConfig } from './header/HeaderConfig'; import { Background } from './Background'; import { useConfig } from '../../tools/state'; const useStyles = createStyles((theme) => ({ main: {}, + appShell: { + // eslint-disable-next-line no-useless-computed-key + ['@media screen and (display-mode: standalone)']: { + '&': { + paddingTop: '88px !important', + }, + }, + }, })); export default function Layout({ children, style }: any) { diff --git a/src/components/layout/Logo.tsx b/src/components/layout/Logo.tsx index a4530a1de..530314b57 100644 --- a/src/components/layout/Logo.tsx +++ b/src/components/layout/Logo.tsx @@ -12,7 +12,7 @@ export function Logo({ style, withoutText }: any) { ({ hide: { @@ -23,7 +21,7 @@ const useStyles = createStyles((theme) => ({ })); export function Header(props: any) { - const { classes, cx } = useStyles(); + const { classes } = useStyles(); const { config } = useConfig(); const { colorScheme } = useMantineColorScheme(); diff --git a/src/components/layout/HeaderConfig.tsx b/src/components/layout/header/HeaderConfig.tsx similarity index 56% rename from src/components/layout/HeaderConfig.tsx rename to src/components/layout/header/HeaderConfig.tsx index bf746e855..8f873a9f0 100644 --- a/src/components/layout/HeaderConfig.tsx +++ b/src/components/layout/header/HeaderConfig.tsx @@ -1,7 +1,8 @@ /* eslint-disable react/no-invalid-html-attribute */ import React from 'react'; import Head from 'next/head'; -import { useConfig } from '../../tools/state'; +import { useConfig } from '../../../tools/state'; +import { SafariStatusBarStyle } from './safariStatusBarStyle'; export function HeaderConfig(props: any) { const { config } = useConfig(); @@ -9,15 +10,19 @@ export function HeaderConfig(props: any) { return ( {config.settings.title || 'Homarr 🦞'} - + + + {/* configure apple splash screen & touch icon */} - + + + ); } diff --git a/src/components/layout/header/safariStatusBarStyle.tsx b/src/components/layout/header/safariStatusBarStyle.tsx new file mode 100644 index 000000000..b7100ced0 --- /dev/null +++ b/src/components/layout/header/safariStatusBarStyle.tsx @@ -0,0 +1,13 @@ +import { useMantineTheme } from '@mantine/core'; + +export const SafariStatusBarStyle = () => { + const colorScheme = useMantineTheme(); + + const isDark = colorScheme.colorScheme === 'dark'; + + if (isDark) { + return ; + } + + return ; +}; From e11da0997d962132f8dd54902f5a7fc4c5f2ac0b Mon Sep 17 00:00:00 2001 From: Manuel Ruwe Date: Thu, 20 Oct 2022 21:58:24 +0200 Subject: [PATCH 5/8] =?UTF-8?q?=F0=9F=94=96=20Bump=20version=20to=200.10.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/constants.ts | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/constants.ts b/data/constants.ts index f7022807e..5cd84638c 100644 --- a/data/constants.ts +++ b/data/constants.ts @@ -1,2 +1,2 @@ export const REPO_URL = 'ajnart/homarr'; -export const CURRENT_VERSION = 'v0.10.2'; +export const CURRENT_VERSION = 'v0.10.3'; diff --git a/package.json b/package.json index 54ef5cb43..1e00d62f2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "homarr", - "version": "0.10.2", + "version": "0.10.3", "description": "Homarr - A homepage for your server.", "license": "MIT", "repository": { From e028fe29bb690009b12ac507d921c92ca3a07bf4 Mon Sep 17 00:00:00 2001 From: Thomas Camlong <49837342+ajnart@users.noreply.github.com> Date: Fri, 21 Oct 2022 15:20:00 +0900 Subject: [PATCH 6/8] New Crowdin updates (#470) * New translations docker.json (French) * New translations docker.json (Spanish) * New translations docker.json (German) * New translations docker.json (Italian) * New translations docker.json (Japanese) * New translations docker.json (Korean) * New translations docker.json (Dutch) * New translations docker.json (Polish) * New translations docker.json (Russian) * New translations docker.json (Slovenian) * New translations docker.json (Swedish) * New translations docker.json (Ukrainian) * New translations docker.json (Chinese Simplified) * New translations docker.json (English) * New translations docker.json (Portuguese, Brazilian) * New translations docker.json (LOLCAT) * New translations docker.json (Swedish) * New translations docker.json (German) * New translations docker.json (German) * New translations docker.json (Spanish) * New translations docker.json (English) * New translations docker.json (Italian) * New translations login.json (Italian) * New translations docker.json (Ukrainian) * New translations add-service-app-shelf.json (Korean) * New translations common-media-cards.json (Korean) * New translations dashdot.json (Korean) * New translations dashdot.json (Korean) * New translations common.json (Danish) * New translations common.json (Danish) * New translations usenet.json (Danish) * New translations widget-positions.json (Danish) * New translations theme-selector.json (Danish) * New translations search-engine.json (Danish) * New translations module-enabler.json (Danish) * New translations internationalization.json (Danish) * New translations config-changer.json (Danish) * New translations color-schema.json (Danish) * New translations shade-selector.json (Danish) * New translations page-appearance.json (Danish) * New translations opacity-selector.json (Danish) * New translations color-selector.json (Danish) * New translations app-width.json (Danish) * New translations weather.json (Danish) * New translations add-service-app-shelf.json (Danish) * New translations torrents-status.json (Danish) * New translations search.json (Danish) * New translations ping.json (Danish) * New translations overseerr.json (Danish) * New translations docker.json (Danish) * New translations dlspeed.json (Danish) * New translations date.json (Danish) * New translations dashdot.json (Danish) * New translations common.json (Danish) * New translations common-media-cards.json (Danish) * New translations calendar.json (Danish) * New translations app-shelf.json (Danish) * New translations app-shelf-menu.json (Danish) * New translations login.json (Danish) * New translations common.json (Danish) * New translations add-service-app-shelf.json (Danish) * New translations config-changer.json (Danish) * New translations color-schema.json (Danish) * New translations shade-selector.json (Danish) * New translations page-appearance.json (Danish) * New translations opacity-selector.json (Danish) * New translations color-selector.json (Danish) * New translations app-width.json (Danish) * New translations common.json (Danish) * New translations weather.json (Danish) * New translations torrents-status.json (Danish) * New translations overseerr.json (Danish) * New translations docker.json (Danish) * New translations dlspeed.json (Danish) * New translations date.json (Danish) * New translations dashdot.json (Danish) * New translations common.json (Danish) * New translations common-media-cards.json (Danish) * New translations calendar.json (Danish) * New translations app-shelf.json (Danish) * New translations app-shelf-menu.json (Danish) * New translations usenet.json (Danish) * New translations login.json (Danish) * New translations common.json (Danish) * New translations usenet.json (Danish) * New translations widget-positions.json (Danish) * New translations theme-selector.json (Danish) * New translations search-engine.json (Danish) * New translations module-enabler.json (Danish) * New translations internationalization.json (Danish) * New translations config-changer.json (Danish) * New translations page-appearance.json (Danish) * New translations weather.json (Danish) * New translations add-service-app-shelf.json (Danish) * New translations torrents-status.json (Danish) * New translations search.json (Danish) * New translations ping.json (Danish) * New translations overseerr.json (Danish) * New translations docker.json (Danish) * New translations dlspeed.json (Danish) * New translations dashdot.json (Danish) * New translations app-shelf-menu.json (Danish) * New translations login.json (Danish) * New translations app-shelf.json (Danish) * New translations app-shelf.json (Russian) * New translations app-shelf.json (Portuguese, Brazilian) * New translations app-shelf.json (English) * New translations app-shelf.json (Chinese Simplified) * New translations app-shelf.json (Ukrainian) * New translations app-shelf.json (Swedish) * New translations app-shelf.json (Slovenian) * New translations app-shelf.json (Polish) * New translations app-shelf.json (French) * New translations app-shelf.json (Dutch) * New translations app-shelf.json (Korean) * New translations app-shelf.json (Japanese) * New translations app-shelf.json (Italian) * New translations app-shelf.json (German) * New translations app-shelf.json (Spanish) * New translations app-shelf.json (LOLCAT) * New translations docker.json (German) * New translations app-shelf.json (Danish) * New translations app-shelf.json (Spanish) * New translations app-shelf.json (German) * New translations usenet.json (German) * New translations docker.json (English) * New translations config-changer.json (Hebrew) * New translations app-width.json (Hebrew) * New translations color-selector.json (Hebrew) * New translations opacity-selector.json (Hebrew) * New translations page-appearance.json (Hebrew) * New translations shade-selector.json (Hebrew) * New translations color-schema.json (Hebrew) * New translations internationalization.json (Hebrew) * New translations weather.json (Hebrew) * New translations module-enabler.json (Hebrew) * New translations search-engine.json (Hebrew) * New translations theme-selector.json (Hebrew) * New translations widget-positions.json (Hebrew) * New translations usenet.json (Hebrew) * New translations login.json (Hebrew) * New translations common.json (Hebrew) * New translations torrents-status.json (Hebrew) * New translations app-shelf.json (Ukrainian) * New translations common-media-cards.json (Hebrew) * New translations app-shelf.json (English) * New translations common.json (Hebrew) * New translations add-service-app-shelf.json (Hebrew) * New translations app-shelf-menu.json (Hebrew) * New translations app-shelf.json (Hebrew) * New translations calendar.json (Hebrew) * New translations common.json (Hebrew) * New translations search.json (Hebrew) * New translations dashdot.json (Hebrew) * New translations date.json (Hebrew) * New translations dlspeed.json (Hebrew) * New translations docker.json (Hebrew) * New translations overseerr.json (Hebrew) * New translations ping.json (Hebrew) * New translations app-shelf.json (Swedish) * New translations docker.json (Hebrew) * New translations overseerr.json (Hebrew) * New translations ping.json (Hebrew) * New translations search.json (Hebrew) * New translations torrents-status.json (Hebrew) * New translations weather.json (Hebrew) * New translations usenet.json (Hebrew) * New translations weather.json (Hebrew) * New translations common.json (Hebrew) * New translations weather.json (Hebrew) * New translations common.json (Hebrew) * New translations app-width.json (Hebrew) * New translations color-selector.json (Hebrew) * New translations opacity-selector.json (Hebrew) * New translations page-appearance.json (Hebrew) * New translations shade-selector.json (Hebrew) * New translations color-schema.json (Hebrew) * New translations config-changer.json (Hebrew) * New translations internationalization.json (Hebrew) * New translations module-enabler.json (Hebrew) * New translations search-engine.json (Hebrew) * New translations theme-selector.json (Hebrew) * New translations widget-positions.json (Hebrew) * New translations docker.json (Slovenian) * New translations app-shelf.json (Slovenian) * New translations login.json (Danish) * New translations common.json (Danish) * New translations common.json (Polish) * New translations dashdot.json (Polish) * New translations dlspeed.json (Polish) * New translations torrents-status.json (Polish) * New translations usenet.json (Polish) * New translations page-appearance.json (Spanish) * New translations docker.json (Polish) * New translations app-shelf.json (Polish) * New translations calendar.json (Spanish) * New translations dashdot.json (Spanish) * New translations login.json (Polish) * New translations weather.json (Spanish) * New translations dlspeed.json (Hebrew) --- public/locales/da/authentication/login.json | 27 ++++ public/locales/da/common.json | 11 ++ .../da/layout/add-service-app-shelf.json | 118 ++++++++++++++++++ public/locales/da/layout/app-shelf-menu.json | 18 +++ public/locales/da/layout/app-shelf.json | 12 ++ public/locales/da/modules/calendar.json | 11 ++ .../da/modules/common-media-cards.json | 6 + public/locales/da/modules/common.json | 5 + public/locales/da/modules/dashdot.json | 53 ++++++++ public/locales/da/modules/date.json | 11 ++ public/locales/da/modules/dlspeed.json | 35 ++++++ public/locales/da/modules/docker.json | 83 ++++++++++++ public/locales/da/modules/overseerr.json | 30 +++++ public/locales/da/modules/ping.json | 11 ++ public/locales/da/modules/search.json | 9 ++ .../locales/da/modules/torrents-status.json | 40 ++++++ public/locales/da/modules/usenet.json | 49 ++++++++ public/locales/da/modules/weather.json | 32 +++++ public/locales/da/settings/common.json | 14 +++ .../da/settings/customization/app-width.json | 3 + .../customization/color-selector.json | 3 + .../customization/opacity-selector.json | 3 + .../customization/page-appearance.json | 25 ++++ .../customization/shade-selector.json | 3 + .../da/settings/general/color-schema.json | 3 + .../da/settings/general/config-changer.json | 55 ++++++++ .../general/internationalization.json | 3 + .../da/settings/general/module-enabler.json | 3 + .../da/settings/general/search-engine.json | 11 ++ .../da/settings/general/theme-selector.json | 3 + .../da/settings/general/widget-positions.json | 3 + public/locales/de/layout/app-shelf.json | 4 +- public/locales/de/modules/docker.json | 20 ++- public/locales/de/modules/usenet.json | 8 +- public/locales/en/modules/docker.json | 2 +- public/locales/es/layout/app-shelf.json | 4 +- public/locales/es/modules/calendar.json | 2 +- public/locales/es/modules/dashdot.json | 2 +- public/locales/es/modules/docker.json | 20 ++- public/locales/es/modules/weather.json | 2 +- .../customization/page-appearance.json | 2 +- public/locales/fr/layout/app-shelf.json | 4 +- public/locales/fr/modules/docker.json | 20 ++- public/locales/he/authentication/login.json | 27 ++++ public/locales/he/common.json | 11 ++ .../he/layout/add-service-app-shelf.json | 118 ++++++++++++++++++ public/locales/he/layout/app-shelf-menu.json | 18 +++ public/locales/he/layout/app-shelf.json | 12 ++ public/locales/he/modules/calendar.json | 11 ++ .../he/modules/common-media-cards.json | 6 + public/locales/he/modules/common.json | 5 + public/locales/he/modules/dashdot.json | 53 ++++++++ public/locales/he/modules/date.json | 11 ++ public/locales/he/modules/dlspeed.json | 35 ++++++ public/locales/he/modules/docker.json | 83 ++++++++++++ public/locales/he/modules/overseerr.json | 30 +++++ public/locales/he/modules/ping.json | 11 ++ public/locales/he/modules/search.json | 9 ++ .../locales/he/modules/torrents-status.json | 40 ++++++ public/locales/he/modules/usenet.json | 49 ++++++++ public/locales/he/modules/weather.json | 32 +++++ public/locales/he/settings/common.json | 14 +++ .../he/settings/customization/app-width.json | 3 + .../customization/color-selector.json | 3 + .../customization/opacity-selector.json | 3 + .../customization/page-appearance.json | 25 ++++ .../customization/shade-selector.json | 3 + .../he/settings/general/color-schema.json | 3 + .../he/settings/general/config-changer.json | 55 ++++++++ .../general/internationalization.json | 3 + .../he/settings/general/module-enabler.json | 3 + .../he/settings/general/search-engine.json | 11 ++ .../he/settings/general/theme-selector.json | 3 + .../he/settings/general/widget-positions.json | 3 + public/locales/it/authentication/login.json | 16 +-- public/locales/it/layout/app-shelf.json | 4 +- public/locales/it/modules/docker.json | 20 ++- public/locales/ja/layout/app-shelf.json | 4 +- public/locales/ja/modules/docker.json | 20 ++- .../ko/layout/add-service-app-shelf.json | 2 +- public/locales/ko/layout/app-shelf.json | 4 +- .../ko/modules/common-media-cards.json | 2 +- public/locales/ko/modules/dashdot.json | 10 +- public/locales/ko/modules/docker.json | 20 ++- public/locales/lol/layout/app-shelf.json | 4 +- public/locales/lol/modules/docker.json | 20 ++- public/locales/nl/layout/app-shelf.json | 4 +- public/locales/nl/modules/docker.json | 20 ++- public/locales/pl/authentication/login.json | 16 +-- public/locales/pl/common.json | 6 +- public/locales/pl/layout/app-shelf.json | 4 +- public/locales/pl/modules/dashdot.json | 2 +- public/locales/pl/modules/dlspeed.json | 10 +- public/locales/pl/modules/docker.json | 20 ++- .../locales/pl/modules/torrents-status.json | 10 +- public/locales/pl/modules/usenet.json | 12 +- public/locales/pt/layout/app-shelf.json | 4 +- public/locales/pt/modules/docker.json | 20 ++- public/locales/ru/layout/app-shelf.json | 4 +- public/locales/ru/modules/docker.json | 20 ++- public/locales/sl/layout/app-shelf.json | 4 +- public/locales/sl/modules/docker.json | 20 ++- public/locales/sv/layout/app-shelf.json | 4 +- public/locales/sv/modules/docker.json | 20 ++- public/locales/uk/layout/app-shelf.json | 4 +- public/locales/uk/modules/docker.json | 20 ++- public/locales/zh/layout/app-shelf.json | 4 +- public/locales/zh/modules/docker.json | 20 ++- 108 files changed, 1723 insertions(+), 127 deletions(-) create mode 100644 public/locales/da/authentication/login.json create mode 100644 public/locales/da/common.json create mode 100644 public/locales/da/layout/add-service-app-shelf.json create mode 100644 public/locales/da/layout/app-shelf-menu.json create mode 100644 public/locales/da/layout/app-shelf.json create mode 100644 public/locales/da/modules/calendar.json create mode 100644 public/locales/da/modules/common-media-cards.json create mode 100644 public/locales/da/modules/common.json create mode 100644 public/locales/da/modules/dashdot.json create mode 100644 public/locales/da/modules/date.json create mode 100644 public/locales/da/modules/dlspeed.json create mode 100644 public/locales/da/modules/docker.json create mode 100644 public/locales/da/modules/overseerr.json create mode 100644 public/locales/da/modules/ping.json create mode 100644 public/locales/da/modules/search.json create mode 100644 public/locales/da/modules/torrents-status.json create mode 100644 public/locales/da/modules/usenet.json create mode 100644 public/locales/da/modules/weather.json create mode 100644 public/locales/da/settings/common.json create mode 100644 public/locales/da/settings/customization/app-width.json create mode 100644 public/locales/da/settings/customization/color-selector.json create mode 100644 public/locales/da/settings/customization/opacity-selector.json create mode 100644 public/locales/da/settings/customization/page-appearance.json create mode 100644 public/locales/da/settings/customization/shade-selector.json create mode 100644 public/locales/da/settings/general/color-schema.json create mode 100644 public/locales/da/settings/general/config-changer.json create mode 100644 public/locales/da/settings/general/internationalization.json create mode 100644 public/locales/da/settings/general/module-enabler.json create mode 100644 public/locales/da/settings/general/search-engine.json create mode 100644 public/locales/da/settings/general/theme-selector.json create mode 100644 public/locales/da/settings/general/widget-positions.json create mode 100644 public/locales/he/authentication/login.json create mode 100644 public/locales/he/common.json create mode 100644 public/locales/he/layout/add-service-app-shelf.json create mode 100644 public/locales/he/layout/app-shelf-menu.json create mode 100644 public/locales/he/layout/app-shelf.json create mode 100644 public/locales/he/modules/calendar.json create mode 100644 public/locales/he/modules/common-media-cards.json create mode 100644 public/locales/he/modules/common.json create mode 100644 public/locales/he/modules/dashdot.json create mode 100644 public/locales/he/modules/date.json create mode 100644 public/locales/he/modules/dlspeed.json create mode 100644 public/locales/he/modules/docker.json create mode 100644 public/locales/he/modules/overseerr.json create mode 100644 public/locales/he/modules/ping.json create mode 100644 public/locales/he/modules/search.json create mode 100644 public/locales/he/modules/torrents-status.json create mode 100644 public/locales/he/modules/usenet.json create mode 100644 public/locales/he/modules/weather.json create mode 100644 public/locales/he/settings/common.json create mode 100644 public/locales/he/settings/customization/app-width.json create mode 100644 public/locales/he/settings/customization/color-selector.json create mode 100644 public/locales/he/settings/customization/opacity-selector.json create mode 100644 public/locales/he/settings/customization/page-appearance.json create mode 100644 public/locales/he/settings/customization/shade-selector.json create mode 100644 public/locales/he/settings/general/color-schema.json create mode 100644 public/locales/he/settings/general/config-changer.json create mode 100644 public/locales/he/settings/general/internationalization.json create mode 100644 public/locales/he/settings/general/module-enabler.json create mode 100644 public/locales/he/settings/general/search-engine.json create mode 100644 public/locales/he/settings/general/theme-selector.json create mode 100644 public/locales/he/settings/general/widget-positions.json diff --git a/public/locales/da/authentication/login.json b/public/locales/da/authentication/login.json new file mode 100644 index 000000000..d81ca6743 --- /dev/null +++ b/public/locales/da/authentication/login.json @@ -0,0 +1,27 @@ +{ + "title": "Velkommen tilbage!", + "text": "Angiv venligst adgangskoden", + "form": { + "fields": { + "password": { + "label": "Adgangskode", + "placeholder": "Din adgangskode" + } + }, + "buttons": { + "submit": "Log ind" + } + }, + "notifications": { + "checking": { + "title": "Tjekker din adgangskode", + "message": "Din adgangskode er ved at blive tjekket..." + }, + "correct": { + "title": "Adgangskode korrekt, omdirigerer dig..." + }, + "wrong": { + "title": "Adgangskoden er forkert, prøv venligst igen." + } + } +} diff --git a/public/locales/da/common.json b/public/locales/da/common.json new file mode 100644 index 000000000..d0ee0bd85 --- /dev/null +++ b/public/locales/da/common.json @@ -0,0 +1,11 @@ +{ + "actions": { + "save": "Gem" + }, + "tip": "Tip: ", + "time": { + "seconds": "sekunder", + "minutes": "minutter", + "hours": "timer" + } +} diff --git a/public/locales/da/layout/add-service-app-shelf.json b/public/locales/da/layout/add-service-app-shelf.json new file mode 100644 index 000000000..677bf1683 --- /dev/null +++ b/public/locales/da/layout/add-service-app-shelf.json @@ -0,0 +1,118 @@ +{ + "actionIcon": { + "tooltip": "Tilføj en tjeneste" + }, + "modal": { + "title": "Tilføj tjeneste", + "form": { + "validation": { + "invalidUrl": "Angiv venligst en gyldig URL-adresse", + "noStatusCodeSelected": "Vælg venligst en statuskode" + } + }, + "tabs": { + "options": { + "title": "Indstillinger", + "form": { + "serviceName": { + "label": "Tjenestenavn", + "placeholder": "Plex" + }, + "iconUrl": { + "label": "Ikon-URL" + }, + "serviceUrl": { + "label": "Tjeneste-URL" + }, + "onClickUrl": { + "label": "Ved klik på URL" + }, + "serviceType": { + "label": "Tjenestetype", + "defaultValue": "Andet", + "placeholder": "Vælg en" + }, + "category": { + "label": "Kategori", + "placeholder": "Vælg en eksisterende kategori eller opret en ny", + "nothingFound": "Intet fundet", + "createLabel": "+ Opret {{query}}" + }, + "integrations": { + "apiKey": { + "label": "API nøgle", + "placeholder": "Din API nøgle", + "validation": { + "noKey": "Ugyldig nøgle" + }, + "tip": { + "text": "Hent din API nøgle", + "link": "her." + } + }, + "qBittorrent": { + "username": { + "label": "Brugernavn", + "placeholder": "admin", + "validation": { + "invalidUsername": "Ugyldigt brugernavn" + } + }, + "password": { + "label": "Adgangskode", + "placeholder": "adminadmin", + "validation": { + "invalidPassword": "Ugyldig adgangskode" + } + } + }, + "deluge": { + "password": { + "label": "Adgangskode", + "placeholder": "adgangskode", + "validation": { + "invalidPassword": "Ugyldig adgangskode" + } + } + }, + "transmission": { + "username": { + "label": "Brugernavn", + "placeholder": "admin", + "validation": { + "invalidUsername": "Ugyldigt brugernavn" + } + }, + "password": { + "label": "Adgangskode", + "placeholder": "adminadmin", + "validation": { + "invalidPassword": "Ugyldig adgangskode" + } + } + } + } + } + }, + "advancedOptions": { + "title": "Avancerede indstillinger", + "form": { + "httpStatusCodes": { + "label": "HTTP status kode", + "placeholder": "Vælg gyldige statuskoder", + "clearButtonLabel": "Ryd valgte", + "nothingFound": "Intet fundet" + }, + "openServiceInNewTab": { + "label": "Åbn tjeneste i ny fane" + }, + "buttons": { + "submit": { + "content": "Tilføj tjeneste" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/public/locales/da/layout/app-shelf-menu.json b/public/locales/da/layout/app-shelf-menu.json new file mode 100644 index 000000000..1d97e4405 --- /dev/null +++ b/public/locales/da/layout/app-shelf-menu.json @@ -0,0 +1,18 @@ +{ + "modal": { + "title": "Ændr en tjeneste", + "buttons": { + "save": "Gem tjeneste" + } + }, + "menu": { + "labels": { + "settings": "Indstillinger", + "dangerZone": "Farezone" + }, + "actions": { + "edit": "Rediger", + "delete": "Slet" + } + } +} \ No newline at end of file diff --git a/public/locales/da/layout/app-shelf.json b/public/locales/da/layout/app-shelf.json new file mode 100644 index 000000000..712fe938c --- /dev/null +++ b/public/locales/da/layout/app-shelf.json @@ -0,0 +1,12 @@ +{ + "accordions": { + "downloads": { + "text": "Dine downloads", + "torrents": "Dine Torrent downloads", + "usenet": "Dine Usenet downloads" + }, + "others": { + "text": "Andre" + } + } +} \ No newline at end of file diff --git a/public/locales/da/modules/calendar.json b/public/locales/da/modules/calendar.json new file mode 100644 index 000000000..ab77fa36b --- /dev/null +++ b/public/locales/da/modules/calendar.json @@ -0,0 +1,11 @@ +{ + "descriptor": { + "name": "Kalender", + "description": "Et kalendermodul til visning af kommende udgivelser. Det interagerer med Sonarr- og Radarr-API'erne.", + "settings": { + "sundayStart": { + "label": "Søndag første ugedag" + } + } + } +} \ No newline at end of file diff --git a/public/locales/da/modules/common-media-cards.json b/public/locales/da/modules/common-media-cards.json new file mode 100644 index 000000000..7e167bc27 --- /dev/null +++ b/public/locales/da/modules/common-media-cards.json @@ -0,0 +1,6 @@ +{ + "buttons": { + "play": "Afspil", + "request": "Anmod" + } +} \ No newline at end of file diff --git a/public/locales/da/modules/common.json b/public/locales/da/modules/common.json new file mode 100644 index 000000000..525018e17 --- /dev/null +++ b/public/locales/da/modules/common.json @@ -0,0 +1,5 @@ +{ + "settings": { + "label": "Indstillinger" + } +} \ No newline at end of file diff --git a/public/locales/da/modules/dashdot.json b/public/locales/da/modules/dashdot.json new file mode 100644 index 000000000..465ebcbf2 --- /dev/null +++ b/public/locales/da/modules/dashdot.json @@ -0,0 +1,53 @@ +{ + "descriptor": { + "name": "Dash.", + "description": "Et modul til visning af graferne for din kørende Dash. instans.", + "settings": { + "cpuMultiView": { + "label": "CPU Multikerne Visning" + }, + "storageMultiView": { + "label": "Multidrevet Lagervisning" + }, + "useCompactView": { + "label": "Brug kompakt tilstand" + }, + "graphs": { + "label": "Grafer" + }, + "url": { + "label": "Dash. URL" + } + } + }, + "card": { + "title": "Dash.", + "errors": { + "noService": "Ingen Dash. service fundet. Tilføj venligst en til dit Homarr-dashboard eller indstil en Dash. URL i modulindstillingerne", + "noInformation": "Kan ikke hente information fra dash. - kører du den nyeste version?" + }, + "graphs": { + "storage": { + "title": "Lager", + "label": "Lager:" + }, + "network": { + "title": "Netværk", + "label": "Netværk:", + "metrics": { + "download": "Down", + "upload": "Up" + } + }, + "cpu": { + "title": "CPU" + }, + "memory": { + "title": "RAM" + }, + "gpu": { + "title": "GPU" + } + } + } +} \ No newline at end of file diff --git a/public/locales/da/modules/date.json b/public/locales/da/modules/date.json new file mode 100644 index 000000000..3e52aa6de --- /dev/null +++ b/public/locales/da/modules/date.json @@ -0,0 +1,11 @@ +{ + "descriptor": { + "name": "Dato", + "description": "Vis det aktuelle klokkeslæt og den aktuelle dato på et kort", + "settings": { + "display24HourFormat": { + "label": "Vis fuld tid (24-timer)" + } + } + } +} \ No newline at end of file diff --git a/public/locales/da/modules/dlspeed.json b/public/locales/da/modules/dlspeed.json new file mode 100644 index 000000000..737c0f075 --- /dev/null +++ b/public/locales/da/modules/dlspeed.json @@ -0,0 +1,35 @@ +{ + "descriptor": { + "name": "Download hastighed", + "description": "Vis den aktuelle downloadhastighed for understøttede tjenester" + }, + "card": { + "table": { + "header": { + "name": "Navn", + "size": "Størrelse", + "download": "Down", + "upload": "Up", + "estimatedTimeOfArrival": "ETA", + "progress": "Fremskridt" + }, + "body": { + "nothingFound": "Ingen torrents fundet" + } + }, + "lineChart": { + "title": "Nuværende downloadhastighed", + "download": "Download: {{download}}", + "upload": "Upload: {{upload}}", + "timeSpan": "{{seconds}} sekunder siden", + "totalDownload": "Download: {{download}}/s", + "totalUpload": "Upload: {{upload}}/s" + }, + "errors": { + "noDownloadClients": { + "title": "Ingen understøttede downloadklienter fundet!", + "text": "Tilføj en downloadtjeneste for at se dine aktuelle downloads" + } + } + } +} \ No newline at end of file diff --git a/public/locales/da/modules/docker.json b/public/locales/da/modules/docker.json new file mode 100644 index 000000000..154f40f14 --- /dev/null +++ b/public/locales/da/modules/docker.json @@ -0,0 +1,83 @@ +{ + "descriptor": { + "name": "Docker", + "description": "Tillader dig nemt at administrere dine docker containere" + }, + "search": { + "placeholder": "Søg efter container- eller imagenavn" + }, + "table": { + "header": { + "name": "Navn", + "image": "Image", + "ports": "Porte", + "state": "Tilstand" + }, + "body": { + "portCollapse": "{{ports}} flere" + }, + "states": { + "running": "Kører", + "created": "Oprettet", + "stopped": "Stoppet", + "unknown": "Ukendt" + } + }, + "actionBar": { + "addService": { + "title": "Tilføj tjeneste", + "message": "Tilføj tjeneste til Homarr" + }, + "restart": { + "title": "Genstart" + }, + "stop": { + "title": "Stop" + }, + "start": { + "title": "Start" + }, + "refreshData": { + "title": "Opdater data" + }, + "remove": { + "title": "Fjern" + }, + "addToHomarr": { + "title": "Tilføj til Homarr" + } + }, + "actions": { + "start": { + "start": "Starter", + "end": "Startet" + }, + "stop": { + "start": "Stopper", + "end": "Stoppet" + }, + "restart": { + "start": "Genstarter", + "end": "Genstartet" + }, + "remove": { + "start": "Fjerner", + "end": "Fjernet" + } + }, + "errors": { + "integrationFailed": { + "title": "Docker integration mislykkedes", + "message": "Har du glemt at montere docker socket ?" + }, + "unknownError": { + "title": "Der opstod en fejl" + }, + "oneServiceAtATime": { + "title": "Du må kun tilføje én tjeneste ad gangen!" + } + }, + "actionIcon": { + "tooltip": "Docker" + } +} \ No newline at end of file diff --git a/public/locales/da/modules/overseerr.json b/public/locales/da/modules/overseerr.json new file mode 100644 index 000000000..ad0e86084 --- /dev/null +++ b/public/locales/da/modules/overseerr.json @@ -0,0 +1,30 @@ +{ + "descriptor": { + "name": "Overseerr", + "description": "Giver dig mulighed for at søge og tilføje medier fra Overseerr/Jellyseerr" + }, + "popup": { + "item": { + "buttons": { + "askFor": "Spørg efter {{title}}", + "cancel": "Annuller", + "request": "Anmod" + }, + "alerts": { + "automaticApproval": { + "title": "Brug API nøgle", + "text": "Denne anmodning vil blive godkendt automatisk" + } + } + }, + "seasonSelector": { + "caption": "Sæt kryds ved de sæsoner, du ønsker at downloade", + "table": { + "header": { + "season": "Sæson", + "numberOfEpisodes": "Antal episoder" + } + } + } + } +} \ No newline at end of file diff --git a/public/locales/da/modules/ping.json b/public/locales/da/modules/ping.json new file mode 100644 index 000000000..092f95ca4 --- /dev/null +++ b/public/locales/da/modules/ping.json @@ -0,0 +1,11 @@ +{ + "descriptor": { + "name": "Ping", + "description": "Giver dig mulighed for at kontrollere, om tjenesten er oppe eller returnerer en bestemt HTTP-statuskode." + }, + "states": { + "online": "Online {{response}}", + "offline": "Offline {{response}}", + "loading": "Indlæser..." + } +} \ No newline at end of file diff --git a/public/locales/da/modules/search.json b/public/locales/da/modules/search.json new file mode 100644 index 000000000..ab3378dd6 --- /dev/null +++ b/public/locales/da/modules/search.json @@ -0,0 +1,9 @@ +{ + "descriptor": { + "name": "Søgebjælke", + "description": "Søgebjælke til at søge på nettet, Youtube, Torrents eller Overseerr" + }, + "input": { + "placeholder": "Søg på nettet..." + } +} \ No newline at end of file diff --git a/public/locales/da/modules/torrents-status.json b/public/locales/da/modules/torrents-status.json new file mode 100644 index 000000000..229e81b56 --- /dev/null +++ b/public/locales/da/modules/torrents-status.json @@ -0,0 +1,40 @@ +{ + "descriptor": { + "name": "Torrent", + "description": "Vis den aktuelle downloadhastighed for understøttede tjenester", + "settings": { + "hideComplete": { + "label": "Skjul fuldførte torrents" + } + } + }, + "card": { + "table": { + "header": { + "name": "Navn", + "size": "Størrelse", + "download": "Down", + "upload": "Up", + "estimatedTimeOfArrival": "ETA", + "progress": "Fremskridt" + }, + "body": { + "nothingFound": "Ingen torrents fundet" + } + }, + "lineChart": { + "title": "Nuværende downloadhastighed", + "download": "Download: {{download}}", + "upload": "Upload: {{upload}}", + "timeSpan": "{{seconds}} sekunder siden", + "totalDownload": "Download: {{download}}/s", + "totalUpload": "Upload: {{upload}}/s" + }, + "errors": { + "noDownloadClients": { + "title": "Ingen understøttede downloadklienter fundet!", + "text": "Tilføj en downloadtjeneste for at se dine aktuelle downloads" + } + } + } +} \ No newline at end of file diff --git a/public/locales/da/modules/usenet.json b/public/locales/da/modules/usenet.json new file mode 100644 index 000000000..3783e29df --- /dev/null +++ b/public/locales/da/modules/usenet.json @@ -0,0 +1,49 @@ +{ + "descriptor": { + "name": "Sabnzbd", + "description": "Tillader dig at se din Sabnzbd kø og historie, pause og genoptage downloads" + }, + "card": { + "errors": { + "noDownloadClients": { + "title": "Ingen understøttede downloadklienter fundet!", + "text": "Tilføj en downloadtjeneste for at se dine aktuelle downloads" + } + } + }, + "tabs": { + "queue": "Kø", + "history": "Historik" + }, + "info": { + "sizeLeft": "Størrelse tilbage", + "paused": "På pause" + }, + "queue": { + "header": { + "name": "Navn", + "size": "Størrelse", + "eta": "ETA", + "progress": "Fremskridt" + }, + "empty": "Tom", + "error": { + "title": "Fejl", + "message": "Der er opstået en fejl" + }, + "paused": "På pause" + }, + "history": { + "header": { + "name": "Navn", + "size": "Størrelse", + "duration": "Varighed" + }, + "empty": "Intet indhold", + "error": { + "title": "Fejl", + "message": "Fejl ved indlæsning af historik" + }, + "paused": "På pause" + } +} diff --git a/public/locales/da/modules/weather.json b/public/locales/da/modules/weather.json new file mode 100644 index 000000000..5112fb794 --- /dev/null +++ b/public/locales/da/modules/weather.json @@ -0,0 +1,32 @@ +{ + "descriptor": { + "name": "Vejr", + "description": "Se det aktuelle vejr på din placering", + "settings": { + "displayInFahrenheit": { + "label": "Vis i Fahrenheit" + }, + "location": { + "label": "Vejr lokation" + } + } + }, + "card": { + "weatherDescriptions": { + "clear": "Skyfrit", + "mainlyClear": "Hovedsageligt skyfrit", + "fog": "Tåge", + "drizzle": "Støvregn", + "freezingDrizzle": "Støvregn med isslag", + "rain": "Regn", + "freezingRain": "Isslag", + "snowFall": "Snefald", + "snowGrains": "Mildt snefald", + "rainShowers": "Regnbyger", + "snowShowers": "Snebyger", + "thunderstorm": "Tordenvejr", + "thunderstormWithHail": "Tordenvejr med hagl", + "unknown": "Ukendt" + } + } +} \ No newline at end of file diff --git a/public/locales/da/settings/common.json b/public/locales/da/settings/common.json new file mode 100644 index 000000000..fe544f3ff --- /dev/null +++ b/public/locales/da/settings/common.json @@ -0,0 +1,14 @@ +{ + "title": "Indstillinger", + "tooltip": "Indstillinger", + "tabs": { + "common": "Generelle", + "customizations": "Tilpasninger" + }, + "tips": { + "configTip": "Upload din konfigurationsfil ved at trække og slippe den på siden!" + }, + "credits": { + "madeWithLove": "Lavet med ❤️ af @" + } +} \ No newline at end of file diff --git a/public/locales/da/settings/customization/app-width.json b/public/locales/da/settings/customization/app-width.json new file mode 100644 index 000000000..e68fdace9 --- /dev/null +++ b/public/locales/da/settings/customization/app-width.json @@ -0,0 +1,3 @@ +{ + "label": "App Bredde" +} \ No newline at end of file diff --git a/public/locales/da/settings/customization/color-selector.json b/public/locales/da/settings/customization/color-selector.json new file mode 100644 index 000000000..a0dab03d9 --- /dev/null +++ b/public/locales/da/settings/customization/color-selector.json @@ -0,0 +1,3 @@ +{ + "suffix": "{{color}} farve" +} \ No newline at end of file diff --git a/public/locales/da/settings/customization/opacity-selector.json b/public/locales/da/settings/customization/opacity-selector.json new file mode 100644 index 000000000..1bb4c5e03 --- /dev/null +++ b/public/locales/da/settings/customization/opacity-selector.json @@ -0,0 +1,3 @@ +{ + "label": "App Gennemsigtighed" +} \ No newline at end of file diff --git a/public/locales/da/settings/customization/page-appearance.json b/public/locales/da/settings/customization/page-appearance.json new file mode 100644 index 000000000..41d8ff74f --- /dev/null +++ b/public/locales/da/settings/customization/page-appearance.json @@ -0,0 +1,25 @@ +{ + "pageTitle": { + "label": "Sidetitel", + "placeholder": "Homarr 🦞" + }, + "logo": { + "label": "Logo", + "placeholder": "/img/logo.png" + }, + "favicon": { + "label": "Favicon", + "placeholder": "/favicon.png" + }, + "background": { + "label": "Baggrund", + "placeholder": "/img/background.png" + }, + "customCSS": { + "label": "Tilpasset CSS", + "placeholder": "Brugerdefineret CSS vil blive eksekveret som det sidste" + }, + "buttons": { + "submit": "Indsend" + } +} diff --git a/public/locales/da/settings/customization/shade-selector.json b/public/locales/da/settings/customization/shade-selector.json new file mode 100644 index 000000000..d969294ba --- /dev/null +++ b/public/locales/da/settings/customization/shade-selector.json @@ -0,0 +1,3 @@ +{ + "label": "Skygge" +} \ No newline at end of file diff --git a/public/locales/da/settings/general/color-schema.json b/public/locales/da/settings/general/color-schema.json new file mode 100644 index 000000000..cbd3e5702 --- /dev/null +++ b/public/locales/da/settings/general/color-schema.json @@ -0,0 +1,3 @@ +{ + "label": "Skift til {{scheme}} tilstand" +} \ No newline at end of file diff --git a/public/locales/da/settings/general/config-changer.json b/public/locales/da/settings/general/config-changer.json new file mode 100644 index 000000000..df61e77dc --- /dev/null +++ b/public/locales/da/settings/general/config-changer.json @@ -0,0 +1,55 @@ +{ + "configSelect": { + "label": "Konfigurations indlæser" + }, + "modal": { + "title": "Vælg navnet på din nye konfiguration", + "form": { + "configName": { + "label": "Konfigurationens navn", + "placeholder": "Dit nye konfigurationsnavn" + }, + "submitButton": "Bekræft" + }, + "events": { + "configSaved": { + "title": "Konfigurationen gemt", + "message": "Konfigurationen gemt som {{configName}}" + } + } + }, + "buttons": { + "download": "Hent konfiguration", + "delete": { + "text": "Slet konfiguration", + "notifications": { + "deleted": { + "title": "Konfiguration slettet", + "message": "Konfiguration slettet" + }, + "deleteFailed": { + "title": "Sletning af konfiguration mislykkedes", + "message": "Sletning af konfiguration mislykkedes" + } + } + }, + "saveCopy": "Gem en kopi" + }, + "dropzone": { + "notifications": { + "invalidConfig": { + "title": "Kan ikke indlæse konfigurationen", + "message": "Kunne ikke indlæse din konfiguration. Ugyldigt JSON-format." + }, + "loadedSuccessfully": { + "title": "Konfigurationen {{configName}} blev indlæst" + } + }, + "accept": { + "text": "Træk filer hertil for at uploade en konfiguration. Kun understøttelse af JSON." + }, + "reject": { + "text": "Dette filformat understøttes ikke. Upload venligst kun JSON." + } + } +} \ No newline at end of file diff --git a/public/locales/da/settings/general/internationalization.json b/public/locales/da/settings/general/internationalization.json new file mode 100644 index 000000000..f5ba06c3b --- /dev/null +++ b/public/locales/da/settings/general/internationalization.json @@ -0,0 +1,3 @@ +{ + "label": "Sprog" +} \ No newline at end of file diff --git a/public/locales/da/settings/general/module-enabler.json b/public/locales/da/settings/general/module-enabler.json new file mode 100644 index 000000000..4450dd64d --- /dev/null +++ b/public/locales/da/settings/general/module-enabler.json @@ -0,0 +1,3 @@ +{ + "title": "Modul aktivator" +} \ No newline at end of file diff --git a/public/locales/da/settings/general/search-engine.json b/public/locales/da/settings/general/search-engine.json new file mode 100644 index 000000000..4e0dc2b0d --- /dev/null +++ b/public/locales/da/settings/general/search-engine.json @@ -0,0 +1,11 @@ +{ + "title": "Søgemaskine", + "tips": { + "generalTip": "Brug præfikserne !yt og !t foran din forespørgsel for at søge på YouTube eller efter en Torrent.", + "placeholderTip": "%s kan bruges som en pladsholder for forespørgslen." + }, + "customEngine": { + "label": "Forespørgsels URL", + "placeholder": "Brugerdefineret forespørgsels URL" + } +} \ No newline at end of file diff --git a/public/locales/da/settings/general/theme-selector.json b/public/locales/da/settings/general/theme-selector.json new file mode 100644 index 000000000..12d000728 --- /dev/null +++ b/public/locales/da/settings/general/theme-selector.json @@ -0,0 +1,3 @@ +{ + "label": "Skift til {{theme}} tilstand" +} \ No newline at end of file diff --git a/public/locales/da/settings/general/widget-positions.json b/public/locales/da/settings/general/widget-positions.json new file mode 100644 index 000000000..70a6a3d69 --- /dev/null +++ b/public/locales/da/settings/general/widget-positions.json @@ -0,0 +1,3 @@ +{ + "label": "Placer widgets til venstre" +} \ No newline at end of file diff --git a/public/locales/de/layout/app-shelf.json b/public/locales/de/layout/app-shelf.json index 72788abb4..b2717eebe 100644 --- a/public/locales/de/layout/app-shelf.json +++ b/public/locales/de/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Deine Downloads" + "text": "Deine Downloads", + "torrents": "Deine Torrent Downloads", + "usenet": "Deine Usenet Downloads" }, "others": { "text": "Andere" diff --git a/public/locales/de/modules/docker.json b/public/locales/de/modules/docker.json index 92ad11263..6dbf586d6 100644 --- a/public/locales/de/modules/docker.json +++ b/public/locales/de/modules/docker.json @@ -47,10 +47,22 @@ "title": "Zu Homarr hinzufügen" } }, - "messages": { - "successfullyExecuted": { - "title": "Container {{containerName}} {{action}}ed", - "message": "Ihr Container wurde erfolgreich {{action}}." + "actions": { + "start": { + "start": "Startet", + "end": "Gestartet" + }, + "stop": { + "start": "Haltet an", + "end": "Gestoppt" + }, + "restart": { + "start": "Startet neu", + "end": "Neu gestartet" + }, + "remove": { + "start": "Wird entfernt", + "end": "Entfernt" } }, "errors": { diff --git a/public/locales/de/modules/usenet.json b/public/locales/de/modules/usenet.json index 043bc786b..79749c56c 100644 --- a/public/locales/de/modules/usenet.json +++ b/public/locales/de/modules/usenet.json @@ -13,7 +13,7 @@ }, "tabs": { "queue": "Warteschlange", - "history": "Geschichte" + "history": "Verlauf" }, "info": { "sizeLeft": "Größe links", @@ -26,7 +26,7 @@ "eta": "Voraussichtlicher Abschluss", "progress": "Fortschritt" }, - "empty": "Leere", + "empty": "Leer", "error": { "title": "Fehler", "message": "Es ist ein Fehler aufgetreten" @@ -39,10 +39,10 @@ "size": "Größe", "duration": "Dauer" }, - "empty": "Leere", + "empty": "Leer", "error": { "title": "Fehler", - "message": "Fehler beim Laden der Historie" + "message": "Fehler beim Laden des Verlaufs" }, "paused": "Pausiert" } diff --git a/public/locales/en/modules/docker.json b/public/locales/en/modules/docker.json index 047bdec30..432d48f82 100644 --- a/public/locales/en/modules/docker.json +++ b/public/locales/en/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Allows you to easily manage your torrents" + "description": "Allows you to easily manage your docker containers" }, "search": { "placeholder": "Search by container or image name" diff --git a/public/locales/es/layout/app-shelf.json b/public/locales/es/layout/app-shelf.json index 02bde38f9..d37d19579 100644 --- a/public/locales/es/layout/app-shelf.json +++ b/public/locales/es/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Tus descargas" + "text": "Tus descargas", + "torrents": "Tus descargas Torrent", + "usenet": "Tus descargas Usenet" }, "others": { "text": "Otros" diff --git a/public/locales/es/modules/calendar.json b/public/locales/es/modules/calendar.json index 9cfc545a4..94bb9ff6d 100644 --- a/public/locales/es/modules/calendar.json +++ b/public/locales/es/modules/calendar.json @@ -4,7 +4,7 @@ "description": "Un módulo de calendario para mostrar próximos lanzamientos. Interactúa con las API de Sonarr y Radarr.", "settings": { "sundayStart": { - "label": "Iniciar la semana en Domingo" + "label": "Marcar Domingo como primer día de la semana" } } } diff --git a/public/locales/es/modules/dashdot.json b/public/locales/es/modules/dashdot.json index 9435e27f2..8345d26fd 100644 --- a/public/locales/es/modules/dashdot.json +++ b/public/locales/es/modules/dashdot.json @@ -23,7 +23,7 @@ "card": { "title": "Dash.", "errors": { - "noService": "Servicio Dash. no encontrado. Por favor, añade uno al tablero de Homarr o indica una URL de Dash. en las opciones del módulo", + "noService": "No se ha encontrado el servicio Dash. Por favor, añade uno al Panel de Control de Homarr o indica una URL de Dash. en las opciones del módulo", "noInformation": "No se puede obtener información de Dash. - ¿estás utilizando la última versión?" }, "graphs": { diff --git a/public/locales/es/modules/docker.json b/public/locales/es/modules/docker.json index 2f24068a4..b93000e1d 100644 --- a/public/locales/es/modules/docker.json +++ b/public/locales/es/modules/docker.json @@ -47,10 +47,22 @@ "title": "Añadir a Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "Contenedor {{containerName}} {{action}} do", - "message": "Su contenedor ha sido {{action}} con éxito" + "actions": { + "start": { + "start": "Iniciando", + "end": "Iniciado" + }, + "stop": { + "start": "Deteniendo", + "end": "Detenido" + }, + "restart": { + "start": "Reiniciando", + "end": "Reiniciado" + }, + "remove": { + "start": "Eliminando", + "end": "Eliminado" } }, "errors": { diff --git a/public/locales/es/modules/weather.json b/public/locales/es/modules/weather.json index bbac71dbf..3532932ba 100644 --- a/public/locales/es/modules/weather.json +++ b/public/locales/es/modules/weather.json @@ -20,7 +20,7 @@ "freezingDrizzle": "Llovizna helada", "rain": "Lluvia", "freezingRain": "Lluvia helada", - "snowFall": "Caída de nieve", + "snowFall": "Nevada", "snowGrains": "Granos de nieve", "rainShowers": "Lluvia ligera", "snowShowers": "Nevada Ligera", diff --git a/public/locales/es/settings/customization/page-appearance.json b/public/locales/es/settings/customization/page-appearance.json index 1633bba4e..e53877fa5 100644 --- a/public/locales/es/settings/customization/page-appearance.json +++ b/public/locales/es/settings/customization/page-appearance.json @@ -20,6 +20,6 @@ "placeholder": "El CSS personalizado se ejecutará en último lugar" }, "buttons": { - "submit": "Enviar" + "submit": "Aplicar" } } diff --git a/public/locales/fr/layout/app-shelf.json b/public/locales/fr/layout/app-shelf.json index 3590035b2..4808fccdd 100644 --- a/public/locales/fr/layout/app-shelf.json +++ b/public/locales/fr/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Vos téléchargements" + "text": "Vos téléchargements", + "torrents": "", + "usenet": "" }, "others": { "text": "Autres" diff --git a/public/locales/fr/modules/docker.json b/public/locales/fr/modules/docker.json index 02486da37..062e994a8 100644 --- a/public/locales/fr/modules/docker.json +++ b/public/locales/fr/modules/docker.json @@ -47,10 +47,22 @@ "title": "Ajouter à Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "Conteneur {{containerName}} {{action}}", - "message": "Votre conteneur a été envoyé avec succès à {{action}}" + "actions": { + "start": { + "start": "", + "end": "" + }, + "stop": { + "start": "", + "end": "Arrêté" + }, + "restart": { + "start": "", + "end": "" + }, + "remove": { + "start": "", + "end": "" } }, "errors": { diff --git a/public/locales/he/authentication/login.json b/public/locales/he/authentication/login.json new file mode 100644 index 000000000..586b0ab5d --- /dev/null +++ b/public/locales/he/authentication/login.json @@ -0,0 +1,27 @@ +{ + "title": "ברוך הבא!", + "text": "אנא הזן את הסיסמה", + "form": { + "fields": { + "password": { + "label": "סיסמה", + "placeholder": "הסיסמה שלך" + } + }, + "buttons": { + "submit": "כניסה למערכת" + } + }, + "notifications": { + "checking": { + "title": "סיסמה בבדיקה", + "message": "הסיסמה בבדיקה..." + }, + "correct": { + "title": "הסיסמה נכונה לניתוב מחדש..." + }, + "wrong": { + "title": "הסיסמה שגויה אנא נסה שוב." + } + } +} diff --git a/public/locales/he/common.json b/public/locales/he/common.json new file mode 100644 index 000000000..8bb412672 --- /dev/null +++ b/public/locales/he/common.json @@ -0,0 +1,11 @@ +{ + "actions": { + "save": "שמור" + }, + "tip": "טיפ:", + "time": { + "seconds": "שניות", + "minutes": "דקות", + "hours": "שעות" + } +} diff --git a/public/locales/he/layout/add-service-app-shelf.json b/public/locales/he/layout/add-service-app-shelf.json new file mode 100644 index 000000000..ee35905db --- /dev/null +++ b/public/locales/he/layout/add-service-app-shelf.json @@ -0,0 +1,118 @@ +{ + "actionIcon": { + "tooltip": "הוסף שירות" + }, + "modal": { + "title": "הוספת שירות", + "form": { + "validation": { + "invalidUrl": "אנא הזן כתובת אינטרנט חוקית", + "noStatusCodeSelected": "אנא בחר קוד מצב" + } + }, + "tabs": { + "options": { + "title": "אפשרויות", + "form": { + "serviceName": { + "label": "שם שירות", + "placeholder": "Plex" + }, + "iconUrl": { + "label": "כתובת אתר של הצלמית" + }, + "serviceUrl": { + "label": "כתובת אתר של השירות" + }, + "onClickUrl": { + "label": "בלחיצה על כתובת האתר" + }, + "serviceType": { + "label": "סוג שירות", + "defaultValue": "אחר", + "placeholder": "בחר אחד" + }, + "category": { + "label": "קטגוריה", + "placeholder": "בחר קטגוריה קיימת או צור חדשה", + "nothingFound": "לא נמצא דבר", + "createLabel": "יצירת שאילתה" + }, + "integrations": { + "apiKey": { + "label": "מפתח API", + "placeholder": "מפתח ה- API שלך", + "validation": { + "noKey": "מפתח לא חוקי" + }, + "tip": { + "text": "קבל את מפתח ה- API שלך", + "link": "כאן" + } + }, + "qBittorrent": { + "username": { + "label": "שם משתמש", + "placeholder": "מנהל מערכת", + "validation": { + "invalidUsername": "שם משתמש לא חוקי" + } + }, + "password": { + "label": "סיסמה", + "placeholder": "מנהל מערכת", + "validation": { + "invalidPassword": "סיסמה שגויה" + } + } + }, + "deluge": { + "password": { + "label": "סיסמה", + "placeholder": "סיסמה", + "validation": { + "invalidPassword": "סיסמה שגויה" + } + } + }, + "transmission": { + "username": { + "label": "שם משתמש", + "placeholder": "מנהל מערכת", + "validation": { + "invalidUsername": "שם משתמש לא חוקי" + } + }, + "password": { + "label": "סיסמה", + "placeholder": "מנהל מערכת", + "validation": { + "invalidPassword": "סיסמה שגויה" + } + } + } + } + } + }, + "advancedOptions": { + "title": "אפשרויות מתקדמות", + "form": { + "httpStatusCodes": { + "label": "סטטוס קוד HTTP", + "placeholder": "בחר קודי מצב חוקיים", + "clearButtonLabel": "נקה בחירה", + "nothingFound": "לא נמצא דבר" + }, + "openServiceInNewTab": { + "label": "פתיחת שירות בכרטיסיה חדשה" + }, + "buttons": { + "submit": { + "content": "הוספת שירות" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/public/locales/he/layout/app-shelf-menu.json b/public/locales/he/layout/app-shelf-menu.json new file mode 100644 index 000000000..af5733cc0 --- /dev/null +++ b/public/locales/he/layout/app-shelf-menu.json @@ -0,0 +1,18 @@ +{ + "modal": { + "title": "שינוי שירות", + "buttons": { + "save": "שמור שירות" + } + }, + "menu": { + "labels": { + "settings": "הגדרות", + "dangerZone": "אזור מסוכן" + }, + "actions": { + "edit": "עריכה", + "delete": "מחיקה" + } + } +} \ No newline at end of file diff --git a/public/locales/he/layout/app-shelf.json b/public/locales/he/layout/app-shelf.json new file mode 100644 index 000000000..35c91b485 --- /dev/null +++ b/public/locales/he/layout/app-shelf.json @@ -0,0 +1,12 @@ +{ + "accordions": { + "downloads": { + "text": "הורדות", + "torrents": "הורדות הטורנטים", + "usenet": "שימוש בהורדות רשת" + }, + "others": { + "text": "אחרים" + } + } +} \ No newline at end of file diff --git a/public/locales/he/modules/calendar.json b/public/locales/he/modules/calendar.json new file mode 100644 index 000000000..f5bec3620 --- /dev/null +++ b/public/locales/he/modules/calendar.json @@ -0,0 +1,11 @@ +{ + "descriptor": { + "name": "לוח שנה", + "description": "מודול לוח שנה להצגת עדכונים. מקושר ל- Sonarr ו- Radarr API.", + "settings": { + "sundayStart": { + "label": "להתחיל את השבוע ביום ראשון" + } + } + } +} \ No newline at end of file diff --git a/public/locales/he/modules/common-media-cards.json b/public/locales/he/modules/common-media-cards.json new file mode 100644 index 000000000..c9a82457b --- /dev/null +++ b/public/locales/he/modules/common-media-cards.json @@ -0,0 +1,6 @@ +{ + "buttons": { + "play": "הפעלה", + "request": "בקשה" + } +} \ No newline at end of file diff --git a/public/locales/he/modules/common.json b/public/locales/he/modules/common.json new file mode 100644 index 000000000..0247e829e --- /dev/null +++ b/public/locales/he/modules/common.json @@ -0,0 +1,5 @@ +{ + "settings": { + "label": "הגדרות" + } +} \ No newline at end of file diff --git a/public/locales/he/modules/dashdot.json b/public/locales/he/modules/dashdot.json new file mode 100644 index 000000000..407f6e782 --- /dev/null +++ b/public/locales/he/modules/dashdot.json @@ -0,0 +1,53 @@ +{ + "descriptor": { + "name": "Dash.", + "description": "מודול להצגת הגרפים משירות Dash.", + "settings": { + "cpuMultiView": { + "label": "תצוגת מעבד מרובת ליבות" + }, + "storageMultiView": { + "label": "תצוגת אחסון מרובת כוננים" + }, + "useCompactView": { + "label": "השתמש בתצוגה קומפקטית" + }, + "graphs": { + "label": "גרפים" + }, + "url": { + "label": "כתובת אתר Dash." + } + } + }, + "card": { + "title": "Dash.", + "errors": { + "noService": "לא נמצא שירות Dash. בבקשה הוסף ל- Homarr או הגדר כתובת באפשרויות המודול ", + "noInformation": "אין מידע מ- Dash. האם אתה משתמש בגירסה העדכנית" + }, + "graphs": { + "storage": { + "title": "אחסון", + "label": "אחסון:" + }, + "network": { + "title": "רשת", + "label": "רשת:", + "metrics": { + "download": "הורדה", + "upload": "העלאה" + } + }, + "cpu": { + "title": "מעבד" + }, + "memory": { + "title": "זיכרון פנימי" + }, + "gpu": { + "title": "מעבד גרפי" + } + } + } +} \ No newline at end of file diff --git a/public/locales/he/modules/date.json b/public/locales/he/modules/date.json new file mode 100644 index 000000000..0e804c8e5 --- /dev/null +++ b/public/locales/he/modules/date.json @@ -0,0 +1,11 @@ +{ + "descriptor": { + "name": "תאריך", + "description": "הצגת השעה והתאריך הנוכחיים", + "settings": { + "display24HourFormat": { + "label": "הצגת זמן בפורמט 24 שעות" + } + } + } +} \ No newline at end of file diff --git a/public/locales/he/modules/dlspeed.json b/public/locales/he/modules/dlspeed.json new file mode 100644 index 000000000..313e3d3bb --- /dev/null +++ b/public/locales/he/modules/dlspeed.json @@ -0,0 +1,35 @@ +{ + "descriptor": { + "name": "מהירות הורדה", + "description": "מציג את מהירות ההורדה הנוכחית של שירות נתמך" + }, + "card": { + "table": { + "header": { + "name": "שם", + "size": "גודל", + "download": "הורדה", + "upload": "העלאה", + "estimatedTimeOfArrival": "זמן סיום משוער", + "progress": "התקדמות" + }, + "body": { + "nothingFound": "לא נמצא טורנט" + } + }, + "lineChart": { + "title": "מהירות הורדה נוכחית", + "download": "הורדה ממתינה", + "upload": "העלאה ממתינה", + "timeSpan": "לפני שניות", + "totalDownload": "הורדה ממתינה", + "totalUpload": "העלאה ממתינה" + }, + "errors": { + "noDownloadClients": { + "title": "לא נמצאו לקוחות הורדה נתמכים!", + "text": "הוסף שירות הורדה כדי להציג את ההורדות הנוכחיות שלך" + } + } + } +} \ No newline at end of file diff --git a/public/locales/he/modules/docker.json b/public/locales/he/modules/docker.json new file mode 100644 index 000000000..f0e7adb27 --- /dev/null +++ b/public/locales/he/modules/docker.json @@ -0,0 +1,83 @@ +{ + "descriptor": { + "name": "Docker", + "description": "מאפשר ניהול בקלות של טורנטים" + }, + "search": { + "placeholder": "חיפוש לפי container או שם קובץ תמונה" + }, + "table": { + "header": { + "name": "שם", + "image": "תמונה", + "ports": "יציאות", + "state": "מצב" + }, + "body": { + "portCollapse": "יציאות" + }, + "states": { + "running": "פועל", + "created": "נוצר", + "stopped": "עצר", + "unknown": "לא ידוע" + } + }, + "actionBar": { + "addService": { + "title": "הוספת שירות", + "message": "הוסף שירות ל- Homarr" + }, + "restart": { + "title": "אתחל" + }, + "stop": { + "title": "עצר" + }, + "start": { + "title": "התחל" + }, + "refreshData": { + "title": "רענן נתונים" + }, + "remove": { + "title": "הסר" + }, + "addToHomarr": { + "title": "הוסף ל- Homarr" + } + }, + "actions": { + "start": { + "start": "מתחיל", + "end": "החל" + }, + "stop": { + "start": "עוצר", + "end": "עצר" + }, + "restart": { + "start": "מפעיל מחדש", + "end": "אתחל" + }, + "remove": { + "start": "מסיר", + "end": "הוסר" + } + }, + "errors": { + "integrationFailed": { + "title": "שילוב docker נכשל", + "message": "האם שכחת לטעון את ה- Docker?" + }, + "unknownError": { + "title": "אירעה שגיאה" + }, + "oneServiceAtATime": { + "title": "אנא הוסף שירות אחד בלבד בכל פעם!" + } + }, + "actionIcon": { + "tooltip": "Docker" + } +} \ No newline at end of file diff --git a/public/locales/he/modules/overseerr.json b/public/locales/he/modules/overseerr.json new file mode 100644 index 000000000..9b273f167 --- /dev/null +++ b/public/locales/he/modules/overseerr.json @@ -0,0 +1,30 @@ +{ + "descriptor": { + "name": "Overseerr", + "description": "מאפשר חיפוש והוספת מידה מ- Overseerr/Jellyseerr" + }, + "popup": { + "item": { + "buttons": { + "askFor": "בקש מ", + "cancel": "בטל", + "request": "בקשה" + }, + "alerts": { + "automaticApproval": { + "title": "שימוש במפתח API", + "text": "הבקשה תאושר באופן אוטומטי" + } + } + }, + "seasonSelector": { + "caption": "סמן את העונות שברצונך להוריד", + "table": { + "header": { + "season": "עונה", + "numberOfEpisodes": "מספר פרקים" + } + } + } + } +} \ No newline at end of file diff --git a/public/locales/he/modules/ping.json b/public/locales/he/modules/ping.json new file mode 100644 index 000000000..d668d84f6 --- /dev/null +++ b/public/locales/he/modules/ping.json @@ -0,0 +1,11 @@ +{ + "descriptor": { + "name": "זמן תגובה", + "description": "מאפשר בדיקה אם השירות פעיל או מחזיר קוד ספציפי של HTTP" + }, + "states": { + "online": "מקון", + "offline": "לא מקון", + "loading": "טוען..." + } +} \ No newline at end of file diff --git a/public/locales/he/modules/search.json b/public/locales/he/modules/search.json new file mode 100644 index 000000000..8085d915a --- /dev/null +++ b/public/locales/he/modules/search.json @@ -0,0 +1,9 @@ +{ + "descriptor": { + "name": "סרגל חיפוש", + "description": "סרגל לחיפוש ברשת, יוטיוב, טורנטים או Overseerr" + }, + "input": { + "placeholder": "חפש באינטרנט..." + } +} \ No newline at end of file diff --git a/public/locales/he/modules/torrents-status.json b/public/locales/he/modules/torrents-status.json new file mode 100644 index 000000000..e375d89e1 --- /dev/null +++ b/public/locales/he/modules/torrents-status.json @@ -0,0 +1,40 @@ +{ + "descriptor": { + "name": "טורנט", + "description": "מציג את מהירות ההורדה הנוכחית של שירות נתמך", + "settings": { + "hideComplete": { + "label": "הסתר טורנטים שהושלמו" + } + } + }, + "card": { + "table": { + "header": { + "name": "שם", + "size": "גודל", + "download": "הורדה", + "upload": "העלאה", + "estimatedTimeOfArrival": "זמן סיום משוער", + "progress": "התקדמות" + }, + "body": { + "nothingFound": "לא נמצא טורנט" + } + }, + "lineChart": { + "title": "מהירות הורדה נוכחית", + "download": "הורדה ממתינה", + "upload": "העלאה ממתינה", + "timeSpan": "לפני שניות", + "totalDownload": "הורדה ממתינה", + "totalUpload": "העלאה ממתינה" + }, + "errors": { + "noDownloadClients": { + "title": "לא נמצאו לקוחות הורדה נתמכים!", + "text": "הוסף שירות הורדה כדי להציג את ההורדות הנוכחיות שלך" + } + } + } +} \ No newline at end of file diff --git a/public/locales/he/modules/usenet.json b/public/locales/he/modules/usenet.json new file mode 100644 index 000000000..e5b26b24f --- /dev/null +++ b/public/locales/he/modules/usenet.json @@ -0,0 +1,49 @@ +{ + "descriptor": { + "name": "Sabnzbd", + "description": "מאפשר צפייה בהיסטוריה ותור ההורדות, עצירה וחידוש הורדות" + }, + "card": { + "errors": { + "noDownloadClients": { + "title": "לא נמצאו לקוחות הורדה נתמכים!", + "text": "הוסף שירות הורדה כדי להציג את ההורדות הנוכחיות שלך" + } + } + }, + "tabs": { + "queue": "תור", + "history": "היסטוריה" + }, + "info": { + "sizeLeft": "נותר", + "paused": "מושהה" + }, + "queue": { + "header": { + "name": "שם", + "size": "גודל", + "eta": "זמן סיום משוער", + "progress": "התקדמות" + }, + "empty": "ריק", + "error": { + "title": "שגיאה", + "message": "אירעה שגיאה" + }, + "paused": "מושהה" + }, + "history": { + "header": { + "name": "שם", + "size": "גודל", + "duration": "משך זמן" + }, + "empty": "ריק", + "error": { + "title": "שגיאה", + "message": "שגיאה בטעינת היסטוריה" + }, + "paused": "מושהה" + } +} diff --git a/public/locales/he/modules/weather.json b/public/locales/he/modules/weather.json new file mode 100644 index 000000000..81e34a55f --- /dev/null +++ b/public/locales/he/modules/weather.json @@ -0,0 +1,32 @@ +{ + "descriptor": { + "name": "מזג אוויר", + "description": "חפש את מזג האוויר הנוכחי במיקום שלך", + "settings": { + "displayInFahrenheit": { + "label": "להציג בפרנהייט" + }, + "location": { + "label": "מיקום מזג האוויר" + } + } + }, + "card": { + "weatherDescriptions": { + "clear": "בהיר", + "mainlyClear": "בהיר בעיקר", + "fog": "ערפל", + "drizzle": "טפטוף", + "freezingDrizzle": "טפטוף מקפיא", + "rain": "גשום", + "freezingRain": "גשם מקפיא", + "snowFall": "שלג יורד", + "snowGrains": "פתיתי שלג", + "rainShowers": "ממטרי גשם", + "snowShowers": "ממטרי שלג", + "thunderstorm": "סופת רעמים", + "thunderstormWithHail": "סופת רעמים עם ברד", + "unknown": "לא ידוע" + } + } +} \ No newline at end of file diff --git a/public/locales/he/settings/common.json b/public/locales/he/settings/common.json new file mode 100644 index 000000000..c983228bf --- /dev/null +++ b/public/locales/he/settings/common.json @@ -0,0 +1,14 @@ +{ + "title": "הגדרות", + "tooltip": "הגדרות", + "tabs": { + "common": "כללי", + "customizations": "התאמה אישית" + }, + "tips": { + "configTip": "העלה את קובץ ההגדרות שלך על-ידי גרירה ושחרור שלו לדף!" + }, + "credits": { + "madeWithLove": "נעשה ב- ❤️ ע״י @" + } +} \ No newline at end of file diff --git a/public/locales/he/settings/customization/app-width.json b/public/locales/he/settings/customization/app-width.json new file mode 100644 index 000000000..2942bfd2b --- /dev/null +++ b/public/locales/he/settings/customization/app-width.json @@ -0,0 +1,3 @@ +{ + "label": "רוחב אריח" +} \ No newline at end of file diff --git a/public/locales/he/settings/customization/color-selector.json b/public/locales/he/settings/customization/color-selector.json new file mode 100644 index 000000000..5e856a2c8 --- /dev/null +++ b/public/locales/he/settings/customization/color-selector.json @@ -0,0 +1,3 @@ +{ + "suffix": "צבע" +} \ No newline at end of file diff --git a/public/locales/he/settings/customization/opacity-selector.json b/public/locales/he/settings/customization/opacity-selector.json new file mode 100644 index 000000000..0331a38f5 --- /dev/null +++ b/public/locales/he/settings/customization/opacity-selector.json @@ -0,0 +1,3 @@ +{ + "label": "אטימות אריח" +} \ No newline at end of file diff --git a/public/locales/he/settings/customization/page-appearance.json b/public/locales/he/settings/customization/page-appearance.json new file mode 100644 index 000000000..f8ef9cb30 --- /dev/null +++ b/public/locales/he/settings/customization/page-appearance.json @@ -0,0 +1,25 @@ +{ + "pageTitle": { + "label": "כותרת העמוד", + "placeholder": "Homarr 🦞" + }, + "logo": { + "label": "סמל", + "placeholder": "/img/logo.png" + }, + "favicon": { + "label": "אייקון לצד שם העמוד", + "placeholder": "/favicon.png" + }, + "background": { + "label": "רקע", + "placeholder": "/img/background.png" + }, + "customCSS": { + "label": "CSS מותאם אישית", + "placeholder": "css מותאם אישית יבוצע אחרון" + }, + "buttons": { + "submit": "שמירה" + } +} diff --git a/public/locales/he/settings/customization/shade-selector.json b/public/locales/he/settings/customization/shade-selector.json new file mode 100644 index 000000000..0660a7e71 --- /dev/null +++ b/public/locales/he/settings/customization/shade-selector.json @@ -0,0 +1,3 @@ +{ + "label": "הצללה" +} \ No newline at end of file diff --git a/public/locales/he/settings/general/color-schema.json b/public/locales/he/settings/general/color-schema.json new file mode 100644 index 000000000..0c6c5d0d1 --- /dev/null +++ b/public/locales/he/settings/general/color-schema.json @@ -0,0 +1,3 @@ +{ + "label": "מעבר למצב סכמה" +} \ No newline at end of file diff --git a/public/locales/he/settings/general/config-changer.json b/public/locales/he/settings/general/config-changer.json new file mode 100644 index 000000000..eb3e91f88 --- /dev/null +++ b/public/locales/he/settings/general/config-changer.json @@ -0,0 +1,55 @@ +{ + "configSelect": { + "label": "טעינת קובץ הגדרות" + }, + "modal": { + "title": "בחירת שם קובץ הגדרות חדש", + "form": { + "configName": { + "label": "שם קובץ הגדרות", + "placeholder": "שם קובץ הגדרות חדש" + }, + "submitButton": "אישור" + }, + "events": { + "configSaved": { + "title": "קובץ הגדרות נשמר", + "message": "קובץ הגדרות נשמר בשם {{configName}}" + } + } + }, + "buttons": { + "download": "הורדת קובץ הגדרות", + "delete": { + "text": "מחיקת קובץ הגדרות", + "notifications": { + "deleted": { + "title": "קובץ הגדרות נמחק", + "message": "קובץ הגדרות נמחק" + }, + "deleteFailed": { + "title": "נכשל במחיקת קובץ הגדרות", + "message": "נכשל במחיקת קובץ הגדרות" + } + } + }, + "saveCopy": "שמור עותק" + }, + "dropzone": { + "notifications": { + "invalidConfig": { + "title": "טעינת קובץ הגדרות נכשלה", + "message": "אין אפשרות לטעון קובץ הגדרות, קובץ JSON שגוי" + }, + "loadedSuccessfully": { + "title": "קובץ הגדרות {{configName}} נטען בהצלחה" + } + }, + "accept": { + "text": "גרור קובץ לכאן כדי להעלות את קובץ ההגדרות, תמיכה ב- JSON בלבד" + }, + "reject": { + "text": "תבנית קובץ זו אינה נתמכת, ניתן להעלות קובץ JSON בלבד" + } + } +} \ No newline at end of file diff --git a/public/locales/he/settings/general/internationalization.json b/public/locales/he/settings/general/internationalization.json new file mode 100644 index 000000000..9c3aab59d --- /dev/null +++ b/public/locales/he/settings/general/internationalization.json @@ -0,0 +1,3 @@ +{ + "label": "שפה" +} \ No newline at end of file diff --git a/public/locales/he/settings/general/module-enabler.json b/public/locales/he/settings/general/module-enabler.json new file mode 100644 index 000000000..cbfa34dbd --- /dev/null +++ b/public/locales/he/settings/general/module-enabler.json @@ -0,0 +1,3 @@ +{ + "title": "מודול מופעל" +} \ No newline at end of file diff --git a/public/locales/he/settings/general/search-engine.json b/public/locales/he/settings/general/search-engine.json new file mode 100644 index 000000000..ed3472c03 --- /dev/null +++ b/public/locales/he/settings/general/search-engine.json @@ -0,0 +1,11 @@ +{ + "title": "מנוע חיפוש", + "tips": { + "generalTip": "השתמש בקידומות yt ו- t לפני השאילתה שלך כדי לחפש ב- Youtube או עבור סיקור", + "placeholderTip": "s% יכול לשמש כמציין מיקום עבור השאילתה." + }, + "customEngine": { + "label": "כתובת URL של שאילתה", + "placeholder": "כתובת URL של שאילתה מותאמת אישית" + } +} \ No newline at end of file diff --git a/public/locales/he/settings/general/theme-selector.json b/public/locales/he/settings/general/theme-selector.json new file mode 100644 index 000000000..f22eabf08 --- /dev/null +++ b/public/locales/he/settings/general/theme-selector.json @@ -0,0 +1,3 @@ +{ + "label": "החלפת ערכת נושא" +} \ No newline at end of file diff --git a/public/locales/he/settings/general/widget-positions.json b/public/locales/he/settings/general/widget-positions.json new file mode 100644 index 000000000..77e470db1 --- /dev/null +++ b/public/locales/he/settings/general/widget-positions.json @@ -0,0 +1,3 @@ +{ + "label": "מקם ווידג'טים משמאל" +} \ No newline at end of file diff --git a/public/locales/it/authentication/login.json b/public/locales/it/authentication/login.json index 302fe120d..044b873cb 100644 --- a/public/locales/it/authentication/login.json +++ b/public/locales/it/authentication/login.json @@ -1,27 +1,27 @@ { - "title": "", - "text": "", + "title": "Bentornato!", + "text": "Inserisci la password", "form": { "fields": { "password": { "label": "Password", - "placeholder": "" + "placeholder": "La tua password" } }, "buttons": { - "submit": "" + "submit": "Accedi" } }, "notifications": { "checking": { - "title": "", - "message": "" + "title": "Verifica della password", + "message": "La tua password è in fase di controllo..." }, "correct": { - "title": "" + "title": "Password corretta, reindirizzamento..." }, "wrong": { - "title": "" + "title": "Password errata. Per favore, prova di nuovo." } } } diff --git a/public/locales/it/layout/app-shelf.json b/public/locales/it/layout/app-shelf.json index 5253dd5b6..b3966b16e 100644 --- a/public/locales/it/layout/app-shelf.json +++ b/public/locales/it/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "I tuoi download" + "text": "I tuoi download", + "torrents": "", + "usenet": "" }, "others": { "text": "Altri" diff --git a/public/locales/it/modules/docker.json b/public/locales/it/modules/docker.json index 4b4dbf01f..02a550c9d 100644 --- a/public/locales/it/modules/docker.json +++ b/public/locales/it/modules/docker.json @@ -47,10 +47,22 @@ "title": "Aggiungi a Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "Contenitore {{containerName}} {{action}}ed", - "message": "Il vostro contenitore è stato {{action}}" + "actions": { + "start": { + "start": "Avvio", + "end": "Avviato" + }, + "stop": { + "start": "Arresto", + "end": "Arrestato" + }, + "restart": { + "start": "Riavvio", + "end": "Riavviato" + }, + "remove": { + "start": "Rimozione", + "end": "Rimosso" } }, "errors": { diff --git a/public/locales/ja/layout/app-shelf.json b/public/locales/ja/layout/app-shelf.json index a53727983..0889e3abc 100644 --- a/public/locales/ja/layout/app-shelf.json +++ b/public/locales/ja/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "ダウンロード数" + "text": "ダウンロード数", + "torrents": "", + "usenet": "" }, "others": { "text": "その他" diff --git a/public/locales/ja/modules/docker.json b/public/locales/ja/modules/docker.json index f9f9f69a1..2bcc8d88e 100644 --- a/public/locales/ja/modules/docker.json +++ b/public/locales/ja/modules/docker.json @@ -47,10 +47,22 @@ "title": "ホーマーに追加" } }, - "messages": { - "successfullyExecuted": { - "title": "コンテナ {{containerName}} {{action}}ed", - "message": "あなたのコンテナは正常に {{action}}ed。" + "actions": { + "start": { + "start": "", + "end": "" + }, + "stop": { + "start": "", + "end": "停止中" + }, + "restart": { + "start": "", + "end": "" + }, + "remove": { + "start": "", + "end": "" } }, "errors": { diff --git a/public/locales/ko/layout/add-service-app-shelf.json b/public/locales/ko/layout/add-service-app-shelf.json index 358162d29..8f86d8c3a 100644 --- a/public/locales/ko/layout/add-service-app-shelf.json +++ b/public/locales/ko/layout/add-service-app-shelf.json @@ -95,7 +95,7 @@ } }, "advancedOptions": { - "title": "고급 옵션", + "title": "고급 설정", "form": { "httpStatusCodes": { "label": "HTTP 상태 코드", diff --git a/public/locales/ko/layout/app-shelf.json b/public/locales/ko/layout/app-shelf.json index 4525cbba0..a2c6249c0 100644 --- a/public/locales/ko/layout/app-shelf.json +++ b/public/locales/ko/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "다운로드 수" + "text": "다운로드 수", + "torrents": "", + "usenet": "" }, "others": { "text": "기타" diff --git a/public/locales/ko/modules/common-media-cards.json b/public/locales/ko/modules/common-media-cards.json index 40bd52ba0..b9c53d569 100644 --- a/public/locales/ko/modules/common-media-cards.json +++ b/public/locales/ko/modules/common-media-cards.json @@ -1,6 +1,6 @@ { "buttons": { - "play": "플레이", + "play": "재생", "request": "요청" } } \ No newline at end of file diff --git a/public/locales/ko/modules/dashdot.json b/public/locales/ko/modules/dashdot.json index c6387fcc6..deed26758 100644 --- a/public/locales/ko/modules/dashdot.json +++ b/public/locales/ko/modules/dashdot.json @@ -7,16 +7,16 @@ "label": "CPU 멀티 코어 보기" }, "storageMultiView": { - "label": "저장소 멀티 드라이브 보기" + "label": "저장소 모든 드라이브 보기" }, "useCompactView": { - "label": "컴팩트 뷰 사용" + "label": "작은 모듈 사용" }, "graphs": { "label": "그래프" }, "url": { - "label": "Dash. URL" + "label": "Dash. 주소" } } }, @@ -35,8 +35,8 @@ "title": "네트워크", "label": "네트워크:", "metrics": { - "download": "다운", - "upload": "업" + "download": "다운로드", + "upload": "업로드" } }, "cpu": { diff --git a/public/locales/ko/modules/docker.json b/public/locales/ko/modules/docker.json index 28c3fbd1e..e7a8c5721 100644 --- a/public/locales/ko/modules/docker.json +++ b/public/locales/ko/modules/docker.json @@ -47,10 +47,22 @@ "title": "Homarr에 추가" } }, - "messages": { - "successfullyExecuted": { - "title": "컨테이너 {{containerName}} {{action}}됨", - "message": "컨테이너가 성공적으로 {{action}}됨" + "actions": { + "start": { + "start": "", + "end": "" + }, + "stop": { + "start": "", + "end": "중지됨" + }, + "restart": { + "start": "", + "end": "" + }, + "remove": { + "start": "", + "end": "" } }, "errors": { diff --git a/public/locales/lol/layout/app-shelf.json b/public/locales/lol/layout/app-shelf.json index 6dac8352a..ed9a32cb3 100644 --- a/public/locales/lol/layout/app-shelf.json +++ b/public/locales/lol/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Ur downloadz" + "text": "Ur downloadz", + "torrents": "", + "usenet": "" }, "others": { "text": "Othas" diff --git a/public/locales/lol/modules/docker.json b/public/locales/lol/modules/docker.json index 08914c251..99fe750f0 100644 --- a/public/locales/lol/modules/docker.json +++ b/public/locales/lol/modules/docker.json @@ -47,10 +47,22 @@ "title": "Add 2 Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "Contaneah {{containerName}} {{action}}ed", - "message": "Ur contaneah wuz successfully {{action}}ed" + "actions": { + "start": { + "start": "", + "end": "" + }, + "stop": { + "start": "", + "end": "Stopped" + }, + "restart": { + "start": "", + "end": "" + }, + "remove": { + "start": "", + "end": "" } }, "errors": { diff --git a/public/locales/nl/layout/app-shelf.json b/public/locales/nl/layout/app-shelf.json index 5c175068f..d5dc1962e 100644 --- a/public/locales/nl/layout/app-shelf.json +++ b/public/locales/nl/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Uw downloads" + "text": "Uw downloads", + "torrents": "", + "usenet": "" }, "others": { "text": "Overige" diff --git a/public/locales/nl/modules/docker.json b/public/locales/nl/modules/docker.json index 7ef7371aa..3fc2cb948 100644 --- a/public/locales/nl/modules/docker.json +++ b/public/locales/nl/modules/docker.json @@ -47,10 +47,22 @@ "title": "Toevoegen aan Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "Container {{containerName}} {{action}}ed", - "message": "Uw container was succesvol {{action}}ed" + "actions": { + "start": { + "start": "", + "end": "" + }, + "stop": { + "start": "", + "end": "Gestopt" + }, + "restart": { + "start": "", + "end": "" + }, + "remove": { + "start": "", + "end": "" } }, "errors": { diff --git a/public/locales/pl/authentication/login.json b/public/locales/pl/authentication/login.json index 02bc93ee4..17eb7f0a6 100644 --- a/public/locales/pl/authentication/login.json +++ b/public/locales/pl/authentication/login.json @@ -1,27 +1,27 @@ { - "title": "", - "text": "", + "title": "Witaj ponownie!", + "text": "Wprowadź hasło", "form": { "fields": { "password": { "label": "Hasło", - "placeholder": "" + "placeholder": "Twoje hasło" } }, "buttons": { - "submit": "" + "submit": "Zaloguj się" } }, "notifications": { "checking": { - "title": "", - "message": "" + "title": "Sprawdzanie hasła", + "message": "Twoje hasło jest sprawdzane..." }, "correct": { - "title": "" + "title": "Hasło poprawne, przekierowywanie..." }, "wrong": { - "title": "" + "title": "To hasło jest nieprawidłowe. Spróbuj ponownie." } } } diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index a79e5937d..96b2656e5 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -4,8 +4,8 @@ }, "tip": "Wskazówka: ", "time": { - "seconds": "", - "minutes": "", - "hours": "" + "seconds": "sekund", + "minutes": "minut", + "hours": "godziny" } } diff --git a/public/locales/pl/layout/app-shelf.json b/public/locales/pl/layout/app-shelf.json index ae1631157..590c86e60 100644 --- a/public/locales/pl/layout/app-shelf.json +++ b/public/locales/pl/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Pobrane pliki" + "text": "Pobrane pliki", + "torrents": "Twoje torrenty", + "usenet": "Twoje pliki Usenet" }, "others": { "text": "Pozostałe" diff --git a/public/locales/pl/modules/dashdot.json b/public/locales/pl/modules/dashdot.json index 8c79ee710..eda73bf02 100644 --- a/public/locales/pl/modules/dashdot.json +++ b/public/locales/pl/modules/dashdot.json @@ -28,7 +28,7 @@ }, "graphs": { "storage": { - "title": "", + "title": "Pamięć", "label": "Pamięć:" }, "network": { diff --git a/public/locales/pl/modules/dlspeed.json b/public/locales/pl/modules/dlspeed.json index b1b626bf5..92eda8be8 100644 --- a/public/locales/pl/modules/dlspeed.json +++ b/public/locales/pl/modules/dlspeed.json @@ -19,16 +19,16 @@ }, "lineChart": { "title": "Aktualna prędkość pobierania", - "download": "", - "upload": "", + "download": "Pobranie: {{download}}", + "upload": "Udostępnianie: {{upload}}", "timeSpan": "{{seconds}} sekund temu", - "totalDownload": "", - "totalUpload": "" + "totalDownload": "Pobieranie: {{download}}/s", + "totalUpload": "Udostępnianie: {{upload}}/s" }, "errors": { "noDownloadClients": { "title": "Nie znaleziono obsługiwanych klientów pobierania!", - "text": "" + "text": "Dodaj usługę pobierania, aby wyświetlić aktualnie pobierane pliki" } } } diff --git a/public/locales/pl/modules/docker.json b/public/locales/pl/modules/docker.json index e4bb4a4ff..4ebada428 100644 --- a/public/locales/pl/modules/docker.json +++ b/public/locales/pl/modules/docker.json @@ -47,10 +47,22 @@ "title": "Dodaj do Homarra" } }, - "messages": { - "successfullyExecuted": { - "title": "", - "message": "" + "actions": { + "start": { + "start": "Uruchamianie", + "end": "Uruchomiony" + }, + "stop": { + "start": "Zatrzymywanie", + "end": "Zatrzymane" + }, + "restart": { + "start": "Restartowanie", + "end": "Uruchomiony ponownie" + }, + "remove": { + "start": "Usuwanie", + "end": "Usunięto" } }, "errors": { diff --git a/public/locales/pl/modules/torrents-status.json b/public/locales/pl/modules/torrents-status.json index 4f9e0e2a2..984a59666 100644 --- a/public/locales/pl/modules/torrents-status.json +++ b/public/locales/pl/modules/torrents-status.json @@ -24,16 +24,16 @@ }, "lineChart": { "title": "Aktualna prędkość pobierania", - "download": "", - "upload": "", + "download": "Pobranie: {{download}}", + "upload": "Udostępnianie: {{upload}}", "timeSpan": "{{seconds}} sekund temu", - "totalDownload": "", - "totalUpload": "" + "totalDownload": "Pobieranie: {{download}}/s", + "totalUpload": "Udostępnianie: {{upload}}/s" }, "errors": { "noDownloadClients": { "title": "Nie znaleziono obsługiwanych klientów pobierania!", - "text": "" + "text": "Dodaj usługę pobierania, aby wyświetlić aktualnie pobierane pliki" } } } diff --git a/public/locales/pl/modules/usenet.json b/public/locales/pl/modules/usenet.json index 9322942e1..5d9224cc7 100644 --- a/public/locales/pl/modules/usenet.json +++ b/public/locales/pl/modules/usenet.json @@ -1,23 +1,23 @@ { "descriptor": { "name": "Sabnzbd", - "description": "" + "description": "Pozwala zobaczyć kolejkę i historię Sabnzbd, wstrzymywać i wznawiać pobieranie" }, "card": { "errors": { "noDownloadClients": { "title": "Nie znaleziono obsługiwanych klientów pobierania!", - "text": "" + "text": "Dodaj usługę pobierania, aby wyświetlić aktualnie pobierane pliki" } } }, "tabs": { - "queue": "", + "queue": "Kolejka", "history": "Historia" }, "info": { "sizeLeft": "", - "paused": "" + "paused": "Zatrzymane" }, "queue": { "header": { @@ -31,7 +31,7 @@ "title": "Błąd", "message": "Coś poszło nie tak" }, - "paused": "" + "paused": "Zatrzymane" }, "history": { "header": { @@ -44,6 +44,6 @@ "title": "Błąd", "message": "Wystąpił błąd podczas ładowania historii" }, - "paused": "" + "paused": "Zatrzymane" } } diff --git a/public/locales/pt/layout/app-shelf.json b/public/locales/pt/layout/app-shelf.json index 42ec040cf..7a4ed6278 100644 --- a/public/locales/pt/layout/app-shelf.json +++ b/public/locales/pt/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Seus downloads" + "text": "Seus downloads", + "torrents": "", + "usenet": "" }, "others": { "text": "Outros" diff --git a/public/locales/pt/modules/docker.json b/public/locales/pt/modules/docker.json index dea954aa7..62dd703ef 100644 --- a/public/locales/pt/modules/docker.json +++ b/public/locales/pt/modules/docker.json @@ -47,10 +47,22 @@ "title": "Adicionar ao Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "", - "message": "" + "actions": { + "start": { + "start": "", + "end": "" + }, + "stop": { + "start": "", + "end": "Parado" + }, + "restart": { + "start": "", + "end": "" + }, + "remove": { + "start": "", + "end": "" } }, "errors": { diff --git a/public/locales/ru/layout/app-shelf.json b/public/locales/ru/layout/app-shelf.json index 9373cc694..14e08ed1b 100644 --- a/public/locales/ru/layout/app-shelf.json +++ b/public/locales/ru/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Ваши загрузки" + "text": "Ваши загрузки", + "torrents": "", + "usenet": "" }, "others": { "text": "Другое" diff --git a/public/locales/ru/modules/docker.json b/public/locales/ru/modules/docker.json index 0d86037c8..82d385368 100644 --- a/public/locales/ru/modules/docker.json +++ b/public/locales/ru/modules/docker.json @@ -47,10 +47,22 @@ "title": "" } }, - "messages": { - "successfullyExecuted": { - "title": "", - "message": "" + "actions": { + "start": { + "start": "", + "end": "" + }, + "stop": { + "start": "", + "end": "" + }, + "restart": { + "start": "", + "end": "" + }, + "remove": { + "start": "", + "end": "" } }, "errors": { diff --git a/public/locales/sl/layout/app-shelf.json b/public/locales/sl/layout/app-shelf.json index 103dc7193..cbf87004c 100644 --- a/public/locales/sl/layout/app-shelf.json +++ b/public/locales/sl/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Vaši prenosi" + "text": "Vaši prenosi", + "torrents": "Vaši prenosi torrentov", + "usenet": "Vaši prenosi iz omrežja Usenet" }, "others": { "text": "Drugo" diff --git a/public/locales/sl/modules/docker.json b/public/locales/sl/modules/docker.json index a1681f814..c5b369cbe 100644 --- a/public/locales/sl/modules/docker.json +++ b/public/locales/sl/modules/docker.json @@ -47,10 +47,22 @@ "title": "Dodaj v Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "Zabojnik {{containerName}} {{action}}", - "message": "Vaš zabojnik je bil uspešno {{action}}" + "actions": { + "start": { + "start": "Začenjam", + "end": "Začeto" + }, + "stop": { + "start": "Ustavljam", + "end": "Zaustavljeno" + }, + "restart": { + "start": "Ponovno zaganjam", + "end": "Ponovno zagnano" + }, + "remove": { + "start": "Odstranjujem", + "end": "Odstranjeno" } }, "errors": { diff --git a/public/locales/sv/layout/app-shelf.json b/public/locales/sv/layout/app-shelf.json index 614903ae9..0dadacf4a 100644 --- a/public/locales/sv/layout/app-shelf.json +++ b/public/locales/sv/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Dina nedladdningar" + "text": "Dina nedladdningar", + "torrents": "Dina torrent-nedladdningar", + "usenet": "Dina nedladdningar från Usenet" }, "others": { "text": "Övriga" diff --git a/public/locales/sv/modules/docker.json b/public/locales/sv/modules/docker.json index ae33095b3..462ce6483 100644 --- a/public/locales/sv/modules/docker.json +++ b/public/locales/sv/modules/docker.json @@ -47,10 +47,22 @@ "title": "Lägg till i Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "Container {{containerName}} {{action}}", - "message": "Din behållare lyckades {{action}}" + "actions": { + "start": { + "start": "Startar", + "end": "Startad" + }, + "stop": { + "start": "Stoppar", + "end": "Stoppad" + }, + "restart": { + "start": "Startar om", + "end": "Omstartad" + }, + "remove": { + "start": "Tar bort", + "end": "Borttagen" } }, "errors": { diff --git a/public/locales/uk/layout/app-shelf.json b/public/locales/uk/layout/app-shelf.json index 7b12fcedb..bb5fd9974 100644 --- a/public/locales/uk/layout/app-shelf.json +++ b/public/locales/uk/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "Ваші завантаження" + "text": "Ваші завантаження", + "torrents": "Ваші Торенти", + "usenet": "Ваші Юзнет" }, "others": { "text": "Інше" diff --git a/public/locales/uk/modules/docker.json b/public/locales/uk/modules/docker.json index a479c2dae..9fbe1c377 100644 --- a/public/locales/uk/modules/docker.json +++ b/public/locales/uk/modules/docker.json @@ -47,10 +47,22 @@ "title": "Додати до Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "Контейнер {{containerName}} виконав дію {{action}}", - "message": "Ваш контейнер успішно виконав - {{action}}" + "actions": { + "start": { + "start": "Запускається", + "end": "Запущено" + }, + "stop": { + "start": "Зупинення", + "end": "Зупинено" + }, + "restart": { + "start": "Перезапуск", + "end": "Перезапущений" + }, + "remove": { + "start": "Видалення", + "end": "Видалено" } }, "errors": { diff --git a/public/locales/zh/layout/app-shelf.json b/public/locales/zh/layout/app-shelf.json index c307182e0..37bfe0d90 100644 --- a/public/locales/zh/layout/app-shelf.json +++ b/public/locales/zh/layout/app-shelf.json @@ -1,7 +1,9 @@ { "accordions": { "downloads": { - "text": "您的下载" + "text": "您的下载", + "torrents": "", + "usenet": "" }, "others": { "text": "其他" diff --git a/public/locales/zh/modules/docker.json b/public/locales/zh/modules/docker.json index 28fce1cc4..bd1a41700 100644 --- a/public/locales/zh/modules/docker.json +++ b/public/locales/zh/modules/docker.json @@ -47,10 +47,22 @@ "title": "添加到Homarr" } }, - "messages": { - "successfullyExecuted": { - "title": "容器 {{containerName}} {{action}}已完成", - "message": "你的容器已成功 {{action}}。" + "actions": { + "start": { + "start": "", + "end": "" + }, + "stop": { + "start": "", + "end": "已停止" + }, + "restart": { + "start": "", + "end": "" + }, + "remove": { + "start": "", + "end": "" } }, "errors": { From fdecf249051b8b78cbcb0daeea071c2c13b8e570 Mon Sep 17 00:00:00 2001 From: Momcilo42 Date: Fri, 21 Oct 2022 21:58:35 +0200 Subject: [PATCH 7/8] =?UTF-8?q?=E2=9C=A8=20Add=20switch=20option=20to=20op?= =?UTF-8?q?en=20search=20box=20result=20in=20same=20tab=20#476?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This makes it easier to search when homer is set as the default for a new tab. Co-authored-by: Momcilo Bajalovic --- .../en/settings/general/search-engine.json | 3 + .../SearchNewTabSwitch/SearchNewTabSwitch.tsx | 61 +++++++++++++++++++ src/components/Settings/CommonSettings.tsx | 2 + src/modules/search/SearchModule.tsx | 8 ++- src/tools/types.ts | 1 + 5 files changed, 72 insertions(+), 3 deletions(-) create mode 100644 src/components/SearchNewTabSwitch/SearchNewTabSwitch.tsx diff --git a/public/locales/en/settings/general/search-engine.json b/public/locales/en/settings/general/search-engine.json index 42f708ffb..8d419fcf8 100644 --- a/public/locales/en/settings/general/search-engine.json +++ b/public/locales/en/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "Query URL", "placeholder": "Custom query URL" + }, + "searchNewTab": { + "label": "Open search results in new tab" } } \ No newline at end of file diff --git a/src/components/SearchNewTabSwitch/SearchNewTabSwitch.tsx b/src/components/SearchNewTabSwitch/SearchNewTabSwitch.tsx new file mode 100644 index 000000000..ca759f411 --- /dev/null +++ b/src/components/SearchNewTabSwitch/SearchNewTabSwitch.tsx @@ -0,0 +1,61 @@ +import React, { useState } from 'react'; +import { createStyles, Switch, Group } from '@mantine/core'; +import { useTranslation } from 'next-i18next'; +import { useConfig } from '../../tools/state'; + +const useStyles = createStyles((theme) => ({ + root: { + position: 'relative', + '& *': { + cursor: 'pointer', + }, + }, + + icon: { + pointerEvents: 'none', + position: 'absolute', + zIndex: 1, + top: 3, + }, + + iconLight: { + left: 4, + color: theme.white, + }, + + iconDark: { + right: 4, + color: theme.colors.gray[6], + }, +})); + +export function SearchNewTabSwitch() { + const { config, setConfig } = useConfig(); + const { classes, cx } = useStyles(); + const defaultPosition = config?.settings?.searchNewTab ?? true; + const [openInNewTab, setOpenInNewTab] = useState(defaultPosition); + const { t } = useTranslation('settings/general/search-engine'); + const toggleOpenInNewTab = () => { + setOpenInNewTab(!openInNewTab); + setConfig({ + ...config, + settings: { + ...config.settings, + searchNewTab: !openInNewTab, + }, + }); + }; + + return ( + +
+ toggleOpenInNewTab()} + size="md" + /> +
+ {t('searchNewTab.label')} +
+ ); +} diff --git a/src/components/Settings/CommonSettings.tsx b/src/components/Settings/CommonSettings.tsx index 45adbb735..c7d10b3af 100644 --- a/src/components/Settings/CommonSettings.tsx +++ b/src/components/Settings/CommonSettings.tsx @@ -2,6 +2,7 @@ import { Text, SegmentedControl, TextInput, Stack } from '@mantine/core'; import { useState } from 'react'; import { useTranslation } from 'next-i18next'; import { useConfig } from '../../tools/state'; +import { SearchNewTabSwitch } from '../SearchNewTabSwitch/SearchNewTabSwitch'; import { ColorSchemeSwitch } from '../ColorSchemeToggle/ColorSchemeSwitch'; import { WidgetsPositionSwitch } from '../WidgetsPositionSwitch/WidgetsPositionSwitch'; import ConfigChanger from '../Config/ConfigChanger'; @@ -75,6 +76,7 @@ export default function CommonSettings(args: any) { )} + diff --git a/src/modules/search/SearchModule.tsx b/src/modules/search/SearchModule.tsx index b884d3d1e..2363b4e7e 100644 --- a/src/modules/search/SearchModule.tsx +++ b/src/modules/search/SearchModule.tsx @@ -153,20 +153,22 @@ export default function SearchBar(props: any) { }} onSubmit={form.onSubmit((values) => { const query = values.query.trim(); + const open_in = config.settings.searchNewTab ? '_blank' : '_self'; setTimeout(() => { form.setValues({ query: '' }); switch (query.substring(0, 3)) { case '!yt': - window.open(`https://www.youtube.com/results?search_query=${query.substring(3)}`); + window.open(`https://www.youtube.com/results?search_query=${query.substring(3)}`, open_in); break; case '!t ': - window.open(`https://www.torrentdownloads.me/search/?search=${query.substring(3)}`); + window.open(`https://www.torrentdownloads.me/search/?search=${query.substring(3)}`, open_in); break; case '!os': break; default: window.open( - `${queryUrl.includes('%s') ? queryUrl.replace('%s', query) : `${queryUrl}${query}`}` + `${queryUrl.includes('%s') ? queryUrl.replace('%s', query) : `${queryUrl}${query}`}`, + open_in ); break; } diff --git a/src/tools/types.ts b/src/tools/types.ts index 7af6ea62e..da2116a6e 100644 --- a/src/tools/types.ts +++ b/src/tools/types.ts @@ -3,6 +3,7 @@ import { OptionValues } from '../modules/ModuleTypes'; export interface Settings { searchUrl: string; + searchNewTab?: boolean; title?: string; logo?: string; favicon?: string; From 01fc7b08f371b6179632522d71932e48c44430c7 Mon Sep 17 00:00:00 2001 From: Thomas Camlong <49837342+ajnart@users.noreply.github.com> Date: Mon, 24 Oct 2022 07:54:29 +0900 Subject: [PATCH 8/8] New Crowdin updates (#478) * New translations docker.json (French) * New translations docker.json (Swedish) * New translations docker.json (Danish) * New translations docker.json (LOLCAT) * New translations docker.json (Portuguese, Brazilian) * New translations docker.json (English) * New translations docker.json (Chinese Simplified) * New translations docker.json (Ukrainian) * New translations docker.json (Slovenian) * New translations docker.json (Spanish) * New translations docker.json (Polish) * New translations docker.json (Dutch) * New translations docker.json (Korean) * New translations docker.json (Japanese) * New translations docker.json (Italian) * New translations docker.json (German) * New translations docker.json (Hebrew) * New translations docker.json (German) * New translations docker.json (English) * New translations docker.json (Danish) * New translations docker.json (Spanish) * New translations docker.json (Swedish) * New translations docker.json (Hebrew) * New translations search-engine.json (Danish) * New translations search-engine.json (Russian) * New translations search-engine.json (Portuguese, Brazilian) * New translations search-engine.json (English) * New translations search-engine.json (Chinese Simplified) * New translations search-engine.json (Ukrainian) * New translations search-engine.json (Swedish) * New translations search-engine.json (Slovenian) * New translations search-engine.json (Polish) * New translations search-engine.json (Hebrew) * New translations search-engine.json (Dutch) * New translations search-engine.json (Korean) * New translations search-engine.json (Japanese) * New translations search-engine.json (Italian) * New translations search-engine.json (German) * New translations search-engine.json (French) * New translations search-engine.json (Spanish) * New translations search-engine.json (LOLCAT) * New translations search-engine.json (Danish) * New translations search-engine.json (Swedish) * New translations search-engine.json (Spanish) * New translations search-engine.json (German) * New translations search-engine.json (Hebrew) * New translations search-engine.json (English) * New translations search-engine.json (Ukrainian) --- public/locales/da/settings/general/search-engine.json | 3 +++ public/locales/de/modules/docker.json | 2 +- public/locales/de/settings/general/search-engine.json | 3 +++ public/locales/es/modules/docker.json | 2 +- public/locales/es/settings/general/search-engine.json | 3 +++ public/locales/fr/modules/docker.json | 2 +- public/locales/fr/settings/general/search-engine.json | 3 +++ public/locales/he/modules/docker.json | 6 +++--- public/locales/he/settings/general/search-engine.json | 3 +++ public/locales/it/modules/docker.json | 2 +- public/locales/it/settings/general/search-engine.json | 3 +++ public/locales/ja/modules/docker.json | 2 +- public/locales/ja/settings/general/search-engine.json | 3 +++ public/locales/ko/modules/docker.json | 2 +- public/locales/ko/settings/general/search-engine.json | 3 +++ public/locales/lol/modules/docker.json | 2 +- public/locales/lol/settings/general/search-engine.json | 3 +++ public/locales/nl/modules/docker.json | 2 +- public/locales/nl/settings/general/search-engine.json | 3 +++ public/locales/pl/modules/docker.json | 2 +- public/locales/pl/settings/general/search-engine.json | 3 +++ public/locales/pt/modules/docker.json | 2 +- public/locales/pt/settings/general/search-engine.json | 3 +++ public/locales/ru/settings/general/search-engine.json | 3 +++ public/locales/sl/modules/docker.json | 2 +- public/locales/sl/settings/general/search-engine.json | 3 +++ public/locales/sv/modules/docker.json | 2 +- public/locales/sv/settings/general/search-engine.json | 3 +++ public/locales/uk/modules/docker.json | 2 +- public/locales/uk/settings/general/search-engine.json | 3 +++ public/locales/zh/modules/docker.json | 2 +- public/locales/zh/settings/general/search-engine.json | 3 +++ 32 files changed, 68 insertions(+), 17 deletions(-) diff --git a/public/locales/da/settings/general/search-engine.json b/public/locales/da/settings/general/search-engine.json index 4e0dc2b0d..5fedbdce2 100644 --- a/public/locales/da/settings/general/search-engine.json +++ b/public/locales/da/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "Forespørgsels URL", "placeholder": "Brugerdefineret forespørgsels URL" + }, + "searchNewTab": { + "label": "Åben søgeresultater i en ny fane" } } \ No newline at end of file diff --git a/public/locales/de/modules/docker.json b/public/locales/de/modules/docker.json index 6dbf586d6..fcd1c56a8 100644 --- a/public/locales/de/modules/docker.json +++ b/public/locales/de/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Ermöglicht Ihnen die einfache Verwaltung Ihrer Torrents" + "description": "Ermöglicht dir die einfache Verwaltung deiner Docker-Container" }, "search": { "placeholder": "Suche nach Container- oder Image namen" diff --git a/public/locales/de/settings/general/search-engine.json b/public/locales/de/settings/general/search-engine.json index ead9dab99..4ace118a1 100644 --- a/public/locales/de/settings/general/search-engine.json +++ b/public/locales/de/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "Suchanfrage URL", "placeholder": "Benutzerdefinierte Abfrage-URL" + }, + "searchNewTab": { + "label": "Öffne Suchergebnisse in einem neuen Tab" } } \ No newline at end of file diff --git a/public/locales/es/modules/docker.json b/public/locales/es/modules/docker.json index b93000e1d..f7fe95a0b 100644 --- a/public/locales/es/modules/docker.json +++ b/public/locales/es/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Te permite gestionar facilmente tus torrents" + "description": "Le permite manejar sus contenedores Docker de manera sencilla" }, "search": { "placeholder": "Buscar por nombre de contenedor o nombre de imagen" diff --git a/public/locales/es/settings/general/search-engine.json b/public/locales/es/settings/general/search-engine.json index 704b0ea73..9ad683b4a 100644 --- a/public/locales/es/settings/general/search-engine.json +++ b/public/locales/es/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "URL de la Petición", "placeholder": "URL de petición personalizada" + }, + "searchNewTab": { + "label": "Abrir resultados de búsqueda en una nueva pestaña" } } \ No newline at end of file diff --git a/public/locales/fr/modules/docker.json b/public/locales/fr/modules/docker.json index 062e994a8..b05afeac8 100644 --- a/public/locales/fr/modules/docker.json +++ b/public/locales/fr/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Vous permet de gérer facilement vos torrents" + "description": "" }, "search": { "placeholder": "Recherche par nom de conteneur ou d'image" diff --git a/public/locales/fr/settings/general/search-engine.json b/public/locales/fr/settings/general/search-engine.json index 98ba1b552..5e0dea5d0 100644 --- a/public/locales/fr/settings/general/search-engine.json +++ b/public/locales/fr/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "URL de la requête", "placeholder": "URL de requête personnalisée" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file diff --git a/public/locales/he/modules/docker.json b/public/locales/he/modules/docker.json index f0e7adb27..b8a205052 100644 --- a/public/locales/he/modules/docker.json +++ b/public/locales/he/modules/docker.json @@ -1,10 +1,10 @@ { "descriptor": { - "name": "Docker", - "description": "מאפשר ניהול בקלות של טורנטים" + "name": "דוקר", + "description": "מאפשר ניהול בקלות את הקונטיינרים בדוקר" }, "search": { - "placeholder": "חיפוש לפי container או שם קובץ תמונה" + "placeholder": "חיפוש לפי קונטיינר או שם קובץ תמונה" }, "table": { "header": { diff --git a/public/locales/he/settings/general/search-engine.json b/public/locales/he/settings/general/search-engine.json index ed3472c03..b21e58b98 100644 --- a/public/locales/he/settings/general/search-engine.json +++ b/public/locales/he/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "כתובת URL של שאילתה", "placeholder": "כתובת URL של שאילתה מותאמת אישית" + }, + "searchNewTab": { + "label": "פתיחת תוצאות חיפוש בכרטיסיה חדשה" } } \ No newline at end of file diff --git a/public/locales/it/modules/docker.json b/public/locales/it/modules/docker.json index 02a550c9d..23269fae9 100644 --- a/public/locales/it/modules/docker.json +++ b/public/locales/it/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Consente di gestire facilmente i propri torrent" + "description": "" }, "search": { "placeholder": "Ricerca per contenitore o nome dell'immagine" diff --git a/public/locales/it/settings/general/search-engine.json b/public/locales/it/settings/general/search-engine.json index c29f55829..73a07b7ec 100644 --- a/public/locales/it/settings/general/search-engine.json +++ b/public/locales/it/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "URL di ricerca", "placeholder": "URL di ricerca personalizzato" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file diff --git a/public/locales/ja/modules/docker.json b/public/locales/ja/modules/docker.json index 2bcc8d88e..63ad3e54b 100644 --- a/public/locales/ja/modules/docker.json +++ b/public/locales/ja/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "ドッカー", - "description": "トレントを簡単に管理することができます。" + "description": "" }, "search": { "placeholder": "コンテナ名、画像名で検索" diff --git a/public/locales/ja/settings/general/search-engine.json b/public/locales/ja/settings/general/search-engine.json index a1a6fa841..8ea9536c4 100644 --- a/public/locales/ja/settings/general/search-engine.json +++ b/public/locales/ja/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "クエリURL", "placeholder": "カスタムクエリURL" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file diff --git a/public/locales/ko/modules/docker.json b/public/locales/ko/modules/docker.json index e7a8c5721..855eb6667 100644 --- a/public/locales/ko/modules/docker.json +++ b/public/locales/ko/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "토렌트를 쉽게 관리할 수 있습니다" + "description": "" }, "search": { "placeholder": "컨테이너 또는 이미지 이름으로 검색" diff --git a/public/locales/ko/settings/general/search-engine.json b/public/locales/ko/settings/general/search-engine.json index 836a17db9..38cc44498 100644 --- a/public/locales/ko/settings/general/search-engine.json +++ b/public/locales/ko/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "쿼리 URL", "placeholder": "커스텀 쿼리 URL" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file diff --git a/public/locales/lol/modules/docker.json b/public/locales/lol/modules/docker.json index 99fe750f0..c5e635e77 100644 --- a/public/locales/lol/modules/docker.json +++ b/public/locales/lol/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Dockah", - "description": "Allowz u 2 easily manaeg ur torrents" + "description": "" }, "search": { "placeholder": "Search by contaneah or imaeg naym" diff --git a/public/locales/lol/settings/general/search-engine.json b/public/locales/lol/settings/general/search-engine.json index 271d51377..d011753b1 100644 --- a/public/locales/lol/settings/general/search-engine.json +++ b/public/locales/lol/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "Quewee URL", "placeholder": "Custom quewee URL" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file diff --git a/public/locales/nl/modules/docker.json b/public/locales/nl/modules/docker.json index 3fc2cb948..ee2a048ee 100644 --- a/public/locales/nl/modules/docker.json +++ b/public/locales/nl/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Maakt het mogelijk om gemakkelijk je torrents te beheren" + "description": "" }, "search": { "placeholder": "Zoek op container of afbeeldingsnaam" diff --git a/public/locales/nl/settings/general/search-engine.json b/public/locales/nl/settings/general/search-engine.json index bb98fb9f3..7ef1b89da 100644 --- a/public/locales/nl/settings/general/search-engine.json +++ b/public/locales/nl/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "Query URL", "placeholder": "Eigen query URL" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file diff --git a/public/locales/pl/modules/docker.json b/public/locales/pl/modules/docker.json index 4ebada428..3e0ad09e5 100644 --- a/public/locales/pl/modules/docker.json +++ b/public/locales/pl/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Umożliwia łatwe zarządzanie torrentami" + "description": "" }, "search": { "placeholder": "Szukaj według kontenera nazwy lub obrazu" diff --git a/public/locales/pl/settings/general/search-engine.json b/public/locales/pl/settings/general/search-engine.json index 255ab34e7..3365d9024 100644 --- a/public/locales/pl/settings/general/search-engine.json +++ b/public/locales/pl/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "Adres URL zapytania", "placeholder": "Własny adres URL zapytania" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file diff --git a/public/locales/pt/modules/docker.json b/public/locales/pt/modules/docker.json index 62dd703ef..fee767599 100644 --- a/public/locales/pt/modules/docker.json +++ b/public/locales/pt/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Permite que você gerencie facilmente seus torrents" + "description": "" }, "search": { "placeholder": "Procurar por conainer ou imagem" diff --git a/public/locales/pt/settings/general/search-engine.json b/public/locales/pt/settings/general/search-engine.json index 20a3b127a..df277ccef 100644 --- a/public/locales/pt/settings/general/search-engine.json +++ b/public/locales/pt/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "", "placeholder": "" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file diff --git a/public/locales/ru/settings/general/search-engine.json b/public/locales/ru/settings/general/search-engine.json index 20a3b127a..df277ccef 100644 --- a/public/locales/ru/settings/general/search-engine.json +++ b/public/locales/ru/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "", "placeholder": "" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file diff --git a/public/locales/sl/modules/docker.json b/public/locales/sl/modules/docker.json index c5b369cbe..9f6491778 100644 --- a/public/locales/sl/modules/docker.json +++ b/public/locales/sl/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Omogoča enostavno upravljanje torrentov" + "description": "" }, "search": { "placeholder": "Iskanje po zabojniku ali imenu njegove slike" diff --git a/public/locales/sl/settings/general/search-engine.json b/public/locales/sl/settings/general/search-engine.json index 6c559e498..829340fec 100644 --- a/public/locales/sl/settings/general/search-engine.json +++ b/public/locales/sl/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "URL poizvedbe", "placeholder": "URL poizvedbe po meri" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file diff --git a/public/locales/sv/modules/docker.json b/public/locales/sv/modules/docker.json index 462ce6483..1cd48d13f 100644 --- a/public/locales/sv/modules/docker.json +++ b/public/locales/sv/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Låter dig enkelt hantera dina docker images" + "description": "Låter dig enkelt hantera dina docker containers" }, "search": { "placeholder": "Sök efter container eller imagenamn" diff --git a/public/locales/sv/settings/general/search-engine.json b/public/locales/sv/settings/general/search-engine.json index 96c16a3ba..d602e80f8 100644 --- a/public/locales/sv/settings/general/search-engine.json +++ b/public/locales/sv/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "URL för förfrågan", "placeholder": "Anpassad sök-URL" + }, + "searchNewTab": { + "label": "Öppna sökresultaten i en ny flik" } } \ No newline at end of file diff --git a/public/locales/uk/modules/docker.json b/public/locales/uk/modules/docker.json index 9fbe1c377..b9dab4f7d 100644 --- a/public/locales/uk/modules/docker.json +++ b/public/locales/uk/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "Дозволяє легко керувати торентами" + "description": "" }, "search": { "placeholder": "Пошук по назві контейнера або образу" diff --git a/public/locales/uk/settings/general/search-engine.json b/public/locales/uk/settings/general/search-engine.json index 045b22a10..f4b27efd6 100644 --- a/public/locales/uk/settings/general/search-engine.json +++ b/public/locales/uk/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "URL-адреса запиту", "placeholder": "Власна URL-адреса запиту" + }, + "searchNewTab": { + "label": "Відкрити результати пошуку у новій вкладці" } } \ No newline at end of file diff --git a/public/locales/zh/modules/docker.json b/public/locales/zh/modules/docker.json index bd1a41700..e91d1ba75 100644 --- a/public/locales/zh/modules/docker.json +++ b/public/locales/zh/modules/docker.json @@ -1,7 +1,7 @@ { "descriptor": { "name": "Docker", - "description": "允许你轻松地管理你的torrent文件" + "description": "" }, "search": { "placeholder": "按容器或图像名称搜索" diff --git a/public/locales/zh/settings/general/search-engine.json b/public/locales/zh/settings/general/search-engine.json index b29f05d67..ae232afc9 100644 --- a/public/locales/zh/settings/general/search-engine.json +++ b/public/locales/zh/settings/general/search-engine.json @@ -7,5 +7,8 @@ "customEngine": { "label": "查询网址", "placeholder": "自定义查询网址" + }, + "searchNewTab": { + "label": "" } } \ No newline at end of file