Skip to content

Remove unnecessary bind call during translation

Mark Florian requested to merge remove-unnecessary-bind-in-gettext into master

What does this MR do?

Removes an unnecessary bind call during translation.

This was creating, calling and throwing away a brand new bound function on every single call to gettext. This is wasteful, as the original function can be called directly in such a way that this is bound correctly.

Merge request reports