Rename Flipper trace to Flipper export.

Summary: Rename visual references from Flipper trace to Flipper export.

Reviewed By: passy

Differential Revision: D21408566

fbshipit-source-id: 1021fec095f2f2f3e5394e7ea2f7d49fee186050
This commit is contained in:
João Vieira
2020-05-07 04:02:41 -07:00
committed by Facebook GitHub Bot
parent 77ca337011
commit a2d7297bbb
5 changed files with 13 additions and 13 deletions

View File

@@ -127,8 +127,8 @@ export default class ShareSheetExportFile extends Component<Props, State> {
);
this.store.dispatch(unsetShare());
if (this.state.runInBackground) {
new Notification('Sharable Flipper trace created', {
body: `Flipper trace exported to the ${this.props.file}`,
new Notification('Shareable Flipper Export created', {
body: `Saved to ${this.props.file}`,
requireInteraction: true,
});
return;
@@ -215,7 +215,7 @@ export default class ShareSheetExportFile extends Component<Props, State> {
<ShareSheetPendingDialog
width={500}
statusUpdate={statusUpdate}
statusMessage="Exporting Flipper trace..."
statusMessage="Creating Flipper Export..."
onCancel={() => this.cancelAndHide(store)}
onRunInBackground={() => {
this.setState({runInBackground: true});