]> source.dussan.org Git - redmine.git/commitdiff
removed translation of error messages inside ActiveRecord module
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 3 Feb 2007 12:42:06 +0000 (12:42 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 3 Feb 2007 12:42:06 +0000 (12:42 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@222 e93f8b46-1217-0410-a6f0-8f06a7374b81

vendor/plugins/gloc-1.1.0/lib/gloc-rails.rb

index 0a35b90abd2335ef2ff875f45e2e45ae6855b49e..006d8976ab42f20a0b3eeb09ac7089bc2e62de38 100644 (file)
@@ -130,29 +130,29 @@ module ActiveRecord #:nodoc:
     include GLoc\r
   end\r
   \r
-  class Errors\r
-    include GLoc\r
-    alias :add_without_gloc :add\r
-    # The GLoc version of this method provides two extra features\r
-    # * If <tt>msg</tt> is a string, it will be considered a GLoc string key.\r
-    # * If <tt>msg</tt> is an array, the first element will be considered\r
-    #   the string and the remaining elements will be considered arguments for the\r
-    #   string. Eg. <tt>['Hi %s.','John']</tt>\r
-    def add(attribute, msg= @@default_error_messages[:invalid])\r
-      if msg.is_a?(Array)\r
-        args= msg.clone\r
-        msg= args.shift\r
-        args= nil if args.empty?\r
-      end\r
-      msg= ltry(msg)\r
-      msg= msg % args unless args.nil?\r
-      add_without_gloc(attribute, msg)\r
-    end\r
-    # Inherits the current language from the base record.\r
-    def current_language\r
-      @base.current_language\r
-    end\r
-  end\r
+#  class Errors\r
+#    include GLoc\r
+#    alias :add_without_gloc :add\r
+#    # The GLoc version of this method provides two extra features\r
+#    # * If <tt>msg</tt> is a string, it will be considered a GLoc string key.\r
+#    # * If <tt>msg</tt> is an array, the first element will be considered\r
+#    #   the string and the remaining elements will be considered arguments for the\r
+#    #   string. Eg. <tt>['Hi %s.','John']</tt>\r
+#    def add(attribute, msg= @@default_error_messages[:invalid])\r
+#      if msg.is_a?(Array)\r
+#        args= msg.clone\r
+#        msg= args.shift\r
+#        args= nil if args.empty?\r
+#      end\r
+#      msg= ltry(msg)\r
+#      msg= msg % args unless args.nil?\r
+#      add_without_gloc(attribute, msg)\r
+#    end\r
+#    # Inherits the current language from the base record.\r
+#    def current_language\r
+#      @base.current_language\r
+#    end\r
+#  end\r
   \r
   module Validations #:nodoc:\r
     module ClassMethods\r