PluginProbe ʕ •ᴥ•ʔ
Loco Translate / 1.5.6
Loco Translate v1.5.6
2.8.5 2.8.4 2.5.8 2.6.0 2.6.1 2.6.10 2.6.11 2.6.12 2.6.13 2.6.14 2.6.2 2.6.3 2.6.4 2.6.5 2.6.6 2.6.7 2.6.8 2.6.9 2.7.0 2.7.1 2.7.2 2.7.3 2.8.0 2.8.1 2.8.2 2.8.3 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.2 1.2.1 1.2.2 1.3 1.3.1 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 2.0.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.15 2.0.16 2.0.17 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.0 2.2.1 2.2.2 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7
loco-translate / tpl / admin-nav.tpl.php
loco-translate / tpl Last commit date
admin-fscheck.tpl.php 9 years ago admin-list.tpl.php 9 years ago admin-nav.tpl.php 9 years ago admin-opts.tpl.php 9 years ago admin-poedit.tpl.php 9 years ago admin-poinit.tpl.php 9 years ago admin-root.tpl.php 9 years ago
admin-nav.tpl.php
34 lines
1 <?php
2 /**
3 * main nav on tabbed admin pages
4 */
5 ?>
6
7 <h2 class="nav-tab-wrapper"><?php
8 foreach( $nav as $label => $attrs ):
9 $href = $icon = '';
10 extract( $attrs );
11 if( $icon ){
12 $icon = ' dashicons-before dashicons-'.$icon;
13 }
14 if( $href ):?>
15 <a href="<?php echo Loco::html($href)?>" class="nav-tab<?php echo $icon?>">
16 <?php echo Loco::html($label)?>
17 </a><?php
18 else:?>
19 <a href="#" class="nav-tab nav-tab-active<?php echo $icon?>">
20 <?php Loco::h($label)?>
21 </a><?php
22 endif;
23 endforeach?>
24
25 <a href="https://localise.biz/about/gettext?<?php Loco::h( Loco::utm_query('nav') )?>" class="nav-tab nav-tab-loco" target="_blank">
26 <?php Loco::h(__('Powered by','loco-translate'))?>
27 <?php Loco::h(__('Loco, Translation Management','loco-translate'))?>
28 </a>
29 </h2>
30
31 <!--[if lt IE 9]><?php
32 LocoAdmin::warning( __( $ignore = 'Your browser is out of date!').' '.Loco::html( __('Loco may not work as expected','loco-translate') ) );
33 ?><![endif]-->
34