diff options
author | Ashm Walia <ashmwalia@outlook.com> | 2021-01-27 08:29:56 -0800 |
---|---|---|
committer | Ashm Walia <ashmwalia@outlook.com> | 2021-01-27 08:29:56 -0800 |
commit | 2f5f9df6dec1e905f3abf37d124ecd92d0e3a3d9 (patch) | |
tree | 0b34914b1af54c66031808c52da65395b7905fff /src/constants/strings.ts | |
parent | 85c0f668665696ba8127ee1ea436d10ec0af955f (diff) |
Pre-final
Diffstat (limited to 'src/constants/strings.ts')
-rw-r--r-- | src/constants/strings.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/constants/strings.ts b/src/constants/strings.ts index a1793658..77ded7be 100644 --- a/src/constants/strings.ts +++ b/src/constants/strings.ts @@ -1,7 +1,9 @@ + /* eslint-disable */ // Below is the regex to convert this into a csv for the Google Sheet // export const (.*) = .*?(['|"|`])(.*)\2; // replace with: $1\t$3 +export const ADD_COMMENT_TEXT = (username?: string) => username ? `Reply to ${username}` : 'Add a comment...' export const COMING_SOON_MSG = 'Creating more fun things for you, surprises coming soon 😉'; export const ERROR_AUTHENTICATION = 'An error occurred during authentication. Please login again!'; export const ERROR_CATEGORY_CREATION = 'There was a problem creating your categories. Please refresh and try again.'; |