2009-01-06 15:45:19 +01:00
|
|
|
# Remove this file, when every gettext-method <_("text to translate..")>
|
2009-01-06 15:55:29 +01:00
|
|
|
# is replaced by rails L18n method: L18n.name.name...
|
2009-01-06 15:45:19 +01:00
|
|
|
|
|
|
|
module ActionView
|
|
|
|
class Base
|
|
|
|
def _(text)
|
|
|
|
text
|
|
|
|
end
|
|
|
|
end
|
2009-01-06 15:55:29 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
module ActiveRecord
|
|
|
|
class Base
|
|
|
|
def _(text)
|
|
|
|
text
|
|
|
|
end
|
|
|
|
end
|
2009-02-01 23:09:03 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
module ActionController
|
|
|
|
class Base
|
|
|
|
def _(text)
|
|
|
|
text
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|