-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ron
30 lines (30 loc) · 1.33 KB
/
config.ron
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// The default configuration for `hbd`
ToolConfig(
format: ConfigFormat(
/// Person's birthdays name when using get with `--separator`
/// %s: The name of the person
separator_happy_birthday: Some("%s"),
/// Person's birthdays name with age when using get with `--separator`
/// %s: The name of the person
/// %d: The age of the person
separator_happy_birthday_age: Some("%s (%dy)"),
/// Person's birthdays name when using get
/// %s: The name of the person
happy_birthday: Some("\x1B[1;33mToday is the birthday of %s !!!\x1B[0m"),
/// Person's birthdays name with age when using get
/// %s: The name of the person
/// %d: The age of the person
happy_birthday_age: Some("\x1B[1;33mToday is the birthday of %s (%d years old) !!!\x1B[0m"),
/// Person's birthdays name when using list
/// %s: The name of the person
/// %d: `will_be`
birthday_of: Some("Birthday of %s !! %d"),
/// Person's birthdays age when using list
/// %d: The age of the person
will_be: Some("(Will be %d years old)"),
/// In how many days is it the persons birthday
/// %d: The number of days
/// %s: if days != 1 { "s" } else { "" }
in_x_days: Some("\x1B[1mIn %d day%s:\x1B[0m"),
)
)