Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Wilson <corey@commercesignals.com>2018-09-05 00:34:34 +0300
committernacho <nacho@ownyourbits.com>2018-09-16 17:48:39 +0300
commitfcbd661b4f16db2ac424cefee55fbd06c5f47e6e (patch)
tree6e26ff5c8c2cd156f63281ed7f38dfe5ab858080
parent6a755c31a5cfb78cb03182474fc884e3b96fe0c9 (diff)
ncp-web: add hover text for ncp admin header iconsv0.59.10
-rw-r--r--changelog.md10
-rw-r--r--ncp-web/index.php28
2 files changed, 20 insertions, 18 deletions
diff --git a/changelog.md b/changelog.md
index c06220e4..c24c5353 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,11 @@
-[v0.59.7](https://github.com/nextcloud/nextcloudpi/commit/bb2eb48) (2018-08-22) Rename DDNS apps so they show up together
+[v0.59.10](https://github.com/nextcloud/nextcloudpi/commit/e17f56b) (2018-09-04) ncp-web: add hover text for ncp admin header icons
+
+[v0.59.9 ](https://github.com/nextcloud/nextcloudpi/commit/6a755c3) (2018-09-16) nc-prettyURL: fixes
+
+[v0.59.8](https://github.com/nextcloud/nextcloudpi/commit/a00cd0b) (2018-09-15) nc-format-USB: drive number was off by one (#631)
+
+[v0.59.7 ](https://github.com/nextcloud/nextcloudpi/commit/e26a834) (2018-08-22) Rename DDNS apps so they show up together
[v0.59.6 ](https://github.com/nextcloud/nextcloudpi/commit/1210517) (2018-09-12) wizard: fix instructions for BTRFS
@@ -13,7 +19,7 @@
[v0.59.1 ](https://github.com/nextcloud/nextcloudpi/commit/378ca60) (2018-09-10) nc-datadir: support specifying the root of the mountpoint
-[v0.59.0](https://github.com/nextcloud/nextcloudpi/commit/9113ab2) (2018-08-31) update to NC 13.0.6
+[v0.59.0 ](https://github.com/nextcloud/nextcloudpi/commit/9113ab2) (2018-08-31) update to NC 13.0.6
[v0.58.1 ](https://github.com/nextcloud/nextcloudpi/commit/dad9900) (2018-07-25) nc-datadir: backup existing datadir after checks
diff --git a/ncp-web/index.php b/ncp-web/index.php
index 9e2daa12..9c8ca46c 100644
--- a/ncp-web/index.php
+++ b/ncp-web/index.php
@@ -131,27 +131,27 @@ HTML;
?>
</div>
<div id="header-right">
- <a href="https://ownyourbits.com" id="nextcloud-btn" target="_blank" tabindex="1">
+ <a href="https://ownyourbits.com" id="nextcloud-btn" target="_blank" tabindex="1" title="<?php echo $l->__("Launch Nextcloud"); ?>">
<div id="nc-button">
<div id="expand">
<div class="icon-nc-white"></div>
</div>
</div>
</a>
- <div id="dashboard-btn">
+ <div id="dashboard-btn" title="<?php echo $l->__("View System Info"); ?>">
<div id="expand">
<div class="icon-dashboard"></div>
</div>
</div>
- <div id="config-btn">
+ <div id="config-btn" title="<?php echo $l->__("Nextcloud Configuration"); ?>">
<div id="expand">
<div class="icon-config"></div>
</div>
</div>
-<?php
+<?php
if ( file_exists( 'wizard' ) )
echo <<<HTML
- <a href="wizard">
+ <a href="wizard" title="{$l->__("NextCloudPi Wizard")}">
<div class="wizard-btn">
<div id="expand">
<div class="icon-wizard-white"></div>
@@ -160,22 +160,18 @@ HTML;
</a>
HTML;
?>
- <a href="https://github.com/nextcloud/nextcloudpi/wiki" target="_blank" tabindex="1">
+ <a href="https://github.com/nextcloud/nextcloudpi/wiki" target="_blank" tabindex="1" title="<?php echo $l->__("NextCloudPi Wiki"); ?>">
<div id="nc-button">
<div id="expand">
<div class="icon-nc-info"></div>
</div>
</div>
</a>
-<?php
- echo <<<HTML
- <div id="poweroff">
- <div id="expand">
- <div class="icon-power-white"></div>
- </div>
- </div>
-HTML;
-?>
+ <div id="poweroff" title="<?php echo $l->__("Power Off"); ?>">
+ <div id="expand">
+ <div class="icon-power-white"></div>
+ </div>
+ </div>
</div>
</header>
@@ -233,7 +229,7 @@ HTML;
{
echo "<td>$key</td>";
echo "<td><table>";
- foreach ( $val as $k => $v )
+ foreach ( $val as $k => $v )
echo "<tr><td>$k</td><td class=\"val-field\">$v</td></tr>";
echo '</table></td>';
}