From 95fc792745f3604dc787b35ee12fc1ff7cbcbab7 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Fri, 2 Oct 2015 15:48:44 +0200 Subject: [PATCH] Tray: Change texts #3657 --- src/gui/owncloudgui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp index 6cc71ba244..0ad7a31dfa 100644 --- a/src/gui/owncloudgui.cpp +++ b/src/gui/owncloudgui.cpp @@ -446,7 +446,7 @@ void ownCloudGui::setupContextMenu() _contextMenu->addSeparator(); if (atLeastOneSignedIn) { if (accountList.count() > 1) { - _actionLogout->setText(tr("Log out everywhere")); + _actionLogout->setText(tr("Log out of all accounts")); } else { _actionLogout->setText(tr("Log out")); } @@ -454,7 +454,7 @@ void ownCloudGui::setupContextMenu() } if (atLeastOneSignedOut) { if (accountList.count() > 1) { - _actionLogin->setText(tr("Log in everywhere...")); + _actionLogin->setText(tr("Log in to all accounts...")); } else { _actionLogin->setText(tr("Log in...")); }