update extension success messages

This commit is contained in:
Satindar Dhillon 2022-02-24 11:53:20 -08:00
parent eb70a98ad2
commit dab57ab840
3 changed files with 5 additions and 5 deletions

View file

@ -11,6 +11,6 @@
"extensionAppUnauthorized" = "Please login to Omnivore from the app before saving your first link.";
"loginError.invalidCreds" = "The login credentials provided are invalid.";
"saveArticleSavingState" = "Saving...";
"saveArticleSavedState" = "Link Saved!";
"saveArticleProcessingState" = "Link saved!";
"saveArticleSavedState" = "Saved to Omnivore";
"saveArticleProcessingState" = "Saved to Omnivore";
"dismissButton" = "Dismiss";

View file

@ -164,7 +164,7 @@ public struct ShareExtensionView: View {
savedStateView
} else {
HStack(spacing: 4) {
Text("Link saved and will be available in your inbox shortly.")
Text("Saved to Omnivore")
.font(.appTitleThree)
.foregroundColor(.appGrayText)
.padding(.trailing, 16)

View file

@ -210,7 +210,7 @@ function saveArticle (tab) {
browserApi.tabs.sendMessage(tab.id, {
action: ACTIONS.ShowMessage,
payload: {
text: 'Page saved!',
text: 'Saved to Omnivore',
link: link,
linkText: 'View',
type: 'success'
@ -232,7 +232,7 @@ function saveArticle (tab) {
browserApi.tabs.sendMessage(tab.id, {
action: ACTIONS.ShowMessage,
payload: {
text: 'Page saved!',
text: 'Saved to Omnivore',
link: link,
linkText: 'View',
type: 'success'