Skip to content

Instantly share code, notes, and snippets.

@emhoracek
Created September 20, 2014 04:20
Show Gist options
  • Select an option

  • Save emhoracek/8b342b0db04c99d1bf4d to your computer and use it in GitHub Desktop.

Select an option

Save emhoracek/8b342b0db04c99d1bf4d to your computer and use it in GitHub Desktop.
# Doesn't work
sub label {
my ( $class, $u ) = @_;
return $_[0]->ml( 'setting.display.journaliconstyle.label.comm')
if $u && $u->is_community;
return $_[0]->ml( 'setting.display.journaliconstyle.label' );
}
# works
sub option_ml {
my ( $class, $u ) = @_;
return $_[0]->ml( 'setting.display.journaliconstyle.option.comm')
if $u && $u->is_community;
return $_[0]->ml('setting.display.journaliconstyle.option');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment