summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-02-11 12:39:16 -0800
committerThomas Müller <thomas.mueller@tmit.eu>2013-02-11 12:39:16 -0800
commit58e57151e51a02788377f761b183c15cd03b0ef0 (patch)
tree52f84055dd5beb097a9106c10661e44482cf7848
parent2cb264425427dbcce1132d8e7c88aca40a0710ef (diff)
parent45ed0c601003b1f2ebd9e5bb301080b37d43080e (diff)
downloadnextcloud-server-58e57151e51a02788377f761b183c15cd03b0ef0.tar.gz
nextcloud-server-58e57151e51a02788377f761b183c15cd03b0ef0.zip
Merge pull request #1625 from owncloud/fix_shared_string
fix bug while changing string from "Share" to "Shared"
-rw-r--r--core/js/share.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/js/share.js b/core/js/share.js
index 58cb787b6d1..6d1c3954044 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -26,7 +26,7 @@ OC.Share={
var action = $(file).find('.fileactions .action').filterAttr('data-action', 'Share');
action.find('img').attr('src', image);
action.addClass('permanent');
- action.html(action.html().replace(t('core', 'Share'), t('core', 'Shared')));
+ action.html(t('core', 'Shared'));
}
var dir = $('#dir').val();
if (dir.length > 1) {
@@ -40,7 +40,7 @@ OC.Share={
if (img.attr('src') != OC.imagePath('core', 'actions/public')) {
img.attr('src', image);
action.addClass('permanent');
- action.html(action.html().replace(t('core', 'Share'), t('core', 'Shared')));
+ action.html(t('core', 'Shared'));
}
}
last = path;
@@ -87,10 +87,10 @@ OC.Share={
action.find('img').attr('src', image);
if (shares) {
action.addClass('permanent');
- action.html(action.html().replace(t('core', 'Share'), t('core', 'Shared')));
+ action.html(t('core', 'Shared'));
} else {
action.removeClass('permanent');
- action.html(action.html().replace(t('core', 'Shared'), t('core', 'Share')));
+ action.html(t('core', 'Share'));
}
}
if (shares) {