update extension success messages
This commit is contained in:
@ -11,6 +11,6 @@
|
|||||||
"extensionAppUnauthorized" = "Please login to Omnivore from the app before saving your first link.";
|
"extensionAppUnauthorized" = "Please login to Omnivore from the app before saving your first link.";
|
||||||
"loginError.invalidCreds" = "The login credentials provided are invalid.";
|
"loginError.invalidCreds" = "The login credentials provided are invalid.";
|
||||||
"saveArticleSavingState" = "Saving...";
|
"saveArticleSavingState" = "Saving...";
|
||||||
"saveArticleSavedState" = "Link Saved!";
|
"saveArticleSavedState" = "Saved to Omnivore";
|
||||||
"saveArticleProcessingState" = "Link saved!";
|
"saveArticleProcessingState" = "Saved to Omnivore";
|
||||||
"dismissButton" = "Dismiss";
|
"dismissButton" = "Dismiss";
|
||||||
|
|||||||
@ -164,7 +164,7 @@ public struct ShareExtensionView: View {
|
|||||||
savedStateView
|
savedStateView
|
||||||
} else {
|
} else {
|
||||||
HStack(spacing: 4) {
|
HStack(spacing: 4) {
|
||||||
Text("Link saved and will be available in your inbox shortly.")
|
Text("Saved to Omnivore")
|
||||||
.font(.appTitleThree)
|
.font(.appTitleThree)
|
||||||
.foregroundColor(.appGrayText)
|
.foregroundColor(.appGrayText)
|
||||||
.padding(.trailing, 16)
|
.padding(.trailing, 16)
|
||||||
|
|||||||
@ -210,7 +210,7 @@ function saveArticle (tab) {
|
|||||||
browserApi.tabs.sendMessage(tab.id, {
|
browserApi.tabs.sendMessage(tab.id, {
|
||||||
action: ACTIONS.ShowMessage,
|
action: ACTIONS.ShowMessage,
|
||||||
payload: {
|
payload: {
|
||||||
text: 'Page saved!',
|
text: 'Saved to Omnivore',
|
||||||
link: link,
|
link: link,
|
||||||
linkText: 'View',
|
linkText: 'View',
|
||||||
type: 'success'
|
type: 'success'
|
||||||
@ -232,7 +232,7 @@ function saveArticle (tab) {
|
|||||||
browserApi.tabs.sendMessage(tab.id, {
|
browserApi.tabs.sendMessage(tab.id, {
|
||||||
action: ACTIONS.ShowMessage,
|
action: ACTIONS.ShowMessage,
|
||||||
payload: {
|
payload: {
|
||||||
text: 'Page saved!',
|
text: 'Saved to Omnivore',
|
||||||
link: link,
|
link: link,
|
||||||
linkText: 'View',
|
linkText: 'View',
|
||||||
type: 'success'
|
type: 'success'
|
||||||
|
|||||||
Reference in New Issue
Block a user