EduardET

Untitled

Jun 22nd, 2018
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. (function ($) {
  3.     $(document).ready(function () {
  4.         var language = $('html').attr('lang'),
  5.             moreLink = $('.post-content .more-link')
  6.         if (language == 'en-US') {
  7.             moreLink.text('read more');
  8.         }
  9.         if (language == 'hr-HR') {
  10.             //Read more text for the Hrvatski Language
  11.             moreLink.text('read more');
  12.         }
  13.         if (language == 'de-DE') {
  14.             //Read more text for the Deutch Language
  15.             moreLink.text('read more');
  16.         }
  17.         if (language == 'hu-HU') {
  18.             //Read more text for the Magyar Language
  19.             moreLink.text('read more');
  20.         }
  21.         if (language == 'pl-PL') {
  22.             //Read more text for the Polski Language
  23.             moreLink.text('read more');
  24.         }
  25.         if (language == 'ru-RU') {
  26.             //Read more text for the Rusian Language
  27.             moreLink.text('read more');
  28.         }
  29.         if (language == 'sr-RS') {
  30.             //Read more text for the Srpski Language
  31.             moreLink.text('read more');
  32.         }
  33.         if (language == 'sk-SK') {
  34.             //Read more text for the Slovencina Language
  35.             moreLink.text('read more');
  36.         }
  37.     });
  38. })(jQuery);
  39. </script>
Advertisement
Add Comment
Please, Sign In to add comment