Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2022-01-27 13:16:19 +0300
committerdartcafe <github@dartcafe.de>2022-01-27 13:16:19 +0300
commit04bbe7f5eaa5cff8929495e3ff1b6d6e952b897e (patch)
tree88c930493376429bcb02fdd5cfc6b7cf77796213 /lib
parent95cac7062a4007c5fd9d3b3253e69597a09ce920 (diff)
fix translation #2211
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/Provider/SearchProvider.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Provider/SearchProvider.php b/lib/Provider/SearchProvider.php
index e276b70a..129db3eb 100644
--- a/lib/Provider/SearchProvider.php
+++ b/lib/Provider/SearchProvider.php
@@ -66,7 +66,7 @@ class SearchProvider implements IProvider {
}
public function getName(): string {
- return $this->l10n->t('polls', 'Polls');
+ return $this->l10n->t('Polls');
}
public function search(IUser $user, ISearchQuery $query): SearchResult {
@@ -85,7 +85,7 @@ class SearchProvider implements IProvider {
}, $results);
return SearchResult::complete(
- $this->l10n->t('polls', 'Polls'),
+ $this->l10n->t('Polls'),
$resultEntries
);
}