i18n: Mark missing string as translatable

This commit is contained in:
Łukasz Jernaś 2011-05-13 19:48:24 +02:00
parent c3b6764da8
commit 6c354b2473

View file

@ -666,7 +666,7 @@ namespace SparkleShare {
commit.Deleted.Count) - 1;
if (changes_count > 0)
message += "" + String.Format (" and {0} more", changes_count);
message += "" + String.Format (Catalog.GetPluralString(" and {0} more", " and {0} more",changes_count) , changes_count);
return message;
}