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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Sein <ivan@struktur.de>2017-04-26 17:45:00 +0300
committerIvan Sein <ivan@struktur.de>2017-04-26 17:45:00 +0300
commitbd0348af7fb132f94ee044e7c697c10504c97329 (patch)
tree892c1c667b77dedf7b8dab76f6aaf05409d058c5 /lib/ContactsMenu/Providers
parent399b3ccc2dcbc84b96e844c42fcd460440bc819f (diff)
Change text capitalization.
Signed-off-by: Ivan Sein <ivan@nextcloud.com>
Diffstat (limited to 'lib/ContactsMenu/Providers')
-rw-r--r--lib/ContactsMenu/Providers/CallProvider.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ContactsMenu/Providers/CallProvider.php b/lib/ContactsMenu/Providers/CallProvider.php
index df889e1f4..3a12d33c3 100644
--- a/lib/ContactsMenu/Providers/CallProvider.php
+++ b/lib/ContactsMenu/Providers/CallProvider.php
@@ -72,7 +72,7 @@ class CallProvider implements IProvider {
$iconUrl = $this->urlGenerator->getAbsoluteURL($this->urlGenerator->imagePath('core', 'actions/video.svg'));
$callUrl = $this->urlGenerator->linkToRouteAbsolute('spreed.page.index') . '?callUser=' . $uid;
- $action = $this->actionFactory->newLinkAction($iconUrl, $this->l10n->t('Video Call'), $callUrl);
+ $action = $this->actionFactory->newLinkAction($iconUrl, $this->l10n->t('Video call'), $callUrl);
$entry->addAction($action);
}