Commit | Line | Data |
---|---|---|
08fe2e33 NR |
1 | package be.nikiroo.fanfix.bundles; |
2 | ||
948637bc | 3 | import be.nikiroo.utils.resources.Bundle; |
08fe2e33 NR |
4 | |
5 | /** | |
6 | * The type of configuration information the associated {@link Bundle} will | |
7 | * convey. | |
459b4c28 NR |
8 | * <p> |
9 | * Those values can change when the file is not compatible anymore. | |
08fe2e33 NR |
10 | * |
11 | * @author niki | |
12 | */ | |
13 | public enum Target { | |
14 | /** | |
15 | * Configuration options that the user can change in the | |
b4dc6ab5 | 16 | * <tt>.properties</tt> file |
08fe2e33 | 17 | */ |
459b4c28 | 18 | config5, |
5bc9573b NR |
19 | /** Translation resources (Core) */ |
20 | resources_core, | |
21 | /** Translation resources (GUI) */ | |
22 | resources_gui, | |
b4dc6ab5 NR |
23 | /** UI resources (from colours to behaviour) */ |
24 | ui, | |
ce788468 NR |
25 | /** Description of UI resources. */ |
26 | ui_description, | |
08fe2e33 | 27 | } |