summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-05-12 21:41:45 +0000
committerBharat Mediratta <bharat@menalto.com>2009-05-12 21:41:45 +0000
commitb1ea27a1b9c221aef1b40a864576d6376270b884 (patch)
tree104248a9028f11164877b4c3fcc2a5701ac48b64
parentdf3a1e730e285cf8a9c189cb602f7d5dee651101 (diff)
Beautify the status text
-rw-r--r--modules/g2_import/helpers/g2_import_task.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/g2_import/helpers/g2_import_task.php b/modules/g2_import/helpers/g2_import_task.php
index 07244bc1..92ea33d7 100644
--- a/modules/g2_import/helpers/g2_import_task.php
+++ b/modules/g2_import/helpers/g2_import_task.php
@@ -84,7 +84,7 @@ class g2_import_task_Core {
}
g2_import::import_group($queue);
$task->status = t(
- "Importing groups %count / %total",
+ "Importing groups (%count of %total)",
array("count" => $done["groups"] + 1, "total" => $stats["groups"]));
break;
@@ -95,7 +95,7 @@ class g2_import_task_Core {
}
g2_import::import_user($queue);
$task->status = t(
- "Importing users %count / %total",
+ "Importing users (%count of %total)",
array("count" => $done["users"] + 1, "total" => $stats["users"]));
break;
@@ -105,7 +105,7 @@ class g2_import_task_Core {
}
g2_import::import_album($queue);
$task->status = t(
- "Importing albums %count / %total",
+ "Importing albums (%count of %total)",
array("count" => $done["albums"] + 1, "total" => $stats["albums"]));
break;
@@ -117,7 +117,7 @@ class g2_import_task_Core {
g2_import::import_item($queue);
$task->status = t(
- "Importing photos/movies %count / %total",
+ "Importing photos (%count of %total)",
array("count" => $done["items"] + 1, "total" => $stats["items"]));
break;
@@ -128,7 +128,7 @@ class g2_import_task_Core {
}
g2_import::import_comment($queue);
$task->status = t(
- "Importing comments %count / %total",
+ "Importing comments (%count of %total)",
array("count" => $done["comments"] + 1, "total" => $stats["comments"]));
break;
@@ -140,7 +140,7 @@ class g2_import_task_Core {
}
g2_import::import_tags_for_item($queue);
$task->status = t(
- "Importing tags %count / %total",
+ "Importing tags (%count of %total)",
array("count" => $done["tags"] + 1, "total" => $stats["tags"]));
break;