Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ivoronin committed Sep 16, 2023
2 parents 1f59a20 + e0b060c commit ed06d4d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions TomatoBar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@
INFOPLIST_FILE = TomatoBar/Info.plist;
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
INFOPLIST_KEY_LSUIElement = YES;
INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2022 Ilya Voronin. All rights reserved. https://github.com/ivoronin/TomatoBar";
INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2023 Ilya Voronin. All rights reserved. https://github.com/ivoronin/TomatoBar";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
Expand Down Expand Up @@ -389,7 +389,7 @@
INFOPLIST_FILE = TomatoBar/Info.plist;
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
INFOPLIST_KEY_LSUIElement = YES;
INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2022 Ilya Voronin. All rights reserved. https://github.com/ivoronin/TomatoBar";
INFOPLIST_KEY_NSHumanReadableCopyright = "Copyright © 2023 Ilya Voronin. All rights reserved. https://github.com/ivoronin/TomatoBar";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
Expand Down
2 changes: 1 addition & 1 deletion TomatoBar/Notifications.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class TBNotificationCenter: NSObject, UNUserNotificationCenterDelegate {

let actionSkipRest = UNNotificationAction(
identifier: TBNotification.Action.skipRest.rawValue,
title: "Skip",
title: NSLocalizedString("TBTimer.onRestStart.skip.title", comment: "Skip"),
options: []
)
let restStartedCategory = UNNotificationCategory(
Expand Down
1 change: 1 addition & 0 deletions TomatoBar/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
"TBTimer.onRestStart.title" = "Time's up";
"TBTimer.onRestStart.short.body" = "It's time for a short break!";
"TBTimer.onRestStart.long.body" = "It's time for a long break!";
"TBTimer.onRestStart.skip.title" = "Skip";
"TBTimer.onRestFinish.title" = "Break is over";
"TBTimer.onRestFinish.body" = "Keep up the good work!";
1 change: 1 addition & 0 deletions TomatoBar/zh-Hans.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
"TBTimer.onRestStart.title" = "时间到";
"TBTimer.onRestStart.short.body" = "小憩时间到!";
"TBTimer.onRestStart.long.body" = "长休息时间到!";
"TBTimer.onRestStart.skip.title" = "跳过";
"TBTimer.onRestFinish.title" = "休息结束";
"TBTimer.onRestFinish.body" = "继续努力!";

0 comments on commit ed06d4d

Please sign in to comment.