make more strings transletable

This commit is contained in:
Hylke Bons 2010-06-12 18:03:15 +01:00
parent 49876ee61f
commit 37972c42bf

View file

@ -286,11 +286,16 @@ namespace SparkleShare {
Process.WaitForExit (); Process.WaitForExit ();
Process.Start (); Process.Start ();
ShowEventBubble ("A mid-air collision happened!\n" + string ConflictTitle = "A mid-air collision happened!\n";
"SparkleShare made a copy of your file.", string ConflictSubtext =
SparkleHelpers.GetIcon @"Don't worry, SparkleShare made\n
("folder-sparkleshare", 48), a copies of the conflicting files.";
true);
SparkleBubble ConflictBubble =
new SparkleBubble(_(ConflictTitle), _(ConflictSubtext));
ConflictBubble.Show ();
} }
} }
@ -459,8 +464,8 @@ namespace SparkleShare {
} }
// Shows a notification with text and image // Shows a notification with text and image
public void ShowEventBubble (string Title, public void ShowEventBubble (string Title,
Gdk.Pixbuf Avatar, Gdk.Pixbuf Avatar,
bool ShowButtons) { bool ShowButtons) {
SparkleBubble StuffChangedBubble = new SparkleBubble (Title, ""); SparkleBubble StuffChangedBubble = new SparkleBubble (Title, "");