Jump to content

Missing Lang String on Default Template file knowledjebase.tpl


drtduarte

Recommended Posts

Hello,

 

On search form the multilanguage funcionality for the text "Have a question? Start your search here." is missing:

 

<div class="well">

<div class="textcenter">

<form method="post" action="knowledgebase.php?action=search" class="form-inline">

<fieldset class="control-group">

<input class="bigfield" name="search" type="text" value="Have a question? Start your search here." " onfocus="this.value=(this.value=='Have a question? Start your search here.') ? '' : this.value;" onblur="this.value=(this.value=='') ? 'Have a question? Start your search here.' : this.value;"/>

<input type="submit" class="btn btn-large btn-primary" value="Buscar" />

</fieldset>

</form>

</div>

</div>

 

 

I found the following solution:

 

<div class="well">

<div class="textcenter">

<form method="post" action="knowledgebase.php?action=search" class="form-inline">

<fieldset class="control-group">

<input class="bigfield" name="search" type="text" value="{if $searchterm}{$searchterm}{else}{$LANG.kbquestionsearchere}{/if}" " onfocus="this.value=(this.value=='{if $searchterm}{$searchterm}{else}{$LANG.kbquestionsearchere}{/if}') ? '' : this.value;" onblur="this.value=(this.value=='') ? '{if $searchterm}{$searchterm}{else}{$LANG.kbquestionsearchere}{/if}' : this.value;"/>

<input type="submit" class="btn btn-large btn-primary" value="{$LANG.knowledgebasesearch}" />

</fieldset>

</form>

</div>

</div>

 

Regards,

David D.

Link to comment
Share on other sites

Missing Lang String {$_LANG.every} on Default Template file clientareadomaindetails.tpl

 

Replace:

<p><h4><strong>{$LANG.recurringamount}:</strong></h4> {$recurringamount} Every {$registrationperiod} {$LANG.orderyears}{if $renew}   <a href="cart.php?gid=renewals" class="btn btn-mini">{$LANG.domainsrenewnow}</a>{/if}</p>

 

By:

<p><h4><strong>{$LANG.recurringamount}:</strong></h4> {$recurringamount} {$LANG.every} {$registrationperiod} {$LANG.orderyears}{if $renew}   <a href="cart.php?gid=renewals" class="btn btn-mini">{$LANG.domainsrenewnow}</a>{/if}</p>

Link to comment
Share on other sites

Missing Lang String {$_LANG.clientareahostingaddonsintro} on Default Template file clientareaproductdetails.tpl

 

Replace:

<div class="internalpadding">

<div class="styled_title"><h2>{$LANG.clientareahostingaddons}</h2></div>

<p>{$LANG.clientareahostingaddonsintro}</p>

<br />

{if $addonsavailable}<p><a href="cart.php?gid=addons&pid={$id}">{$LANG.orderavailableaddons}</a></p>{/if}

</div>

 

By:

<div class="internalpadding">

<div class="styled_title"><h2>{$LANG.clientareahostingaddons}</h2></div>

<p>You have the following addons for this product.</p>

<br />

{if $addonsavailable}<p><a href="cart.php?gid=addons&pid={$id}">{$LANG.orderavailableaddons}</a></p>{/if}

</div>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated