Prechádzať zdrojové kódy

New translation strings + Changes to some strings (#826)

* New translation strings + Changes to some strings

* Changed Filemanager to Files
Jaap Marcus 5 rokov pred
rodič
commit
0a6e29ba13

+ 29 - 0
web/inc/i18n/en.php

@@ -770,4 +770,33 @@ $LANG['en'] = array(
     'Please wait while php is installed or removed' => 'Adding or removing a version of PHP will take around 1 minute per version. Please wait until the process has completed and do not refresh the page.',
     'Avoid adding web domains on admin account' => 'It is strongly advised to create a standard user account before adding web domains to the server due to the increased privileges the admin account possesses and potential security risks involved.',
     
+    //Header 
+    'Fm' => 'Files',
+    //PHP Cli
+    'PHP CLI Version' => 'PHP CLI Version',
+    //Ipset Firewall rules
+    'Adding Firewall Ipset List' => 'Adding Firewall Ipset List',
+    'Ip List Name' => 'Ip List Name',
+    'Data Source' => 'Data Source',
+    'Ip Version' => 'Ip Version',
+    'Autoupdate' => 'Autoupdate',
+    'BLACKLIST' => 'BLACKLIST',
+    'IPVERSE' => 'IPVERSE',
+    'IPSET_CREATED_OK' => 'Ipset created',
+    'DELETE_IPSET_CONFIRMATION' => 'Are you sure you want to delete Ipset %2',
+    '1 Ipset list' => '1 Ipset list',
+    '%s Ipset lists' => '%s Ipset lists'
+    'There are currently no Ipset lists defined.' => 'There are currently no Ipset lists defined.',
+    'list ipset' => 'Ipset',
+    
+    //Backup
+    'File Name' => 'File Name',
+    'Size' => 'Size',
+    'Runtime' => 'Runtime',
+    //Logs
+    'Refresh' => 'Refresh',
+    //DNS 
+    'default' => 'default',
+    //rrd
+    'Bandwidth Usage' => 'Bandwidth Usage',
 );

+ 2 - 2
web/templates/admin/add_firewall_ipset.html

@@ -164,7 +164,7 @@
 
         // Blacklist
         var newEl = document.createElement("option");
-        newEl.text="BLACKLIST";
+        newEl.text="<?php print __('BLACKLIST') ?>";
         newEl.disabled=true;
         targetelement.appendChild(newEl);
 
@@ -177,7 +177,7 @@
 
         // IPVERSE
         var newEl = document.createElement("option");
-        newEl.text="IPVERSE";
+        newEl.text="<?php print __('IPVERSE') ?>";
         newEl.disabled=true;
         targetelement.appendChild(newEl);
 

+ 1 - 1
web/templates/admin/edit_user.html

@@ -184,7 +184,7 @@
                             </tr>
                             <tr>
                                  <td class="vst-text input-label">
-                                     <?php print __('PHP_CLI');?>
+                                     <?php print __('PHP CLI Version');?>
                                  </td>
                              </tr>
                              <tr>

+ 1 - 1
web/templates/admin/list_firewall_ipset.html

@@ -108,7 +108,7 @@
                 echo __('1 Ipset list');
               }
               if ( $i > 1) {
-                echo __('%s Ipser lists',$i);
+                echo __('%s Ipset lists',$i);
               }
             ?>
           </div>