Server IP : 66.29.132.124 / Your IP : 3.138.101.51 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/cwd/storage/framework/views/ |
Upload File : |
<?php $__env->startSection('content'); ?> <div class="container"> <div class="d-flex justify-content-between mb20"> <h1 class="title-bar"><?php echo e(__("Translation Manager")); ?></h1> <a class="btn btn-primary" href="<?php echo e(route('language.admin.translations,loadStrings')); ?>"><i class="icon ion-ios-search"></i> <?php echo e(__("Find Translations")); ?></a> </div> <?php echo $__env->make('admin.message', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <div class="alert alert-warning"> <?php echo e(__("After translation. You must re-build language file to apply the change")); ?> </div> <div class="row"> <div class="col-md-12"> <div class="panel"> <div class="panel-title"><?php echo e(__("All Languages")); ?></div> <div class="panel-body"> <div class="table-responsive"> <table class="table table-hover"> <thead> <tr> <th><?php echo e(__("Name")); ?></th> <th><?php echo e(__("Percent")); ?></th> <th><?php echo e(__("Translated")); ?></th> <th><?php echo e(__("Last build at")); ?></th> <th><?php echo e(__("Actions")); ?></th> </tr> </thead> <tbody> <?php if(count($languages) > 0): ?> <?php $__currentLoopData = $languages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $language): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td class="title"> <a href="<?php echo e(route('language.admin.translations.detail',['id'=>$language->id])); ?>"> <span class="flag-icon flag-icon-<?php echo e($language->flag); ?>"></span> <?php echo e($language->name); ?> - (<?php echo e($language->locale); ?>) </a> </td> <td><?php echo e($total_text ? number_format((float) $language->translated_number / $total_text * 100,2) : 0); ?>%</td> <td><?php echo e($language->translated_number); ?>/<?php echo e($total_text); ?></td> <td><?php echo e($language->last_build_at ? display_datetime($language->last_build_at) : ''); ?></td> <td> <a href="<?php echo e(route('language.admin.translations.detail',['id'=>$language->id])); ?>" class="btn btn-sm btn-primary"><i class="fa fa-edit"></i> <?php echo e(__("Translate")); ?></a> <a href="<?php echo e(route('language.admin.translations.build',['id'=>$language->id])); ?>" class="btn btn-sm btn-info"><i class="fa fa-cubes"></i> <?php echo e(__("Build")); ?></a> <button type="button" class="btn btn-secondary dropdown-toggle btn-sm" data-toggle="dropdown"> <?php echo e(__("More")); ?> </button> <div class="dropdown-menu"> <a class="dropdown-item" href="<?php echo e(route('language.admin.translations.loadTranslateJson',['locale'=>$language->locale])); ?>"><?php echo e(__ ("Load Translate Default")); ?></a> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php else: ?> <tr> <td colspan="5"><?php echo e(__("No data")); ?></td> </tr> <?php endif; ?> </tbody> </table> </div> <div class="d-flex justify-content-end"><?php echo e($languages->links()); ?></div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/book24/public_html/modules/Language/Views/translations/index.blade.php ENDPATH**/ ?>