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