~vcs-imports/xena/trunk

« back to all changes in this revision

Viewing changes to ext/src/xalan-j_2_7_1/src/org/apache/xml/serializer/utils/SerializerMessages_tr.java

  • Committer: matthewoliver
  • Date: 2009-12-10 03:18:07 UTC
  • Revision ID: vcs-imports@canonical.com-20091210031807-l086qguzdlljtkl9
Merged Xena Testing into Xena Stable for the Xena 5 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Licensed to the Apache Software Foundation (ASF) under one
 
3
 * or more contributor license agreements. See the NOTICE file
 
4
 * distributed with this work for additional information
 
5
 * regarding copyright ownership. The ASF licenses this file
 
6
 * to you under the Apache License, Version 2.0 (the  "License");
 
7
 * you may not use this file except in compliance with the License.
 
8
 * You may obtain a copy of the License at
 
9
 *
 
10
 *     http://www.apache.org/licenses/LICENSE-2.0
 
11
 *
 
12
 * Unless required by applicable law or agreed to in writing, software
 
13
 * distributed under the License is distributed on an "AS IS" BASIS,
 
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
15
 * See the License for the specific language governing permissions and
 
16
 * limitations under the License.
 
17
 */
 
18
/*
 
19
 * $Id: SerializerMessages_tr.java,v 1.2 2009/12/10 03:18:23 matthewoliver Exp $
 
20
 */
 
21
 
 
22
package org.apache.xml.serializer.utils;
 
23
 
 
24
import java.util.ListResourceBundle;
 
25
import java.util.Locale;
 
26
import java.util.MissingResourceException;
 
27
import java.util.ResourceBundle;
 
28
 
 
29
/**
 
30
 * An instance of this class is a ListResourceBundle that
 
31
 * has the required getContents() method that returns
 
32
 * an array of message-key/message associations.
 
33
 * <p>
 
34
 * The message keys are defined in {@link MsgKey}. The
 
35
 * messages that those keys map to are defined here.
 
36
 * <p>
 
37
 * The messages in the English version are intended to be
 
38
 * translated.
 
39
 *
 
40
 * This class is not a public API, it is only public because it is
 
41
 * used in org.apache.xml.serializer.
 
42
 *
 
43
 * @xsl.usage internal
 
44
 */
 
