1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-29 16:07:40 +01:00

Change en.json and fix maintance page (we maintain tmr)

This commit is contained in:
Cooper Ransom 2024-03-04 14:10:16 -05:00
parent 449005003b
commit dbe828562c
2 changed files with 13 additions and 18 deletions

View file

@ -1,6 +1,6 @@
{
"about": {
"description": "sudo-flix is a fork of movie-web that is ensured to stay up even after the shutdown of movie-web.app, sudo-flix.lol will soon (if not already) use a offshore .ru domain to ensure we do not get suspended. sudo-flix.lol is a namecheap domain that simply points to sudo-flix.ru.",
"description": "sudo-flix is a fork of movie-web that is ensured to stay up even after the shutdown of movie-web.app, sudo-flix.lol will soon (if not already) use a offshore .ru domain to ensure we do not get suspended. sudo-flix.lol is a namecheap domain that simply points to sudo-flix.ru. In addition sudo-flix.lol runs on a private self hosted VPS.",
"faqTitle": "Common questions",
"q1": {
"body": "sudo-flix does not host any content. When you click on something to watch, the internet is searched for the selected media (On the loading screen and in the 'video sources' tab you can see which source you're using). Media never gets uploaded by sudo-flix, everything is through this searching mechanism.",
@ -38,7 +38,7 @@
"passphrasePlaceholder": "Passphrase",
"submit": "Login",
"title": "Login to your account",
"validationError": "Incorrect or incomplete passphrase"
"validationError": "Incorrect or incomplete passphrase /ᐠ. .ᐟ\\"
},
"register": {
"information": {
@ -89,7 +89,7 @@
"dmca": "DMCA",
"github": "GitHub"
},
"tagline": "Watch your favorite shows and movies with this silly 😛 open source streaming app."
"tagline": "Watch your favorite shows and movies for free with no ads ever! (っ'ヮ'c)"
},
"global": {
"name": "sudo-flix",

View file

@ -179,32 +179,27 @@ function App() {
)}
{showDowntime && (
<div className="relative flex flex-1 flex-col">
<Navigation />
<Helmet>
<title>{t("downtimeNotice.title")}</title>
</Helmet>
<Navigation />
<div className="flex h-full flex-1 flex-col items-center justify-center p-5 text-center">
<ErrorLayout>
<ErrorContainer>
<IconPill icon={Icons.WARNING}>
{t("downtimeNotice.badge")}
</IconPill>
<Title>{t("downtimeNotice.title")}</Title>
<Paragraph>{t("downtimeNotice.message")}</Paragraph>
<Trans
i18nKey="downtimeNotice.timeFrame"
components={{
bold: <span className="text-white font-bold" />,
}}
/>
<Button
onClick={handleButtonClick}
theme="purple"
className="mt-6"
>
{t("downtimeNotice.goHome")}
</Button>
<div className="flex gap-3">
<Button
onClick={handleButtonClick}
theme="purple"
className="mt-6"
>
{t("downtimeNotice.goHome")}
</Button>
</div>
</ErrorContainer>
</ErrorLayout>
</div>