Skip to content

Commit

Permalink
remove unnecessary translation
Browse files Browse the repository at this point in the history
  • Loading branch information
J0ris-K committed Dec 16, 2024
1 parent df1d9b2 commit 8b9f135
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
<span class="typo p3-regular label">
{{ $t('core.select.n-object-of', { from: startIndex, to: endIndex, total: totalItems }) }}
</span>
<span class="typo p3-regular label"> {{ $t('core.separator') }}</span>
<span class="typo p3-regular label">{{ $t('core.show-by') }}</span>
<span class="typo p3-regular label show">{{ $t('core.show-by') }}</span>
<div class="dropdown-wrapper">
<select v-model="pageSize" :disabled class="dropdown typo c3-regular" @change="goToFirstPage">
<option v-for="option in pageSizeOptions" :key="option" :value="option" class="typo p2-medium">
Expand Down Expand Up @@ -94,6 +93,11 @@ watch([currentPage, currentPageSize], ([newPage, newPageSize]) => {
color: var(--color-neutral-txt-secondary);
}

.show::before {
content: '-';
margin-right: 0.8rem;
}

.dropdown-wrapper {
position: relative;

Expand Down
1 change: 0 additions & 1 deletion @xen-orchestra/web-core/lib/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"core.quick-actions": "Quick actions",

"core.search": "Search",
"core.separator": "-",
"core.show-by": "Show by",

"core.query-search-bar.label": "Search Engine",
Expand Down
1 change: 0 additions & 1 deletion @xen-orchestra/web-core/lib/locales/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"core.quick-actions": "Actions rapides",

"core.search": "Rechercher",
"core.separator": "-",
"core.show-by": "Afficher par",

"core.query-search-bar.label": "Moteur de recherche",
Expand Down

0 comments on commit 8b9f135

Please sign in to comment.