summaryrefslogtreecommitdiffstats
path: root/settings/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2017-03-29 01:41:53 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2017-04-25 00:22:57 +0200
commita04413fd754ea4e56679f900bc67d3ff6428cd63 (patch)
treeb15ce313690fa0da9048961ab8b6eba1618306ce /settings/js
parenta392532e28bb50a724e7ea76daad4472307406b2 (diff)
downloadnextcloud-server-a04413fd754ea4e56679f900bc67d3ff6428cd63.tar.gz
nextcloud-server-a04413fd754ea4e56679f900bc67d3ff6428cd63.zip
rename Uninstall to Remove
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'settings/js')
-rw-r--r--settings/js/apps.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js
index 06ec001b672..83a8e893042 100644
--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -448,11 +448,11 @@ OC.Settings.Apps = OC.Settings.Apps || {
}
OC.Settings.Apps.hideErrorMessage(appId);
- element.val(t('settings','Uninstalling …'));
+ element.val(t('settings','Removing …'));
$.post(OC.filePath('settings','ajax','uninstallapp.php'),{appid:appId},function(result) {
if(!result || result.status !== 'success') {
- OC.Settings.Apps.showErrorMessage(appId, t('settings','Error while uninstalling app'));
- element.val(t('settings','Uninstall'));
+ OC.Settings.Apps.showErrorMessage(appId, t('settings','Error while removing app'));
+ element.val(t('settings','Remove'));
} else {
OC.Settings.Apps.rebuildNavigation();
element.parents('#apps-list > .section').fadeOut(function() {