Home | History | Annotate | Download | only in utils
      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_sv.java 468654 2006-10-28 07:09:23Z minchau $
     20  */
     21 
     22 package org.apache.xml.serializer.utils;
     23 
     24 import java.util.ListResourceBundle;
     25 
     26 public class SerializerMessages_sv extends ListResourceBundle {
     27   public Object[][] getContents() {
     28     Object[][] contents =  new Object[][] {
     29         // BAD_MSGKEY needs translation
     30         // BAD_MSGFORMAT needs translation
     31         // ER_SERIALIZER_NOT_CONTENTHANDLER needs translation
     32         // ER_RESOURCE_COULD_NOT_FIND needs translation
     33         // ER_RESOURCE_COULD_NOT_LOAD needs translation
     34         // ER_BUFFER_SIZE_LESSTHAN_ZERO needs translation
     35         // ER_INVALID_UTF16_SURROGATE needs translation
     36         // ER_OIERROR needs translation
     37         // ER_ILLEGAL_ATTRIBUTE_POSITION needs translation
     38         // ER_NAMESPACE_PREFIX needs translation
     39         // ER_STRAY_ATTRIBUTE needs translation
     40         // ER_STRAY_NAMESPACE needs translation
     41         // ER_COULD_NOT_LOAD_RESOURCE needs translation
     42         // ER_ILLEGAL_CHARACTER needs translation
     43         // ER_COULD_NOT_LOAD_METHOD_PROPERTY needs translation
     44       { MsgKey.ER_INVALID_PORT,
     45         "Ogiltigt portnummer"},
     46 
     47       { MsgKey.ER_PORT_WHEN_HOST_NULL,
     48         "Port kan inte s\u00e4ttas n\u00e4r v\u00e4rd \u00e4r null"},
     49 
     50       { MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
     51         "V\u00e4rd \u00e4r inte en v\u00e4lformulerad adress"},
     52 
     53       { MsgKey.ER_SCHEME_NOT_CONFORMANT,
     54         "Schemat \u00e4r inte likformigt."},
     55 
     56       { MsgKey.ER_SCHEME_FROM_NULL_STRING,
     57         "Kan inte s\u00e4tta schema fr\u00e5n null-str\u00e4ng"},
     58 
     59       { MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
     60         "V\u00e4g inneh\u00e5ller ogiltig flyktsekvens"},
     61 
     62       { MsgKey.ER_PATH_INVALID_CHAR,
     63         "V\u00e4g inneh\u00e5ller ogiltigt tecken: {0}"},
     64 
     65       { MsgKey.ER_FRAG_INVALID_CHAR,
     66         "Fragment inneh\u00e5ller ogiltigt tecken"},
     67 
     68       { MsgKey.ER_FRAG_WHEN_PATH_NULL,
     69         "Fragment kan inte s\u00e4ttas n\u00e4r v\u00e4g \u00e4r null"},
     70 
     71       { MsgKey.ER_FRAG_FOR_GENERIC_URI,
     72         "Fragment kan bara s\u00e4ttas f\u00f6r en allm\u00e4n URI"},
     73 
     74       { MsgKey.ER_NO_SCHEME_IN_URI,
     75         "Schema saknas i URI: {0}"},
     76 
     77       { MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
     78         "Kan inte initialisera URI med tomma parametrar"},
     79 
     80       { MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
     81         "Fragment kan inte anges i b\u00e5de v\u00e4gen och fragmentet"},
     82 
     83       { MsgKey.ER_NO_QUERY_STRING_IN_PATH,
     84         "F\u00f6rfr\u00e5gan-str\u00e4ng kan inte anges i v\u00e4g och f\u00f6rfr\u00e5gan-str\u00e4ng"},
     85 
     86       { MsgKey.ER_NO_PORT_IF_NO_HOST,
     87         "Port f\u00e5r inte anges om v\u00e4rden inte \u00e4r angiven"},
     88 
     89       { MsgKey.ER_NO_USERINFO_IF_NO_HOST,
     90         "Userinfo f\u00e5r inte anges om v\u00e4rden inte \u00e4r angiven"},
     91 
     92       { MsgKey.ER_SCHEME_REQUIRED,
     93         "Schema kr\u00e4vs!"}
     94 
     95     };
     96     return contents;
     97   }
     98 }
     99