Merge pull request #11498 from nextcloud/copy-link-wording

Change wording of 'Copy URL' to more understandable 'Copy link'
This commit is contained in:
Morris Jobke 2018-10-01 14:25:02 +02:00 committed by GitHub
commit 66970f4c17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View file

@ -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,

View file

@ -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");
}
/**