diff --git a/ext/bulk_add_csv/info.php b/ext/bulk_add_csv/info.php index 35f72e1f..71230903 100644 --- a/ext/bulk_add_csv/info.php +++ b/ext/bulk_add_csv/info.php @@ -9,16 +9,16 @@ class BulkAddCSVInfo extends ExtensionInfo public $url = self::SHIMMIE_URL; public $authors = ["velocity37"=>"velocity37@gmail.com"]; public $license = self::LICENSE_GPLV2; - public $description = "Bulk add server-side images with metadata from CSV file"; + public $description = "Bulk add server-side posts with metadata from CSV file"; public $documentation = "Modification of \"Bulk Add\" by Shish.

-Adds images from a CSV with the five following values:
+Adds posts from a CSV with the five following values:
\"/path/to/image.jpg\",\"spaced tags\",\"source\",\"rating s/q/e\",\"/path/thumbnail.jpg\"
e.g. \"/tmp/cat.png\",\"shish oekaki\",\"shimmie.shishnet.org\",\"s\",\"tmp/custom.jpg\"

Any value but the first may be omitted, but there must be five values per line.
e.g. \"/why/not/try/bulk_add.jpg\",\"\",\"\",\"\",\"\"

-Image thumbnails will be displayed at the AR of the full image. Thumbnails that are +Post thumbnails will be displayed at the AR of the full post. Thumbnails that are normally static (e.g. SWF) will be displayed at the board's max thumbnail size

-Useful for importing tagged images without having to do database manipulation.
-

Note: requires \"Admin Controls\" and optionally \"Image Ratings\" to be enabled

"; +Useful for importing tagged posts without having to do database manipulation.
+

Note: requires \"Admin Controls\" and optionally \"Post Ratings\" to be enabled

"; } diff --git a/ext/bulk_add_csv/theme.php b/ext/bulk_add_csv/theme.php index b552b07d..f001bfea 100644 --- a/ext/bulk_add_csv/theme.php +++ b/ext/bulk_add_csv/theme.php @@ -9,8 +9,8 @@ class BulkAddCSVTheme extends Themelet */ public function display_upload_results(Page $page) { - $page->set_title("Adding images from csv"); - $page->set_heading("Adding images from csv"); + $page->set_title("Adding posts from csv"); + $page->set_heading("Adding posts from csv"); $page->add_block(new NavBlock()); foreach ($this->messages as $block) { $page->add_block($block); @@ -26,8 +26,8 @@ class BulkAddCSVTheme extends Themelet { global $page; $html = " - Add images from a csv. Images will be tagged and have their - source and rating set (if \"Image Ratings\" is enabled) + Add posts from a csv. Posts will be tagged and have their + source and rating set (if \"Post Ratings\" is enabled)
Specify the absolute or relative path to a local .csv file. Check here for the expected format.

".make_form(make_link("bulk_add_csv"))."