Change wording of 'Copy URL' to more understandable 'Copy link'

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2018-10-01 11:02:12 +02:00
parent e4f3098492
commit 9b8e884b19
No known key found for this signature in database
GPG Key ID: CBD846FC845CBE17
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");
}
/**