zsh_root
2024-01-02 7b595546af704983dbafcd0d385c8768ddacefc2
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
package ColorAndFont;
 
import PbuliClass.Systems;
 
public class buttonTitle {
    static String serch="ËÑË÷";
    static String refresh="Ë¢ÐÂ";
    static String addOne="ÐÂÔö";
    static String alert="ÐÞ¸Ä";
    static String delete="ɾ³ý";
    static String deleteall="ȫɾ";
    static String alertall="È«²¿ÐÞ¸Ä";
    static String Import="µ¼Èë";
    static String outport="µ¼³ö";
    static String template="ÏÂÔØÄ£°å";
    static String more="¸ü¶àÉèÖÃ";
    static String save="±£´æ";
    static String analysis="µçÁ¿·ÖÎö";
    static String home="Ê×Ò³";
    static String next="ÏÂÒ»Ò³";
    static String previous="ÉÏÒ»Ò³";
    static String last="ĩҳ";
    static String treat="´¦Àí";
    static String treatAll="È«²¿´¦Àí";
    static String nodell="δ´¦Àí";
    static String okdell="δ´¦Àí";
    static String anchorManage="»ùÕ¾¹ÜÀí";
    static String unlimited="ÎÞÏÞÖÆ";
    
    public static String getSerch() {
        if(Systems.sys().getLanguage().equals("English")) {
            serch="serch";
        }
        return serch;
    }
    public static String getRefresh() {
        if(Systems.sys().getLanguage().equals("English")) {
            refresh="refresh";
        }
        return refresh;
    }
    public static String getAddOne() {
        if(Systems.sys().getLanguage().equals("English")) {
            addOne="add";
        }
        return addOne;
    }
    public static String getAlert() {
        if(Systems.sys().getLanguage().equals("English")) {
            alert="alert";
        }
        return alert;
    }
    public static String getDelete() {
        if(Systems.sys().getLanguage().equals("English")) {
            delete="delete";
        }
        return delete;
    }
    public static String getDeleteall() {
        if(Systems.sys().getLanguage().equals("English")) {
            deleteall="deleteAll";
        }
        return deleteall;
    }
    public static String getAlertall() {
        if(Systems.sys().getLanguage().equals("English")) {
            alertall="alertAll";
        }
        return alertall;
    }
    public static String getImport() {
        if(Systems.sys().getLanguage().equals("English")) {
            Import="Import";
        }
        return Import;
    }
    public static String getOutport() {
        if(Systems.sys().getLanguage().equals("English")) {
            outport="outport";
        }
        return outport;
    }
    public static String getTemplate() {
        if(Systems.sys().getLanguage().equals("English")) {
            template="template";
        }
        return template;
    }
    public static String getMore() {
        if(Systems.sys().getLanguage().equals("English")) {
            more="more";
        }
        return more;
    }
    public static String getSave() {
        if(Systems.sys().getLanguage().equals("English")) {
            save="save";
        }
        return save;
    }
    public static String getAnalysis() {
        if(Systems.sys().getLanguage().equals("English")) {
            analysis="analysis";
        }
        return analysis;
    }
    public static String getHome() {
        if(Systems.sys().getLanguage().equals("English")) {
            home="home";
        }
        return home;
    }
    public static String getNext() {
        if(Systems.sys().getLanguage().equals("English")) {
            next="next";
        }
        return next;
    }
    public static String getPrevious() {
        if(Systems.sys().getLanguage().equals("English")) {
            previous="previous";
        }
        return previous;
    }
    public static String getLast() {
        if(Systems.sys().getLanguage().equals("English")) {
            last="last";
        }
        return last;
    }
    public static String getTreat() {
        if(Systems.sys().getLanguage().equals("English")) {
            treat="treat";
        }
        return treat;
    }
    public static String getTreatAll() {
        if(Systems.sys().getLanguage().equals("English")) {
            treatAll="treatAll";
        }
        return treatAll;
    }
    public static String getNodell() {
        if(Systems.sys().getLanguage().equals("English")) {
            nodell="nodell";
        }
        return nodell;
    }
    public static String getOkdell() {
        if(Systems.sys().getLanguage().equals("English")) {
            okdell="okdell";
        }
        return okdell;
    }
    public static String getAnchorManage() {
        if(Systems.sys().getLanguage().equals("English")) {
            anchorManage="anchorManage";
        }
        return anchorManage;
    }
    public static String getUnlimited() {
        if(Systems.sys().getLanguage().equals("English")) {
            unlimited="unlimited";
        }
        return unlimited;
    }
 
 
}