On the Checkout page, in delivery information (address), I'm not getting the text field names translated properly. Things like 'First name', stay in English even when I switch languages.
My understanding is that the field names are generated by:
uc_get_field_name() in uc_store.module and the translation occurs in that function.
I've test this out by changing the following:
function uc_get_field_name($field) {
$fields = array(
'first_name' => t('First name'),
to
function uc_get_field_name($field) {
$fields = array(
'first_name' => t('Test name'),
(This worked as expected and the field name change from 'First name'to 'Test name'.)
I've checked my .po file and there is an entry for 'First name' so I don't understand why it is not being used .... (I'v also checked the admin page and it'snot being used there either)
#: uc_store.admin.inc:233 uc_store.module:708;1177
msgid "First name"
msgstr "å"
Help!



