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-root.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-root.tpl.php
82 lines
1 <?php
2 /**
3 * Root admin screen - lists available themes and plugins
4 */
5 $nav = array (
6 __('Packages','loco-translate') => array(),
7 __('Settings','loco-translate') => array( 'href' => LocoAdmin::uri( array(), 'settings' ), 'icon' => 'admin-settings' ),
8 );
9 ?>
10
11 <div class="wrap loco-admin loco-lists"><?php
12
13 // show upgrade notice if available
14 if( isset($update) ):?>
15 <div class="loco-message updated inline loco-warning">
16 <p>
17 <strong>
18 <?php Loco::h( __('New version available','loco-translate') )?>:
19 </strong>
20 <a href="http://wordpress.org/extend/plugins/<?php echo Loco::NS?>">
21 <?php Loco::h( __('Upgrade to version %s of Loco Translate','loco-translate'), $update )?>
22 </a>
23 </p>
24 </div><?php
25 else:?>
26 <div class="notice inline notice-info">
27 <h3>Version 2.0 is nearly here</h3>
28 <p>
29 We've been working on a completely new version of Loco Translate.
30 If you'd like early access, please <a href="https://localise.biz/help/wordpress/translate-plugin/developers" target="_blank">help us test it</a>.
31 </p>
32 </div><?php
33 endif;
34
35 // main tabbed navigation
36 Loco::render('admin-nav', compact('nav') )?>
37
38 <h3 class="title">
39 <?php Loco::h( __('Select a plugin or theme to translate','loco-translate') )?>
40 </h3><?php
41
42
43 // Theme packages
44 //
45 if( $themes ):?>
46 <div class="icon32 icon-appearance"><br /></div>
47 <h2 class="dashicons-admin-appearance">
48 <?php Loco::h( _x('Themes','Package list header','loco-translate') )?>
49 </h2>
50 <div class="loco-list loco-list-themes">
51 <?php Loco::render( 'admin-list', array('items'=>$themes) ) ?>
52 </div><?php
53 endif;
54
55
56 // Plugin packages
57 //
58 if( $plugins ):?>
59 <div class="icon32 icon-plugins"><br /></div>
60 <h2 class="dashicons-admin-plugins">
61 <?php Loco::h( _x('Plugins','Package list header','loco-translate') )?>
62 </h2>
63 <div class="loco-list loco-list-plugins">
64 <?php Loco::render( 'admin-list', array('items'=>$plugins) ) ?>
65 </div><?php
66 endif;
67
68
69 // Core packages
70 //
71 if( $core ):?>
72 <div class="icon32 icon-generic"><br /></div>
73 <h2 class="dashicons-wordpress">
74 <?php Loco::h( _x('Core','Package list header','loco-translate') )?>
75 </h2>
76 <div class="loco-list loco-list-core">
77 <?php Loco::render( 'admin-list', array('items'=>$core) ) ?>
78 </div><?php
79 endif?>
80
81 </div>
82