-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
import type { Temporal } from "temporal-polyfill"; | ||
|
||
export const AGE = "Age"; | ||
export const SOURCE_CODE = "source code"; | ||
export const COPY_LABEL = "Click to copy age to clipboard"; | ||
export const BIRTH_DAY_FORMAT = (birthDay: Temporal.PlainDate) => | ||
`Birthday: ${birthDay.toLocaleString()}`; | ||
export const AGE_COPIED = "Age copied to clipboard!"; | ||
export const AGE_COPY_FAILED = "Failed to copy age to clipboard!"; | ||
export const ENTER_BIRTHDAY = "Enter your Birthday"; | ||
export const MOTIVATE = "Motivate"; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
import type { Temporal } from "temporal-polyfill"; | ||
|
||
export const AGE = "Возраст"; | ||
export const SOURCE_CODE = "исходный код"; | ||
export const COPY_LABEL = "Нажмите, чтобы скопировать возраст в буфер обмена"; | ||
export const BIRTH_DAY_FORMAT = (birthDay: Temporal.PlainDate) => | ||
`День рождения: ${birthDay.toLocaleString()}`; | ||
export const AGE_COPIED = "Возраст скопирован в буфер обмена!"; | ||
export const AGE_COPY_FAILED = "Не удалось скопировать возраст в буфер обмена!"; | ||
export const ENTER_BIRTHDAY = "Введите свой день рождения"; | ||
export const MOTIVATE = "Мотивировать"; |