Server : Apache/2 System : Linux vps.sdns.vn 3.10.0-1160.15.2.el7.x86_64 #1 SMP Wed Feb 3 15:06:38 UTC 2021 x86_64 User : phatdatpq ( 1022) PHP Version : 7.2.34 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/phatdatpq/public_html/wp-content/plugins/loco-translate/tpl/admin/bundle/ |
Upload File : |
<?php /** * Table of localised file pairs in a project */ /* @var Loco_mvc_ViewParams[] $pairs */ if( $pairs ):?> <table class="wp-list-table widefat fixed striped"> <thead> <tr> <th data-sort-type="s"> <?php esc_html_e('Language','loco-translate')?> </th> <th colspan="2" data-sort-type="n"> <?php esc_html_e('Translation progress','loco-translate')?> </th> <th data-sort-type="n"> <?php esc_html_e('Pending','loco-translate')?> </th> <th data-sort-type="s"> <?php esc_html_e('File info','loco-translate')?> </th> <th data-sort-type="n"> <?php esc_html_e('Last modified','loco-translate')?> </th> <th data-sort-type="s"> <?php esc_html_e('Folder','loco-translate')?> </th> </tr> </thead> <tbody><?php foreach( $pairs as $po ): $ispo = (bool) $po->lcode;?> <tr> <td class="has-row-actions" data-sort-value="<?php $po->e('lname')?>"> <a href="<?php $po->e('edit')?>" class="row-title"><?php if( $ispo ):?> <span <?php echo $po->lattr?>><code><?php $po->e('lcode')?></code></span> <span><?php $po->e('lname')?></span><?php else:?> <span class="icon icon-file"></span> <span><?php esc_html_e('Template file','loco-translate')?></span><?php endif?> </a><?php if( $domain ):?> <nav class="row-actions"> <span> <a href="<?php $po->e('edit')?>"><?php esc_html_e('Edit','loco-translate')?></a> | </span> <span> <a href="<?php $po->e('view')?>"><?php esc_html_e('View','loco-translate')?></a> | </span> <span> <a href="<?php $po->e('info')?>"><?php esc_html_e('Info','loco-translate')?></a> | </span> <span> <a href="<?php $po->e('copy')?>"><?php esc_html_e('Copy','loco-translate')?></a> | </span> <span> <a href="<?php $po->e('move')?>"><?php esc_html_e('Move','loco-translate')?></a> | </span> <span class="trash"> <a href="<?php $po->e('delete')?>"><?php esc_html_e('Delete','loco-translate')?></a> </span> </nav><?php endif?> </td><?php if( $ispo ):?> <td data-sort-value="<?php echo $po->meta->getPercent()?>"> <?php $po->meta->printProgress()?> </td> <td title="of <?php $po->n('total')?>"> <?php echo $po->meta->getPercent()?>% </td> <td data-sort-value="<?php $po->f('todo','%u')?>"> <?php $po->n('todo')?> </td><?php else:?> <td data-sort-value="-1"> -- <!-- no progress for template --> </td> <td> <!-- no percentage for template --> </td> <td data-sort-value="-1"> -- <!-- no pendingfor template --> </td><?php endif?> <td data-sort-value="<?php $po->e('name')?>"> <a href="<?php $po->e('info')?>"><?php $po->e('name')?></a> </td> <td data-sort-value="<?php $po->f('time','%u')?>"> <time datetime="<?php $po->date('time','c')?>"><?php $po->date('time')?></time> </td> <td> <?php $po->e('store')?> </td> </tr><?php endforeach;?> </tbody> </table><?php else:?> <table class="wp-list-table widefat fixed striped"> <tr> <td><?php self::e( __('No translations found for "%s"','loco-translate'), $domain )?></td> </tr> </table><?php endif;