Alfred Schmid
2014-02-03 03c0191b65c68dc6be3da0e0056bcb3cbc6e9cef
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;
   }