[Pkg-owncloud-commits] [owncloud-client] 97/218: GUI: Replace term "sign in" with "Log in" and friends.
Sandro Knauß
hefee-guest at moszumanska.debian.org
Sat Oct 17 14:30:51 UTC 2015
This is an automated email from the git hooks/post-receive script.
hefee-guest pushed a commit to branch master
in repository owncloud-client.
commit 5f660bf080a57172bab091007e0be0146b4ec918
Author: Klaas Freitag <freitag at owncloud.com>
Date: Thu Sep 10 17:16:22 2015 +0200
GUI: Replace term "sign in" with "Log in" and friends.
Also with doc changes.
---
doc/navigating.rst | 2 +-
doc/visualtour.rst | 2 +-
src/gui/owncloudgui.cpp | 16 ++++++++--------
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/doc/navigating.rst b/doc/navigating.rst
index 35d2625..595f8c5 100644
--- a/doc/navigating.rst
+++ b/doc/navigating.rst
@@ -56,7 +56,7 @@ The Desktop Client menu provides the following options:
* Recent changes
* Settings
* Help
-* Sign out
+* Log out
* Quit ownCloud
Using the Account Settings Window
diff --git a/doc/visualtour.rst b/doc/visualtour.rst
index f94c4c1..98a3fc7 100644
--- a/doc/visualtour.rst
+++ b/doc/visualtour.rst
@@ -31,7 +31,7 @@ provides the following menu:
since the last restart of ownCloud Client.
* ``Settings...``: provides access to the settings menu.
* ``Help``: Opens a browser to display this help.
-* ``Sign out``: Signs the client of of the server.
+* ``Log out``: Signs the client of of the server.
* ``Quit ownCloud``: Quits ownCloud Client, ending a currently running
sync run.
diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp
index 0aa7d43..58514e0 100644
--- a/src/gui/owncloudgui.cpp
+++ b/src/gui/owncloudgui.cpp
@@ -319,11 +319,11 @@ void ownCloudGui::addAccountContextMenu(AccountStatePtr accountState, QMenu *men
if (separateMenu) {
if (accountState->isSignedOut()) {
- QAction* signin = menu->addAction(tr("Sign in..."));
+ QAction* signin = menu->addAction(tr("Log in..."));
signin->setProperty(propertyAccountC, QVariant::fromValue(accountState));
connect(signin, SIGNAL(triggered()), this, SLOT(slotLogin()));
} else {
- QAction* signout = menu->addAction(tr("Sign out"));
+ QAction* signout = menu->addAction(tr("Log out"));
signout->setProperty(propertyAccountC, QVariant::fromValue(accountState));
connect(signout, SIGNAL(triggered()), this, SLOT(slotLogout()));
}
@@ -444,17 +444,17 @@ void ownCloudGui::setupContextMenu()
_contextMenu->addSeparator();
if (atLeastOneSignedIn) {
if (accountList.count() > 1) {
- _actionLogout->setText(tr("Sign out everywhere"));
+ _actionLogout->setText(tr("Log out everywhere"));
} else {
- _actionLogout->setText(tr("Sign out"));
+ _actionLogout->setText(tr("Log out"));
}
_contextMenu->addAction(_actionLogout);
}
if (atLeastOneSignedOut) {
if (accountList.count() > 1) {
- _actionLogin->setText(tr("Sign in everywhere..."));
+ _actionLogin->setText(tr("Log in everywhere..."));
} else {
- _actionLogin->setText(tr("Sign in..."));
+ _actionLogin->setText(tr("Log in..."));
}
_contextMenu->addAction(_actionLogin);
}
@@ -521,9 +521,9 @@ void ownCloudGui::setupActions()
_actionQuit = new QAction(tr("Quit %1").arg(Theme::instance()->appNameGUI()), this);
QObject::connect(_actionQuit, SIGNAL(triggered(bool)), _app, SLOT(quit()));
- _actionLogin = new QAction(tr("Sign in..."), this);
+ _actionLogin = new QAction(tr("Log in..."), this);
connect(_actionLogin, SIGNAL(triggered()), this, SLOT(slotLogin()));
- _actionLogout = new QAction(tr("Sign out"), this);
+ _actionLogout = new QAction(tr("Log out"), this);
connect(_actionLogout, SIGNAL(triggered()), this, SLOT(slotLogout()));
if(_app->debugMode()) {
--
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