-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessages_lt_LT.java
More file actions
29 lines (26 loc) · 860 Bytes
/
Copy pathMessages_lt_LT.java
File metadata and controls
29 lines (26 loc) · 860 Bytes
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
package lab5;
import java.util.ListResourceBundle;
public class Messages_lt_LT extends ListResourceBundle{
private Object[][] contents = {
{"Color", "Spalva"},
{"Color_green", "Žalia"},
{"Color_red", "Raudona"},
{"Color_yellow", "Geltona"},
{"Color_black", "Juoda"},
{"Color_blue", "Mėlyna"},
{"Color_white", "Balta"},
{"Size", "Dydis"},
{"Check_both", "Bet koks"},
{"Check_empty", "Tuščia"},
{"Check_not_empty", "Ne tuščias"},
{"Name", "Įveskite pavadinimą..."},
{"Buttons_start", "Pradėti"},
{"Buttons_stop", "Sustoti"},
{"Language", "Kalba"},
{"Frame", "Kolekcija"}
};
@Override
protected Object[][] getContents() {
return contents;
}
}