Copy updates from Darrin
This commit is contained in:
committed by
Samuel Newman
parent
290ac55d8e
commit
010ede1de7
@@ -1050,18 +1050,22 @@ export const ComposePost = ({
|
||||
<Prompt.Outer
|
||||
control={discardPromptControl}
|
||||
webOptions={{vertical: true}}>
|
||||
<Prompt.TitleText>
|
||||
{composerState.draftId ? (
|
||||
<Trans>Save changes?</Trans>
|
||||
) : (
|
||||
<Trans>Save draft?</Trans>
|
||||
)}
|
||||
</Prompt.TitleText>
|
||||
<Prompt.DescriptionText>
|
||||
{composerState.draftId
|
||||
? _(msg`You have unsaved changes to this draft.`)
|
||||
: _(msg`You can save this draft to continue later.`)}
|
||||
</Prompt.DescriptionText>
|
||||
<Prompt.Content>
|
||||
<Prompt.TitleText>
|
||||
{composerState.draftId ? (
|
||||
<Trans>Save changes?</Trans>
|
||||
) : (
|
||||
<Trans>Save draft?</Trans>
|
||||
)}
|
||||
</Prompt.TitleText>
|
||||
<Prompt.DescriptionText>
|
||||
{composerState.draftId
|
||||
? _(
|
||||
msg`You have unsaved changes to this draft, would you like to save them?`,
|
||||
)
|
||||
: _(msg`Would you like to save this as a draft to edit later?`)}
|
||||
</Prompt.DescriptionText>
|
||||
</Prompt.Content>
|
||||
<Prompt.Actions>
|
||||
<Prompt.Action
|
||||
cta={
|
||||
|
||||
@@ -71,13 +71,15 @@ export function DraftsButton({
|
||||
/>
|
||||
|
||||
<Prompt.Outer control={savePromptControl} webOptions={{vertical: true}}>
|
||||
<Prompt.TitleText>
|
||||
{isEditingDraft ? (
|
||||
<Trans>Save changes?</Trans>
|
||||
) : (
|
||||
<Trans>Save draft?</Trans>
|
||||
)}
|
||||
</Prompt.TitleText>
|
||||
<Prompt.Content>
|
||||
<Prompt.TitleText>
|
||||
{isEditingDraft ? (
|
||||
<Trans>Save changes?</Trans>
|
||||
) : (
|
||||
<Trans>Save draft?</Trans>
|
||||
)}
|
||||
</Prompt.TitleText>
|
||||
</Prompt.Content>
|
||||
<Prompt.DescriptionText>
|
||||
{isEditingDraft ? (
|
||||
<Trans>
|
||||
|
||||
Reference in New Issue
Block a user