Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import { Storyline } from '@/pages/Storyline';
import { StorylineEntry } from '@/pages/StorylineEntry';
import { StorylineActivity } from '@/pages/StorylineActivity';
import { InstanceStatistics } from '@/pages/InstanceStatistics';
import { InstanceHub } from '@/pages/InstanceHub';

// Extend the Window interface to include gtag
declare global {
Expand Down Expand Up @@ -139,6 +140,9 @@ const App = () => {
/>

<Route path="/instances" element={<Instances />} />
<Route path="/instance/:id" element={<InstanceHub tab="runs" />} />
<Route path="/instance/:id/characters" element={<InstanceHub tab="characters" />} />
<Route path="/instance/:id/leaderboards" element={<InstanceHub tab="leaderboards" />} />
<Route path="/instance-statistics/:id" element={<InstanceStatistics />} />

<Route path="/storylines" element={<Storylines />} />
Expand Down
44 changes: 44 additions & 0 deletions src/i18n/en/pages.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@
"questGivers": "Quest Givers"
},
"instances": {
"title": "Instances",
"search": "Search",
"name": "Name",
"encounters": "Encounters",
Expand Down Expand Up @@ -243,5 +244,48 @@
"taskNumber": "#",
"taskName": "Task",
"zone": "Zone"
},
"instanceHub": {
"title": "Instance",
"runsTab": "Runs",
"charactersTab": "Characters",
"leaderboardsTab": "Leaderboards",
"recentRunsNote": "Based on the most recent {{count}} runs.",
"totalRuns": "Runs loaded",
"completed": "Completed",
"notCompleted": "Wiped",
"character": "Character",
"career": "Career",
"runsCount": "Runs",
"lastRun": "Last Run",
"totalDamage": "Total Damage",
"totalHealing": "Total Healing",
"totalProtection": "Total Protection",
"totalDeaths": "Total Deaths",
"role": "Role",
"realm": "Realm",
"metric": "Metric",
"any": "Any",
"tank": "Tank",
"healer": "Healer",
"dps": "DPS",
"damage": "Damage",
"healing": "Healing",
"protection": "Protection",
"rank": "Rank",
"level": "Level",
"bestRun": "Best Run",
"time": "Time",
"rangeRecent": "Most recent 50",
"range24h": "Last 24 hours",
"range7d": "Last 7 days",
"range30d": "Last 30 days",
"range90d": "Last 90 days",
"rangeYtd": "Year to date",
"rangeCustom": "Custom dates",
"startDate": "Start",
"endDate": "End",
"gatheringRuns": "gathering {{loaded}} of {{total}}",
"rangeRunsNote": "{{count}} runs · {{rangeLabel}}"
}
}
Loading