mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
add 3 plural forms for now for some translation keys
This commit is contained in:
parent
81d3639570
commit
c3087cae5e
2 changed files with 5 additions and 5 deletions
|
@ -34,7 +34,7 @@
|
||||||
<b-form-group
|
<b-form-group
|
||||||
:label="$t('search.for', { items: itemsName })"
|
:label="$t('search.for', { items: itemsName })"
|
||||||
label-cols-md="auto" label-size="sm" :label-for="id + '-search-input'"
|
label-cols-md="auto" label-size="sm" :label-for="id + '-search-input'"
|
||||||
:invalid-feedback="$t('search.not_found', { items: $tc('items.' + itemsName, 0) })"
|
:invalid-feedback="$tc('search.not_found', 0, { items: $tc('items.' + itemsName, 0) })"
|
||||||
:state="searchState" :disabled="disabled"
|
:state="searchState" :disabled="disabled"
|
||||||
class="mb-0"
|
class="mb-0"
|
||||||
>
|
>
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
</b-dropdown-item-button>
|
</b-dropdown-item-button>
|
||||||
<b-dropdown-text v-if="!criteria && availableOptions.length === 0">
|
<b-dropdown-text v-if="!criteria && availableOptions.length === 0">
|
||||||
<icon iname="exclamation-triangle" />
|
<icon iname="exclamation-triangle" />
|
||||||
{{ $t('items_verbose_items_left', { items: $tc('items.' + itemsName, 0) }) }}
|
{{ $tc('items_verbose_items_left', 0, { items: $tc('items.' + itemsName, 0) }) }}
|
||||||
</b-dropdown-text>
|
</b-dropdown-text>
|
||||||
</b-dropdown>
|
</b-dropdown>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -274,8 +274,8 @@
|
||||||
"services": "no services | service | {c} services",
|
"services": "no services | service | {c} services",
|
||||||
"users": "no users | user | {c} users"
|
"users": "no users | user | {c} users"
|
||||||
},
|
},
|
||||||
"items_verbose_count": "There are {items}. | There is {items}. | There are {items}.",
|
"items_verbose_count": "There are {items}. | There is 1 {items}. | There are {items}.",
|
||||||
"items_verbose_items_left": "There are {items} left.",
|
"items_verbose_items_left": "There are {items} left. | There is 1 {items} left. | There are {items} left.",
|
||||||
"label": "Label",
|
"label": "Label",
|
||||||
"label_for_manifestname": "Label for {name}",
|
"label_for_manifestname": "Label for {name}",
|
||||||
"last_ran": "Last time ran:",
|
"last_ran": "Last time ran:",
|
||||||
|
@ -446,7 +446,7 @@
|
||||||
"save": "Save",
|
"save": "Save",
|
||||||
"search": {
|
"search": {
|
||||||
"for": "Search for {items}...",
|
"for": "Search for {items}...",
|
||||||
"not_found": "There are {items} matching your criteria."
|
"not_found": "There are {items} matching your criteria. | There is 1 {items} matching your criteria. | There are {items} matching your criteria."
|
||||||
},
|
},
|
||||||
"select_all": "Select all",
|
"select_all": "Select all",
|
||||||
"select_none": "Select none",
|
"select_none": "Select none",
|
||||||
|
|
Loading…
Add table
Reference in a new issue