Browse Source
Change wording of 'Copy URL' to more understandable 'Copy link'
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
pull/11498/head
Jan-Christoph Borchardt
8 years ago
No known key found for this signature in database
GPG Key ID: CBD846FC845CBE17
2 changed files with
7 additions and
7 deletions
-
core/js/sharedialoglinkshareview.js
-
tests/acceptance/features/bootstrap/FilesAppContext.php
|
|
|
@ -406,7 +406,7 @@ |
|
|
|
permissions: permissions |
|
|
|
}); |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
showNoteForm: function(event) { |
|
|
|
event.preventDefault(); |
|
|
|
event.stopPropagation(); |
|
|
|
@ -431,9 +431,9 @@ |
|
|
|
var shareId = $li.data('share-id'); |
|
|
|
var $menu = $element.closest('li'); |
|
|
|
var $form = $menu.next('li.share-note-form'); |
|
|
|
|
|
|
|
|
|
|
|
$form.find('.share-note').val(''); |
|
|
|
|
|
|
|
|
|
|
|
$form.addClass('hidden'); |
|
|
|
$menu.find('.share-note-delete').hide(); |
|
|
|
|
|
|
|
@ -600,7 +600,7 @@ |
|
|
|
|
|
|
|
var popover = this.popoverMenuTemplate({ |
|
|
|
cid: this.model.get('linkShare').id, |
|
|
|
copyLabel: t('core', 'Copy URL'), |
|
|
|
copyLabel: t('core', 'Copy link'), |
|
|
|
social: social, |
|
|
|
|
|
|
|
shareLinkURL: this.model.get('linkShare').link, |
|
|
|
@ -745,7 +745,7 @@ |
|
|
|
var datePicker = $(expirationDatePicker); |
|
|
|
var state = $element.prop('checked'); |
|
|
|
datePicker.toggleClass('hidden', !state); |
|
|
|
|
|
|
|
|
|
|
|
if (!state) { |
|
|
|
// disabled, let's hide the input and
|
|
|
|
// set the expireDate to nothing
|
|
|
|
|
|
|
|
@ -227,9 +227,9 @@ class FilesAppContext implements Context, ActorAwareInterface { |
|
|
|
* @return Locator |
|
|
|
*/ |
|
|
|
public static function copyUrlMenuItem() { |
|
|
|
return Locator::forThe()->xpath("//a[normalize-space() = 'Copy URL']")-> |
|
|
|
return Locator::forThe()->xpath("//a[normalize-space() = 'Copy link']")-> |
|
|
|
descendantOf(self::shareLinkMenu())-> |
|
|
|
describedAs("Copy URL menu item in the share link menu in the details view in Files app"); |
|
|
|
describedAs("Copy link menu item in the share link menu in the details view in Files app"); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
|