-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessages_pt_PT.java
More file actions
29 lines (26 loc) · 842 Bytes
/
Copy pathMessages_pt_PT.java
File metadata and controls
29 lines (26 loc) · 842 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_pt_PT extends ListResourceBundle{
private Object[][] contents = {
{"Color", "Cor"},
{"Color_green", "Verde"},
{"Color_red", "Vermelho"},
{"Color_yellow", "Amarelo"},
{"Color_black", "Preto"},
{"Color_blue", "Azul"},
{"Color_white", "Branco"},
{"Size", "Tamanho"},
{"Check_both", "Ambos"},
{"Check_empty", "Vazio"},
{"Check_not_empty", "Não vazio"},
{"Name", "Entre no nome..."},
{"Buttons_start", "O começo"},
{"Buttons_stop", "Pare"},
{"Language", "Idioma"},
{"Frame", "A coleção"}
};
@Override
protected Object[][] getContents() {
return contents;
}
}