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
|
<Prompt.Outer
|
||||||
control={discardPromptControl}
|
control={discardPromptControl}
|
||||||
webOptions={{vertical: true}}>
|
webOptions={{vertical: true}}>
|
||||||
<Prompt.TitleText>
|
<Prompt.Content>
|
||||||
{composerState.draftId ? (
|
<Prompt.TitleText>
|
||||||
<Trans>Save changes?</Trans>
|
{composerState.draftId ? (
|
||||||
) : (
|
<Trans>Save changes?</Trans>
|
||||||
<Trans>Save draft?</Trans>
|
) : (
|
||||||
)}
|
<Trans>Save draft?</Trans>
|
||||||
</Prompt.TitleText>
|
)}
|
||||||
<Prompt.DescriptionText>
|
</Prompt.TitleText>
|
||||||
{composerState.draftId
|
<Prompt.DescriptionText>
|
||||||
? _(msg`You have unsaved changes to this draft.`)
|
{composerState.draftId
|
||||||
: _(msg`You can save this draft to continue later.`)}
|
? _(
|
||||||
</Prompt.DescriptionText>
|
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.Actions>
|
||||||
<Prompt.Action
|
<Prompt.Action
|
||||||
cta={
|
cta={
|
||||||
|
|||||||
@@ -71,13 +71,15 @@ export function DraftsButton({
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<Prompt.Outer control={savePromptControl} webOptions={{vertical: true}}>
|
<Prompt.Outer control={savePromptControl} webOptions={{vertical: true}}>
|
||||||
<Prompt.TitleText>
|
<Prompt.Content>
|
||||||
{isEditingDraft ? (
|
<Prompt.TitleText>
|
||||||
<Trans>Save changes?</Trans>
|
{isEditingDraft ? (
|
||||||
) : (
|
<Trans>Save changes?</Trans>
|
||||||
<Trans>Save draft?</Trans>
|
) : (
|
||||||
)}
|
<Trans>Save draft?</Trans>
|
||||||
</Prompt.TitleText>
|
)}
|
||||||
|
</Prompt.TitleText>
|
||||||
|
</Prompt.Content>
|
||||||
<Prompt.DescriptionText>
|
<Prompt.DescriptionText>
|
||||||
{isEditingDraft ? (
|
{isEditingDraft ? (
|
||||||
<Trans>
|
<Trans>
|
||||||
|
|||||||
Reference in New Issue
Block a user