File: Microsoft.Scripting.txt

package info (click to toggle)
dlr-languages 20090805%2Bgit.e6b28d27%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 51,484 kB
  • ctags: 59,257
  • sloc: cs: 298,829; ruby: 159,643; xml: 19,872; python: 2,820; yacc: 1,960; makefile: 96; sh: 65
file content (214 lines) | stat: -rw-r--r-- 7,689 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#####################################################################################
#
#  Copyright (c) Microsoft Corporation. All rights reserved.
#
# This source code is subject to terms and conditions of the Microsoft Public License. A 
# copy of the license can be found in the License.html file at the root of this distribution. If 
# you cannot locate the  Microsoft Public License, please send an email to 
# ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound 
# by the terms of the Microsoft Public License.
#
# You must not remove this notice, or any other, from this software.
#
#
#####################################################################################

# NOTE: do not use \", use ' instead
# NOTE: Use # or ; for comments

# These are generated with generate_exception_factory.py

InvalidOperation_ContainsGenericParameters=Cannot access member {1} declared on type {0} because the type contains generic parameters.
MissingType=Type '{0}' is missing or cannot be loaded.
StaticAccessFromInstanceError=static property "{0}" of "{1}" can only be read through a type, not an instance
StaticAssignmentFromInstanceError=static property "{0}" of "{1}" can only be assigned to through a type, not an instance

# ContractUtils strings

MethodPreconditionViolated=Method precondition violated
InvalidArgumentValue=Invalid argument value
NonEmptyStringRequired=Non-empty string required
NonEmptyCollectionRequired=Non-empty collection required

MustBeExceptionInstance=must by an Exception instance
TypeOfTestMustBeBool=Type of test must be bool
TypeOfExpressionMustBeBool=Type of the expression must be bool
EmptyStringIsInvalidPath=Empty string is not a valid path.
InvalidDelegate=Invalid delegate type (Invoke method not found).
ExpectedStaticProperty=expected only static property
PropertyDoesNotExist=Property doesn't exist on the provided type
FieldDoesNotExist=Field doesn't exist on provided type
TypeDoesNotHaveConstructorForTheSignature=Type doesn't have constructor with a given signature
TypeDoesNotHaveMethodForName=Type doesn't have a method with a given name.
TypeDoesNotHaveMethodForNameSignature=Type doesn't have a method with a given name and signature.
CountCannotBeNegative=Count must be non-negative.
ArrayTypeMustBeArray=arrayType must be an array type

## ExceptionType=ArgumentException
MustHaveCodeOrTarget=Either code or target must be specified.

# end ContractUtils strings

## ExceptionType=InvalidOperationException
TypeParameterIsNotDelegate=Type parameter is {0}. Expected a delegate.

## ExceptionType=InvalidOperationException
InvalidCast=Cannot cast from type '{0}' to type '{1}

#DLR exceptions

## ExceptionType=InvalidOperationException
UnknownMemberType=unknown member type: '{0}'. 

## ExceptionType=InvalidOperationException
FirstArgumentMustBeCallSite=RuleBuilder can only be used with delegates whose first argument is CallSite.

## ExceptionType=InvalidOperationException
NoInstanceForCall=no instance for call.

## ExceptionType=InvalidOperationException
MissingTest=Missing Test.

## ExceptionType=InvalidOperationException
MissingTarget=Missing Target.

## ExceptionType=TypeLoadException
NonGenericWithGenericGroup=The operation requires a non-generic type for {0}, but this represents generic types only

## ExceptionType=ArgumentException
InvalidOperation=Invalid operation: '{0}'

## ExceptionType=InvalidOperationException
FinallyAlreadyDefined=Finally already defined.

## ExceptionType=InvalidOperationException
CannotHaveFaultAndFinally=Can not have fault and finally.

## ExceptionType=InvalidOperationException
FaultAlreadyDefined=Fault already defined.

## ExceptionType=ArgumentException
CantCreateDefaultTypeFor=Cannot create default value for type {0}.

## ExceptionType=ArgumentException
UnhandledConvert=Unhandled convert: {0}

