Skip to content

Commit

Permalink
T3 Blank: Add languages for templateInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
joomlart committed Feb 27, 2013
1 parent d954e29 commit 60d520e
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 13 deletions.
14 changes: 14 additions & 0 deletions source/plg_system_t3/admin/frameworkInfo.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
<?php
/**
*------------------------------------------------------------------------------
* @package T3 Framework for Joomla!
*------------------------------------------------------------------------------
* @copyright Copyright (C) 2004-2013 JoomlArt.com. All Rights Reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
* @authors JoomlArt, JoomlaBamboo, (contribute to this project at github
* & Google group to become co-author)
* @Google group: https://groups.google.com/forum/#!forum/t3fw
* @Link: http://t3-framework.org
*------------------------------------------------------------------------------
*/


// no direct access
defined('_JEXEC') or die;
?>
Expand Down
7 changes: 5 additions & 2 deletions source/plg_system_t3/admin/js/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,13 @@ var T3Admin = window.T3Admin || {};

initT3Title: function(){
var jptitle = $('.pagetitle');
if (!jptitle.length) jptitle = $('.page-title');
if (!jptitle.length){
jptitle = $('.page-title');
}

var titles = jptitle.html().split(':');

jptitle.html(titles[0] + '<small>' + titles[1] + '</small>');
jptitle.removeClass('icon-48-thememanager').html(titles[0] + '<small>' + titles[1] + '</small>');

//remove joomla title
$('#template-manager .tpl-desc-name').remove();
Expand Down
12 changes: 11 additions & 1 deletion source/tpl_t3_blank/languages/en-GB.tpl_t3_blank.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,14 @@ T3_THEMER_FOOTER ="Footer Styles"
T3_VARS_FOOTER_MOD_TCOLOR_LABEL ="Module Color"
T3_VARS_FOOTER_MOD_TCOLOR_DESC ="Module Color"
T3_VARS_FOOTER_MOD_COLOR_LABEL ="Module Title Color"
T3_VARS_FOOTER_MOD_COLOR_DESC ="Module Title Color"
T3_VARS_FOOTER_MOD_COLOR_DESC ="Module Title Color"


T3_BLANK_DESC_1 ="T3 Blank"
T3_BLANK_DESC_2 ="Your solid Starting Point"
T3_BLANK_DESC_3 ="T3 Blank is a blank theme for T3 Framework. With the latest improvements, features and ease of usage, you can now easily adapt it to your site. T3 is way ahead of its predecessors versions viz T3v1 and T3v2. Its more powerful, elegant, user friendly, feature rich and developed to support the latest Joomla 3.0 improvements, don't worry T3 is also available for Joomla 2.5 too."
T3_BLANK_DESC_4 ="Resources:"
T3_BLANK_DESC_5 ="<a href=\"https://github.com/t3framework/t3/tags\" title="">Download Link</a>"
T3_BLANK_DESC_6 ="<a href=\"http://t3-framework.org/documentation.html\" title="">Documentation Link</a>"
T3_BLANK_DESC_7 ="<a href=\"http://pm.joomlart.com/browse/T3\" title="">Changelog Link</a>"
T3_BLANK_DESC_8 ="<a href=\"http://www.joomlart.com/forums/forumdisplay.php?411-JA-T3V3-Framework\" title="">Forum Link</a>"
4 changes: 2 additions & 2 deletions source/tpl_t3_blank/languages/en-GB.tpl_t3_blank.sys.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
T3_OVERVIEW_TPL_SAME ="Congrats! You are using latest version of %s!"
T3_OVERVIEW_TPL_SAME_MSG ="Your version is <strong>%s</strong>"
T3_OVERVIEW_TPL_NEW_MSG ="Your version is <strong>%s</strong>. %s's latest version is <strong>%s</strong>."
T3_OVERVIEW_TPL_NEW ="Dude! There's a newer version for your %s!"
T3_OVERVIEW_TPL_NEW_MSG ="Your version is <strong>%s</strong>. %s's latest version is <strong>%s</strong>."
T3_OVERVIEW_TPL_NEW ="Dude! There's a newer version for your %s!"
16 changes: 8 additions & 8 deletions source/tpl_t3_blank/templateInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@
<div class="span8">
<div class="t3-admin-overview-header">
<h2>
T3 Blank
<small style="display: block;">Your solid Starting Point</small>
<?php echo JText::_('T3_BLANK_DESC_1') ?>
<small style="display: block;"><?php echo JText::_('T3_BLANK_DESC_2') ?></small>
</h2>
<p>T3 Blank is a blank theme for T3 Framework. With the latest improvements, features and ease of usage, you can now easily adapt it to your site. T3 is way ahead of its predecessors versions viz T3v1 and T3v2. Its more powerful, elegant, user friendly, feature rich and developed to support the latest Joomla 3.0 improvements, don't worry T3 is also available for Joomla 2.5 too.</p>
<p><?php echo JText::_('T3_BLANK_DESC_3') ?></p>
</div>
<div class="t3-admin-overview-body">
<h4>Resources:</h4>
<h4><?php echo JText::_('T3_BLANK_DESC_4') ?></h4>
<ul class="t3-admin-overview-features">
<li><a href=\"http://www.joomlart.com/forums/downloads.php?do=cat&id=460\" title="">Download Link</a></li>
<li><a href=\"http://t3-framework.org/documentation.html\" title="">Documentation Link</a></li>
<li><a href=\"http://pm.joomlart.com/browse/JATCBLANK3\" title="">Changelog Link</a></li>
<li><a href=\"http://www.joomlart.com/forums/forumdisplay.php?411-JA-T3V3-Framework\" title="">Forum Link</a></li>
<li><?php echo JText::_('T3_BLANK_DESC_5') ?></li>
<li><?php echo JText::_('T3_BLANK_DESC_6') ?></li>
<li><?php echo JText::_('T3_BLANK_DESC_7') ?></li>
<li><?php echo JText::_('T3_BLANK_DESC_8') ?></li>
</ul>
</div>
</div>

0 comments on commit 60d520e

Please sign in to comment.