Skip to content

Commit

Permalink
Merge pull request #1469 from goat-community/main
Browse files Browse the repository at this point in the history
Added translation and service down page
  • Loading branch information
EPajares authored Aug 23, 2022
2 parents 09500d8 + e00de0d commit e77a6d0
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 2 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ For more information:

[GOAT Docs](https://plan4better.de/docs/background/)

[GOAT Technical Docs](https://www.open-accessibility.org/docs/quick_start_docker/)

[GOAT demo versions](https://plan4better.de/goatlive/)

[Join GOAT User Group on Telegram](https://t.me/joinchat/EpAk7BYbIF72q7D3OTUCZQ)
Expand Down
86 changes: 86 additions & 0 deletions app/client/public/static/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Under Maintenance!</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: "Poppins", sans-serif;
}

h2 {
font-size: 10rem !important;
font-weight: bold;
color: #2bb381;
display: flex;
justify-content: center;
}

.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.content {
text-align: center;
margin: 3rem 0;
}

.content .main-heading {
font-size: 2.5rem;
font-weight: 700;
}

p {
font-size: 1.3rem;
padding: 0.7rem 0;
}

button {
padding: 1rem;
border-radius: 15px;
outline: none;
border: none;
background: #2bb381;
color: #fff;
font-size: 1.3rem;
cursor: pointer;
}
</style>
</head>

<body>
<div class="container">
<h2>
<img
src="https://raw.githubusercontent.com/cinaaaa/reado/main/tools.webp"
width="250"
height="250"
alt="tool"
/>
</h2>
<div class="content">
<h1 class="main-heading">Under Maintenance!</h1>
<p>
Our services are currently under maintenance. We kindly ask you for your patience. Soon we will be online again.
</p>
<a href="https://plan4better.de/" target="blank">
<button>Back to PlanBetter</i></button>
</a>
</div>
</div>
</body>

</html>
3 changes: 3 additions & 0 deletions app/client/src/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,9 @@
"nursery": "Krippe",
"kindergarten": "Kindergarten",
"primary_school": "Grundschule",
"elementary_school": "Grundschule",
"middle_school": "Middle School",
"high_school": "High School",
"secondary_school": "Weiterführende Schule",
"grundschule": "Grundschule",
"gymnasium": "Gymnasium",
Expand Down
3 changes: 3 additions & 0 deletions app/client/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -785,6 +785,9 @@
"secondary_school": "Secondary school",
"gymnasium": "Gymnasium",
"grundschule": "Grundschule",
"elementary_school": "Elementary school",
"middle_school": "Middle school",
"high_school": "High school",
"realschule": "Realschule",
"hauptschule_mittelschule": "Haupt-/Mittelschule",
"werkrealschule": "Werkrealschule",
Expand Down

0 comments on commit e77a6d0

Please sign in to comment.