/var/www/html_sp/wp-content/plugins/loco-translate/tpl/admin/init/upload.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
 * Generic upload template for installing a file into a translation set.
 */
$this->extend('../layout');
/* @var Loco_Locale $locale */
?> 

<form action="" method="post" enctype="multipart/form-data" id="loco-main"><?php
    
/* @var Loco_mvc_HiddenFields $hidden */
    
$hidden->_e();?> 

    <div class="panel">
        <h2>
            <?php self::e__('Choose a location','loco-translate') );?> 
        </h2>
        <table class="form-table">
            <tbody class="loco-paths"><?php
                
/* @var Loco_mvc_ViewParams[] $locations */
                
foreach( $locations as $typeId => $location ):?> 
                <tr class="compact">
                    <td>
                        <p class="description"><?php $location->e('label')?>:</p>
                    </td>
                    <td><?php
                    
/* @var Loco_mvc_ViewParams $choice */
                    /* @var Loco_mvc_FileParams $parent */
                    
foreach( $location['paths'] as $choice ):
                        
$parent $choice['parent'];?> 
                        <p>
                            <label>
                                <input type="radio" name="dir" value="<?php $parent->e('relpath')?>" />
                                <code class="path"><?php $parent->e('relpath')?>/<?php echo $choice->holder?></code>
                            </label>
                        </p><?php
                    
endforeach?> 
                    </td>
                </tr><?php
                
endforeach?> 
            </tbody>
        </table>
    </div>
    <div class="panel panel-info">
        <h2>
            <?php  esc_html_e('Upload PO file','loco-translate')?> 
        </h2>
        <p><?php 
            
// translators: This is HTML formatted. (1) placeholder for language code, (2) Example language code
            
echo wp_kses (
                
sprintf__('Your file must be named as shown above where %1$s is the language code, e.g. %2$s','loco-translate'), '<code>{locale}</code>''<code>'.$locale.'</code>' ),
                [
'code'=>[]]
            )
?> 
        </p>
        <p>
            <input type="file" name="f" />
        </p>
        <p class="submit">
            <button type="submit" class="button button-large button-primary has-icon icon-upload" disabled><?php esc_html_e('Upload','loco-translate')?></button>
        </p>
    </div>
</form>