45
public class SerializerMessages_tr extends ListResourceBundle {
 
46
 
 
47
    /*
 
48
     * This file contains error and warning messages related to
 
49
     * Serializer Error Handling.
 
50
     *
 
51
     *  General notes to translators:
 
52
 
 
53
     *  1) A stylesheet is a description of how to transform an input XML document
 
54
     *     into a resultant XML document (or HTML document or text).  The
 
55
     *     stylesheet itself is described in the form of an XML document.
 
56
 
 
57
     *
 
58
     *  2) An element is a mark-up tag in an XML document; an attribute is a
 
59
     *     modifier on the tag.  For example, in <elem attr='val' attr2='val2'>
 
60
     *     "elem" is an element name, "attr" and "attr2" are attribute names with
 
61
     *     the values "val" and "val2", respectively.
 
62
     *
 
63
     *  3) A namespace declaration is a special attribute that is used to associate
 
64
     *     a prefix with a URI (the namespace).  The meanings of element names and
 
65
     *     attribute names that use that prefix are defined with respect to that
 
66
     *     namespace.
 
67
     *
 
68
     *
 
69
     */
 
70
 
 
71
    /** The lookup table for error messages.   */
 
72
    public Object[][] getContents() {
 
73
        Object[][] contents = new Object[][] {
 
74
            {   MsgKey.BAD_MSGKEY,
 
75
                "''{0}'' ileti anahtar\u0131 ''{1}'' ileti s\u0131n\u0131f\u0131nda yok" },
 
76
 
 
77
            {   MsgKey.BAD_MSGFORMAT,
 
78
                "''{1}'' ileti s\u0131n\u0131f\u0131ndaki ''{0}'' iletisinin bi\u00e7imi ba\u015far\u0131s\u0131z." },
 
79
 
 
80
            {   MsgKey.ER_SERIALIZER_NOT_CONTENTHANDLER,
 
81
                "''{0}'' diziselle\u015ftirme s\u0131n\u0131f\u0131 org.xml.sax.ContentHandler s\u0131n\u0131f\u0131n\u0131 ger\u00e7ekle\u015ftirmiyor." },
 
82
 
 
83
            {   MsgKey.ER_RESOURCE_COULD_NOT_FIND,
 
84
                    "Kaynak [ {0} ] bulunamad\u0131.\n {1}" },
 
85
 
 
86
            {   MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
 
87
                    "Kaynak [ {0} ] y\u00fckleyemedi: {1} \n {2} \t {3}" },
 
88
 
 
89
            {   MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
 
90
                    "Arabellek b\u00fcy\u00fckl\u00fc\u011f\u00fc <=0" },
 
91
 
 
92
            {   MsgKey.ER_INVALID_UTF16_SURROGATE,
 
93
                    "UTF-16 yerine kullan\u0131lan de\u011fer ge\u00e7ersiz: {0} ?" },
 
94
 
 
95
            {   MsgKey.ER_OIERROR,
 
96
                "G\u00c7 hatas\u0131" },
 
97
 
 
98
            {   MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
 
99
                "Alt d\u00fc\u011f\u00fcmlerden sonra ya da bir \u00f6\u011fe \u00fcretilmeden \u00f6nce {0} \u00f6zniteli\u011fi eklenemez.  \u00d6znitelik yoksay\u0131lacak." },
 
100
 
 
101
            /*
 
102
             * Note to translators:  The stylesheet contained a reference to a
 
103
             * namespace prefix that was undefined.  The value of the substitution
 
104
             * text is the name of the prefix.
 
105
             */
 
106
            {   MsgKey.ER_NAMESPACE_PREFIX,
 
107
                "''{0}'' \u00f6nekine ili\u015fkin ad alan\u0131 bildirilmedi." },
 
108
 
 
109
            /*
 
110
             * Note to translators:  This message is reported if the stylesheet
 
111
             * being processed attempted to construct an XML document with an
 
112
             * attribute in a place other than on an element.  The substitution text
 
113
             * specifies the name of the attribute.
 
114
             */
 
115
            {   MsgKey.ER_STRAY_ATTRIBUTE,
 
116
                "''{0}'' \u00f6zniteli\u011fi \u00f6\u011fenin d\u0131\u015f\u0131nda." },
 
117
 
 
118
            /*
 
119
             * Note to translators:  As with the preceding message, a namespace
 
120
             * declaration has the form of an attribute and is only permitted to
 
121
             * appear on an element.  The substitution text {0} is the namespace
 
122
             * prefix and {1} is the URI that was being used in the erroneous
 
123
             * namespace declaration.
 
124
             */
 
125
            {   MsgKey.ER_STRAY_NAMESPACE,
 
126
                "''{0}''=''{1}'' ad alan\u0131 bildirimi \u00f6\u011fenin d\u0131\u015f\u0131nda." },
 
127
 
 
128
            {   MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
 
129
                "''{0}'' y\u00fcklenemedi (CLASSPATH de\u011fi\u015fkeninizi inceleyin), yaln\u0131zca varsay\u0131lanlar kullan\u0131l\u0131yor" },
 
130
 
 
131
            {   MsgKey.ER_ILLEGAL_CHARACTER,
 
132
                "Belirtilen {1} \u00e7\u0131k\u0131\u015f kodlamas\u0131nda g\u00f6sterilmeyen {0} t\u00fcmlev de\u011feri karakteri \u00e7\u0131k\u0131\u015f giri\u015fimi." },
 
133
 
 
134
            {   MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
 
135
                "''{1}'' \u00e7\u0131k\u0131\u015f y\u00f6ntemi i\u00e7in ''{0}'' \u00f6zellik dosyas\u0131 y\u00fcklenemedi (CLASSPATH de\u011fi\u015fkenini inceleyin)" },
 
136
 
 
137
            {   MsgKey.ER_INVALID_PORT,
 
138
                "Kap\u0131 numaras\u0131 ge\u00e7ersiz" },
 
139
 
 
140
            {   MsgKey.ER_PORT_WHEN_HOST_NULL,
 
141
                "Anasistem bo\u015f de\u011ferliyken kap\u0131 tan\u0131mlanamaz" },
 
142
 
 
143
            {   MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
 
144
                "Anasistem do\u011fru bi\u00e7imli bir adres de\u011fil" },
 
145
 
 
146
            {   MsgKey.ER_SCHEME_NOT_CONFORMANT,
 
147
                "\u015eema uyumlu de\u011fil." },
 
148
 
 
149
            {   MsgKey.ER_SCHEME_FROM_NULL_STRING,
 
150
                "Bo\u015f de\u011ferli dizgiden \u015fema tan\u0131mlanamaz" },
 
151
 
 
152
            {   MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
 
153
                "Yol ge\u00e7ersiz ka\u00e7\u0131\u015f dizisi i\u00e7eriyor" },
 
154
 
 
155
            {   MsgKey.ER_PATH_INVALID_CHAR,
 
156
                "Yol ge\u00e7ersiz karakter i\u00e7eriyor: {0}" },
 
157
 
 
158
            {   MsgKey.ER_FRAG_INVALID_CHAR,
 
159
                "Par\u00e7a ge\u00e7ersiz karakter i\u00e7eriyor" },
 
160
 
 
161
            {   MsgKey.ER_FRAG_WHEN_PATH_NULL,
 
162
                "Yol bo\u015f de\u011ferliyken par\u00e7a tan\u0131mlanamaz" },
 
163
 
 
164
            {   MsgKey.ER_FRAG_FOR_GENERIC_URI,
 
165
                "Par\u00e7a yaln\u0131zca soysal URI i\u00e7in tan\u0131mlanabilir" },
 
166
 
 
167
            {   MsgKey.ER_NO_SCHEME_IN_URI,
 
168
                "URI i\u00e7inde \u015fema bulunamad\u0131" },
 
169
 
 
170
            {   MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
 
171
                "Bo\u015f de\u011fi\u015ftirgelerle URI kullan\u0131ma haz\u0131rlanamaz" },
 
172
 
 
173
            {   MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
 
174
                "Par\u00e7a hem yolda, hem de par\u00e7ada belirtilemez" },
 
175
 
 
176
            {   MsgKey.ER_NO_QUERY_STRING_IN_PATH,
 
177
                "Yol ve sorgu dizgisinde sorgu dizgisi belirtilemez" },
 
178
 
 
179
            {   MsgKey.ER_NO_PORT_IF_NO_HOST,
 
180
                "Anasistem belirtilmediyse kap\u0131 belirtilemez" },
 
181
 
 
182
            {   MsgKey.ER_NO_USERINFO_IF_NO_HOST,
 
183
                "Anasistem belirtilmediyse kullan\u0131c\u0131 bilgisi belirtilemez" },
 
184
            {   MsgKey.ER_XML_VERSION_NOT_SUPPORTED,
 
185
                "Uyar\u0131:  \u00c7\u0131k\u0131\u015f belgesinin s\u00fcr\u00fcm\u00fcn\u00fcn ''{0}'' olmas\u0131 isteniyor.  Bu XML s\u00fcr\u00fcm\u00fc desteklenmez.  \u00c7\u0131k\u0131\u015f dosyas\u0131n\u0131n s\u00fcr\u00fcm\u00fc ''1.0'' olacak." },
 
186
 
 
187
            {   MsgKey.ER_SCHEME_REQUIRED,
 
188
                "\u015eema gerekli!" },
 
189
 
 
190
            /*
 
191
             * Note to translators:  The words 'Properties' and
 
192
             * 'SerializerFactory' in this message are Java class names
 
193
             * and should not be translated.
 
194
             */
 
195
            {   MsgKey.ER_FACTORY_PROPERTY_MISSING,
 
196
                "SerializerFactory''ye ge\u00e7irilen Properties nesnesinin bir ''{0}'' \u00f6zelli\u011fi yok." },
 
197
 
 
198
            {   MsgKey.ER_ENCODING_NOT_SUPPORTED,
 
199
                "Uyar\u0131: ''{0}'' kodlamas\u0131 Java Runtime taraf\u0131ndan desteklenmiyor." },
 
200
 
 
201
             {MsgKey.ER_FEATURE_NOT_FOUND,
 
202
             "''{0}'' de\u011fi\u015ftirgesi tan\u0131nm\u0131yor."},
 
203
 
 
204
             {MsgKey.ER_FEATURE_NOT_SUPPORTED,
 
205
             "''{0}'' de\u011fi\u015ftirgesi tan\u0131n\u0131yor, ancak istenen de\u011fer tan\u0131mlanam\u0131yor."},
 
206
 
 
207
             {MsgKey.ER_STRING_TOO_LONG,
 
208
             "Sonu\u00e7 dizgisi DOMString i\u00e7in \u00e7ok uzun: ''{0}''."},
 
209
 
 
210
             {MsgKey.ER_TYPE_MISMATCH_ERR,
 
211
             "Bu de\u011fi\u015ftirge ad\u0131na ili\u015fkin de\u011fer tipi, beklenen de\u011fer tipiyle uyumlu de\u011fil."},
 
212
 
 
213
             {MsgKey.ER_NO_OUTPUT_SPECIFIED,
 
214
             "Yaz\u0131lacak verilerin \u00e7\u0131k\u0131\u015f hedefi bo\u015f de\u011ferli."},
 
215
 
 
216
             {MsgKey.ER_UNSUPPORTED_ENCODING,
 
217
             "Desteklenmeyen bir kodlama saptand\u0131."},
 
218
 
 
219
             {MsgKey.ER_UNABLE_TO_SERIALIZE_NODE,
 
220
             "D\u00fc\u011f\u00fcm diziselle\u015ftirilemedi."},
 
221
 
 
222
             {MsgKey.ER_CDATA_SECTIONS_SPLIT,
 
223
             "CDATA k\u0131sm\u0131nda bir ya da daha \u00e7ok ']]>' sonland\u0131rma imleyicisi var."},
 
224
 
 
225
             {MsgKey.ER_WARNING_WF_NOT_CHECKED,
 
226
                 "Well-Formedness denet\u015feyicisinin somut \u00f6rne\u011fi yarat\u0131lamad\u0131.  well-formed de\u011fi\u015ftirgesi true de\u011ferine ayarland\u0131, ancak do\u011fru bi\u00e7im denetimi ger\u00e7ekle\u015ftirilemiyor."
 
227
             },
 
228
 
 
229
             {MsgKey.ER_WF_INVALID_CHARACTER,
 
230
                 "''{0}'' d\u00fc\u011f\u00fcm\u00fc ge\u00e7ersiz XML karakterleri i\u00e7eriyor."
 
231
             },
 
232
 
 
233
             { MsgKey.ER_WF_INVALID_CHARACTER_IN_COMMENT,
 
234
                 "A\u00e7\u0131klamada ge\u00e7ersiz bir XML karakteri (Unicode: 0x{0}) saptand\u0131."
 
235
             },
 
236
 
 
237
             { MsgKey.ER_WF_INVALID_CHARACTER_IN_PI,
 
238
                 "\u0130\u015fleme y\u00f6nergesi verilerinde ge\u00e7ersiz bir XML karakteri (Unicode: 0x{0}) saptand\u0131."
 
239
             },
 
240
 
 
241
             { MsgKey.ER_WF_INVALID_CHARACTER_IN_CDATA,
 
242
                 "CDATASection i\u00e7eri\u011finde ge\u00e7ersiz bir XML karakteri (Unicode: 0x{0}) saptand\u0131."
 
243
             },
 
244
 
 
245
             { MsgKey.ER_WF_INVALID_CHARACTER_IN_TEXT,
 
246
                 "D\u00fc\u011f\u00fcm\u00fcn karakter verileri i\u00e7eri\u011finde ge\u00e7ersiz bir XML karakteri (Unicode: 0x{0}) saptand\u0131."
 
247
             },
 
248
 
 
249
             { MsgKey.ER_WF_INVALID_CHARACTER_IN_NODE_NAME,
 
250
                 "''{1}'' adl\u0131 {0} d\u00fc\u011f\u00fcm\u00fcnde ge\u00e7ersiz XML karakteri saptand\u0131."
 
251
             },
 
252
 
 
253
             { MsgKey.ER_WF_DASH_IN_COMMENT,
 
254
                 "A\u00e7\u0131klamalar i\u00e7inde \"--\" dizgisine izin verilmez."
 
255
             },
 
256
 
 
257
             {MsgKey.ER_WF_LT_IN_ATTVAL,
 
258
                 "\"{0}\" \u00f6\u011fe tipiyle ili\u015fkilendirilen \"{1}\" \u00f6zniteli\u011finin de\u011feri ''<'' karakteri i\u00e7ermemelidir."
 
259
             },
 
260
 
 
261
             {MsgKey.ER_WF_REF_TO_UNPARSED_ENT,
 
262
                 "\"&{0};\" ayr\u0131\u015ft\u0131r\u0131lmam\u0131\u015f varl\u0131k ba\u015fvurusuna izin verilmez."
 
263
             },
 
264
 
 
265
             {MsgKey.ER_WF_REF_TO_EXTERNAL_ENT,
 
266
                 "\u00d6znitelik de\u011ferinde \"&{0};\" d\u0131\u015f varl\u0131k ba\u015fvurusuna izin verilmez."
 
267
             },
 
268
 
 
269
             {MsgKey.ER_NS_PREFIX_CANNOT_BE_BOUND,
 
270
                 "\"{0}\" \u00f6neki \"{1}\" ad alan\u0131na ba\u011flanam\u0131yor."
 
271
             },
 
272
 
 
273
             {MsgKey.ER_NULL_LOCAL_ELEMENT_NAME,
 
274
                 "\"{0}\" \u00f6\u011fesinin yerel ad\u0131 bo\u015f de\u011ferli."
 
275
             },
 
276
 
 
277
             {MsgKey.ER_NULL_LOCAL_ATTR_NAME,
 
278
                 "\"{0}\" \u00f6zniteli\u011finin yerel ad\u0131 bo\u015f de\u011ferli."
 
279
             },
 
280
 
 
281
             { MsgKey.ER_ELEM_UNBOUND_PREFIX_IN_ENTREF,
 
282
                 "\"{0}\" varl\u0131k d\u00fc\u011f\u00fcm\u00fcn\u00fcn yerine koyma metninde, ba\u011flanmam\u0131\u015f \"{2}\" \u00f6neki bulunan bir \u00f6\u011fe d\u00fc\u011f\u00fcm\u00fc (\"{1}\") var."
 
283
             },
 
284
 
 
285
             { MsgKey.ER_ATTR_UNBOUND_PREFIX_IN_ENTREF,
 
286
                 "\"{0}\" varl\u0131k d\u00fc\u011f\u00fcm\u00fcn\u00fcn yerine koyma metninde, ba\u011flanmam\u0131\u015f \"{2}\" \u00f6neki bulunan bir \u00f6znitelik d\u00fc\u011f\u00fcm\u00fc (\"{1}\") var."
 
287
             },
 
288
 
 
289
        };
 
290
 
 
291
        return contents;
 
292
    }
 
293
}