controller: 'did something magical' should only appear when no files changed

This commit is contained in:
Hylke Bons 2011-05-17 14:36:25 +01:00
parent d1155b6ae9
commit b6e4f47319

View file

@ -645,7 +645,7 @@ namespace SparkleShare {
if (changes_count > 0) {
string msg = Catalog.GetPluralString ("and {0} more", "and {0} more", changes_count);
message += " " + String.Format (msg, changes_count);
} else {
} else if (changes_count < 0) {
message += _("did something magical");
}