|
@@ -17,14 +17,14 @@
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
-->
|
|
|
|
|
|
-<h2><?= T_("PirateBox Configuration") ?></h2>
|
|
|
+<h2><?= _("PirateBox Configuration") ?></h2>
|
|
|
<?php if($faststatus): ?>
|
|
|
- <span class="label label-success" data-toggle="tooltip" data-title="<?= T_('This is a fast status. Click on More details to show the complete status.') ?>"><?= T_('Running') ?></span>
|
|
|
+ <span class="label label-success" data-toggle="tooltip" data-title="<?= _('This is a fast status. Click on More details to show the complete status.') ?>"><?= _('Running') ?></span>
|
|
|
<?php else: ?>
|
|
|
- <span class="label label-danger" data-toggle="tooltip" data-title="<?= T_('This is a fast status. Click on More details to show the complete status.') ?>"><?= T_('Not Running') ?></span>
|
|
|
+ <span class="label label-danger" data-toggle="tooltip" data-title="<?= _('This is a fast status. Click on More details to show the complete status.') ?>"><?= _('Not Running') ?></span>
|
|
|
<?php endif; ?>
|
|
|
|
|
|
- <img src="public/img/loading.gif" id="status-loading" alt="Loading..." /><a href="#" id="statusbtn" data-toggle="tooltip" data-title="<?= T_('Loading complete status may take a few minutes. Be patient.') ?>"><?= T_('More details') ?></a> · <a href="http://<?= $opt_domain ?>:4280">PirateBox</a>
|
|
|
+ <img src="public/img/loading.gif" id="status-loading" alt="Loading..." /><a href="#" id="statusbtn" data-toggle="tooltip" data-title="<?= _('Loading complete status may take a few minutes. Be patient.') ?>"><?= _('More details') ?></a> · <a href="http://<?= $opt_domain ?>:4280">PirateBox</a>
|
|
|
|
|
|
<div id="status" class="alert alert-dismissible alert-info fade in" style="margin-top: 10px" role="alert">
|
|
|
<button type="button" class="close"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
|
@@ -40,12 +40,12 @@
|
|
|
|
|
|
<div class="panel panel-default">
|
|
|
<div class="panel-heading">
|
|
|
- <h3 class="panel-title"><?= T_("Service") ?></h3>
|
|
|
+ <h3 class="panel-title"><?= _("Service") ?></h3>
|
|
|
</div>
|
|
|
|
|
|
<div style="padding: 14px 14px 0 10px">
|
|
|
<div class="form-group">
|
|
|
- <label for="service_enabled" class="col-sm-3 control-label"><?= T_('PirateBox Enabled') ?></label>
|
|
|
+ <label for="service_enabled" class="col-sm-3 control-label"><?= _('PirateBox Enabled') ?></label>
|
|
|
<div class="col-sm-9 input-group-btn">
|
|
|
<div class="input-group">
|
|
|
<input type="checkbox" class="form-control switch" name="service_enabled" id="service_enabled" value="1" <?= $service_enabled == 1 ? 'checked="checked"' : '' ?> />
|
|
@@ -57,15 +57,15 @@
|
|
|
<?php if($wifi_device_id == -1): ?>
|
|
|
<div class="alert alert-dismissible alert-warning fade in" style="margin: 2px 16px 17px" role="alert">
|
|
|
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
|
|
- <strong><?= T_('Notice') ?>:</strong> <?= T_("You need to select an associated hotspot.") ?>
|
|
|
+ <strong><?= _('Notice') ?>:</strong> <?= _("You need to select an associated hotspot.") ?>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
|
|
|
- <label for="wifi_device_id" class="col-sm-3 control-label"><?= T_('Associated Hotspot') ?></label>
|
|
|
+ <label for="wifi_device_id" class="col-sm-3 control-label"><?= _('Associated Hotspot') ?></label>
|
|
|
<div class="col-sm-9 input-group-btn">
|
|
|
<div class="input-group">
|
|
|
<input type="text" name="wifi_device_id" id="wifi_device_id" value="<?= $wifi_device_id ?>" style="display: none" />
|
|
|
- <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><?= empty($wifi_ssid) ? '<em>'.T_("None").'</em>' : $wifi_ssid ?> <span class="caret"></span></button>
|
|
|
+ <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><?= empty($wifi_ssid) ? '<em>'._("None").'</em>' : $wifi_ssid ?> <span class="caret"></span></button>
|
|
|
<ul class="dropdown-menu dropdown-menu-left" id="deviceidlist" role="menu">
|
|
|
<?= $wifi_ssid_list ?>
|
|
|
</ul>
|
|
@@ -77,19 +77,19 @@
|
|
|
|
|
|
<div class="panel panel-default enabled" <?= $service_enabled == 0 ? 'style="display: none"' : '' ?>>
|
|
|
<div class="panel-heading">
|
|
|
- <h3 class="panel-title"><?= T_("PirateBox") ?></h3>
|
|
|
+ <h3 class="panel-title"><?= _("PirateBox") ?></h3>
|
|
|
</div>
|
|
|
|
|
|
<div style="padding: 14px 14px 0 10px">
|
|
|
<div class="form-group">
|
|
|
- <label for="opt_name" class="col-sm-3 control-label"><?= T_('Name') ?></label>
|
|
|
+ <label for="opt_name" class="col-sm-3 control-label"><?= _('Name') ?></label>
|
|
|
<div class="col-sm-9">
|
|
|
<input type="text" class="form-control" name="opt_name" id="opt_name" placeholder="PirateBox" value="<?= htmlentities($opt_name) ?>" />
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
|
- <label for="opt_renaming" class="col-sm-3 control-label"><?= T_('Renaming Allowed') ?></label>
|
|
|
+ <label for="opt_renaming" class="col-sm-3 control-label"><?= _('Renaming Allowed') ?></label>
|
|
|
<div class="col-sm-9 input-group-btn">
|
|
|
<div class="input-group">
|
|
|
<input type="checkbox" class="form-control switch" name="opt_renaming" id="opt_renaming" value="1" <?= $opt_renaming == 1 ? 'checked="checked"' : '' ?> />
|
|
@@ -98,7 +98,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
|
- <label for="opt_deleting" class="col-sm-3 control-label"><?= T_('Deleting Allowed') ?></label>
|
|
|
+ <label for="opt_deleting" class="col-sm-3 control-label"><?= _('Deleting Allowed') ?></label>
|
|
|
<div class="col-sm-9 input-group-btn">
|
|
|
<div class="input-group">
|
|
|
<input type="checkbox" class="form-control switch" name="opt_deleting" id="opt_deleting" value="1" <?= $opt_deleting == 1 ? 'checked="checked"' : '' ?> />
|
|
@@ -107,7 +107,7 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
|
- <label for="opt_chat" class="col-sm-3 control-label"><?= T_('Chat Enabled') ?></label>
|
|
|
+ <label for="opt_chat" class="col-sm-3 control-label"><?= _('Chat Enabled') ?></label>
|
|
|
<div class="col-sm-9 input-group-btn">
|
|
|
<div class="input-group">
|
|
|
<input type="checkbox" class="form-control switch" name="opt_chat" id="opt_chat" value="1" <?= $opt_chat == 1 ? 'checked="checked"' : '' ?> />
|
|
@@ -119,7 +119,7 @@
|
|
|
|
|
|
<div class="form-group">
|
|
|
<div style="text-align: center">
|
|
|
- <button type="submit" class="btn btn-default" data-toggle="tooltip" id="save" data-title="<?= T_('Reloading may take a few minutes. Be patient.') ?>"><?= T_('Save and reload') ?></button> <img src="public/img/loading.gif" id="save-loading" alt="Loading..." />
|
|
|
+ <button type="submit" class="btn btn-default" data-toggle="tooltip" id="save" data-title="<?= _('Reloading may take a few minutes. Be patient.') ?>"><?= _('Save and reload') ?></button> <img src="public/img/loading.gif" id="save-loading" alt="Loading..." />
|
|
|
</div>
|
|
|
</div>
|
|
|
</form>
|