Localize field_label in the next release
Hi again!
I'm using classipress in a multilingual environment and found thet $result->field_label is not wrapped within any i18n functions (__(), _e().. ) so I had to do it myself through all the theme changing
PHP Code:
$result->field_label
to
PHP Code:
__($result->field_label, 'appthemes')
or
PHP Code:
esc_html_e($result->field_label, 'appthemes')
Another thing is that I found some esc_html_e($result->field_label) without the translation domain 'appthemes', so I added it too...
Now my theme is ready for i18n but hope the next release fixes this so it doesn't override my changes.