mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
Global search, found cards count is now substituted by the translation function itself
This commit is contained in:
parent
184fd3abdd
commit
a7721b9048
1 changed files with 1 additions and 1 deletions
|
|
@ -168,7 +168,7 @@ export class CardSearchPagedComponent extends BlazeComponent {
|
||||||
} else if (this.resultsCount === 1) {
|
} else if (this.resultsCount === 1) {
|
||||||
return TAPi18n.__('one-card-found');
|
return TAPi18n.__('one-card-found');
|
||||||
} else if (this.resultsCount === this.totalHits) {
|
} else if (this.resultsCount === this.totalHits) {
|
||||||
return TAPi18n.__('n-cards-found').replace('%s', this.resultsCount);
|
return TAPi18n.__('n-cards-found', {sprintf: [this.resultsCount]});
|
||||||
}
|
}
|
||||||
|
|
||||||
return TAPi18n.__('n-n-of-n-cards-found', {
|
return TAPi18n.__('n-n-of-n-cards-found', {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue