/** Returns a consistent clipboard success message: "X copied." */
export const copied = (item: string) => `${item} copied.`;

/** Standard retry suffix for error messages */
export const TRY_AGAIN = 'Try again.';

/** Returns a consistent error message: "Couldn't verb the noun. Try again." */
export const couldnt = (verb: string, noun: string) => `Couldn't ${verb} the ${noun}. ${TRY_AGAIN}`;
