Skip to content

Commit

Permalink
Fix bugs (#794)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgiakatos authored May 22, 2024
1 parent 3709844 commit b02aeb9
Show file tree
Hide file tree
Showing 5 changed files with 213 additions and 38 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ihr-website",
"version": "1.3.3",
"version": "1.3.4",
"private": true,
"type": "module",
"scripts": {
Expand Down
12 changes: 8 additions & 4 deletions src/components/networks/rank/RankCustom.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,10 @@ onMounted(() => {
</QCardSection>
</QCard>
<GenericCardController
title="AS rankings"
:sub-title="'Top ASes in '+pageTitle"
:title="$t('iyp.rank.topAs.title')"
:sub-title="$t('iyp.rank.topAs.caption')+pageTitle"
:info-title="$t('iyp.rank.topAs.info.title')"
:info-description="$t('iyp.rank.topAs.info.description')"
class="card"
v-if="selects[0].value"
>
Expand All @@ -112,8 +114,10 @@ onMounted(() => {
/>
</GenericCardController>
<GenericCardController
title="Hostname rankings"
:sub-title="'Top Hostnames in '+pageTitle+' (limited to 100K)'"
:title="$t('iyp.rank.topHostnames.title')"
:sub-title="$t('iyp.rank.topHostnames.caption')+pageTitle+' (limited to 100K)'"
:info-title="$t('iyp.rank.topHostnames.info.title')"
:info-description="$t('iyp.rank.topHostnames.info.description')"
class="card"
v-if="selects[1].value"
>
Expand Down
10 changes: 10 additions & 0 deletions src/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1106,6 +1106,16 @@
"description": "<p>More specific prefixes covered by the selected prefix.</p>"
}
}
},
"rank": {
"topAs": {
"title": "AS rankings",
"caption": "Top ASes in "
},
"topHostnames": {
"title": "Hostname rankings",
"caption": "Top Hostnames in "
}
}
}
}
Loading

0 comments on commit b02aeb9

Please sign in to comment.