if (g2_import::is_initialized()): ?>
= t("Import") ?>
@@ -51,59 +34,79 @@
"url" => html::mark_clean(url::site("admin/theme_options")))) ?>
endif ?>
-
-
-
+
= t("Your Gallery 2 has the following importable data in it") ?>
-
-
- -
- = 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 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"]) ?>
+
+
+
+
+
+
+ ">
+ = t("Begin import!") ?>
+
+
+
+
+
+
+
= t("Notes") ?>
+
-
- = t2("1 photo", "%count photos", $g2_stats["photos"]) ?>
+ = t("Gallery 3 does not support per-user / per-item permissions. Review permissions after your import is done.") ?>
-
- = t2("1 movie", "%count movies", $g2_stats["movies"]) ?>
+ = t("The only supported file formats are JPG, PNG and GIF, FLV and MP4. Other formats will be skipped.") ?>
-
- = t2("1 comment", "%count comments", $g2_stats["comments"]) ?>
+ = t("Deactivating the notification, search and exif modules during your import will make it go faster.") ?>
-
- = t2("1 tagged photo/movie/album",
- "%count tagged photos/movies/albums", $g2_stats["tags"]) ?>
+ = t("The eAccelerator and XCache PHP performance extensions are known to cause issues. If you're using either of those and are having problems, please disable them while you do your import. Add the following lines:
%lines
to gallery3/.htaccess and remove them when the import is done.", array("lines" => "\n\n php_value eaccelerator.enable 0\n php_value xcache.cacher off\n php_value xcache.optimizer off\n\n")) ?>
-
-
- ">
- = t("Begin import!") ?>
-
-
-
-
= t("Migrating from Gallery 2") ?>
-
- = t("Once your migration is complete, put this block at the top of your gallery2/.htaccess file and all Gallery 2 urls will be redirected to Gallery 3") ?>
-
+
+
+
= t("Migrating from Gallery 2") ?>
+
+ = t("Once your migration is complete, put this block at the top of your gallery2/.htaccess file and all Gallery 2 urls will be redirected to Gallery 3") ?>
+
-
+ endif ?>
- endif ?>
diff --git a/themes/admin_wind/css/screen.css b/themes/admin_wind/css/screen.css
index eda79b97..0d891149 100644
--- a/themes/admin_wind/css/screen.css
+++ b/themes/admin_wind/css/screen.css
@@ -222,6 +222,11 @@ th {
background-color: #fff;
}
+ul.enumeration li {
+ list-style-type: disc;
+ margin-left: 20px;
+}
+
/*** ******************************************************************
* 3) Page layout containers
*********************************************************************/
--
cgit v1.2.3
From 36f3a0387ddc484ebe867cf284aaf05f6ce6e5e1 Mon Sep 17 00:00:00 2001
From: Bharat Mediratta
Date: Wed, 8 Sep 2010 21:39:35 -0700
Subject: Tighten up the "your gallery2 has xxx in it" info display.
---
modules/g2_import/views/admin_g2_import.html.php | 36 ++++++++----------------
1 file changed, 11 insertions(+), 25 deletions(-)
(limited to 'modules/g2_import')
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 ?>
- = t("Your Gallery 2 has the following importable data in it") ?>
-
- -
- = 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"]) ?>
-
-
+ = t("Your Gallery 2 has the following importable data in it:") ?>
+
+ = 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"]) ?>
+
--
cgit v1.2.3