[Pkg-owncloud-commits] [owncloud-client] 10/171: UI: Sign in/out -> Log in/out #4249
Sandro Knauß
hefee-guest at moszumanska.debian.org
Wed Feb 17 09:36:43 UTC 2016
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to annotated tag upstream/2.1.1+dfsg
in repository owncloud-client.
commit d92c8bec8603ac74a41a7b0c49949a784c2ee91d
Author: Christian Kamm <mail at ckamm.de>
Date: Tue Dec 8 12:05:14 2015 +0100
UI: Sign in/out -> Log in/out #4249
---
src/gui/accountsettings.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/gui/accountsettings.cpp b/src/gui/accountsettings.cpp
index 7e58b81..1284940 100644
--- a/src/gui/accountsettings.cpp
+++ b/src/gui/accountsettings.cpp
@@ -143,7 +143,7 @@ void AccountSettings::createAccountToolbox()
menu->addAction(_addAccountAction);
connect(_addAccountAction, SIGNAL(triggered(bool)), SLOT(slotOpenAccountWizard()));
- _toggleSignInOutAction = new QAction(tr("Sign out"), this);
+ _toggleSignInOutAction = new QAction(tr("Log out"), this);
connect(_toggleSignInOutAction, SIGNAL(triggered(bool)), SLOT(slotToggleSignInState()));
menu->addAction(_toggleSignInOutAction);
@@ -572,9 +572,9 @@ void AccountSettings::slotAccountStateChanged(int state)
if( _accountState ) {
bool isConnected = _accountState->isConnected();
if( isConnected ) {
- _toggleSignInOutAction->setText(tr("Sign out"));
+ _toggleSignInOutAction->setText(tr("Log out"));
} else {
- _toggleSignInOutAction->setText(tr("Sign in"));
+ _toggleSignInOutAction->setText(tr("Log in"));
}
}
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git
More information about the Pkg-owncloud-commits
mailing list