Minahito
minah****@users*****
2006年 8月 18日 (金) 20:30:01 JST
Index: xoops2jp/html/modules/base/admin/forms/BlockEditForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/BlockEditForm.class.php:1.1.2.5 xoops2jp/html/modules/base/admin/forms/BlockEditForm.class.php:1.1.2.6 --- xoops2jp/html/modules/base/admin/forms/BlockEditForm.class.php:1.1.2.5 Tue Aug 1 19:36:55 2006 +++ xoops2jp/html/modules/base/admin/forms/BlockEditForm.class.php Fri Aug 18 20:30:01 2006 @@ -31,31 +31,31 @@ // $this->mFieldProperties['bid'] =& new XCube_FieldProperty($this); $this->mFieldProperties['bid']->setDependsByArray(array('required')); - $this->mFieldProperties['bid']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_BID); + $this->mFieldProperties['bid']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_BID); $this->mFieldProperties['title'] =& new XCube_FieldProperty($this); $this->mFieldProperties['title']->setDependsByArray(array('required','maxlength')); - $this->mFieldProperties['title']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_TITLE, '255'); - $this->mFieldProperties['title']->addMessage('maxlength', _AD_BASE_ERROR_MAXLENGTH, _AD_BASE_LANG_TITLE, '255'); + $this->mFieldProperties['title']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_TITLE, '255'); + $this->mFieldProperties['title']->addMessage('maxlength', _MD_BASE_ERROR_MAXLENGTH, _AD_BASE_LANG_TITLE, '255'); $this->mFieldProperties['title']->addVar('maxlength', '255'); $this->mFieldProperties['side'] =& new XCube_FieldProperty($this); $this->mFieldProperties['side']->setDependsByArray(array('required', 'objectExist')); - $this->mFieldProperties['side']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_SIDE); + $this->mFieldProperties['side']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_SIDE); $this->mFieldProperties['side']->addMessage('objectExist', _AD_BASE_ERROR_OBJECTEXIST, _AD_BASE_LANG_SIDE); $this->mFieldProperties['side']->addVar('handler', 'columnside'); $this->mFieldProperties['side']->addVar('module', 'base'); $this->mFieldProperties['weight'] =& new XCube_FieldProperty($this); $this->mFieldProperties['weight']->setDependsByArray(array('required', 'intRange')); - $this->mFieldProperties['weight']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_WEIGHT); + $this->mFieldProperties['weight']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_WEIGHT); $this->mFieldProperties['weight']->addMessage('intRange', _AD_BASE_ERROR_INTRANGE, _AD_BASE_LANG_WEIGHT); $this->mFieldProperties['weight']->addVar('min', '0'); $this->mFieldProperties['weight']->addVar('max', '255'); $this->mFieldProperties['bcachetime'] =& new XCube_FieldProperty($this); $this->mFieldProperties['bcachetime']->setDependsByArray(array('required', 'objectExist')); - $this->mFieldProperties['bcachetime']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_BCACHETIME); + $this->mFieldProperties['bcachetime']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_BCACHETIME); $this->mFieldProperties['bcachetime']->addMessage('objectExist', _AD_BASE_ERROR_OBJECTEXIST, _AD_BASE_LANG_BCACHETIME); $this->mFieldProperties['bcachetime']->addVar('handler', 'cachetime'); Index: xoops2jp/html/modules/base/admin/forms/BlockListForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/BlockListForm.class.php:1.1.2.2 xoops2jp/html/modules/base/admin/forms/BlockListForm.class.php:1.1.2.3 --- xoops2jp/html/modules/base/admin/forms/BlockListForm.class.php:1.1.2.2 Tue Aug 1 19:38:30 2006 +++ xoops2jp/html/modules/base/admin/forms/BlockListForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: BlockListForm.class.php,v 1.1.2.2 2006/08/01 10:38:30 minahito Exp $ + * @version $Id: BlockListForm.class.php,v 1.1.2.3 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -33,21 +33,21 @@ // $this->mFieldProperties['weight'] =& new XCube_FieldProperty($this); $this->mFieldProperties['weight']->setDependsByArray(array('required','intRange')); - $this->mFieldProperties['weight']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_WEIGHT); + $this->mFieldProperties['weight']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_WEIGHT); $this->mFieldProperties['weight']->addMessage('intRange', _AD_BASE_ERROR_INTRANGE, _AD_BASE_LANG_WEIGHT); $this->mFieldProperties['weight']->addVar('min', '0'); $this->mFieldProperties['weight']->addVar('max', '255'); $this->mFieldProperties['side'] =& new XCube_FieldProperty($this); $this->mFieldProperties['side']->setDependsByArray(array('required','objectExist')); - $this->mFieldProperties['side']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_SIDE); + $this->mFieldProperties['side']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_SIDE); $this->mFieldProperties['side']->addMessage('objectExist', _AD_BASE_ERROR_OBJECTEXIST, _AD_BASE_LANG_SIDE); $this->mFieldProperties['side']->addVar('handler', 'columnside'); $this->mFieldProperties['side']->addVar('module', 'base'); $this->mFieldProperties['bcachetime'] =& new XCube_FieldProperty($this); $this->mFieldProperties['bcachetime']->setDependsByArray(array('required','objectExist')); - $this->mFieldProperties['bcachetime']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_BCACHETIME); + $this->mFieldProperties['bcachetime']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_BCACHETIME); $this->mFieldProperties['bcachetime']->addMessage('objectExist', _AD_BASE_ERROR_OBJECTEXIST, _AD_BASE_LANG_BCACHETIME); $this->mFieldProperties['bcachetime']->addVar('handler', 'cachetime'); } Index: xoops2jp/html/modules/base/admin/forms/ModuleListForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/ModuleListForm.class.php:1.1.2.3 xoops2jp/html/modules/base/admin/forms/ModuleListForm.class.php:1.1.2.4 --- xoops2jp/html/modules/base/admin/forms/ModuleListForm.class.php:1.1.2.3 Tue Aug 8 18:48:04 2006 +++ xoops2jp/html/modules/base/admin/forms/ModuleListForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: ModuleListForm.class.php,v 1.1.2.3 2006/08/08 09:48:04 minahito Exp $ + * @version $Id: ModuleListForm.class.php,v 1.1.2.4 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -49,13 +49,13 @@ // set fields $this->mFieldProperties['name']=new XCube_FieldProperty($this); $this->mFieldProperties['name']->setDependsByArray(array('required','maxlength')); - $this->mFieldProperties['name']->addMessage("required",_MD_A_BASE_ERROR_REQUIRED,_MD_A_BASE_LANG_NAME,"140"); - $this->mFieldProperties['name']->addMessage("maxlength",_MD_A_BASE_ERROR_MAXLENGTH,_MD_A_BASE_LANG_NAME,"140"); + $this->mFieldProperties['name']->addMessage("required",_MD_BASE_ERROR_REQUIRED,_AD_BASE_LANG_NAME,"140"); + $this->mFieldProperties['name']->addMessage("maxlength",_MD_BASE_ERROR_MAXLENGTH,_AD_BASE_LANG_NAME,"140"); $this->mFieldProperties['name']->addVar("maxlength",140); $this->mFieldProperties['weight']=new XCube_FieldProperty($this); $this->mFieldProperties['weight']->setDependsByArray(array('required','min')); - $this->mFieldProperties['weight']->addMessage("min",_MD_A_BASE_ERROR_MIN,_MD_A_BASE_LANG_WEIGHT,"0"); + $this->mFieldProperties['weight']->addMessage("min",_AD_BASE_ERROR_MIN,_AD_BASE_LANG_WEIGHT,"0"); $this->mFieldProperties['weight']->addVar("min",0); } } Index: xoops2jp/html/modules/base/admin/forms/CommentAdminDeleteForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/CommentAdminDeleteForm.class.php:1.1.2.3 xoops2jp/html/modules/base/admin/forms/CommentAdminDeleteForm.class.php:1.1.2.4 --- xoops2jp/html/modules/base/admin/forms/CommentAdminDeleteForm.class.php:1.1.2.3 Tue Aug 1 19:38:57 2006 +++ xoops2jp/html/modules/base/admin/forms/CommentAdminDeleteForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: CommentAdminDeleteForm.class.php,v 1.1.2.3 2006/08/01 10:38:57 minahito Exp $ + * @version $Id: CommentAdminDeleteForm.class.php,v 1.1.2.4 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -30,7 +30,7 @@ // $this->mFieldProperties['com_id'] =& new XCube_FieldProperty($this); $this->mFieldProperties['com_id']->setDependsByArray(array('required')); - $this->mFieldProperties['com_id']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_COM_ID); + $this->mFieldProperties['com_id']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _MD_BASE_LANG_COM_ID); } function load(&$obj) Index: xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminDeleteForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminDeleteForm.class.php:1.1.2.2 xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminDeleteForm.class.php:1.1.2.3 --- xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminDeleteForm.class.php:1.1.2.2 Tue Aug 8 18:48:04 2006 +++ xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminDeleteForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: ImagecategoryAdminDeleteForm.class.php,v 1.1.2.2 2006/08/08 09:48:04 minahito Exp $ + * @version $Id: ImagecategoryAdminDeleteForm.class.php,v 1.1.2.3 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -28,7 +28,7 @@ // $this->mFieldProperties['imgcat_id'] =& new XCube_FieldProperty($this); $this->mFieldProperties['imgcat_id']->setDependsByArray(array('required')); - $this->mFieldProperties['imgcat_id']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_ID); + $this->mFieldProperties['imgcat_id']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_ID); } function load(&$obj) Index: xoops2jp/html/modules/base/admin/forms/CustomBlockEditForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/CustomBlockEditForm.class.php:1.1.2.2 xoops2jp/html/modules/base/admin/forms/CustomBlockEditForm.class.php:1.1.2.3 --- xoops2jp/html/modules/base/admin/forms/CustomBlockEditForm.class.php:1.1.2.2 Tue Aug 8 18:48:04 2006 +++ xoops2jp/html/modules/base/admin/forms/CustomBlockEditForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: CustomBlockEditForm.class.php,v 1.1.2.2 2006/08/08 09:48:04 minahito Exp $ + * @version $Id: CustomBlockEditForm.class.php,v 1.1.2.3 2006/08/18 11:30:01 minahito Exp $ */ require_once XOOPS_ROOT_PATH . "/class/XCube_ActionForm.class.php"; @@ -30,12 +30,12 @@ // $this->mFieldProperties['content'] =& new XCube_FieldProperty($this); $this->mFieldProperties['content']->setDependsByArray(array('required')); - $this->mFieldProperties['content']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_CONTENT); + $this->mFieldProperties['content']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_CONTENT); $this->mFieldProperties['c_type'] =& new XCube_FieldProperty($this); $this->mFieldProperties['c_type']->setDependsByArray(array('required','maxlength')); - $this->mFieldProperties['c_type']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_C_TYPE, '1'); - $this->mFieldProperties['c_type']->addMessage('maxlength', _AD_BASE_ERROR_MAXLENGTH, _AD_BASE_LANG_C_TYPE, '1'); + $this->mFieldProperties['c_type']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_C_TYPE, '1'); + $this->mFieldProperties['c_type']->addMessage('maxlength', _MD_BASE_ERROR_MAXLENGTH, _AD_BASE_LANG_C_TYPE, '1'); $this->mFieldProperties['c_type']->addVar('maxlength', '1'); } Index: xoops2jp/html/modules/base/admin/forms/ActionSearchForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/ActionSearchForm.class.php:1.1.2.3 xoops2jp/html/modules/base/admin/forms/ActionSearchForm.class.php:1.1.2.4 --- xoops2jp/html/modules/base/admin/forms/ActionSearchForm.class.php:1.1.2.3 Tue Aug 1 19:36:40 2006 +++ xoops2jp/html/modules/base/admin/forms/ActionSearchForm.class.php Fri Aug 18 20:30:01 2006 @@ -20,7 +20,7 @@ // set fields $this->mFieldProperties['keywords']=new XCube_FieldProperty($this); $this->mFieldProperties['keywords']->setDependsByArray(array('required')); - $this->mFieldProperties['keywords']->addMessage("required",_MD_A_BASE_ERROR_SEARCH_REQUIRED); + $this->mFieldProperties['keywords']->addMessage("required",_AD_BASE_ERROR_SEARCH_REQUIRED); } function fetch() Index: xoops2jp/html/modules/base/admin/forms/SmilesAdminDeleteForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/SmilesAdminDeleteForm.class.php:1.1.2.3 xoops2jp/html/modules/base/admin/forms/SmilesAdminDeleteForm.class.php:1.1.2.4 --- xoops2jp/html/modules/base/admin/forms/SmilesAdminDeleteForm.class.php:1.1.2.3 Tue Aug 1 19:41:22 2006 +++ xoops2jp/html/modules/base/admin/forms/SmilesAdminDeleteForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: SmilesAdminDeleteForm.class.php,v 1.1.2.3 2006/08/01 10:41:22 minahito Exp $ + * @version $Id: SmilesAdminDeleteForm.class.php,v 1.1.2.4 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -27,7 +27,7 @@ // $this->mFieldProperties['id'] =& new XCube_FieldProperty($this); $this->mFieldProperties['id']->setDependsByArray(array('required')); - $this->mFieldProperties['id']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_ID); + $this->mFieldProperties['id']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_ID); } function load(&$obj) Index: xoops2jp/html/modules/base/admin/forms/CustomBlockDeleteForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/CustomBlockDeleteForm.class.php:1.1.2.2 xoops2jp/html/modules/base/admin/forms/CustomBlockDeleteForm.class.php:1.1.2.3 --- xoops2jp/html/modules/base/admin/forms/CustomBlockDeleteForm.class.php:1.1.2.2 Tue Aug 8 18:47:41 2006 +++ xoops2jp/html/modules/base/admin/forms/CustomBlockDeleteForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: CustomBlockDeleteForm.class.php,v 1.1.2.2 2006/08/08 09:47:41 minahito Exp $ + * @version $Id: CustomBlockDeleteForm.class.php,v 1.1.2.3 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -28,7 +28,7 @@ // $this->mFieldProperties['bid'] =& new XCube_FieldProperty($this); $this->mFieldProperties['bid']->setDependsByArray(array('required')); - $this->mFieldProperties['bid']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_BID); + $this->mFieldProperties['bid']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_BID); } function load(&$obj) Index: xoops2jp/html/modules/base/admin/forms/PreferenceEditForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/PreferenceEditForm.class.php:1.1.2.4 xoops2jp/html/modules/base/admin/forms/PreferenceEditForm.class.php:1.1.2.5 --- xoops2jp/html/modules/base/admin/forms/PreferenceEditForm.class.php:1.1.2.4 Thu Aug 10 18:44:54 2006 +++ xoops2jp/html/modules/base/admin/forms/PreferenceEditForm.class.php Fri Aug 18 20:30:01 2006 @@ -54,7 +54,7 @@ $this->mFieldProperties[$config->get('conf_name')] =& new XCube_FieldProperty($this); $this->mFieldProperties[$config->get('conf_name')]->setDependsByArray(array('required')); - $this->mFieldProperties[$config->get('conf_name')]->addMessage('required', _AD_BASE_ERROR_REQUIRED, $config->get('conf_title')); + $this->mFieldProperties[$config->get('conf_name')]->addMessage('required', _MD_BASE_ERROR_REQUIRED, $config->get('conf_title')); break; case 'int': @@ -63,7 +63,7 @@ $this->mFieldProperties[$config->get('conf_name')] =& new XCube_FieldProperty($this); $this->mFieldProperties[$config->get('conf_name')]->setDependsByArray(array('required')); - $this->mFieldProperties[$config->get('conf_name')]->addMessage('required', _AD_BASE_ERROR_REQUIRED, $config->get('conf_title')); + $this->mFieldProperties[$config->get('conf_name')]->addMessage('required', _MD_BASE_ERROR_REQUIRED, $config->get('conf_title')); break; case 'other': Index: xoops2jp/html/modules/base/admin/forms/ImageAdminEditForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/ImageAdminEditForm.class.php:1.1.2.7 xoops2jp/html/modules/base/admin/forms/ImageAdminEditForm.class.php:1.1.2.8 --- xoops2jp/html/modules/base/admin/forms/ImageAdminEditForm.class.php:1.1.2.7 Tue Aug 1 19:39:34 2006 +++ xoops2jp/html/modules/base/admin/forms/ImageAdminEditForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: ImageAdminEditForm.class.php,v 1.1.2.7 2006/08/01 10:39:34 minahito Exp $ + * @version $Id: ImageAdminEditForm.class.php,v 1.1.2.8 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -35,11 +35,11 @@ // $this->mFieldProperties['image_id'] =& new XCube_FieldProperty($this); $this->mFieldProperties['image_id']->setDependsByArray(array('required')); - $this->mFieldProperties['image_id']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMAGE_ID); + $this->mFieldProperties['image_id']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMAGE_ID); $this->mFieldProperties['image_weight'] =& new XCube_FieldProperty($this); $this->mFieldProperties['image_weight']->setDependsByArray(array('required')); - $this->mFieldProperties['image_weight']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMAGE_WEIGHT); + $this->mFieldProperties['image_weight']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMAGE_WEIGHT); } function load(&$obj) Index: xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminNewForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminNewForm.class.php:1.1.2.3 xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminNewForm.class.php:1.1.2.4 --- xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminNewForm.class.php:1.1.2.3 Tue Aug 8 18:48:03 2006 +++ xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminNewForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: ImagecategoryAdminNewForm.class.php,v 1.1.2.3 2006/08/08 09:48:03 minahito Exp $ + * @version $Id: ImagecategoryAdminNewForm.class.php,v 1.1.2.4 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -31,7 +31,7 @@ // $this->mFieldProperties['imgcat_storetype'] =& new XCube_FieldProperty($this); $this->mFieldProperties['imgcat_storetype']->setDependsByArray(array('required','mask')); - $this->mFieldProperties['imgcat_storetype']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_STORETYPE); + $this->mFieldProperties['imgcat_storetype']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_STORETYPE); $this->mFieldProperties['imgcat_storetype']->addMessage('mask', _AD_BASE_ERROR_MASK, _AD_BASE_LANG_IMGCAT_STORETYPE); $this->mFieldProperties['imgcat_storetype']->addVar('mask', '(file|db)'); } Index: xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminEditForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminEditForm.class.php:1.1.2.2 xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminEditForm.class.php:1.1.2.3 --- xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminEditForm.class.php:1.1.2.2 Tue Aug 8 18:48:04 2006 +++ xoops2jp/html/modules/base/admin/forms/ImagecategoryAdminEditForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: ImagecategoryAdminEditForm.class.php,v 1.1.2.2 2006/08/08 09:48:04 minahito Exp $ + * @version $Id: ImagecategoryAdminEditForm.class.php,v 1.1.2.3 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -36,29 +36,29 @@ // $this->mFieldProperties['imgcat_id'] =& new XCube_FieldProperty($this); $this->mFieldProperties['imgcat_id']->setDependsByArray(array('required')); - $this->mFieldProperties['imgcat_id']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_ID); + $this->mFieldProperties['imgcat_id']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_ID); $this->mFieldProperties['imgcat_name'] =& new XCube_FieldProperty($this); $this->mFieldProperties['imgcat_name']->setDependsByArray(array('required','maxlength')); - $this->mFieldProperties['imgcat_name']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_NAME, '100'); - $this->mFieldProperties['imgcat_name']->addMessage('maxlength', _AD_BASE_ERROR_MAXLENGTH, _AD_BASE_LANG_IMGCAT_NAME, '100'); + $this->mFieldProperties['imgcat_name']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_NAME, '100'); + $this->mFieldProperties['imgcat_name']->addMessage('maxlength', _MD_BASE_ERROR_MAXLENGTH, _AD_BASE_LANG_IMGCAT_NAME, '100'); $this->mFieldProperties['imgcat_name']->addVar('maxlength', '100'); $this->mFieldProperties['imgcat_maxsize'] =& new XCube_FieldProperty($this); $this->mFieldProperties['imgcat_maxsize']->setDependsByArray(array('required')); - $this->mFieldProperties['imgcat_maxsize']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_MAXSIZE); + $this->mFieldProperties['imgcat_maxsize']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_MAXSIZE); $this->mFieldProperties['imgcat_maxwidth'] =& new XCube_FieldProperty($this); $this->mFieldProperties['imgcat_maxwidth']->setDependsByArray(array('required')); - $this->mFieldProperties['imgcat_maxwidth']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_MAXWIDTH); + $this->mFieldProperties['imgcat_maxwidth']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_MAXWIDTH); $this->mFieldProperties['imgcat_maxheight'] =& new XCube_FieldProperty($this); $this->mFieldProperties['imgcat_maxheight']->setDependsByArray(array('required')); - $this->mFieldProperties['imgcat_maxheight']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_MAXHEIGHT); + $this->mFieldProperties['imgcat_maxheight']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_MAXHEIGHT); $this->mFieldProperties['imgcat_weight'] =& new XCube_FieldProperty($this); $this->mFieldProperties['imgcat_weight']->setDependsByArray(array('required')); - $this->mFieldProperties['imgcat_weight']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_WEIGHT); + $this->mFieldProperties['imgcat_weight']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMGCAT_WEIGHT); $this->mFieldProperties['readgroups'] =& new XCube_FieldProperty($this); $this->mFieldProperties['readgroups']->setDependsByArray(array('objectExist')); Index: xoops2jp/html/modules/base/admin/forms/ImageAdminDeleteForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/ImageAdminDeleteForm.class.php:1.1.2.2 xoops2jp/html/modules/base/admin/forms/ImageAdminDeleteForm.class.php:1.1.2.3 --- xoops2jp/html/modules/base/admin/forms/ImageAdminDeleteForm.class.php:1.1.2.2 Tue Aug 8 18:48:04 2006 +++ xoops2jp/html/modules/base/admin/forms/ImageAdminDeleteForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: ImageAdminDeleteForm.class.php,v 1.1.2.2 2006/08/08 09:48:04 minahito Exp $ + * @version $Id: ImageAdminDeleteForm.class.php,v 1.1.2.3 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -28,7 +28,7 @@ // $this->mFieldProperties['image_id'] =& new XCube_FieldProperty($this); $this->mFieldProperties['image_id']->setDependsByArray(array('required')); - $this->mFieldProperties['image_id']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMAGE_ID); + $this->mFieldProperties['image_id']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_IMAGE_ID); } function load(&$obj) Index: xoops2jp/html/modules/base/admin/forms/CommentAdminEditForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/CommentAdminEditForm.class.php:1.1.2.6 xoops2jp/html/modules/base/admin/forms/CommentAdminEditForm.class.php:1.1.2.7 --- xoops2jp/html/modules/base/admin/forms/CommentAdminEditForm.class.php:1.1.2.6 Tue Aug 8 18:47:41 2006 +++ xoops2jp/html/modules/base/admin/forms/CommentAdminEditForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: CommentAdminEditForm.class.php,v 1.1.2.6 2006/08/08 09:47:41 minahito Exp $ + * @version $Id: CommentAdminEditForm.class.php,v 1.1.2.7 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -38,22 +38,22 @@ $this->mFieldProperties['com_id'] =& new XCube_FieldProperty($this); $this->mFieldProperties['com_id']->setDependsByArray(array('required')); - $this->mFieldProperties['com_id']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_COM_ID); + $this->mFieldProperties['com_id']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _MD_BASE_LANG_COM_ID); $this->mFieldProperties['com_icon'] =& new XCube_FieldProperty($this); $this->mFieldProperties['com_icon']->setDependsByArray(array('maxlength')); - $this->mFieldProperties['com_icon']->addMessage('maxlength', _AD_BASE_ERROR_MAXLENGTH, _AD_BASE_LANG_COM_ICON, '25'); + $this->mFieldProperties['com_icon']->addMessage('maxlength', _MD_BASE_ERROR_MAXLENGTH, _MD_BASE_LANG_COM_ICON, '25'); $this->mFieldProperties['com_icon']->addVar('maxlength', '25'); $this->mFieldProperties['com_title'] =& new XCube_FieldProperty($this); $this->mFieldProperties['com_title']->setDependsByArray(array('required','maxlength')); - $this->mFieldProperties['com_title']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_COM_TITLE, '255'); - $this->mFieldProperties['com_title']->addMessage('maxlength', _AD_BASE_ERROR_MAXLENGTH, _AD_BASE_LANG_COM_TITLE, '255'); + $this->mFieldProperties['com_title']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _MD_BASE_LANG_COM_TITLE, '255'); + $this->mFieldProperties['com_title']->addMessage('maxlength', _MD_BASE_ERROR_MAXLENGTH, _MD_BASE_LANG_COM_TITLE, '255'); $this->mFieldProperties['com_title']->addVar('maxlength', '255'); $this->mFieldProperties['com_text'] =& new XCube_FieldProperty($this); $this->mFieldProperties['com_text']->setDependsByArray(array('required')); - $this->mFieldProperties['com_text']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_COM_TEXT); + $this->mFieldProperties['com_text']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _MD_BASE_LANG_COM_TEXT); } function load(&$obj) @@ -95,7 +95,7 @@ $this->mFieldProperties['com_status'] =& new XCube_FieldProperty($this); $this->mFieldProperties['com_status']->setDependsByArray(array('required','intRange')); - $this->mFieldProperties['com_status']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_COM_STATUS); + $this->mFieldProperties['com_status']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_COM_STATUS); $this->mFieldProperties['com_status']->addMessage('intRange', _AD_BASE_ERROR_INTRANGE, _AD_BASE_LANG_COM_STATUS); $this->mFieldProperties['com_status']->addVar('min', '1'); $this->mFieldProperties['com_status']->addVar('max', '3'); @@ -110,7 +110,7 @@ $this->mFieldProperties['com_status'] =& new XCube_FieldProperty($this); $this->mFieldProperties['com_status']->setDependsByArray(array('required','intRange')); - $this->mFieldProperties['com_status']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_COM_STATUS); + $this->mFieldProperties['com_status']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_COM_STATUS); $this->mFieldProperties['com_status']->addMessage('intRange', _AD_BASE_ERROR_INTRANGE, _AD_BASE_LANG_COM_STATUS); $this->mFieldProperties['com_status']->addVar('min', '2'); $this->mFieldProperties['com_status']->addVar('max', '3'); Index: xoops2jp/html/modules/base/admin/forms/SmilesAdminEditForm.class.php diff -u xoops2jp/html/modules/base/admin/forms/SmilesAdminEditForm.class.php:1.1.2.3 xoops2jp/html/modules/base/admin/forms/SmilesAdminEditForm.class.php:1.1.2.4 --- xoops2jp/html/modules/base/admin/forms/SmilesAdminEditForm.class.php:1.1.2.3 Tue Aug 1 19:41:32 2006 +++ xoops2jp/html/modules/base/admin/forms/SmilesAdminEditForm.class.php Fri Aug 18 20:30:01 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: SmilesAdminEditForm.class.php,v 1.1.2.3 2006/08/01 10:41:32 minahito Exp $ + * @version $Id: SmilesAdminEditForm.class.php,v 1.1.2.4 2006/08/18 11:30:01 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -35,12 +35,12 @@ // $this->mFieldProperties['id'] =& new XCube_FieldProperty($this); $this->mFieldProperties['id']->setDependsByArray(array('required')); - $this->mFieldProperties['id']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_ID); + $this->mFieldProperties['id']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_ID); $this->mFieldProperties['code'] =& new XCube_FieldProperty($this); $this->mFieldProperties['code']->setDependsByArray(array('required','maxlength')); - $this->mFieldProperties['code']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_CODE, '50'); - $this->mFieldProperties['code']->addMessage('maxlength', _AD_BASE_ERROR_MAXLENGTH, _AD_BASE_LANG_CODE, '50'); + $this->mFieldProperties['code']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _MD_BASE_LANG_CODE, '50'); + $this->mFieldProperties['code']->addMessage('maxlength', _MD_BASE_ERROR_MAXLENGTH, _MD_BASE_LANG_CODE, '50'); $this->mFieldProperties['code']->addVar('maxlength', '50'); $this->mFieldProperties['smile_url'] =& new XCube_FieldProperty($this); @@ -50,8 +50,8 @@ $this->mFieldProperties['emotion'] =& new XCube_FieldProperty($this); $this->mFieldProperties['emotion']->setDependsByArray(array('required','maxlength')); - $this->mFieldProperties['emotion']->addMessage('required', _AD_BASE_ERROR_REQUIRED, _AD_BASE_LANG_EMOTION, '75'); - $this->mFieldProperties['emotion']->addMessage('maxlength', _AD_BASE_ERROR_MAXLENGTH, _AD_BASE_LANG_EMOTION, '75'); + $this->mFieldProperties['emotion']->addMessage('required', _MD_BASE_ERROR_REQUIRED, _MD_BASE_LANG_EMOTION, '75'); + $this->mFieldProperties['emotion']->addMessage('maxlength', _MD_BASE_ERROR_MAXLENGTH, _MD_BASE_LANG_EMOTION, '75'); $this->mFieldProperties['emotion']->addVar('maxlength', '75'); }