Closed
Bug 1370567
Opened 9 years ago
Closed 9 years ago
Finalize strings in the Send Tab Push feature for v8.0
Categories
(Firefox for iOS :: General, enhancement)
Tracking
()
RESOLVED
DUPLICATE
of bug 1364423
| Tracking | Status | |
|---|---|---|
| fxios | 8.0+ | --- |
People
(Reporter: vladikoff, Unassigned)
Details
No description provided.
| Reporter | ||
Comment 1•9 years ago
|
||
These are the new strings: https://github.com/mozilla-mobile/firefox-ios/pull/2784/files#diff-ae05fc1df9849bb3fb12c77427e3d1fcR75
```
+ notificationContent.title = "Firefox Accounts"
+ notificationContent.body = "Tap to begin"
+ case 1:
+ if SystemUtils.isDeviceLocked() {
+ notificationContent.title = "Received \(sentTabs.count) tab"
+ notificationContent.body = "Tap to open"
+ } else {
+ let tab = sentTabs[0]
+ let title = tab.title ?? "a tab"
+ notificationContent.title = "Tap to open \(title)"
+ notificationContent.body = "\(tab.url)"
+ }
+ default:
+ notificationContent.title = "Received \(sentTabs.count) tabs"
+ notificationContent.body = "Tap to open"
```
| Reporter | ||
Comment 2•9 years ago
|
||
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•