summaryrefslogtreecommitdiff
path: root/framework/Exceptions
diff options
context:
space:
mode:
authorxue <>2006-01-31 00:01:49 +0000
committerxue <>2006-01-31 00:01:49 +0000
commit01bc363ac789cfb9d644ce82a949da5cd7e1c220 (patch)
treea059046856645d59cf0cb1badee83eb5c73671e9 /framework/Exceptions
parent265b7e85766ba403ca0a8b58648dd091e483cf38 (diff)
Modified TList and TMap implementation so that they can be more easily extended.
Diffstat (limited to 'framework/Exceptions')
-rw-r--r--framework/Exceptions/messages.txt22
1 files changed, 19 insertions, 3 deletions
diff --git a/framework/Exceptions/messages.txt b/framework/Exceptions/messages.txt
index 69015d48..8b739623 100644
--- a/framework/Exceptions/messages.txt
+++ b/framework/Exceptions/messages.txt
@@ -15,8 +15,6 @@ component_statements_invalid = Component '%s' is evaluating invalid PHP statem
propertyvalue_enumvalue_invalid = Value '%s' is a not valid enumeration value (%s).
list_index_invalid = Index '%d' is out of range.
-list_addition_disallowed = The new item cannot be added to the list.
-list_item_unremovable = The item cannot be removed from the list.
list_item_inexistent = The item cannot be found in the list.
list_data_not_iterable = Data must be either an array or an object implementing Traversable interface.
@@ -111,9 +109,13 @@ template_eventhandler_invalid = An invalid event handler is attached to %s's e
xmldocument_file_read_failed = TXmlDocument is unable to read file '%s'.
xmldocument_file_write_failed = TXmlDocument is unable to write file '%s'.
+xmlelementlist_xmlelement_required = TXmlElementList can only accept TXmlElement objects.
+
authorizationrule_action_invalid = TAuthorizationRule.Action can only take 'allow' or 'deny' as the value.
authorizationrule_verb_invalid = TAuthorizationRule.Verb can only take 'get' or 'post' as the value.
+authorizationrulecollection_authorizationrule_required = TAuthorizationRuleCollection can only accept TAuthorizationRule objects.
+
usermanager_userfile_invalid = TUserManager.UserFile '%s' is not a valid file.
usermanager_userfile_unchangeable = TUserManager.UserFile cannot be modified. The user module has been initialized already.
@@ -141,6 +143,8 @@ control_enabletheming_unchangeable = %s.EnableTheming cannot be modified after
control_stylesheet_applied = StyleSheet skin has already been applied to %s.
control_id_nonunique = %s.ID '%s' is not unique among all controls under the same naming container.
+controllist_control_required = TControlList can only accept strings or TControl objects.
+
webcontrol_accesskey_invalid = %s.AccessKey '%s' is invalid. It must be a single character only.
webcontrol_style_invalid = %s.Style must take string value only.
@@ -189,4 +193,16 @@ comparevalidator_controltocompare_invalid = TCompareValidator.ControlToCompare c
repeater_template_required = TRepeater.%s requires a template instance implementing ITemplate interface.
datalist_template_required = TDataList.%s requires a template instance implementing ITemplate interface.
-templatecolumn_template_required = TTemplateColumn.%s requires a template instance implementing ITemplate interface. \ No newline at end of file
+templatecolumn_template_required = TTemplateColumn.%s requires a template instance implementing ITemplate interface.
+
+repeateritemcollection_repeateritem_required = TRepeaterItemCollection can only accept TRepeaterItem objects.
+
+datagriditemcollection_datagriditem_required = TDataGridItemCollection can only accept TDataGridItem objects.
+
+datagridcolumncollection_datagridcolumn_required = TDataGridColumnCollection can only accept TDataGridColumn objects.
+
+datalistitemcollection_datalistitem_required = TDataListItemCollection can only accept TDataListItem objects.
+
+tablerowcollection_tablerow_required = TTableRowCollection can only accept TTableRow objects.
+
+tablecellcollection_tablerow_required = TTableCellCollection can only accept TTableCell objects. \ No newline at end of file