Dup translations right after lookup?

Heya,

I’ve just committed a change that has been proposed to me a while ago:

http://github.com/svenfuchs/i18n/commit/43304331eb7de2f52ccf9e343f457ffa4f5dc473

Based on

(Ummm, I should probably keep the author credits)

The test suite passes, but I though I should double check with everybody
on the list. Any objections? Am I missing something or is this a
no-brainer?

Background:

translation = I18n.t(“this.is.the.key”) # => “translated "
translation << " found”
translation = I18n.t(“this.is.the.key”) # => “translated found”

Thanks!

Ok, amended the commit so that I keep the author credits:

Is there anything in rails routes that allow to alias rails action
resource names, such as the doc suggested, e.g.:

config.action_controller.resources_path_names = {:new => ‘neu’, :edit
=> ‘bearbeiten’, :complete => ‘fertig’}

BTW, the above only works for :new action, not for
any :members, :collections, etc. !

The custom resource name plugin used to work real well getting around
that issue, in GitHub - carlosbrando/custom_resource_name: Custom Resource Name Plugin adds in your Ruby on Rails project the feature to create aliases for your named routes. This is extremely important for those who are developing software to a non-English public and wants all URLs in native language.,
however, no longer supports >2.3.4

map.aliases :actions, :edit => ‘bearbeiten’

Does anyone have a solution for that?

Greetings,
Juergen