## ExceptionType=InvalidOperationException
NoCallableMethods={0}.{1} has no publiclly visible method.

## ExceptionType=ArgumentException
GlobalsMustBeUnique=Global/top-level local variable names must be unique.

## ExceptionType=ArgumentException
GenNonSerializableBinder=Generating code from non-serializable CallSiteBinder.

## ExceptionType=ArgumentException
InvalidPath=pecified path is invalid.

## ExceptionType=ArgumentTypeException
DictionaryNotHashable=Dictionaries are not hashable.

## ExceptionType=InvalidOperationException
LanguageRegistered=language already registered.

## ExceptionType=NotImplementedException
MethodOrOperatorNotImplemented=The method or operation is not implemented.

## ExceptionType=InvalidOperationException
NoException=No exception.

## ExceptionType=ArgumentException
ExtensionMustBePublic=Extension type {0} must be public.

## ExceptionType=InvalidOperationException
AlreadyInitialized=Already initialized.

## ExceptionType=InvalidImplementationException
MustReturnScopeExtension=CreateScopeExtension must return a scope extension.

## ExceptionType=ArgumentException
InvalidParamNumForService=Invalid number of parameters for the service.

## ExceptionType=ArgumentException
InvalidArgumentType=Invalid type of argument {0}; expecting {1}.

## ExceptionType=ArgumentException
CannotChangeNonCachingValue=Cannot change non-caching value.

## ExceptionType=MissingMemberException
FieldReadonly=Field {0} is read-only

## ExceptionType=MissingMemberException
PropertyReadonly=Property {0} is read-only

## ExceptionType=ArgumentException
UnexpectedEvent=Expected event from {0}.{1}, got event from {2}.{3}.

## ExceptionType=ArgumentTypeException
ExpectedBoundEvent=expected bound event, got {0}.

## ExceptionType=ArgumentTypeException
UnexpectedType=Expected type {0}, got {1}.

## ExceptionType=MemberAccessException
MemberWriteOnly=can only write to member {0}.

## ExceptionType=InvalidOperationException
NoCodeToCompile=No code to compile.

## ExceptionType=ArgumentException
InvalidStreamType=Invalid stream type: {0}.

## ExceptionType=InvalidOperationException
QueueEmpty=Queue empty.

## ExceptionType=InvalidOperationException
EnumerationNotStarted=Enumeration has not started. Call MoveNext.

## ExceptionType=InvalidOperationException
EnumerationFinished=Enumeration already finished.

## ExceptionType=InvalidOperationException
CantAddCasing=can't add another casing for identifier {0}

## ExceptionType=InvalidOperationException
CantAddIdentifier=can't add new identifier {0}

InvalidCtorImplementation=Type '{0}' doesn't provide a suitable public constructor or its implementation is faulty: {1}

## ExceptionType=ArgumentException
InvalidOutputDir=Invalid output directory.

## ExceptionType=ArgumentException
InvalidAsmNameOrExtension=Invalid assembly name or file extension.

## ExceptionType=ArgumentException
CanotEmitConstant=Cannot emit constant {0} ({1})

## ExceptionType=ArgumentException
NoImplicitCast=No implicit cast from {0} to {1}

## ExceptionType=ArgumentException
NoExplicitCast=No explicit cast from {0} to {1}

## ExceptionType=MissingMemberException
NameNotDefined=name '{0}' not defined

## ExceptionType=ArgumentException
NoDefaultValue=No default value for a given type.

## ExceptionType=ArgumentException
UnknownLanguageProviderType=Specified language provider type is not registered.

## ExceptionType=InvalidOperationException
CantReadProperty=can't read from property

## ExceptionType=InvalidOperationException
CantWriteProperty=can't write to property

## ExceptionType=ArgumentException
IllegalNew_GenericParams=Cannot create instance of {0} because it contains generic parameters

## ExceptionType=System.Security.VerificationException
VerificationException=Non-verifiable assembly generated: {0}:\nAssembly preserved as {1}\nError text:\n{2}\n