Skip to content

Commit ea51fe1

Browse files
committed
Forward kwargs
1 parent 15f373b commit ea51fe1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/ice_cube/i18n.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ module I18n
55

66
LOCALES_PATH = File.expand_path(File.join('..', '..', '..', 'config', 'locales'), __FILE__)
77

8-
def self.t(*args)
9-
backend.t(*args)
8+
def self.t(*args, **kwargs)
9+
backend.t(*args, **kwargs)
1010
end
1111

12-
def self.l(*args)
13-
backend.l(*args)
12+
def self.l(*args, **kwargs)
13+
backend.l(*args, **kwargs)
1414
end
1515

1616
def self.backend

0 commit comments

Comments
 (0)