Closed (duplicate)
Project:
Service links
Version:
6.x-2.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Aug 2011 at 02:40 UTC
Updated:
30 May 2013 at 10:36 UTC
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
Comment #1
TheCrow commented#846098: Translations don't work