I believe that this issue here http://drupal.org/node/1265152 is actually being caused by Kickstart and not Drupal Commerce.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | translate_image-1267386-2.patch | 491 bytes | FranciscoLuz |
| #1 | translate_image-1267386-1.patch | 1.53 KB | FranciscoLuz |
Comments
Comment #1
FranciscoLuz commentedUPDATE: Please apply the patch in #2 instead of this one.
So, in my case the culprit was a couple of typos on the t() function name in commerce_kickstart.profile and commerce_kickstart.install files. Once they were corrected the errors went away.
In field.views.inc the if check on $label != $label_name was failing for image field because $label was coming untranslated "Image" and $label_name was coming translated so the if statement was being executed when it shouldn't.
Please check out the patch attached.
Comment #2
FranciscoLuz commentedOk,
Let me correct a couple of things:
So, please ignore the patch in #1 and apply this one instead.
UPDATE: This patch will only fix the issue if applied b4 a fresh install is made. The only way I could think of fixing it on an already corrupted installation is to delete the field_image field at admin/structure/types/manage/article/fields
Comment #3
chi commented@ FranciscoLuz
Read this comment. It is not commerce_kickstart issue.
But I think that label of the field must be localized and the patch should be committed.
There is related issue with standard profile: #1048006: Name of vocabulary (Tags) created during install cannot be localized
Comment #4
rszrama commentedCommitted, thanks!