summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2016-12-13 13:19:10 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2016-12-13 13:19:10 +0100
commit89252497c6b0537618c74bfc750931d39c0a7ff7 (patch)
treeadbfee1febdf85c36baecfc69110c939fd337978 /settings
parentab3ef8a44a04cbc4d110c898a55572605b048d1a (diff)
downloadnextcloud-server-89252497c6b0537618c74bfc750931d39c0a7ff7.tar.gz
nextcloud-server-89252497c6b0537618c74bfc750931d39c0a7ff7.zip
fix wording for apps mgmt buttons
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'settings')
-rw-r--r--settings/js/apps.js2
-rw-r--r--settings/templates/apps.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js
index de35cd53672..61d817e43e4 100644
--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -271,7 +271,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
OC.Settings.Apps.hideErrorMessage(appId);
groups = groups || [];
var appItem = $('div#app-'+appId+'');
- element.val(t('settings','Please wait....'));
+ element.val(t('settings','Enabling app …'));
if(active && !groups.length) {
$.post(OC.filePath('settings','ajax','disableapp.php'),{appid:appId},function(result) {
if(!result || result.status !== 'success') {
diff --git a/settings/templates/apps.php b/settings/templates/apps.php
index a5a98ea506f..9f27b53e5e8 100644
--- a/settings/templates/apps.php
+++ b/settings/templates/apps.php
@@ -134,7 +134,7 @@ script(
<input class="enable{{#if needsDownload}} needs-download{{/if}}" type="submit" data-appid="{{id}}" data-active="false" {{#unless canInstall}}disabled="disabled"{{/unless}} value="<?php p($l->t("Enable"));?>"/>
{{/if}}
{{#if canUnInstall}}
- <input class="uninstall" type="submit" value="<?php p($l->t('Uninstall App')); ?>" data-appid="{{id}}" />
+ <input class="uninstall" type="submit" value="<?php p($l->t('Uninstall app')); ?>" data-appid="{{id}}" />
{{/if}}
<div class="warning hidden"></div>