Changed wording: Replaced Protocol against Status.

This commit is contained in:
Klaas Freitag 2013-11-19 15:27:07 +01:00
parent 5c4d240c66
commit a342f63fdf
4 changed files with 8 additions and 8 deletions

View File

@ -25,7 +25,7 @@ Here is an explanation of the individual items in the menu:
* Operation indicator: Shows the status of the current sync process, or
``Up to date`` if server and client are in sync.
* **Recent Changes**: shows the last six files modified by sync operations,
and provides access to the Sync Protocol, which lists all changes
and provides access to the Sync status, which lists all changes
since the last restart of ownCloud Client.
* ``Settings...``: provides access to the settings menu.
* ``Help``: Opens a browser to display this help.
@ -120,12 +120,12 @@ certain DSL lines with very limited upstream capacity.
ownCloud Client will pick up changes immediately, but ongoing operations
will finish using the old settings.
The Sync Protocol
~~~~~~~~~~~~~~~~~
The Sync Status Display
~~~~~~~~~~~~~~~~~~~~~~~
.. index:: sync protocol
.. index:: sync status
The ``Sync Protocol`` window, which can be invoked from either from the main
The ``Sync Status`` window, which can be invoked from either from the main
menu (``Recent Changes`` -> ``Details...``) or the ``Account Settings``
(``Info`` button), will provide you with an in-depth summary of the recent
sync activity. It will also show files that have not been synched (ignored

View File

@ -237,7 +237,7 @@ void ProtocolWidget::copyToClipboard()
}
QApplication::clipboard()->setText(text);
emit guiLog(tr("Copied to clipboard"), tr("The sync protocol has been copied to the clipboard."));
emit guiLog(tr("Copied to clipboard"), tr("The sync status has been copied to the clipboard."));
}
void ProtocolWidget::cleanErrors( const QString& folder ) // FIXME: Use the folder to detect which errors can be deleted.

View File

@ -24,7 +24,7 @@
</font>
</property>
<property name="text">
<string>Detailed Sync Protocol</string>
<string>Detailed Sync Status</string>
</property>
</widget>
</item>

View File

@ -54,7 +54,7 @@ SettingsDialog::SettingsDialog(ownCloudGui *gui, QWidget *parent) :
addAccount(tr("Account"), _accountSettings);
QIcon protocolIcon(QLatin1String(":/mirall/resources/settings.png"));
QListWidgetItem *protocol= new QListWidgetItem(protocolIcon, tr("Protocol"), _ui->labelWidget);
QListWidgetItem *protocol= new QListWidgetItem(protocolIcon, tr("Status"), _ui->labelWidget);
protocol->setSizeHint(QSize(0, 32));
_ui->labelWidget->addItem(protocol);
ProtocolWidget *protocolWidget = new ProtocolWidget;