Merge branch 'subtree'
[fanfix.git] / src / be / nikiroo / fanfix / bundles / Target.java
index 212f8a7080502af2469edd9e5b15c7a61c649500..64284c6e424846e478d1f9e8cefd93ddef893105 100644 (file)
@@ -1,19 +1,27 @@
 package be.nikiroo.fanfix.bundles;
 
-import be.nikiroo.utils.resources.bundles.Bundle;
+import be.nikiroo.utils.resources.Bundle;
 
 /**
  * The type of configuration information the associated {@link Bundle} will
  * convey.
+ * <p>
+ * Those values can change when the file is not compatible anymore.
  * 
  * @author niki
  */
 public enum Target {
        /**
         * Configuration options that the user can change in the
-        * <tt>.properties</tt> file.
+        * <tt>.properties</tt> file
         */
-       config,
-       /** Translation resources. */
-       resources,
+       config5,
+       /** Translation resources (Core) */
+       resources_core,
+       /** Translation resources (GUI) */
+       resources_gui,
+       /** UI resources (from colours to behaviour) */
+       ui,
+       /** Description of UI resources. */
+       ui_description,
 }