added new icon
put notifications in strings files
started IAPManager
populate data goes to 1000 entires
take out fixweeday button
This commit is contained in:
Trey t
2022-07-07 18:13:36 -05:00
parent d116d082eb
commit 6c239c5e26
616 changed files with 4073 additions and 24 deletions

View File

@@ -53,27 +53,27 @@ final class DefaultTitles: PersonalityPackable {
static var notificationTitles: [String] {
[
"Hi 👋",
"If you have a minute",
"It's that time agian 😃"
String(localized: "default_notif_title_one"),
String(localized: "default_notif_title_two"),
String(localized: "default_notif_title_three")
]
}
static var notificationBodyToday: [String] {
[
"How was your day",
"Don't forget to rate your day",
"Please rate your day",
"Please tell me how your day was"
String(localized: "default_notif_body_today_one"),
String(localized: "default_notif_body_today_two"),
String(localized: "default_notif_body_today_three"),
String(localized: "default_notif_body_today_four")
]
}
static var notificationBodyYesterday: [String] {
[
"How was yesterday",
"Don't forget to rate yesterday",
"Please rate yesterday",
"Please tell me how yesterday was"
String(localized: "default_notif_body_yesterday_one"),
String(localized: "default_notif_body_yesterday_two"),
String(localized: "default_notif_body_yesterday_three"),
String(localized: "default_notif_body_yesterday_four")
]
}
}
@@ -83,26 +83,26 @@ final class RudeTitles: PersonalityPackable {
static var notificationTitles: [String] {
[
"Hey asshat",
"Hey lazy dickbag",
"Damn you 😡",
"Uggghhhhhhh, I gotta deal you with again 😒"
String(localized: "rude_notif_title_one"),
String(localized: "rude_notif_title_two"),
String(localized: "rude_notif_title_three"),
String(localized: "rude_notif_title_four")
]
}
static var notificationBodyToday: [String] {
[
"How the hell was your day",
"Don't be an ass, rate your day",
"Rate your damn day .... or else ☠️"
String(localized: "rude_notif_body_today_one"),
String(localized: "rude_notif_body_today_two"),
String(localized: "rude_notif_body_today_three")
]
}
static var notificationBodyYesterday: [String] {
[
"How the hell was yesterday",
"Don't be an ass, rate yesterday",
"Rate yesterday ... or else ☠️"
String(localized: "rude_notif_body_yesterday_one"),
String(localized: "rude_notif_body_yesterday_two"),
String(localized: "rude_notif_body_yesterday_three")
]
}
}