How to change text below (left to logo) into my language? I cannot see that anywhere ...
"Welcome visitor you can log in or create an account".
Thank you.
TPL_GK_LANG_USERAREA="Welcome "
TPL_GK_LANG_USERAREA_VISITOR="visitor"
TPL_GK_LANG_LOGIN_PRE=" you can "
TPL_GK_LANG_LOGIN="log in"
TPL_GK_LANG_LOGOUT="check your account"
TPL_GK_LANG_REGISTER_PRE=" or create an "
TPL_GK_LANG_REGISTER="account"
TPL_GK_LANG_EMPTY_CART="Your Shopping Cart is empty!"
<div id="gkTopNav">
<?php if(
$this->API->get('login_url', '') != '' ||
($this->API->get('reg_url', '') != '' && $userID == 0)
) : ?>
<div id="gkUserArea">
<?php echo JText::_('TPL_GK_LANG_USERAREA'); ?>
<?php if($userID == 0) : ?>
<?php echo JText::_('TPL_GK_LANG_USERAREA_VISITOR'); ?>
<?php else : ?>
<strong><?php echo $user->get('username'); ?></strong>
<?php endif; ?>
<?php echo JText::_('TPL_GK_LANG_LOGIN_PRE'); ?>
<?php if($this->API->get('login_url', 'index.php?option=com_users&view=login')) : ?>
<a href="<?php echo $this->API->get('login_url', 'index.php?option=com_users&view=login'); ?>" id="gkLogin"><?php echo ($userID == 0) ? JText::_('TPL_GK_LANG_LOGIN') : JText::_('TPL_GK_LANG_LOGOUT'); ?></a>
<?php endif; ?>
<?php if($this->API->get('reg_url', 'index.php?option=com_users&view=registration') != '' && $userID == 0) : ?>
<?php echo JText::_('TPL_GK_LANG_REGISTER_PRE'); ?>
<a href="<?php echo $this->API->get('reg_url', 'index.php?option=com_users&view=registration'); ?>"><?php echo JText::_('TPL_GK_LANG_REGISTER'); ?></a>
<?php endif; ?>
</div>
<?php endif; ?>
<?php if($this->API->modules('topnav')) : ?>
<div id="gkTopMenu">
<jdoc:include type="modules" name="topnav" style="<?php echo $this->module_styles['topnav']; ?>" modnum="<?php echo $this->API->modules('topnav'); ?>" modcol="3" />
</div>
<?php endif; ?>
</div>