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

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Service/CollectionsService.php')
-rw-r--r--lib/Service/CollectionsService.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Service/CollectionsService.php b/lib/Service/CollectionsService.php
index ea22317e..6f7ffa80 100644
--- a/lib/Service/CollectionsService.php
+++ b/lib/Service/CollectionsService.php
@@ -48,32 +48,32 @@ class CollectionsService {
$collections = array(
array(
'id' => "starred",
- 'displayname' => (string)$this->l10n->t('Important'),
+ 'displayName' => (string)$this->l10n->t('Important'),
'show' => 2,
'icon' => 'icon-task-star'),
array(
'id' => "today",
- 'displayname' => (string)$this->l10n->t('Today'),
+ 'displayName' => (string)$this->l10n->t('Today'),
'show' => 2,
'icon' => 'icon-calendar'),
array(
'id' => "week",
- 'displayname' => (string)$this->l10n->t('Week'),
+ 'displayName' => (string)$this->l10n->t('Week'),
'show' => 2,
'icon' => 'icon-calendar'),
array(
'id' => "all",
- 'displayname' => (string)$this->l10n->t('All'),
+ 'displayName' => (string)$this->l10n->t('All'),
'show' => 2,
'icon' => 'icon-all'),
array(
'id' => "current",
- 'displayname' => (string)$this->l10n->t('Current'),
+ 'displayName' => (string)$this->l10n->t('Current'),
'show' => 2,
'icon' => 'icon-current'),
array(
'id' => "completed",
- 'displayname' => (string)$this->l10n->t('Completed'),
+ 'displayName' => (string)$this->l10n->t('Completed'),
'show' => 2,
'icon' => 'icon-checkmark')
);