mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	Update en_US locale + template
This commit is contained in:
		
										
											Binary file not shown.
										
									
								
							| @@ -677,6 +677,33 @@ msgstr "Attempting to start openvpn" | ||||
| msgid "Attempting to stop openvpn" | ||||
| msgstr "Attempting to stop openvpn" | ||||
|  | ||||
| msgid "Configurations" | ||||
| msgstr "Configurations" | ||||
|  | ||||
| msgid "Currently available OpenVPN client configurations are displayed below." | ||||
| msgstr "Currently available OpenVPN client configurations are displayed below." | ||||
|  | ||||
| msgid "Activating a configuraton will restart the <code>openvpn-client</code> service." | ||||
| msgstr "Activating a configuraton will restart the <code>openvpn-client</code> service." | ||||
|  | ||||
| msgid "Delete OpenVPN client" | ||||
| msgstr "Delete OpenVPN client" | ||||
|  | ||||
| msgid "Delete client configuration? This cannot be undone." | ||||
| msgstr "Delete client configuration? This cannot be undone." | ||||
|  | ||||
| msgid "Activate OpenVPN client" | ||||
| msgstr "Activate OpenVPN client" | ||||
|  | ||||
| msgid "Activate client configuration? This will restart the openvpn-client service." | ||||
| msgstr "Activate client configuration? This will restart the openvpn-client service." | ||||
|  | ||||
| msgid "Activate" | ||||
| msgstr "Activate" | ||||
|  | ||||
| msgid "Cancel" | ||||
| msgstr "Cancel" | ||||
|  | ||||
| #: includes/torproxy.php | ||||
| msgid "TOR is not running" | ||||
| msgstr "TOR is not running" | ||||
|   | ||||
| @@ -1,31 +1,36 @@ | ||||
| <div class="tab-pane fade" id="openvpnconfigs"> | ||||
|   <h4 class="mt-3 mb-3"><?php echo _("Configurations"); ?></h4> | ||||
|     <div class="openvpn-configs js-openvpn-configs-container"> | ||||
|           <?php foreach ($clients as $client) : | ||||
|               if ($client == "login.conf") { | ||||
|                   $label = file_get_meta(RASPI_OPENVPN_CLIENT_LOGIN,'#\sfilename\s(.*)'); | ||||
|                   $btn_class = "active"; | ||||
|               } else { | ||||
|                   $label = trim(pathinfo($client, PATHINFO_FILENAME), "_login"); | ||||
|                   $client = $label; | ||||
|                   $btn_class = "disabled"; | ||||
|               } | ||||
|           ?> | ||||
|           <div class="row openvpn-client-row js-openvpn-client-row mt-2"> | ||||
|           <div class="col-md-5 col-xs-5"> | ||||
|             <label><?php echo htmlspecialchars($label, ENT_QUOTES); ?></label> | ||||
|           </div> | ||||
|           <div class="col-md-2 col-xs-2"> | ||||
|             <button type="button" class="btn btn-outline-success <?php echo $btn_class; ?> js-activate-openvpn-client" data-record-id="<?php echo htmlspecialchars($client, ENT_QUOTES); ?>" data-toggle="modal" data-target="#ovpn-confirm-activate" /><i class="far fa-check-circle"></i></button> | ||||
|           </div> | ||||
|           <div class="col-md-2 col-xs-3"> | ||||
|             <button type="button" class="btn btn-outline-danger js-remove-openvpn-client" data-record-id="<?php echo htmlspecialchars($client, ENT_QUOTES); ?>" data-toggle="modal" data-target="#ovpn-confirm-delete" /><i class="far fa-trash-alt"></i></button> | ||||
|           </div> | ||||
|         </div><!-- ./row openvpn --> | ||||
|       <?php endforeach ?> | ||||
|    </div><!-- /.openvpn-configs --> | ||||
|   <div class="mb-3"> | ||||
|   <div class="row"> | ||||
|     <div class="col-md-6"> | ||||
|       <h4 class="mt-3 mb-3"><?php echo _("Configurations"); ?></h4> | ||||
|         <p id="openvpnconfigs-description" class="mb-3"> | ||||
|           <small><?php echo _("Currently available OpenVPN client configurations are displayed below.") ?></small> | ||||
|           <br><small class="text-muted"><?php echo _("Activating a configuraton will restart the <code>openvpn-client</code> service.") ?></small> | ||||
|         </p> | ||||
|         <div class="openvpn-configs js-openvpn-configs-container"> | ||||
|               <?php foreach ($clients as $client) : | ||||
|                   if ($client == "login.conf") { | ||||
|                       $label = file_get_meta(RASPI_OPENVPN_CLIENT_LOGIN,'#\sfilename\s(.*)'); | ||||
|                       $btn_class = "active"; | ||||
|                   } else { | ||||
|                       $label = trim(pathinfo($client, PATHINFO_FILENAME), "_login"); | ||||
|                       $client = $label; | ||||
|                       $btn_class = "disabled"; | ||||
|                   } | ||||
|               ?> | ||||
|               <div class="row openvpn-client-row js-openvpn-client-row mt-2"> | ||||
|               <div class="col-md-6 col-xs-5"> | ||||
|                 <label><?php echo htmlspecialchars($label, ENT_QUOTES); ?></label> | ||||
|               </div> | ||||
|               <div class="col-md-2 col-xs-2"> | ||||
|                 <button type="button" class="btn btn-outline-success <?php echo $btn_class; ?> js-activate-openvpn-client" data-record-id="<?php echo htmlspecialchars($client, ENT_QUOTES); ?>" data-toggle="modal" data-target="#ovpn-confirm-activate" /><i class="far fa-check-circle"></i></button> | ||||
|               </div> | ||||
|               <div class="col-md-2 col-xs-2"> | ||||
|                 <button type="button" class="btn btn-outline-danger js-remove-openvpn-client" data-record-id="<?php echo htmlspecialchars($client, ENT_QUOTES); ?>" data-toggle="modal" data-target="#ovpn-confirm-delete" /><i class="far fa-trash-alt"></i></button> | ||||
|               </div> | ||||
|             </div><!-- ./row openvpn --> | ||||
|           <?php endforeach ?> | ||||
|        </div><!-- /.openvpn-configs --> | ||||
|       <div class="mb-3"></div> | ||||
|     </div><!-- /.tab-pane | manage configs tab --> | ||||
|   </div> | ||||
| </div><!-- /.tab-pane | manage configs tab --> | ||||
|  | ||||
|  | ||||
| </div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user