diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-09-08 21:39:35 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-09-08 21:39:35 -0700 |
commit | 36f3a0387ddc484ebe867cf284aaf05f6ce6e5e1 (patch) | |
tree | 2cbbcdb4d909636b67bade8614c3f09cd5a71609 /modules | |
parent | 5cd34160af2fa1d4499d98aaa807712995082a20 (diff) |
Tighten up the "your gallery2 has xxx in it" info display.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/g2_import/views/admin_g2_import.html.php | 36 |
1 files changed, 11 insertions, 25 deletions
diff --git a/modules/g2_import/views/admin_g2_import.html.php b/modules/g2_import/views/admin_g2_import.html.php index a1ee53f6..564bea9f 100644 --- a/modules/g2_import/views/admin_g2_import.html.php +++ b/modules/g2_import/views/admin_g2_import.html.php @@ -36,31 +36,17 @@ <? endif ?> <li class="g-info"> - <?= t("Your Gallery 2 has the following importable data in it") ?> - <ul> - <li> - <?= t2("1 user", "%count users", $g2_stats["users"]) ?> - </li> - <li> - <?= t2("1 group", "%count groups", $g2_stats["groups"]) ?> - </li> - <li> - <?= t2("1 album", "%count albums", $g2_stats["albums"]) ?> - </li> - <li> - <?= t2("1 photo", "%count photos", $g2_stats["photos"]) ?> - </li> - <li> - <?= t2("1 movie", "%count movies", $g2_stats["movies"]) ?> - </li> - <li> - <?= t2("1 comment", "%count comments", $g2_stats["comments"]) ?> - </li> - <li> - <?= t2("1 tagged photo/movie/album", - "%count tagged photos/movies/albums", $g2_stats["tags"]) ?> - </li> - </ul> + <?= t("Your Gallery 2 has the following importable data in it:") ?> + <p> + <?= t2("1 user", "%count users", $g2_stats["users"]) ?>, + <?= t2("1 group", "%count groups", $g2_stats["groups"]) ?>, + <?= t2("1 album", "%count albums", $g2_stats["albums"]) ?>, + <?= t2("1 photo", "%count photos", $g2_stats["photos"]) ?>, + <?= t2("1 movie", "%count movies", $g2_stats["movies"]) ?>, + <?= t2("1 comment", "%count comments", $g2_stats["comments"]) ?>, + <?= t2("1 tagged photo/movie/album", + "%count tagged photos/movies/albums", $g2_stats["tags"]) ?> + </p> </li> </ul> |