James Moger
2014-03-14 8384e02b7d6f1a1ecd6782c6b5f682c109cd6e04
src/main/java/com/gitblit/client/Translation.java
@@ -22,14 +22,14 @@
/**
 * Loads the Gitblit language resource file.
 *
 *
 * @author James Moger
 *
 *
 */
public class Translation {
   private final static ResourceBundle translation;
   private final static TimeUtils timeUtils;
   static {
@@ -42,8 +42,8 @@
         bundle = ResourceBundle.getBundle("GitBlitWebApp");
      }
      translation = bundle;
      timeUtils = new TimeUtils(translation);
      timeUtils = new TimeUtils(translation, null);
   }
   public static String get(String key) {
@@ -52,7 +52,7 @@
      }
      return key;
   }
   public static TimeUtils getTimeUtils() {
      return timeUtils;
   }