Skip to content

Commit

Permalink
Merge pull request #33008 from waterim/feat-32282-change-copy
Browse files Browse the repository at this point in the history
Fix: change copy url => "copy"
  • Loading branch information
dangrous authored Dec 18, 2023
2 parents ae53577 + 82113f3 commit e344aa0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1897,7 +1897,7 @@ export default {
parentNavigationSummary: ({rootReportName, workspaceName}: ParentNavigationSummaryParams) => `From ${rootReportName}${workspaceName ? ` in ${workspaceName}` : ''}`,
},
qrCodes: {
copyUrlToClipboard: 'Copy URL to clipboard',
copy: 'Copy',
copied: 'Copied!',
},
moderation: {
Expand Down
2 changes: 1 addition & 1 deletion src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2383,7 +2383,7 @@ export default {
parentNavigationSummary: ({rootReportName, workspaceName}: ParentNavigationSummaryParams) => `De ${rootReportName}${workspaceName ? ` en ${workspaceName}` : ''}`,
},
qrCodes: {
copyUrlToClipboard: 'Copiar URL al portapapeles',
copy: 'Copiar',
copied: '¡Copiado!',
},
moderation: {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ShareCodePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class ShareCodePage extends React.Component {
<View style={{marginTop: 36}}>
<ContextMenuItem
isAnonymousAction
text={this.props.translate('qrCodes.copyUrlToClipboard')}
text={this.props.translate('qrCodes.copy')}
shouldShowRightIcon
icon={Expensicons.Copy}
successIcon={Expensicons.Checkmark}
Expand Down

0 comments on commit e344aa0

Please sign in to comment.