001 /* 002 * Licensed to the Apache Software Foundation (ASF) under one 003 * or more contributor license agreements. See the NOTICE file 004 * distributed with this work for additional information 005 * regarding copyright ownership. The ASF licenses this file 006 * to you under the Apache License, Version 2.0 (the "License"); 007 * you may not use this file except in compliance with the License. 008 * You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, 014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 015 * See the License for the specific language governing permissions and 016 * limitations under the License. 017 */ 018 /* 019 * $Id: ErrorMessages_no.java 468652 2006-10-28 07:05:17Z minchau $ 020 */ 021 022 package org.apache.xalan.xsltc.runtime; 023 024 import java.util.ListResourceBundle; 025 026 /** 027 * @author Morten Jorgensen 028 */ 029 public class ErrorMessages_no extends ListResourceBundle { 030 031 032 // Disse feilmeldingene maa korrespondere med konstantene some er definert 033 // nederst i kildekoden til BasisLibrary. 034 /** Get the lookup table for error messages. 035 * 036 * @return The message lookup table. 037 */ 038 public Object[][] getContents() 039 { 040 return new Object[][] { 041 {BasisLibrary.RUN_TIME_INTERNAL_ERR, 042 "Intern programfeil i ''{0}''"}, 043 044 {BasisLibrary.RUN_TIME_COPY_ERR, 045 "Programfeil under utf\u00f8ing av <xsl:copy>."}, 046 047 {BasisLibrary.DATA_CONVERSION_ERR, 048 "Ugyldig konvertering av ''{0}'' fra ''{1}''."}, 049 050 {BasisLibrary.EXTERNAL_FUNC_ERR, 051 "Ekstern funksjon ''{0}'' er ikke st\u00f8ttet av XSLTC."}, 052 053 {BasisLibrary.EQUALITY_EXPR_ERR, 054 "Ugyldig argument i EQUALITY uttrykk."}, 055 056 {BasisLibrary.INVALID_ARGUMENT_ERR, 057 "Ugyldig argument ''{0}'' i kall til ''{1}''"}, 058 059 {BasisLibrary.FORMAT_NUMBER_ERR, 060 "Fors\u00f8k p\u00e5 \u00e5 formattere nummer ''{0}'' med ''{1}''."}, 061 062 {BasisLibrary.ITERATOR_CLONE_ERR, 063 "Kan ikke klone iterator ''{0}''."}, 064 065 {BasisLibrary.AXIS_SUPPORT_ERR, 066 "Iterator for axis ''{0}'' er ikke st\u00e8ttet."}, 067 068 {BasisLibrary.TYPED_AXIS_SUPPORT_ERR, 069 "Iterator for typet axis ''{0}'' er ikke st\u00e8ttet."}, 070 071 {BasisLibrary.STRAY_ATTRIBUTE_ERR, 072 "Attributt ''{0}'' utenfor element."}, 073 074 {BasisLibrary.STRAY_NAMESPACE_ERR, 075 "Navnedeklarasjon ''{0}''=''{1}'' utenfor element."}, 076 077 {BasisLibrary.NAMESPACE_PREFIX_ERR, 078 "Prefix ''{0}'' er ikke deklartert."}, 079 080 {BasisLibrary.DOM_ADAPTER_INIT_ERR, 081 "Fors\u00f8k p\u00e5 \u00e5 instansiere DOMAdapter med feil type DOM."} 082 083 }; 084 } 085 }