7600aef48b
As a side benefit, fix an (non-user-visible) bug in display_s5(). Also fixed a bug where removing orphaned pages did not expire cached summary pages.
13 lines
220 B
Ruby
13 lines
220 B
Ruby
module ActionController
|
|
module Translation
|
|
def translate(*args)
|
|
I18n.translate *args
|
|
end
|
|
alias :t :translate
|
|
|
|
def localize(*args)
|
|
I18n.localize *args
|
|
end
|
|
alias :l :localize
|
|
end
|
|
end |