Skip to content

Commit

Permalink
Apply suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmanczak committed Aug 13, 2024
1 parent e74720f commit 446b625
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/oxford-debate/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function OxfordDebate() {
const startspeech = useLang("startspeech");
const stopspeech = useLang("stopspeech");
const debateconfig = useLang("oxfordDebateConfiguration");
const debatedoneenthusiastic = useLang("debateFinishedEnthusiastic");
const debateFinishedEnthusiastic = useLang("debateFinishedEnthusiastic");

const conf = useContext(DebateContext).conf;

Expand Down Expand Up @@ -156,7 +156,7 @@ export default function OxfordDebate() {
{/* debate finished */}
{stage === 8 && (
<div className="w-full h-full flex flex-col gap-5 justify-center items-center absolute">
<p className="text-3xl font-semibold">{debatedoneenthusiastic}</p>
<p className="text-3xl font-semibold">{debateFinishedEnthusiastic}</p>
<p className="animate-wiggle text-6xl">{"🎉"}</p>
</div>
)}
Expand Down
3 changes: 2 additions & 1 deletion src/data/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,7 @@
},
"debateFinishedEnthusiastic": {
"en": "Debate finished!",
"pl": "Debata zakończona!"
"pl": "Debata zakończona!",
"de": "Debatte geendet!"
}
}

0 comments on commit 446b625

Please sign in to comment.