This commit is contained in:
Jordan Lee 2013-02-18 14:45:44 +00:00
parent bb0b5e139a
commit de6d57af43
2 changed files with 3 additions and 1 deletions

View File

@ -895,8 +895,10 @@ tr_device_info_create (const char * path)
info = tr_new0 (struct tr_device_info, 1);
info->path = tr_strdup (path);
#ifndef WIN32
info->device = tr_strdup (getblkdev (path));
info->fstype = tr_strdup (getfstype (path));
#endif
return info;
}

View File

@ -47,7 +47,7 @@ FreespaceLabel :: setPath (const QString& path)
{
if (myPath != path)
{
setText (tr("<i>Counting Free Space...</i>"));
setText (tr("<i>Calculating Free Space...</i>"));
myPath = path;
onTimer ();
}