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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKlaas Freitag <freitag@owncloud.com>2013-09-02 19:37:16 +0400
committerKlaas Freitag <freitag@owncloud.com>2013-09-02 19:37:16 +0400
commit81c720c05bcd37f1cd804b0028f6164e4c7f95bf (patch)
tree8c33bf46e69318aacee44001031164b59410cec1 /src
parentedcdcb945a68ac0434410e826b1f313221ebdef6 (diff)
Remove dots from the end of error messages.
Diffstat (limited to 'src')
-rw-r--r--src/mirall/itemprogressdialog.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mirall/itemprogressdialog.cpp b/src/mirall/itemprogressdialog.cpp
index 2252c7c71..b9fd29298 100644
--- a/src/mirall/itemprogressdialog.cpp
+++ b/src/mirall/itemprogressdialog.cpp
@@ -117,9 +117,9 @@ void ItemProgressDialog::setSyncResult( const SyncResult& result )
columns << folder;
if( item._instruction == CSYNC_INSTRUCTION_IGNORE) {
if( item._type == SyncFileItem::SoftLink ) {
- errMsg = tr("Soft Link ignored.");
+ errMsg = tr("Soft Link ignored");
tooltip = tr("Softlinks break the semantics of synchronization.\nPlease do not "
- "use them in synced directories.");
+ "use them in synced directories");
} else {
QString obj = tr("file");
if( item._type == SyncFileItem::Directory ) {
@@ -127,16 +127,16 @@ void ItemProgressDialog::setSyncResult( const SyncResult& result )
}
tooltip = tr("The %1 was ignored because it is listed in the clients ignore list\n"
"or the %1 name contains characters that are not syncable\nin a cross platform "
- "environment.").arg(obj);
- errMsg = tr("Item ignored.");
+ "environment").arg(obj);
+ errMsg = tr("Item ignored");
if( item._errorString == QLatin1String("File listed on ignore list.") ) {
- errMsg = tr("%1 on ignore list.").arg(obj);
- tooltip = tr("The %1 was skipped because it is listed on the clients list of names\n"
- "to ignore.").arg(obj);
+ errMsg = tr("%1 on ignore list").arg(obj);
+ tooltip = tr("The %1 was skipped because it is listed on the clients\n"
+ "list of names to ignore").arg(obj);
} else if( item._errorString == QLatin1String("File contains invalid characters.") ) {
- errMsg = tr("Invalid characters.");
+ errMsg = tr("Invalid characters");
tooltip = tr("The %1 name contains one or more invalid characters which break\n"
- "syncing in a cross platform environment.").arg(obj);
+ "syncing in a cross platform environment").arg(obj);
}
}
} else if( item._instruction == CSYNC_INSTRUCTION_CONFLICT ) {