1################################################################################
2##
3##  ADOBE SYSTEMS INCORPORATED
4##  Copyright 2006-2007 Adobe Systems Incorporated
5##  All Rights Reserved.
6##
7##  NOTICE: Adobe permits you to use, modify, and distribute this file
8##  in accordance with the terms of the license agreement accompanying it.
9##
10################################################################################
11
12# Developer RTE Section
13
14# Shared
15
16outOfBounds=Index '{0}' specified is out of bounds.
17invalidIndex=Invalid index: '{0}'.
18
19# ListCollectionView
20
21unknownProperty=Unknown Property: '{0}'.
22incorrectAddition=Attempt to add an item already in the view.
23itemNotFound=Cannot find when view is not sorted.
24bookmarkNotFound=Bookmark is not from this view.
25
26# ListCollectionViewCursor
27
28invalidInsert=Cannot insert when current is beforeFirst.
29invalidRemove=Cannot remove when current is beforeFirst or afterLast.
30bookmarkInvalid=Bookmark no longer valid.
31invalidCursor=Cursor no longer valid.
32
33# NumericDataProvider
34
35addItemError=addItem() is not available in this class. Instead, use a combination of minimum, maximum and stepSize.
36addItemAtError=addItemAt() is not available in this class. Instead, use a combination of minimum, maximum and stepSize.
37itemUpdatedError=itemUpdated() is not available in this class. Instead, use a combination of minimum, maximum and stepSize.
38removeAllError=removeAll() is not available in this class. Instead, use a combination of minimum, maximum and stepSize.
39removeItemAtError=removeItemAt() is not available in this class. Instead, use a combination of minimum, maximum and stepSize.
40setItemAtError=setItemAt() is not available in this class. Instead, use a combination of minimum, maximum and stepSize.
41stepSizeError=stepSize cannot be set to a value of zero.
42
43# OnDemandDataProvider
44
45addItemError=addItem() is not available in this class.
46addItemAtError=addItemAt() is not available in this class.
47itemUpdatedError=itemUpdated() is not available in this class.
48getItemAtError=getItemAt() is not available in this class.
49getItemIndexError=getItemIndex() is not available in this class.
50lengthError=length() is not available in this class.
51removeAllError=removeAll() is not available in this class.
52removeItemAtError=removeItemAt() is not available in this class.
53setItemAtError=setItemAt() is not available in this class.
54toArrayError=toArray() is not available in this class.
55
56# Sort
57
58noItems=No items to search.
59findCondition=Find criteria must contain all sort fields leading up to '{0}'.
60findRestriction=Find criteria must contain at least one sort field value.
61unknownMode=Unknown find mode.
62nonUnique=Non-unique values in items.
63noComparator=Cannot determine comparator for '{0}'.
64
65# SortField
66
67noComparatorSortField=Cannot determine comparator for SortField with name '{0}'.
68
69# XMLListAdapter
70
71invalidType=Incorrect type. Must be of type XML or a XMLList that contains one XML object.
72