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-fscheck.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-fscheck.tpl.php
64 lines
1 <?php
2 /**
3 * File system check screen - shows permission problems and gives advice on fixing
4 * @var LocoPackage $package
5 */
6 $nav = array (
7 __('Packages','loco-translate') => array( 'href' => LocoAdmin::uri() ),
8 __('Settings','loco-translate') => array( 'href' => LocoAdmin::uri( array(), 'settings' ), 'icon' => 'admin-settings' ),
9 //
10 __('File check','loco-translate') => array( 'icon' => 'admin-tools' ),
11 );
12 ?>
13
14 <div class="wrap loco-admin loco-fscheck">
15
16 <?php Loco::render('admin-nav', compact('nav') );?>
17
18 <h2>
19 <?php Loco::h( sprintf( __('File system permissions for %s','loco-translate'), $name ) )?>
20 </h2><?php
21
22 /* @var $package LocoPackage */
23 foreach( $package->get_permission_errors() as $path => $error ):?>
24 <ul class="loco-list">
25 <li>
26 <code><?php Loco::h( LocoAdmin::trim_path($path) )?></code>
27 </li><?php
28 if( $error ):?>
29 <li class="loco-warning">
30 <span><?php Loco::h($error)?></span>
31 </li><?php
32 else:?>
33 <li class="loco-ok">
34 <span>OK</span>
35 </li><?php
36 endif?>
37 </ul><?php
38 endforeach;
39
40
41 if( $warnings = $package->get_author_warnings() ):?>
42 <h2>
43 <?php Loco::h( sprintf( __('Other potential issues with %s','loco-translate'), $name ) ) ?>
44 </h2>
45
46 <ul class="loco-list"><?php
47 foreach( $warnings as $error ):?>
48 <li class="loco-warning">
49 <span><?php Loco::h($error)?></span>
50 </li><?php
51 endforeach;?>
52 </ul><?php
53 endif?>
54
55
56 <p class="submit">
57 <a class="button-primary" href="<?php Loco::h( LocoAdmin::uri() )?>"><?php Loco::h( __('Back','loco-translate') )?></a>
58 <a class="button" href="https://localise.biz/help/wordpress/translate-plugin/support" target="_blank"><?php Loco::h( __('Get help','loco-translate') )?></a>
59 </p>
60
61
62
63
64 </div>