Merge pull request #1339 from Bilb/add-back-copy-session-id

add back Copy Session ID but show it only for user context click
pull/1343/head
Audric Ackermann 5 years ago committed by GitHub
commit d6e8247016
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1072,6 +1072,11 @@
"description": "Copy to clipboard button text",
"androidKey": "copy"
},
"copySessionID": {
"message": "Copy Session ID",
"description": "Copy to clipboard session ID",
"androidKey": "activity_conversation_menu_copy_session_id"
},
"save": {
"message": "Save",
"description": "Used as a 'commit changes' button in the Caption Editor for outgoing image attachments",

@ -212,7 +212,7 @@ export function getCopyMenuItem(
i18n: LocalizerType
): JSX.Element | null {
if (showCopyId(Boolean(isPublic), Boolean(isRss), Boolean(isGroup))) {
const copyIdLabel = i18n('editMenuCopy');
const copyIdLabel = i18n('copySessionID');
return <MenuItem onClick={action}>{copyIdLabel}</MenuItem>;
}
return null;

Loading…
Cancel
Save