Merge branch 'subtree'
[fanfix.git] / src / be / nikiroo / fanfix / bundles / StringIdBundle.java
index 3456b67e08ada71e1a2a25774478d1e3736878e2..b9a0d797719caf93b35abcf7e59bb508c338d76f 100644 (file)
@@ -3,23 +3,23 @@ package be.nikiroo.fanfix.bundles;
 import java.io.File;
 import java.io.IOException;
 
-import be.nikiroo.utils.resources.bundles.TransBundle;
+import be.nikiroo.utils.resources.TransBundle;
 
 /**
- * This class manages the translation resources of the application.
+ * This class manages the translation resources of the application (Core).
  * 
  * @author niki
  */
 public class StringIdBundle extends TransBundle<StringId> {
        /**
         * Create a translation service for the given language (will fall back to
-        * the default one i not found).
+        * the default one if not found).
         * 
         * @param lang
         *            the language to use
         */
        public StringIdBundle(String lang) {
-               super(StringId.class, Target.resources, lang);
+               super(StringId.class, Target.resources_core, lang);
        }
 
        /**