<?php foreach($translations as $currFile => $fileTranslations): ?>
    <?php foreach($fileTranslations['english'] as $key => $value): ?>
        <?php if(empty($value)): ?>
            <?php continue; ?>
        <?php endif; ?>

        <tr>
            <?php echo $__env->make('Admin.Translations.partials.transRow', [
                'value' => $value,
                'originalValue' => !array_key_exists($key, $fileTranslations['original'])
                    ? $value
                    : $fileTranslations['original'][$key],
                'currentValue' => !array_key_exists($key, $fileTranslations['current'])
                    ? $value
                    : $fileTranslations['current'][$key],
                'name' => 'trans['.$key.']',
                'file' => $currFile,
                'key' => $key,
            ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
        </tr>

    <?php endforeach; ?>
<?php endforeach; ?>
