hpdl
|
1
|
1
|
<?php
|
|
2
|
/*
|
hpdl
|
153
|
3
|
$Id: categories.php 1185 2006-12-25 22:48:50Z frank $
|
hpdl
|
1
|
4
|
|
|
5
|
osCommerce, Open Source E-Commerce Solutions
|
|
6
|
http://www.oscommerce.com
|
|
7
|
|
|
8
|
Copyright (c) 2004 osCommerce
|
|
9
|
|
|
10
|
Released under the GNU General Public License
|
|
11
|
*/
|
|
12
|
|
|
13
|
define('HEADING_TITLE', 'Categories');
|
|
14
|
define('HEADING_TITLE_SEARCH', 'Search:');
|
|
15
|
define('HEADING_TITLE_GOTO', 'Go To:');
|
|
16
|
|
|
17
|
define('TABLE_HEADING_CATEGORIES', 'Categories');
|
|
18
|
define('TABLE_HEADING_ACTION', 'Action');
|
|
19
|
define('TABLE_HEADING_STATUS', 'Status');
|
|
20
|
|
|
21
|
define('TEXT_EDIT_INTRO', 'Please make any necessary changes');
|
|
22
|
define('TEXT_EDIT_CATEGORIES_NAME', 'Category Name:');
|
|
23
|
define('TEXT_EDIT_CATEGORIES_IMAGE', 'Category Image:');
|
|
24
|
define('TEXT_EDIT_SORT_ORDER', 'Sort Order:');
|
|
25
|
|
|
26
|
define('TEXT_INFO_HEADING_NEW_CATEGORY', 'New Category');
|
|
27
|
|
|
28
|
define('TEXT_DELETE_CATEGORY_INTRO', 'Are you sure you want to delete this category?');
|
|
29
|
define('TEXT_DELETE_WARNING_CHILDS', '<b>WARNING:</b> There are %s (child-)categories still linked to this category!');
|
|
30
|
define('TEXT_DELETE_WARNING_PRODUCTS', '<b>WARNING:</b> There are %s products still linked to this category!');
|
|
31
|
|
|
32
|
define('TEXT_MOVE_CATEGORIES_INTRO', 'Please select which category you wish <b>%s</b> to reside in');
|
|
33
|
define('TEXT_MOVE', 'Move <b>%s</b> to:');
|
|
34
|
|
|
35
|
define('TEXT_NEW_CATEGORY_INTRO', 'Please fill out the following information for the new category');
|
|
36
|
define('TEXT_CATEGORIES_NAME', 'Category Name:');
|
|
37
|
define('TEXT_CATEGORIES_IMAGE', 'Category Image:');
|
|
38
|
define('TEXT_SORT_ORDER', 'Sort Order:');
|
|
39
|
|
|
40
|
define('EMPTY_CATEGORY', 'Empty Category');
|
|
41
|
|
|
42
|
define('ERROR_CANNOT_MOVE_CATEGORY_TO_PARENT', 'Error: Category cannot be moved into child category.');
|
hpdl
|
887
|
43
|
define('ERROR_CATEGORIES_IMAGE_DIRECTORY_NOT_WRITEABLE', 'Error: Category images directory is not writeable: ' . realpath('../images/categories'));
|
|
44
|
define('ERROR_CATEGORIES_IMAGE_DIRECTORY_DOES_NOT_EXIST', 'Error: Category images directory does not exist: ' . realpath('../images/categories'));
|
frank
|
1185
|
45
|
define('ERROR_EMPTY_CATEGORY', 'Error: Category name %s is empty. Could not create a new category');
|
hpdl
|
1
|
46
|
?>
|