Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • christofferl Friend
    #162349

    I would like to have the Read more… text to appear instead of a strange icon. Please let me know what to do. See attached image.


    1. joomlart_1a
    chavan Friend
    #384799

    <em>@christofferl 232138 wrote:</em><blockquote>I would like to have the Read more… text to appear instead of a strange icon. Please let me know what to do. See attached image.</blockquote>

    Live url please

    christofferl Friend
    #384800

    Thank you for trying to help!
    Have a look at this link¨

    … any ideas?

    chavan Friend
    #384817

    <em>@christofferl 232187 wrote:</em><blockquote>Thank you for trying to help!
    Have a look at this link¨

    … any ideas?</blockquote>

    open this page templatesja_teline_ivhtmlcom_k2templatesDefaultcategory_item.php

    check do you have the same set of code


    <div class="catItemReadMore">
    <a class="k2ReadMore" href="<?php echo $this->item->link; ?>">
    <?php echo JText::_('Read more...'); ?>
    </a>
    </div>

    or check this languageen-GBen-GB.com_k2.ini

    READ MORE… LINK=Read more… link

    Is the above thing is same in your site file.

    Please check this and confirm. Then i will provide you the css suggestion.

    christofferl Friend
    #384827

    :-[ As I am not a coder I will simply copy the whole content of the category_time.php file:

    <?php
    /**
    * @version $Id: category_item.php 493 2010-06-17 14:58:58Z joomlaworks $
    * @package K2
    * @author JoomlaWorks http://www.joomlaworks.gr
    * @copyright Copyright (c) 2006 - 2010 JoomlaWorks, a business unit of Nuevvo Webware Ltd. All rights reserved.
    * @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
    */

    // no direct access
    defined('_JEXEC') or die('Restricted access');

    // Define default image size (do not change)
    K2HelperUtilities::setDefaultImage($this->item, 'itemlist', $this->item->params);

    ?>

    <!-- Start K2 Item Layout -->
    <div class="catItemView group<?php echo ucfirst($this->item->itemGroup); ?><?php echo ($this->item->featured) ? ' catItemIsFeatured' : ''; ?><?php if($this->item->params->get('pageclass_sfx')) echo ' '.$this->item->params->get('pageclass_sfx'); ?>">

    <!-- Plugins: BeforeDisplay -->
    <?php echo $this->item->event->BeforeDisplay; ?>

    <!-- K2 Plugins: K2BeforeDisplay -->
    <?php echo $this->item->event->K2BeforeDisplay; ?>

    <?php if(isset($this->item->editLink)): ?>
    <!-- Item edit link -->
    <span class="catItemEditLink">
    <a class="modal" rel="{handler:'iframe',size:{x:990,y:650}}" href="<?php echo $this->item->editLink; ?>">
    <?php echo JText::_('Edit item'); ?>
    </a>
    </span>
    <?php endif; ?>

    <div class="catItemHeader">

    <?php if($this->item->params->get('catItemDateCreated')): ?>
    <!-- Date created -->
    <span class="catItemDateCreated">
    <?php echo JHTML::_('date', $this->item->created , JText::_('DATE_FORMAT_LC2')); ?>
    </span>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemTitle')): ?>
    <!-- Item title -->
    <h3 class="catItemTitle">
    <?php if ($this->item->params->get('catItemTitleLinked')): ?>
    <a href="<?php echo $this->item->link; ?>">
    <?php echo $this->item->title; ?>
    </a>
    <?php else: ?>
    <?php echo $this->item->title; ?>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemFeaturedNotice') && $this->item->featured): ?>
    <!-- Featured flag -->
    <span>
    <sup>
    <?php echo JText::_('Featured'); ?>
    </sup>
    </span>
    <?php endif; ?>

    </h3>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemAuthor')): ?>
    <!-- Item Author -->
    <span class="catItemAuthor">
    <?php echo K2HelperUtilities::writtenBy($this->item->author->profile->gender); ?> <a href="<?php echo $this->item->author->link; ?>"><?php echo $this->item->author->name; ?></a>
    </span>
    <?php endif; ?>

    </div>

    <!-- Plugins: AfterDisplayTitle -->
    <?php echo $this->item->event->AfterDisplayTitle; ?>

    <!-- K2 Plugins: K2AfterDisplayTitle -->
    <?php echo $this->item->event->K2AfterDisplayTitle; ?>

    <?php if($this->item->params->get('catItemRating')): ?>
    <!-- Item Rating -->
    <div class="catItemRatingBlock">
    <span><?php echo JText::_('Rate this item'); ?></span>
    <div class="itemRatingForm">
    <ul class="itemRatingList">
    <li class="itemCurrentRating" id="itemCurrentRating<?php echo $this->item->id; ?>" style="width:<?php echo $this->item->votingPercentage; ?>%;"></li>
    <li><a href="#" rel="<?php echo $this->item->id; ?>" title="<?php echo JText::_('1 star out of 5'); ?>" class="one-star">1</a></li>
    <li><a href="#" rel="<?php echo $this->item->id; ?>" title="<?php echo JText::_('2 stars out of 5'); ?>" class="two-stars">2</a></li>
    <li><a href="#" rel="<?php echo $this->item->id; ?>" title="<?php echo JText::_('3 stars out of 5'); ?>" class="three-stars">3</a></li>
    <li><a href="#" rel="<?php echo $this->item->id; ?>" title="<?php echo JText::_('4 stars out of 5'); ?>" class="four-stars">4</a></li>
    <li><a href="#" rel="<?php echo $this->item->id; ?>" title="<?php echo JText::_('5 stars out of 5'); ?>" class="five-stars">5</a></li>
    </ul>
    <div id="itemRatingLog<?php echo $this->item->id; ?>" class="itemRatingLog"><?php echo $this->item->numOfvotes; ?></div>
    <div class="clr"></div>
    </div>
    <div class="clr"></div>
    </div>
    <?php endif; ?>

    <div class="catItemBody">

    <!-- Plugins: BeforeDisplayContent -->
    <?php echo $this->item->event->BeforeDisplayContent; ?>

    <!-- K2 Plugins: K2BeforeDisplayContent -->
    <?php echo $this->item->event->K2BeforeDisplayContent; ?>

    <?php if($this->item->params->get('catItemImage') && !empty($this->item->image)): ?>
    <!-- Item Image -->
    <div class="catItemImageBlock">
    <span class="catItemImage">
    <a href="<?php echo $this->item->link; ?>" title="<?php if(!empty($this->item->image_caption)) echo $this->item->image_caption; else echo $this->item->title; ?>">
    <img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo $this->item->image_caption; else echo $this->item->title; ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" />
    </a>
    </span>
    <div class="clr"></div>
    </div>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemIntroText')): ?>
    <!-- Item introtext -->
    <div class="catItemIntroText">
    <?php echo $this->item->introtext; ?>
    </div>
    <?php endif; ?>

    <div class="clr"></div>

    <?php if($this->item->params->get('catItemExtraFields') && count($this->item->extra_fields)): ?>
    <!-- Item extra fields -->
    <div class="catItemExtraFields">
    <h4><?php echo JText::_('Additional Info'); ?></h4>
    <ul>
    <?php foreach ($this->item->extra_fields as $key=>$extraField): ?>
    <li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
    <span class="catItemExtraFieldsLabel"><?php echo $extraField->name; ?></span>
    <span class="catItemExtraFieldsValue"><?php echo $extraField->value; ?></span>
    </li>
    <?php endforeach; ?>
    </ul>
    <div class="clr"></div>
    </div>
    <?php endif; ?>

    <!-- Plugins: AfterDisplayContent -->
    <?php echo $this->item->event->AfterDisplayContent; ?>

    <!-- K2 Plugins: K2AfterDisplayContent -->
    <?php echo $this->item->event->K2AfterDisplayContent; ?>

    <div class="clr"></div>
    </div>

    <?php if(
    $this->item->params->get('catItemHits') ||
    $this->item->params->get('catItemCategory') ||
    $this->item->params->get('catItemTags') ||
    $this->item->params->get('catItemAttachments')
    ): ?>
    <div class="catItemLinks">

    <?php if($this->item->params->get('catItemHits')): ?>
    <!-- Item Hits -->
    <div class="catItemHitsBlock">
    <span class="catItemHits">
    <?php echo JText::_('Read'); ?> <b><?php echo $this->item->hits; ?></b> <?php echo JText::_('times'); ?>
    </span>
    </div>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemCategory')): ?>
    <!-- Item category name -->
    <div class="catItemCategory">
    <span><?php echo JText::_('Published in'); ?></span>
    <a href="<?php echo $this->item->category->link; ?>"><?php echo $this->item->category->name; ?></a>
    </div>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemTags') && count($this->item->tags)): ?>
    <!-- Item tags -->
    <div class="catItemTagsBlock">
    <span><?php echo JText::_("Tagged under"); ?></span>
    <ul class="catItemTags">
    <?php foreach ($this->item->tags as $tag): ?>
    <li><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></li>
    <?php endforeach; ?>
    </ul>
    <div class="clr"></div>
    </div>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemAttachments') && count($this->item->attachments)): ?>
    <!-- Item attachments -->
    <div class="catItemAttachmentsBlock">
    <span><?php echo JText::_("Download attachments:"); ?></span>
    <ul class="catItemAttachments">
    <?php foreach ($this->item->attachments as $attachment): ?>
    <li>
    <a title="<?php echo htmlentities($attachment->titleAttribute, ENT_QUOTES, 'UTF-8'); ?>" href="<?php echo JRoute::_('index.php?option=com_k2&view=item&task=download&id='.$attachment->id); ?>">
    <?php echo $attachment->title ; ?>
    </a>
    <?php if($this->item->params->get('catItemAttachmentsCounter')): ?>
    <span>(<?php echo $attachment->hits; ?> <?php echo (count($attachment->hits)==1) ? JText::_("download") : JText::_("downloads"); ?>)</span>
    <?php endif; ?>
    </li>
    <?php endforeach; ?>
    </ul>
    </div>
    <?php endif; ?>

    <div class="clr"></div>
    </div>
    <?php endif; ?>

    <div class="clr"></div>

    <?php if($this->item->params->get('catItemVideo') && !empty($this->item->video)): ?>
    <!-- Item video -->
    <div class="catItemVideoBlock">
    <h3><?php echo JText::_('Related Video'); ?></h3>
    <?php if($this->item->videoType=='embedded'): ?>
    <div class="catItemVideoEmbedded">
    <?php echo $this->item->video; ?>
    </div>
    <?php else: ?>
    <span class="catItemVideo"><?php echo $this->item->video; ?></span>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemImageGallery') && !empty($this->item->gallery)): ?>
    <!-- Item image gallery -->
    <div class="catItemImageGallery">
    <h4><?php echo JText::_('Image Gallery'); ?></h4>
    <?php echo $this->item->gallery; ?>
    </div>
    <?php endif; ?>

    <div class="clr"></div>

    <?php if($this->item->params->get('catItemCommentsAnchor') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?>
    <!-- Anchor link to comments below -->
    <div class="catItemCommentsLink">
    <?php if(!empty($this->item->event->K2CommentsCounter)):?>
    <!-- K2 Plugins: K2CommentsCounter -->
    <?php echo $this->item->event->K2CommentsCounter; ?>
    <?php else: ?>
    <?php if($this->item->numOfComments > 0): ?>
    <a href="<?php echo $this->item->link; ?>#itemCommentsAnchor">
    <?php echo $this->item->numOfComments; ?> <?php echo ($this->item->numOfComments>1) ? JText::_('comments') : JText::_('comment'); ?>
    </a>
    <?php else: ?>
    <a href="<?php echo $this->item->link; ?>#itemCommentsAnchor">
    <?php echo JText::_('Be the first to comment!'); ?>
    </a>
    <?php endif; ?>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <?php if ($this->item->params->get('catItemReadMore')): ?>
    <!-- Item "read more..." link -->
    <div class="catItemReadMore">
    <a class="k2ReadMore" href="<?php echo $this->item->link; ?>">
    <?php echo JText::_('Read more...'); ?>
    </a>
    </div>
    <?php endif; ?>

    <div class="clr"></div>

    <?php if($this->item->params->get('catItemDateModified')): ?>
    <!-- Item date modified -->
    <?php if($this->item->created != $this->item->modified): ?>
    <span class="catItemDateModified">
    <?php echo JText::_('Last modified on'); ?> <?php echo JHTML::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2')); ?>
    </span>
    <?php endif; ?>
    <?php endif; ?>

    <!-- Plugins: AfterDisplay -->
    <?php echo $this->item->event->AfterDisplay; ?>

    <!-- K2 Plugins: K2AfterDisplay -->
    <?php echo $this->item->event->K2AfterDisplay; ?>

    <div class="clr"></div>
    </div>
    <!-- End K2 Item Layout -->

    … and here is the .ini file:

    # en-GB.com_k2.ini
    # generated: Wed, 02 Feb 2011 09:54:00 GMT

    # controllers/item.php
    THIS CATEGORY DOESN'T HAVE ASSIGNED EXTRA FIELDS=
    ALERTNOTAUTH=

    # controllers/itemlist.php
    JANUARY=
    FEBRUARY=
    MARCH=
    APRIL=
    MAY=
    JUNE=
    JULY=
    AUGUST=
    SEPTEMBER=
    OCTOBER=
    NOVEMBER=
    DECEMBER=
    SUN=
    MON=
    TUE=
    WED=
    THU=
    FRI=
    SAT=

    # helpers/utilities.php
    WRITTEN_BY=Written by
    WRITTEN_BY_MALE=Written by
    WRITTEN_BY_FEMALE=Written by

    # models/comments.php
    DELETE COMPLETED=
    SAVE COMPLETED=Save completed

    # models/item.php
    ITEM NOT FOUND=Item not found
    THANKS FOR RATING!=Thanks for rating!
    YOU HAVE ALREADY RATED THIS ITEM.=You already have rate this Item.
    VOTES=votes
    VOTE=Vote
    ENTER YOUR NAME...=enter your name...
    ENTER YOUR COMMENT HERE...=
    ENTER YOUR E-MAIL ADDRESS...=enter your e-mail address...
    YOU NEED TO FILL IN ALL REQUIRED FIELDS!=You need to fill in all Required Fields!
    INVALID E-MAIL ADDRESS!=Invalid Email Address!
    THE NAME OR EMAIL ADDRESS YOU TYPED IS ALREADY IN USE!=The Name or Email Address you typed is already in use!
    THE WORDS YOU TYPED DID NOT MATCH THE ONES DISPLAYED. PLEASE TRY AGAIN.=The words you typed did not match the ones displayed. Please try again.
    ENTER YOUR SITE URL...=enter your site URL...
    THANK YOU. YOUR COMMENT WILL BE PUBLISHED SHORTLY.=Thank you. Your comment will be published shortly.
    COMMENT ADDED! REFRESHING PAGE...=Comment added! Refreshing page...
    COMMENT ADDED AND WAITING FOR APPROVAL.=Comment added and waiting for approval.

    # models/itemlist.php
    NOT FOUND=
    COMMENTED ON=commented on

    # templates/default/category.php
    SUBSCRIBE TO THIS RSS FEED=Subscribe to this RSS feed
    ADD A NEW ITEM IN THIS CATEGORY=Add a new item in this category
    CHILDREN CATEGORIES=
    VIEW ITEMS...=View items...
    MORE...=More...

    # templates/default/category_item.php
    EDIT ITEM=Edit item
    DATE_FORMAT_LC2=
    FEATURED=Featured
    RATE THIS ITEM=Rate this item
    1 STAR OUT OF 5=1 star out of 5
    2 STARS OUT OF 5=2 stars out of 5
    3 STARS OUT OF 5=3 stars out of 5
    4 STARS OUT OF 5=4 stars out of 5
    5 STARS OUT OF 5=5 stars out of 5
    ADDITIONAL INFO=Additional Info
    READ=Read
    TIMES=times
    PUBLISHED IN=Published in category:
    TAGGED UNDER=Tagged under:
    DOWNLOAD ATTACHMENTS:=Download attachments:
    DOWNLOAD=
    DOWNLOADS=
    RELATED VIDEO=Related Video
    IMAGE GALLERY=
    COMMENTS=comments
    COMMENT=Comment
    BE THE FIRST TO COMMENT!=Be the first to comment!
    READ MORE...=
    LAST MODIFIED ON=Last modified on

    # templates/default/item.php
    FONT SIZE=font size
    DECREASE FONT SIZE=decrease font size
    INCREASE FONT SIZE=increase font size
    PRINT=
    E-MAIL=E-mail
    VIDEO=Video
    CLICK TO PREVIEW IMAGE=Click to preview image
    LIKE THIS? TWEET IT TO YOUR FOLLOWERS!=Like this? Tweet it to your followers!
    SOCIAL SHARING=Social sharing
    ADD TO GOOGLE BUZZ=Add to Google Buzz
    ADD TO FACEBOOK=Add to Facebook
    ADD TO DELICIOUS=Add to Delicious
    DIGG THIS=Digg this
    ADD TO REDDIT=Add to Reddit
    ADD TO STUMBLEUPON=Add to StumbleUpon
    ADD TO MYSPACE=Add to MySpace
    ADD TO TECHNORATI=Add to Technorati
    WEBSITE:=Website:
    E-MAIL:=E-mail:
    LATEST FROM=Latest from
    RELATED ITEMS (BY TAG)=Related items (by tag)
    MORE IN THIS CATEGORY:=More in this category:
    COMMENT LINK=Comment Link
    POSTED BY=posted by
    LOGIN TO POST COMMENTS=
    BACK TO TOP=back to top

    # templates/default/item_comments_form.php
    LEAVE A COMMENT=Leave a comment
    MESSAGE=
    ENTER YOUR MESSAGE HERE...=enter your message here...
    NAME=Name
    WEBSITE URL=Website URL
    ENTER THE TWO WORDS YOU SEE BELOW=Enter the two words you see below
    SUBMIT COMMENT=Submit comment

    # templates/profile.php
    ACCOUNT DETAILS=Account details
    USER NAME=
    EMAIL=Email
    PASSWORD=
    VERIFY PASSWORD=
    PERSONAL DETAILS=Personal details
    GENDER=Gender
    DESCRIPTION=Description
    USER IMAGE (AVATAR)=User image (avatar)
    CHECK THIS BOX TO DELETE CURRENT IMAGE OR JUST UPLOAD A NEW IMAGE TO REPLACE THE EXISTING ONE=Check this box to delete current image or just upload a new image to replace the existing one
    URL=URL
    ADDITIONAL DETAILS=
    ADMINISTRATIVE DETAILS=Administrative details
    SAVE=

    # templates/register.php
    REGISTER_REQUIRED=
    REGISTER=

    # templates/user.php
    POST A NEW ITEM=Post a new item
    UNPUBLISHED=Unpublished

    # views/comments/tmpl/default.php
    THIS WILL PERMANENTLY DELETE ALL UNPUBLISHED COMMENTS. ARE YOU SURE?', TRUE); ?>=
    YOU CANNOT EDIT TWO COMMENTS AT THE SAME TIME!', TRUE); ?>=
    PLEASE MAKE A SELECTION FROM THE LIST TO PUBLISH!',TRUE); ?>=
    PUBLISH=
    PLEASE MAKE A SELECTION FROM THE LIST TO UNPUBLISH!',TRUE); ?>=
    UNPUBLISH=
    PLEASE MAKE A SELECTION FROM THE LIST TO DELETE!',TRUE); ?>=
    DELETE=
    DELETE ALL UNPUBLISHED=Delete all unpublished
    MODERATE COMMENTS TO MY ITEMS=Moderate comments to my items
    FILTER:=Filter:
    FILTER BY COMMENT=Filter by comment
    GO=Go
    RESET=Reset
    EDIT=
    CANCEL=
    K2_DATE_FORMAT=%d/%m/%Y - %H:%M
    NO ONE HAS COMMENTED ON YOUR PUBLISHED ITEMS SO FAR.=

    # views/comments/view.html.php
    SELECT STATE=Select State
    PUBLISHED=
    SELECT CATEGORY=Select category

    # views/item/tmpl/form.php
    ITEM MUST HAVE A TITLE', TRUE); ?>=
    PLEASE SELECT A CATEGORY', TRUE); ?>=
    LINK TITLE (OPTIONAL)', TRUE); ?>=
    LINK TITLE ATTRIBUTE (OPTIONAL)', TRUE); ?>=
    ARE YOU SURE?', TRUE); ?>=
    YOU ARE NOT ALLOWED TO POST TO THIS CATEGORY',TRUE); ?>=
    ADD ITEM=Add Item
    TOGGLE SIDEBAR=Toggle sidebar
    TITLE=Title
    TITLE ALIAS=Title alias
    IS IT FEATURED?=Is it featured?
    TAGS=Tags
    WRITE A TAG AND PRESS "RETURN" OR "COMMA" TO ADD IT.=
    ADD=Add
    WRITE A TAG AND PRESS "ADD" TO INSERT IT TO THE AVAILABLE TAGS LIST.<BR />NEW TAGS ARE APPENDED AT THE BOTTOM OF THE AVAILABLE TAGS LIST (LEFT).=
    AVAILABLE TAGS=Available tags
    REMOVE=Remove
    SELECTED TAGS=Selected tags
    CATEGORY=
    CONTENT=Content
    IMAGE=
    EXTRA FIELDS=Extra Fields
    ATTACHMENTS=Attachments
    PLUGINS=
    INTROTEXT (TEASER CONTENT/EXCERPT)=Introtext (teaser content/excerpt)
    FULLTEXT (MAIN CONTENT)=Fulltext (main content)
    ITEM IMAGE=Item image
    BROWSE SERVER...=Browse server...
    ITEM IMAGE CAPTION=Item image caption
    ITEM IMAGE CREDITS=Item image credits
    ITEM IMAGE PREVIEW=
    CLICK ON IMAGE TO PREVIEW IN ORIGINAL SIZE=
    GALLERY IMAGES=Gallery images
    UPLOAD NEW GALLERY TO REPLACE THE EXISTING OR CHECK THIS BOX TO DELETE CURRENT GALLERY=
    NOTICE=
    NOTICE: PLEASE INSTALL THE SIMPLE IMAGE GALLERY PRO PLUGIN IF YOU WANT TO USE THE IMAGE GALLERY FEATURES OF K2!=Notice: Please install the Simple Image Gallery Pro plugin if you want to use the image gallery features of K2!
    VIDEO SOURCE=Video source
    UPLOAD=
    BROWSE SERVER/USE REMOTE VIDEO=
    BROWSE VIDEOS ON SERVER=
    OR=
    PASTE REMOTE VIDEO URL=
    VIDEO PROVIDER=
    SELECT VIDEO PROVIDER=Select video provider
    AND ENTER VIDEO ID=
    READ THE ALLVIDEOS DOCUMENTATION FOR MORE...=Read the AllVideos documentation for more...
    EMBED=
    PASTE VIDEO HTML EMBED CODE BELOW=
    VIDEO CAPTION=Video caption
    VIDEO CREDITS=Video credits
    VIDEO PREVIEW=Video preview
    CHECK THIS BOX TO DELETE CURRENT VIDEO OR USE THE FORM ABOVE TO REPLACE THE EXISTING ONE=
    NOTICE: PLEASE INSTALL JOOMLAWORKS ALLVIDEOS PLUGIN IF YOU WANT TO USE THE VIDEO FEATURES OF K2!=Notice: Please install JoomlaWorks AllVideos plugin if you want to use the video features of K2!
    USE VIDEO EMBED CODE=Use video embed code
    PASTE VIDEO EMBED CODE HERE=Paste video embed code here
    USE THE FORM ABOVE TO REPLACE THE EXISTING VIDEO OR CHECK THIS BOX TO DELETE CURRENT VIDEO=Use the form above to replace the existing video or check this box to delete current video
    PLEASE SELECT A CATEGORY FIRST TO RETRIEVE ITS RELATED "EXTRA FIELDS"...=
    FILENAME=
    TITLE ATTRIBUTE=
    OPERATIONS=
    ADD ATTACHMENT FIELD=Add attachment field
    ITEM ID=Item ID
    STATE=State
    FEATURED STATE=Featured state
    NOT FEATURED=Not Featured
    CREATED DATE=Created date
    NEW DOCUMENT=
    CREATED BY=Created by
    MODIFIED DATE=Modified date
    NEVER=Never
    MODIFIED BY=Modified by
    HITS=Hits
    RATING=Rating
    AVERAGE RATING=
    MAX UPLOAD SIZE=Max upload size
    DETAILS=Details
    AUTHOR=Author
    AUTHOR ALIAS=Author alias
    ACCESS LEVEL=Access level
    CREATION DATE=Creation date
    START PUBLISHING=Start publishing
    FINISH PUBLISHING=Finish publishing
    METADATA INFORMATION=Metadata information
    KEYWORDS=Keywords
    ROBOTS=Robots
    ITEM VIEW OPTIONS IN CATEGORY LISTINGS=Item view options in category listings
    ITEM VIEW OPTIONS=Item view options

    # views/item/view.html.php
    DESCBEINGEDITTED=
    THE ITEM=

    # views/itemlist/view.feed.php
    CATEGORY NOT FOUND=
    USER NOT FOUND=
    DISPLAYING ITEMS BY TAG:=Displaying items by tag:
    SEARCH RESULTS FOR:=Search results for:
    ITEMS FILTERED BY DATE:=Items filtered by date:

    # Apparently not used... It's however possible that the component uses those in a non-conventional way.
    COMMA SEPARATED VALUES=Comma separated values
    FEMALE=Female
    ITEM SAVED=Item saved
    MALE=Male
    NOTICE: PLEASE INSTALL THE ALLVIDEOS PLUGIN IF YOU WANT TO USE THE VIDEO FEATURES OF K2!=Notice: Please install the AllVideos plugin if you want to use the video features of K2!
    SEARCH...=search...
    SEARCH=Search
    WRITE A TAG AND PRESS=<BR />NEW TAGS ARE APPENDED AT THE BOTTOM OF THE AVAILABLE TAGS LIST (LEFT)." cols="40" rows="3" class="dest">Write a tag and press "Add" to insert it to the available tags list.<br />New tags are appended at the bottom of the available tags list (left).
    YOU ARE ALREADY REGISTERED AS A MEMBER.=You are already registered as a member.
    ADVANCED=Advanced
    ANCHOR LINK (WITH COMMENTS COUNTER) TO COMMENT FORM=Anchor link (with comments counter) to comment form
    ANCHOR LINK (WITH COMMENTS COUNTER) TO ITEM'S COMMENT FORM=Anchor link (with comments counter) to item's comment form
    ANCHOR LINK TO IMAGE GALLERY=Anchor link to image gallery
    ANCHOR LINK TO VIDEO=Anchor link to video
    AND ENTER VIDEO ID:=and enter video ID:
    ARE YOU SURE?=Are you sure?
    ATTACHMENTS COUNTER=Attachments counter
    AUTHOR DESCRIPTION=Author description
    AUTHOR E-MAIL=Author e-mail
    AUTHOR IMAGE=Author image
    AUTHOR OPTIONS=Author options
    AUTHOR URL=Author URL
    CREATED=Created
    DISPLAY EXTENDED AUTHOR INFO=Display extended author info
    EMAIL BUTTON=Email button
    EMBED VIDEO=Embed video
    ENABLE K2 PLUGINS=Enable K2 plugins
    FEATURED NOTICE (NEXT TO TITLE)=Featured notice (next to title)
    FONT RESIZER=Font resizer
    FULLTEXT=Fulltext
    GREEN=green
    HIDE=Hide
    HITS (PAGE VIEWS)=Hits (page views)
    IMAGE CAPTION=Image caption
    IMAGE CREDITS=Image credits
    IMAGE SIZE=Image size
    INHERIT FROM CATEGORY=Inherit from category
    INTROTEXT=Introtext
    ITEM CREATED DATE AND TIME=Item created date and time
    ITEM MODIFIED DATE AND TIME=Item modified date and time
    ITEM MUST HAVE A TITLE=Item must have a title
    ITEM NAVIGATION=Item navigation
    LARGE=Large
    LATEST ITEMS FROM AUTHOR=Latest items from author
    LEAVE BLANK TO INHERIT FROM CATEGORY=Leave blank to inherit from category
    LIMIT FOR LATEST ITEMS FROM AUTHOR=Limit for latest items from author
    LIMIT FOR RELATED ITEMS=Limit for related items
    LINK ON TITLE=Link on title
    LINK TITLE (OPTIONAL)=Link title (optional)
    LINK TITLE ATTRIBUTE (OPTIONAL)=Link title attribute (optional)
    MEDIUM=Medium
    MODIFIED=Modified
    NO=no
    PLEASE SELECT A CATEGORY FIRST TO RETRIEVE ITS RELATED=Please select a category first to retrieve its related "Extra Fields"...
    PLEASE SELECT A CATEGORY=Please select a category
    PRINT BUTTON=Print button
    RATING (VOTING)=Rating (voting)
    READ MORE... LINK=Read more... link
    REMOTE VIDEO URL:=Remote video URL:
    SHARE (SOCIAL) LINKS=Share (social) links
    SHOW=Show
    SMALL=Small
    SOCIAL BUTTON LIKE SHARETHIS, ADDTHIS ETC.=Social button like ShareThis, AddThis etc.
    TWEET THIS LINK=Tweet this link
    UPLOAD NEW IMAGE TO REPLACE THE EXISTING OR CHECK THIS BOX TO DELETE CURRENT IMAGE=Upload new image to replace the existing or check this box to delete current image
    UPLOAD VIDEO=Upload video
    USE REMOTE VIDEO=Use remote video
    VIDEO AUTOPLAY=Video autoplay
    VIDEO FROM PROVIDER=Video from provider
    VIDEO HEIGHT=Video height
    VIDEO WIDTH=Video width
    XLARGE=XLarge
    XSMALL=XSmall
    YES=yes
    YOU ARE NOT ALLOWED TO POST TO THIS CATEGORY=You are not allowed to post to this category
    DATE=Date
    ID=ID
    ITEM=Item
    PLEASE MAKE A SELECTION FROM THE LIST TO DELETE!=Please make a selection from the list to delete!
    PLEASE MAKE A SELECTION FROM THE LIST TO PUBLISH!=Please make a selection from the list to publish!
    PLEASE MAKE A SELECTION FROM THE LIST TO UNPUBLISH!=Please make a selection from the list to unpublish!
    THIS WILL PERMANENTLY DELETE ALL UNPUBLISHED COMMENTS. ARE YOU SURE?=This will permanently delete all unpublished comments. Are you sure?
    UNPUBLISH ITEM=Unpublish Item
    YOU CANNOT EDIT TWO COMMENTS AT THE SAME TIME!=You cannot edit two comments at the same time!

    It looks like everything is in order.

    Hope to hear from you soon agan 🙂

    chavan Friend
    #384832

    <em>@christofferl 232224 wrote:</em><blockquote>:-[ As I am not a coder I will simply copy the whole content of the category_time.php file:

    <?php
    /**
    * @version $Id: category_item.php 493 2010-06-17 14:58:58Z joomlaworks $
    * @package K2
    * @author JoomlaWorks http://www.joomlaworks.gr
    * @copyright Copyright (c) 2006 - 2010 JoomlaWorks, a business unit of Nuevvo Webware Ltd. All rights reserved.
    * @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
    */

    // no direct access
    defined('_JEXEC') or die('Restricted access');

    // Define default image size (do not change)
    K2HelperUtilities::setDefaultImage($this->item, 'itemlist', $this->item->params);

    ?>

    <!-- Start K2 Item Layout -->
    <div class="catItemView group<?php echo ucfirst($this->item->itemGroup); ?><?php echo ($this->item->featured) ? ' catItemIsFeatured' : ''; ?><?php if($this->item->params->get('pageclass_sfx')) echo ' '.$this->item->params->get('pageclass_sfx'); ?>">

    <!-- Plugins: BeforeDisplay -->
    <?php echo $this->item->event->BeforeDisplay; ?>

    <!-- K2 Plugins: K2BeforeDisplay -->
    <?php echo $this->item->event->K2BeforeDisplay; ?>

    <?php if(isset($this->item->editLink)): ?>
    <!-- Item edit link -->
    <span class="catItemEditLink">
    <a class="modal" rel="{handler:'iframe',size:{x:990,y:650}}" href="<?php echo $this->item->editLink; ?>">
    <?php echo JText::_('Edit item'); ?>
    </a>
    </span>
    <?php endif; ?>

    <div class="catItemHeader">

    <?php if($this->item->params->get('catItemDateCreated')): ?>
    <!-- Date created -->
    <span class="catItemDateCreated">
    <?php echo JHTML::_('date', $this->item->created , JText::_('DATE_FORMAT_LC2')); ?>
    </span>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemTitle')): ?>
    <!-- Item title -->
    <h3 class="catItemTitle">
    <?php if ($this->item->params->get('catItemTitleLinked')): ?>
    <a href="<?php echo $this->item->link; ?>">
    <?php echo $this->item->title; ?>
    </a>
    <?php else: ?>
    <?php echo $this->item->title; ?>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemFeaturedNotice') && $this->item->featured): ?>
    <!-- Featured flag -->
    <span>
    <sup>
    <?php echo JText::_('Featured'); ?>
    </sup>
    </span>
    <?php endif; ?>

    </h3>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemAuthor')): ?>
    <!-- Item Author -->
    <span class="catItemAuthor">
    <?php echo K2HelperUtilities::writtenBy($this->item->author->profile->gender); ?> <a href="<?php echo $this->item->author->link; ?>"><?php echo $this->item->author->name; ?></a>
    </span>
    <?php endif; ?>

    </div>

    <!-- Plugins: AfterDisplayTitle -->
    <?php echo $this->item->event->AfterDisplayTitle; ?>

    <!-- K2 Plugins: K2AfterDisplayTitle -->
    <?php echo $this->item->event->K2AfterDisplayTitle; ?>

    <?php if($this->item->params->get('catItemRating')): ?>
    <!-- Item Rating -->
    <div class="catItemRatingBlock">
    <span><?php echo JText::_('Rate this item'); ?></span>
    <div class="itemRatingForm">
    <ul class="itemRatingList">
    <li class="itemCurrentRating" id="itemCurrentRating<?php echo $this->item->id; ?>" style="width:<?php echo $this->item->votingPercentage; ?>%;"></li>
    <li><a href="#" rel="<?php echo $this->item->id; ?>" title="<?php echo JText::_('1 star out of 5'); ?>" class="one-star">1</a></li>
    <li><a href="#" rel="<?php echo $this->item->id; ?>" title="<?php echo JText::_('2 stars out of 5'); ?>" class="two-stars">2</a></li>
    <li><a href="#" rel="<?php echo $this->item->id; ?>" title="<?php echo JText::_('3 stars out of 5'); ?>" class="three-stars">3</a></li>
    <li><a href="#" rel="<?php echo $this->item->id; ?>" title="<?php echo JText::_('4 stars out of 5'); ?>" class="four-stars">4</a></li>
    <li><a href="#" rel="<?php echo $this->item->id; ?>" title="<?php echo JText::_('5 stars out of 5'); ?>" class="five-stars">5</a></li>
    </ul>
    <div id="itemRatingLog<?php echo $this->item->id; ?>" class="itemRatingLog"><?php echo $this->item->numOfvotes; ?></div>
    <div class="clr"></div>
    </div>
    <div class="clr"></div>
    </div>
    <?php endif; ?>

    <div class="catItemBody">

    <!-- Plugins: BeforeDisplayContent -->
    <?php echo $this->item->event->BeforeDisplayContent; ?>

    <!-- K2 Plugins: K2BeforeDisplayContent -->
    <?php echo $this->item->event->K2BeforeDisplayContent; ?>

    <?php if($this->item->params->get('catItemImage') && !empty($this->item->image)): ?>
    <!-- Item Image -->
    <div class="catItemImageBlock">
    <span class="catItemImage">
    <a href="<?php echo $this->item->link; ?>" title="<?php if(!empty($this->item->image_caption)) echo $this->item->image_caption; else echo $this->item->title; ?>">
    <img src="<?php echo $this->item->image; ?>" alt="<?php if(!empty($this->item->image_caption)) echo $this->item->image_caption; else echo $this->item->title; ?>" style="width:<?php echo $this->item->imageWidth; ?>px; height:auto;" />
    </a>
    </span>
    <div class="clr"></div>
    </div>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemIntroText')): ?>
    <!-- Item introtext -->
    <div class="catItemIntroText">
    <?php echo $this->item->introtext; ?>
    </div>
    <?php endif; ?>

    <div class="clr"></div>

    <?php if($this->item->params->get('catItemExtraFields') && count($this->item->extra_fields)): ?>
    <!-- Item extra fields -->
    <div class="catItemExtraFields">
    <h4><?php echo JText::_('Additional Info'); ?></h4>
    <ul>
    <?php foreach ($this->item->extra_fields as $key=>$extraField): ?>
    <li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
    <span class="catItemExtraFieldsLabel"><?php echo $extraField->name; ?></span>
    <span class="catItemExtraFieldsValue"><?php echo $extraField->value; ?></span>
    </li>
    <?php endforeach; ?>
    </ul>
    <div class="clr"></div>
    </div>
    <?php endif; ?>

    <!-- Plugins: AfterDisplayContent -->
    <?php echo $this->item->event->AfterDisplayContent; ?>

    <!-- K2 Plugins: K2AfterDisplayContent -->
    <?php echo $this->item->event->K2AfterDisplayContent; ?>

    <div class="clr"></div>
    </div>

    <?php if(
    $this->item->params->get('catItemHits') ||
    $this->item->params->get('catItemCategory') ||
    $this->item->params->get('catItemTags') ||
    $this->item->params->get('catItemAttachments')
    ): ?>
    <div class="catItemLinks">

    <?php if($this->item->params->get('catItemHits')): ?>
    <!-- Item Hits -->
    <div class="catItemHitsBlock">
    <span class="catItemHits">
    <?php echo JText::_('Read'); ?> <b><?php echo $this->item->hits; ?></b> <?php echo JText::_('times'); ?>
    </span>
    </div>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemCategory')): ?>
    <!-- Item category name -->
    <div class="catItemCategory">
    <span><?php echo JText::_('Published in'); ?></span>
    <a href="<?php echo $this->item->category->link; ?>"><?php echo $this->item->category->name; ?></a>
    </div>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemTags') && count($this->item->tags)): ?>
    <!-- Item tags -->
    <div class="catItemTagsBlock">
    <span><?php echo JText::_("Tagged under"); ?></span>
    <ul class="catItemTags">
    <?php foreach ($this->item->tags as $tag): ?>
    <li><a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a></li>
    <?php endforeach; ?>
    </ul>
    <div class="clr"></div>
    </div>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemAttachments') && count($this->item->attachments)): ?>
    <!-- Item attachments -->
    <div class="catItemAttachmentsBlock">
    <span><?php echo JText::_("Download attachments:"); ?></span>
    <ul class="catItemAttachments">
    <?php foreach ($this->item->attachments as $attachment): ?>
    <li>
    <a title="<?php echo htmlentities($attachment->titleAttribute, ENT_QUOTES, 'UTF-8'); ?>" href="<?php echo JRoute::_('index.php?option=com_k2&view=item&task=download&id='.$attachment->id); ?>">
    <?php echo $attachment->title ; ?>
    </a>
    <?php if($this->item->params->get('catItemAttachmentsCounter')): ?>
    <span>(<?php echo $attachment->hits; ?> <?php echo (count($attachment->hits)==1) ? JText::_("download") : JText::_("downloads"); ?>)</span>
    <?php endif; ?>
    </li>
    <?php endforeach; ?>
    </ul>
    </div>
    <?php endif; ?>

    <div class="clr"></div>
    </div>
    <?php endif; ?>

    <div class="clr"></div>

    <?php if($this->item->params->get('catItemVideo') && !empty($this->item->video)): ?>
    <!-- Item video -->
    <div class="catItemVideoBlock">
    <h3><?php echo JText::_('Related Video'); ?></h3>
    <?php if($this->item->videoType=='embedded'): ?>
    <div class="catItemVideoEmbedded">
    <?php echo $this->item->video; ?>
    </div>
    <?php else: ?>
    <span class="catItemVideo"><?php echo $this->item->video; ?></span>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <?php if($this->item->params->get('catItemImageGallery') && !empty($this->item->gallery)): ?>
    <!-- Item image gallery -->
    <div class="catItemImageGallery">
    <h4><?php echo JText::_('Image Gallery'); ?></h4>
    <?php echo $this->item->gallery; ?>
    </div>
    <?php endif; ?>

    <div class="clr"></div>

    <?php if($this->item->params->get('catItemCommentsAnchor') && ( ($this->item->params->get('comments') == '2' && !$this->user->guest) || ($this->item->params->get('comments') == '1')) ): ?>
    <!-- Anchor link to comments below -->
    <div class="catItemCommentsLink">
    <?php if(!empty($this->item->event->K2CommentsCounter)):?>
    <!-- K2 Plugins: K2CommentsCounter -->
    <?php echo $this->item->event->K2CommentsCounter; ?>
    <?php else: ?>
    <?php if($this->item->numOfComments > 0): ?>
    <a href="<?php echo $this->item->link; ?>#itemCommentsAnchor">
    <?php echo $this->item->numOfComments; ?> <?php echo ($this->item->numOfComments>1) ? JText::_('comments') : JText::_('comment'); ?>
    </a>
    <?php else: ?>
    <a href="<?php echo $this->item->link; ?>#itemCommentsAnchor">
    <?php echo JText::_('Be the first to comment!'); ?>
    </a>
    <?php endif; ?>
    <?php endif; ?>
    </div>
    <?php endif; ?>

    <?php if ($this->item->params->get('catItemReadMore')): ?>
    <!-- Item "read more..." link -->
    <div class="catItemReadMore">
    <a class="k2ReadMore" href="<?php echo $this->item->link; ?>">
    <?php echo JText::_('Read more...'); ?>
    </a>
    </div>
    <?php endif; ?>

    <div class="clr"></div>

    <?php if($this->item->params->get('catItemDateModified')): ?>
    <!-- Item date modified -->
    <?php if($this->item->created != $this->item->modified): ?>
    <span class="catItemDateModified">
    <?php echo JText::_('Last modified on'); ?> <?php echo JHTML::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2')); ?>
    </span>
    <?php endif; ?>
    <?php endif; ?>

    <!-- Plugins: AfterDisplay -->
    <?php echo $this->item->event->AfterDisplay; ?>

    <!-- K2 Plugins: K2AfterDisplay -->
    <?php echo $this->item->event->K2AfterDisplay; ?>

    <div class="clr"></div>
    </div>
    <!-- End K2 Item Layout -->

    … and here is the .ini file:

    # en-GB.com_k2.ini
    # generated: Wed, 02 Feb 2011 09:54:00 GMT

    # controllers/item.php
    THIS CATEGORY DOESN'T HAVE ASSIGNED EXTRA FIELDS=
    ALERTNOTAUTH=

    # controllers/itemlist.php
    JANUARY=
    FEBRUARY=
    MARCH=
    APRIL=
    MAY=
    JUNE=
    JULY=
    AUGUST=
    SEPTEMBER=
    OCTOBER=
    NOVEMBER=
    DECEMBER=
    SUN=
    MON=
    TUE=
    WED=
    THU=
    FRI=
    SAT=

    # helpers/utilities.php
    WRITTEN_BY=Written by
    WRITTEN_BY_MALE=Written by
    WRITTEN_BY_FEMALE=Written by

    # models/comments.php
    DELETE COMPLETED=
    SAVE COMPLETED=Save completed

    # models/item.php
    ITEM NOT FOUND=Item not found
    THANKS FOR RATING!=Thanks for rating!
    YOU HAVE ALREADY RATED THIS ITEM.=You already have rate this Item.
    VOTES=votes
    VOTE=Vote
    ENTER YOUR NAME...=enter your name...
    ENTER YOUR COMMENT HERE...=
    ENTER YOUR E-MAIL ADDRESS...=enter your e-mail address...
    YOU NEED TO FILL IN ALL REQUIRED FIELDS!=You need to fill in all Required Fields!
    INVALID E-MAIL ADDRESS!=Invalid Email Address!
    THE NAME OR EMAIL ADDRESS YOU TYPED IS ALREADY IN USE!=The Name or Email Address you typed is already in use!
    THE WORDS YOU TYPED DID NOT MATCH THE ONES DISPLAYED. PLEASE TRY AGAIN.=The words you typed did not match the ones displayed. Please try again.
    ENTER YOUR SITE URL...=enter your site URL...
    THANK YOU. YOUR COMMENT WILL BE PUBLISHED SHORTLY.=Thank you. Your comment will be published shortly.
    COMMENT ADDED! REFRESHING PAGE...=Comment added! Refreshing page...
    COMMENT ADDED AND WAITING FOR APPROVAL.=Comment added and waiting for approval.

    # models/itemlist.php
    NOT FOUND=
    COMMENTED ON=commented on

    # templates/default/category.php
    SUBSCRIBE TO THIS RSS FEED=Subscribe to this RSS feed
    ADD A NEW ITEM IN THIS CATEGORY=Add a new item in this category
    CHILDREN CATEGORIES=
    VIEW ITEMS...=View items...
    MORE...=More...

    # templates/default/category_item.php
    EDIT ITEM=Edit item
    DATE_FORMAT_LC2=
    FEATURED=Featured
    RATE THIS ITEM=Rate this item
    1 STAR OUT OF 5=1 star out of 5
    2 STARS OUT OF 5=2 stars out of 5
    3 STARS OUT OF 5=3 stars out of 5
    4 STARS OUT OF 5=4 stars out of 5
    5 STARS OUT OF 5=5 stars out of 5
    ADDITIONAL INFO=Additional Info
    READ=Read
    TIMES=times
    PUBLISHED IN=Published in category:
    TAGGED UNDER=Tagged under:
    DOWNLOAD ATTACHMENTS:=Download attachments:
    DOWNLOAD=
    DOWNLOADS=
    RELATED VIDEO=Related Video
    IMAGE GALLERY=
    COMMENTS=comments
    COMMENT=Comment
    BE THE FIRST TO COMMENT!=Be the first to comment!
    READ MORE...=
    LAST MODIFIED ON=Last modified on

    # templates/default/item.php
    FONT SIZE=font size
    DECREASE FONT SIZE=decrease font size
    INCREASE FONT SIZE=increase font size
    PRINT=
    E-MAIL=E-mail
    VIDEO=Video
    CLICK TO PREVIEW IMAGE=Click to preview image
    LIKE THIS? TWEET IT TO YOUR FOLLOWERS!=Like this? Tweet it to your followers!
    SOCIAL SHARING=Social sharing
    ADD TO GOOGLE BUZZ=Add to Google Buzz
    ADD TO FACEBOOK=Add to Facebook
    ADD TO DELICIOUS=Add to Delicious
    DIGG THIS=Digg this
    ADD TO REDDIT=Add to Reddit
    ADD TO STUMBLEUPON=Add to StumbleUpon
    ADD TO MYSPACE=Add to MySpace
    ADD TO TECHNORATI=Add to Technorati
    WEBSITE:=Website:
    E-MAIL:=E-mail:
    LATEST FROM=Latest from
    RELATED ITEMS (BY TAG)=Related items (by tag)
    MORE IN THIS CATEGORY:=More in this category:
    COMMENT LINK=Comment Link
    POSTED BY=posted by
    LOGIN TO POST COMMENTS=
    BACK TO TOP=back to top

    # templates/default/item_comments_form.php
    LEAVE A COMMENT=Leave a comment
    MESSAGE=
    ENTER YOUR MESSAGE HERE...=enter your message here...
    NAME=Name
    WEBSITE URL=Website URL
    ENTER THE TWO WORDS YOU SEE BELOW=Enter the two words you see below
    SUBMIT COMMENT=Submit comment

    # templates/profile.php
    ACCOUNT DETAILS=Account details
    USER NAME=
    EMAIL=Email
    PASSWORD=
    VERIFY PASSWORD=
    PERSONAL DETAILS=Personal details
    GENDER=Gender
    DESCRIPTION=Description
    USER IMAGE (AVATAR)=User image (avatar)
    CHECK THIS BOX TO DELETE CURRENT IMAGE OR JUST UPLOAD A NEW IMAGE TO REPLACE THE EXISTING ONE=Check this box to delete current image or just upload a new image to replace the existing one
    URL=URL
    ADDITIONAL DETAILS=
    ADMINISTRATIVE DETAILS=Administrative details
    SAVE=

    # templates/register.php
    REGISTER_REQUIRED=
    REGISTER=

    # templates/user.php
    POST A NEW ITEM=Post a new item
    UNPUBLISHED=Unpublished

    # views/comments/tmpl/default.php
    THIS WILL PERMANENTLY DELETE ALL UNPUBLISHED COMMENTS. ARE YOU SURE?', TRUE); ?>=
    YOU CANNOT EDIT TWO COMMENTS AT THE SAME TIME!', TRUE); ?>=
    PLEASE MAKE A SELECTION FROM THE LIST TO PUBLISH!',TRUE); ?>=
    PUBLISH=
    PLEASE MAKE A SELECTION FROM THE LIST TO UNPUBLISH!',TRUE); ?>=
    UNPUBLISH=
    PLEASE MAKE A SELECTION FROM THE LIST TO DELETE!',TRUE); ?>=
    DELETE=
    DELETE ALL UNPUBLISHED=Delete all unpublished
    MODERATE COMMENTS TO MY ITEMS=Moderate comments to my items
    FILTER:=Filter:
    FILTER BY COMMENT=Filter by comment
    GO=Go
    RESET=Reset
    EDIT=
    CANCEL=
    K2_DATE_FORMAT=%d/%m/%Y - %H:%M
    NO ONE HAS COMMENTED ON YOUR PUBLISHED ITEMS SO FAR.=

    # views/comments/view.html.php
    SELECT STATE=Select State
    PUBLISHED=
    SELECT CATEGORY=Select category

    # views/item/tmpl/form.php
    ITEM MUST HAVE A TITLE', TRUE); ?>=
    PLEASE SELECT A CATEGORY', TRUE); ?>=
    LINK TITLE (OPTIONAL)', TRUE); ?>=
    LINK TITLE ATTRIBUTE (OPTIONAL)', TRUE); ?>=
    ARE YOU SURE?', TRUE); ?>=
    YOU ARE NOT ALLOWED TO POST TO THIS CATEGORY',TRUE); ?>=
    ADD ITEM=Add Item
    TOGGLE SIDEBAR=Toggle sidebar
    TITLE=Title
    TITLE ALIAS=Title alias
    IS IT FEATURED?=Is it featured?
    TAGS=Tags
    WRITE A TAG AND PRESS "RETURN" OR "COMMA" TO ADD IT.=
    ADD=Add
    WRITE A TAG AND PRESS "ADD" TO INSERT IT TO THE AVAILABLE TAGS LIST.<BR />NEW TAGS ARE APPENDED AT THE BOTTOM OF THE AVAILABLE TAGS LIST (LEFT).=
    AVAILABLE TAGS=Available tags
    REMOVE=Remove
    SELECTED TAGS=Selected tags
    CATEGORY=
    CONTENT=Content
    IMAGE=
    EXTRA FIELDS=Extra Fields
    ATTACHMENTS=Attachments
    PLUGINS=
    INTROTEXT (TEASER CONTENT/EXCERPT)=Introtext (teaser content/excerpt)
    FULLTEXT (MAIN CONTENT)=Fulltext (main content)
    ITEM IMAGE=Item image
    BROWSE SERVER...=Browse server...
    ITEM IMAGE CAPTION=Item image caption
    ITEM IMAGE CREDITS=Item image credits
    ITEM IMAGE PREVIEW=
    CLICK ON IMAGE TO PREVIEW IN ORIGINAL SIZE=
    GALLERY IMAGES=Gallery images
    UPLOAD NEW GALLERY TO REPLACE THE EXISTING OR CHECK THIS BOX TO DELETE CURRENT GALLERY=
    NOTICE=
    NOTICE: PLEASE INSTALL THE SIMPLE IMAGE GALLERY PRO PLUGIN IF YOU WANT TO USE THE IMAGE GALLERY FEATURES OF K2!=Notice: Please install the Simple Image Gallery Pro plugin if you want to use the image gallery features of K2!
    VIDEO SOURCE=Video source
    UPLOAD=
    BROWSE SERVER/USE REMOTE VIDEO=
    BROWSE VIDEOS ON SERVER=
    OR=
    PASTE REMOTE VIDEO URL=
    VIDEO PROVIDER=
    SELECT VIDEO PROVIDER=Select video provider
    AND ENTER VIDEO ID=
    READ THE ALLVIDEOS DOCUMENTATION FOR MORE...=Read the AllVideos documentation for more...
    EMBED=
    PASTE VIDEO HTML EMBED CODE BELOW=
    VIDEO CAPTION=Video caption
    VIDEO CREDITS=Video credits
    VIDEO PREVIEW=Video preview
    CHECK THIS BOX TO DELETE CURRENT VIDEO OR USE THE FORM ABOVE TO REPLACE THE EXISTING ONE=
    NOTICE: PLEASE INSTALL JOOMLAWORKS ALLVIDEOS PLUGIN IF YOU WANT TO USE THE VIDEO FEATURES OF K2!=Notice: Please install JoomlaWorks AllVideos plugin if you want to use the video features of K2!
    USE VIDEO EMBED CODE=Use video embed code
    PASTE VIDEO EMBED CODE HERE=Paste video embed code here
    USE THE FORM ABOVE TO REPLACE THE EXISTING VIDEO OR CHECK THIS BOX TO DELETE CURRENT VIDEO=Use the form above to replace the existing video or check this box to delete current video
    PLEASE SELECT A CATEGORY FIRST TO RETRIEVE ITS RELATED "EXTRA FIELDS"...=
    FILENAME=
    TITLE ATTRIBUTE=
    OPERATIONS=
    ADD ATTACHMENT FIELD=Add attachment field
    ITEM ID=Item ID
    STATE=State
    FEATURED STATE=Featured state
    NOT FEATURED=Not Featured
    CREATED DATE=Created date
    NEW DOCUMENT=
    CREATED BY=Created by
    MODIFIED DATE=Modified date
    NEVER=Never
    MODIFIED BY=Modified by
    HITS=Hits
    RATING=Rating
    AVERAGE RATING=
    MAX UPLOAD SIZE=Max upload size
    DETAILS=Details
    AUTHOR=Author
    AUTHOR ALIAS=Author alias
    ACCESS LEVEL=Access level
    CREATION DATE=Creation date
    START PUBLISHING=Start publishing
    FINISH PUBLISHING=Finish publishing
    METADATA INFORMATION=Metadata information
    KEYWORDS=Keywords
    ROBOTS=Robots
    ITEM VIEW OPTIONS IN CATEGORY LISTINGS=Item view options in category listings
    ITEM VIEW OPTIONS=Item view options

    # views/item/view.html.php
    DESCBEINGEDITTED=
    THE ITEM=

    # views/itemlist/view.feed.php
    CATEGORY NOT FOUND=
    USER NOT FOUND=
    DISPLAYING ITEMS BY TAG:=Displaying items by tag:
    SEARCH RESULTS FOR:=Search results for:
    ITEMS FILTERED BY DATE:=Items filtered by date:

    # Apparently not used... It's however possible that the component uses those in a non-conventional way.
    COMMA SEPARATED VALUES=Comma separated values
    FEMALE=Female
    ITEM SAVED=Item saved
    MALE=Male
    NOTICE: PLEASE INSTALL THE ALLVIDEOS PLUGIN IF YOU WANT TO USE THE VIDEO FEATURES OF K2!=Notice: Please install the AllVideos plugin if you want to use the video features of K2!
    SEARCH...=search...
    SEARCH=Search
    WRITE A TAG AND PRESS=<BR />NEW TAGS ARE APPENDED AT THE BOTTOM OF THE AVAILABLE TAGS LIST (LEFT)." cols="40" rows="3" class="dest">Write a tag and press "Add" to insert it to the available tags list.<br />New tags are appended at the bottom of the available tags list (left).
    YOU ARE ALREADY REGISTERED AS A MEMBER.=You are already registered as a member.
    ADVANCED=Advanced
    ANCHOR LINK (WITH COMMENTS COUNTER) TO COMMENT FORM=Anchor link (with comments counter) to comment form
    ANCHOR LINK (WITH COMMENTS COUNTER) TO ITEM'S COMMENT FORM=Anchor link (with comments counter) to item's comment form
    ANCHOR LINK TO IMAGE GALLERY=Anchor link to image gallery
    ANCHOR LINK TO VIDEO=Anchor link to video
    AND ENTER VIDEO ID:=and enter video ID:
    ARE YOU SURE?=Are you sure?
    ATTACHMENTS COUNTER=Attachments counter
    AUTHOR DESCRIPTION=Author description
    AUTHOR E-MAIL=Author e-mail
    AUTHOR IMAGE=Author image
    AUTHOR OPTIONS=Author options
    AUTHOR URL=Author URL
    CREATED=Created
    DISPLAY EXTENDED AUTHOR INFO=Display extended author info
    EMAIL BUTTON=Email button
    EMBED VIDEO=Embed video
    ENABLE K2 PLUGINS=Enable K2 plugins
    FEATURED NOTICE (NEXT TO TITLE)=Featured notice (next to title)
    FONT RESIZER=Font resizer
    FULLTEXT=Fulltext
    GREEN=green
    HIDE=Hide
    HITS (PAGE VIEWS)=Hits (page views)
    IMAGE CAPTION=Image caption
    IMAGE CREDITS=Image credits
    IMAGE SIZE=Image size
    INHERIT FROM CATEGORY=Inherit from category
    INTROTEXT=Introtext
    ITEM CREATED DATE AND TIME=Item created date and time
    ITEM MODIFIED DATE AND TIME=Item modified date and time
    ITEM MUST HAVE A TITLE=Item must have a title
    ITEM NAVIGATION=Item navigation
    LARGE=Large
    LATEST ITEMS FROM AUTHOR=Latest items from author
    LEAVE BLANK TO INHERIT FROM CATEGORY=Leave blank to inherit from category
    LIMIT FOR LATEST ITEMS FROM AUTHOR=Limit for latest items from author
    LIMIT FOR RELATED ITEMS=Limit for related items
    LINK ON TITLE=Link on title
    LINK TITLE (OPTIONAL)=Link title (optional)
    LINK TITLE ATTRIBUTE (OPTIONAL)=Link title attribute (optional)
    MEDIUM=Medium
    MODIFIED=Modified
    NO=no
    PLEASE SELECT A CATEGORY FIRST TO RETRIEVE ITS RELATED=Please select a category first to retrieve its related "Extra Fields"...
    PLEASE SELECT A CATEGORY=Please select a category
    PRINT BUTTON=Print button
    RATING (VOTING)=Rating (voting)
    READ MORE... LINK=Read more... link
    REMOTE VIDEO URL:=Remote video URL:
    SHARE (SOCIAL) LINKS=Share (social) links
    SHOW=Show
    SMALL=Small
    SOCIAL BUTTON LIKE SHARETHIS, ADDTHIS ETC.=Social button like ShareThis, AddThis etc.
    TWEET THIS LINK=Tweet this link
    UPLOAD NEW IMAGE TO REPLACE THE EXISTING OR CHECK THIS BOX TO DELETE CURRENT IMAGE=Upload new image to replace the existing or check this box to delete current image
    UPLOAD VIDEO=Upload video
    USE REMOTE VIDEO=Use remote video
    VIDEO AUTOPLAY=Video autoplay
    VIDEO FROM PROVIDER=Video from provider
    VIDEO HEIGHT=Video height
    VIDEO WIDTH=Video width
    XLARGE=XLarge
    XSMALL=XSmall
    YES=yes
    YOU ARE NOT ALLOWED TO POST TO THIS CATEGORY=You are not allowed to post to this category
    DATE=Date
    ID=ID
    ITEM=Item
    PLEASE MAKE A SELECTION FROM THE LIST TO DELETE!=Please make a selection from the list to delete!
    PLEASE MAKE A SELECTION FROM THE LIST TO PUBLISH!=Please make a selection from the list to publish!
    PLEASE MAKE A SELECTION FROM THE LIST TO UNPUBLISH!=Please make a selection from the list to unpublish!
    THIS WILL PERMANENTLY DELETE ALL UNPUBLISHED COMMENTS. ARE YOU SURE?=This will permanently delete all unpublished comments. Are you sure?
    UNPUBLISH ITEM=Unpublish Item
    YOU CANNOT EDIT TWO COMMENTS AT THE SAME TIME!=You cannot edit two comments at the same time!

    It looks like everything is in order.

    Hope to hear from you soon agan :)</blockquote>


    div.catItemReadMore a{text-transform:uppercase;font:bold 11px/20px "Arial Narrow",Arial,sans-serif;color:#000;padding:0 12px 0 8px;background:url('../templates/ja_teline_iv/images/arrow-bg.png') no-repeat right top;height:20px;display:inline-block;margin-top:5px;text-decoration:none;}

    div.catItemReadMore a:hover{background:url('../templates/ja_teline_iv/images/arrow-bg.png') no-repeat right bottom;color:#fff;text-decoration:none;}

    replace this

    background:url(‘../templates/ja_teline_iv/images/arrow-bg.png’) no-repeat right bottom;

    and

    background:url(‘../templates/ja_teline_iv/images/arrow-bg.png’) no-repeat right top;

    With

    background:none;

    christofferl Friend
    #384833

    Please elaborate were to insert the code starting with “div.cat….”.
    :-[

    christofferl Friend
    #392107

    I still have problems with having an “ugly” arrow appearing instead of a “Read more…” text.

    I have not understood how to solve this, please elaborate in more detail.

    I changed according to the instructions above but that only removed the arrow image. What I want is to replace this arrow-image with a simple text “Read more…” which it would normally say.

    You can have a look at this issue by going to the live site here.

    I am using K2.


    1. ja15a
Viewing 8 posts - 1 through 8 (of 8 total)

This topic contains 8 replies, has 2 voices, and was last updated by  christofferl 13 years, 6 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum