Change some wording: 'Up to date' to 'Files up to date'

This commit is contained in:
Hylke Bons 2012-02-23 03:11:00 +01:00
parent 42c004e593
commit 27205d452c
2 changed files with 4 additions and 4 deletions

View file

@ -85,7 +85,7 @@ namespace SparkleShare {
if (Controller.Folders.Length == 0)
StateText = _("Welcome to SparkleShare!");
else
StateText = _("Up to date") + Controller.FolderSize;
StateText = _("Files up to date") + Controller.FolderSize;
CreateMenu ();
@ -112,7 +112,7 @@ namespace SparkleShare {
if (Controller.Folders.Length == 0)
StateText = _("Welcome to SparkleShare!");
else
StateText = _("Up to date") + Controller.FolderSize;
StateText = _("Files up to date") + Controller.FolderSize;
StateMenuItem.Title = StateText;
CreateMenu ();

View file

@ -75,7 +75,7 @@ namespace SparkleShare {
if (Controller.Folders.Length == 0)
this.state_text = _("Welcome to SparkleShare!");
else
this.state_text = _("Up to date") + Controller.FolderSize;
this.state_text = _("Files up to date") + Controller.FolderSize;
CreateMenu ();
@ -99,7 +99,7 @@ namespace SparkleShare {
if (Controller.Folders.Length == 0)
this.state_text = _("Welcome to SparkleShare!");
else
this.state_text = _("Up to date") + Controller.FolderSize;
this.state_text = _("Files up to date") + Controller.FolderSize;
#if HAVE_APP_INDICATOR
this.indicator.IconName = "process-syncing-sparkleshare-i";