Skip to content

Commit

Permalink
Merge branch 'issues/21-add-belongs-to-hits-view' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
Timtam committed Jan 25, 2025
2 parents 522e08c + 0fa28d7 commit 0392a84
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/src/locale/de.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and: und
artist: Interpret
automatic: Automatisch
beforeYear: vor {{year}}
belongsTo: Zugehörig zu
betweenYears: von {{year1}} bis {{year2}}
cancel: Abbrechen
cannotClaimHit: Du kannst dir derzeit keinen Hit nehmen
Expand Down
1 change: 1 addition & 0 deletions client/src/locale/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and: and
artist: Artist
automatic: Automatic
beforeYear: before {{year}}
belongsTo: Belongs to
betweenYears: between {{year1}} and {{year2}}
cancel: Cancel
cannotClaimHit: You cannot claim a hit right now
Expand Down
2 changes: 2 additions & 0 deletions client/src/pages/game/hits-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export default ({
<th>{t("artist")}</th>
<th>{t("title")}</th>
<th>{t("year")}</th>
<th>{t("belongsTo")}</th>
<th>
{t("pack", {
count: 1,
Expand All @@ -55,6 +56,7 @@ export default ({
<td>{h.artist}</td>
<td>{h.title}</td>
<td>{h.year}</td>
<td>{h.belongs_to}</td>
<td>{h.pack}</td>
<td>
<HitPlayer
Expand Down

0 comments on commit 0392a84

Please sign in to comment.