Hi,

I'm using service links by two ways:
1 - printing the service as a field into a view field
2 - printing the services into node
Both cases doesn't get the translates string, always showing the english language.

I found that function service_links_short_url() is missing the t() function at line 463.
So change:
$service['attributes']['title'] = $service['description'];
to this:
$service['attributes']['title'] = t($service['description']);

Simple to resolve, but should be updated.

thanks

Comments

TheCrow’s picture

Status: Active » Closed (duplicate)