PluginProbe ʕ •ᴥ•ʔ
Loco Translate / 2.8.4
Loco Translate v2.8.4
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 / list / inc-table.php
loco-translate / tpl / admin / list Last commit date
bundles.php 9 years ago inc-table.php 4 years ago locales.php 5 years ago
inc-table.php
43 lines
1 <?php
2 /**
3 * List of bundles
4 */
5 ?>
6
7 <table class="wp-list-table widefat fixed striped">
8 <thead>
9 <tr>
10 <th data-sort-type="s">
11 <?php esc_html_e('Bundle name', 'loco-translate')?>
12 </th>
13 <th data-sort-type="s">
14 <?php esc_html_e('Text domain','loco-translate')?>
15 </th>
16 <th data-sort-type="n">
17 <?php esc_html_e('Last modified','loco-translate')?>
18 </th>
19 <th data-sort-type="n">
20 <?php esc_html_e('Sets','loco-translate')?>
21 </th>
22 </tr>
23 </thead>
24 <tbody><?php
25 /* @var Loco_mvc_ViewParams[] $bundles */
26 foreach( $bundles as $bundle ):?>
27 <tr id="loco-<?php $bundle->e('id')?>">
28 <td data-sort-value="<?php $bundle->e('name')?>">
29 <a href="<?php $bundle->e('view')?>"><?php $bundle->e('name')?></a>
30 </td>
31 <td>
32 <?php $bundle->e('dflt')?>
33 </td>
34 <td data-sort-value="<?php $bundle->f('time','%u')?>">
35 <time datetime="<?php $bundle->date('time','c')?>"><?php $bundle->time ? $bundle->date('time') : print '--'?></time>
36 </td>
37 <td data-sort-value="<?php $bundle->f('size','%u')?>">
38 <?php $bundle->n('size')?>
39 </td>
40 </tr><?php
41 endforeach;?>
42 </tbody>
43 </table>