Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- (function ($) {
- $(document).ready(function () {
- var language = $('html').attr('lang'),
- moreLink = $('.post-content .more-link')
- if (language == 'en-US') {
- moreLink.text('read more');
- }
- if (language == 'hr-HR') {
- //Read more text for the Hrvatski Language
- moreLink.text('read more');
- }
- if (language == 'de-DE') {
- //Read more text for the Deutch Language
- moreLink.text('read more');
- }
- if (language == 'hu-HU') {
- //Read more text for the Magyar Language
- moreLink.text('read more');
- }
- if (language == 'pl-PL') {
- //Read more text for the Polski Language
- moreLink.text('read more');
- }
- if (language == 'ru-RU') {
- //Read more text for the Rusian Language
- moreLink.text('read more');
- }
- if (language == 'sr-RS') {
- //Read more text for the Srpski Language
- moreLink.text('read more');
- }
- if (language == 'sk-SK') {
- //Read more text for the Slovencina Language
- moreLink.text('read more');
- }
- });
- })(jQuery);
- </script>
Advertisement
Add Comment
Please, Sign In to add comment