Hello,
I've just intalled SJ Responsive Content for K2 on my site and I like it very much. Unfortunatelly, I have some trouble with translating "Load More" button to Polish. So here's what I did:
1. I copied this file:
modules/mod_sj_k2_responsive_content/language/en-GB/en-GB.mod_sj_k2_responsive_content.ini
to:
modules/mod_sj_k2_responsive_content/language/pl-PL/pl-PL.mod_sj_k2_responsive_content.ini
(I plan to make my site multilingual soon, that's why I didn't edit the original en-GB.mod_sj_k2_responsive_content.ini file.)
2. I edited pl-PL.mod_sj_k2_responsive_content.ini file:
(line 135) LOAD_MORE_LABEL="Load More "
to:
LOAD_MORE_LABEL="Pokaż więcej "
It didn't work.
3. Then I found this "Load more" text in file modules/mod_sj_k2_responsive_content/tmpl/default.php
(line 75) $('.loader-label','#resp_content_button_<?php echo $module->id; ?>').html('Load More');
(line 243) <span class="loader-label" >Load More</span>
And I changed it to:
$('.loader-label','#resp_content_button_<?php echo $module->id; ?>').html('<?php echo JText::_(LOAD_MORE_LABEL) ?>');
<span class="loader-label" ><?php echo JText::_('LOAD_MORE_LABEL'); ?></span>
Now it seems to work fine, both in Polish and English, but there's still some problem with Polish chacters encoding - I get "Wczytaj wi�cej" message, and it should be "Wczytaj więcej". Could you please help me with this issue?
And here's my test site:
zatrzymujeczas.pl/test