-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessages_es_CO.java
More file actions
30 lines (26 loc) · 848 Bytes
/
Copy pathMessages_es_CO.java
File metadata and controls
30 lines (26 loc) · 848 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
30
package lab5;
import java.util.ListResourceBundle;
public class Messages_es_CO extends ListResourceBundle{
private Object[][] contents = {
{"Color", "Colorear"},
{"Color_green", "Verde"},
{"Color_red", "Rojo"},
{"Color_yellow", "Amarillo"},
{"Color_black", "Negro"},
{"Color_blue", "Azul"},
{"Color_white", "Blanco"},
{"Size", "Tamaño"},
{"Check_both", "Cualquier"},
{"Check_empty", "Vacio"},
{"Check_not_empty", "No vacio"},
{"Name", "Ingrese el nombre..."},
{"Buttons_start", "Empezar"},
{"Buttons_stop", "Parar"},
{"Language", "Idioma"},
{"Frame", "Coleccion"}
};
@Override
protected Object[][] getContents() {
return contents;
}
}