KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > compiere > plaf > PlafRes_sv


1 /******************************************************************************
2  * The contents of this file are subject to the Compiere License Version 1.1
3  * ("License"); You may not use this file except in compliance with the License
4  * You may obtain a copy of the License at http://www.compiere.org/license.html
5  * Software distributed under the License is distributed on an "AS IS" basis,
6  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
7  * the specific language governing rights and limitations under the License.
8  * The Original Code is Compiere ERP & CRM Business Solution
9  * The Initial Developer of the Original Code is Jorg Janke and ComPiere, Inc.
10  * Portions created by Jorg Janke are Copyright (C) 1999-2001 Jorg Janke, parts
11  * created by ComPiere are Copyright (C) ComPiere, Inc.; All Rights Reserved.
12  * Contributor(s): ______________________________________.
13  *****************************************************************************/

14 package org.compiere.plaf;
15
16 import java.util.ListResourceBundle JavaDoc;
17
18 /**
19  * Swedish Translation Texts for Look & Feel
20  *
21  * @author Thomas Dilts
22  * @version $Id: PlafRes_sv.java,v 1.3 2003/10/29 06:11:08 jjanke Exp $
23  */

24 public class PlafRes_sv extends ListResourceBundle JavaDoc
25 {
26     /** The data */
27     static final Object JavaDoc[][] contents = new String JavaDoc[][]
28     {
29     { "BackColType", "Bakgrundsfärgtyp" },
30     { "BackColType_Flat", "Platt" },
31     { "BackColType_Gradient", "Toning" },
32     { "BackColType_Lines", "Linjer" },
33     { "BackColType_Texture", "Struktur" },
34     //
35
{ "LookAndFeelEditor", "Utseenderedigeringsprogram" },
36     { "LookAndFeel", "Utseendet" },
37     { "Theme", "Tema" },
38     { "EditCompiereTheme", "Redigera compiere tema" },
39     { "SetDefault", "Standardbakgrund" },
40     { "SetDefaultColor", "Bakgrundsfärg" },
41     { "ColorBlind", "Bristfälligfärg" },
42     { "Example", "Exempel" },
43     { "Reset", "Återställa" },
44     { "OK", "OK" },
45     { "Cancel", "Avbryt" },
46     //
47
{ "CompiereThemeEditor", "Compiere temaredigeringsprogram" },
48     { "MetalColors", "Metal färg" },
49     { "CompiereColors", "Compiere färger" },
50     { "CompiereFonts", "Compiere teckensnitt" },
51     { "Primary1Info", "Skugga, avskiljare" },
52     { "Primary1", "Primär 1" },
53     { "Primary2Info", "Fokus linje, vald meny" },
54     { "Primary2", "Primär 2" },
55     { "Primary3Info", "Tabel vald rad, vald text, knappbeskrivning bakgrund" },
56     { "Primary3", "Primär 3" },
57     { "Secondary1Info", "Ram linjer" },
58     { "Secondary1", "Sekundär 1" },
59     { "Secondary2Info", "Inactiv tabbar, nedtrycktfält, inactive ram + text" },
60     { "Secondary2", "Sekundär 2" },
61     { "Secondary3Info", "Bakgrund" },
62     { "Secondary3", "Sekundär 3" },
63     //
64
{ "ControlFontInfo", "Kontrolteckensnitt" },
65     { "ControlFont", "Textetiketter teckensnitt" },
66     { "SystemFontInfo", "Knappbeskrivning, Träd gren" },
67     { "SystemFont", "System teckensnitt" },
68     { "UserFontInfo", "Användare angiven data" },
69     { "UserFont", "Fält teckensnitt" },
70 // { "SmallFontInfo", "Reports" },
71
{ "SmallFont", "Liten teckensnitt" },
72     { "WindowTitleFont", "Rubrik teckensnitt" },
73     { "MenuFont", "Meny teckensnitt" },
74     //
75
{ "MandatoryInfo", "Obligatoriskt fält bakgrund" },
76     { "Mandatory", "Obligatorisk" },
77     { "ErrorInfo", "Fel fält bakgrund" },
78     { "Error", "Fel" },
79     { "InfoInfo", "Information fält bakgrund" },
80     { "Info", "Information" },
81     { "WhiteInfo", "Linjer" },
82     { "White", "Vit" },
83     { "BlackInfo", "Linjer, text" },
84     { "Black", "Svart" },
85     { "InactiveInfo", "Inactiv fält bakgrund" },
86     { "Inactive", "Inactiv" },
87     { "TextOKInfo", "OK text förgrund" },
88     { "TextOK", "Text - OK" },
89     { "TextIssueInfo", "Fel text förgrund" },
90     { "TextIssue", "Text - Fel" },
91     //
92
{ "FontChooser", "Teckensnittväljare" },
93     { "Fonts", "Teckensnitt" },
94     { "Plain", "Oformaterad" },
95     { "Italic", "Kursiv" },
96     { "Bold", "Fet" },
97     { "BoldItalic", "Fet & kursiv" },
98     { "Name", "Namn" },
99     { "Size", "Storlek" },
100     { "Style", "Stil" },
101     { "TestString", "Denna är en test! ABCDEFG abcdefg ÄäÅåÖö. 12,3456.78 LetterLOne = l1 LetterOZero = O0" },
102     { "FontString", "Teckensnitt" },
103     //
104
{ "CompiereColorEditor", "Compiere färgredigeringsprogram" },
105     { "CompiereType", "Färgtyp" },
106     { "GradientUpperColor", "Toning överfärg" },
107     { "GradientLowerColor", "Toning underfärg" },
108     { "GradientStart", "Toning start" },
109     { "GradientDistance", "Toning längd" },
110     { "TextureURL", "Struktur URL" },
111     { "TextureAlpha", "Struktur Alpha" },
112     { "TextureTaintColor", "Struktur fläckfärg" },
113     { "LineColor", "Linje färg" },
114     { "LineBackColor", "Bakgrundsfärg" },
115     { "LineWidth", "Linje bred" },
116     { "LineDistance", "Linje längd" },
117     { "FlatColor", "Mattfärg" }
118     };
119
120     /**
121      * Get Contents
122      * @return contents
123      */

124     public Object JavaDoc[][] getContents()
125     {
126         return contents;
127     }
128 } // Res
129
Popular Tags