mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
update extension success messages
This commit is contained in:
parent
eb70a98ad2
commit
dab57ab840
3 changed files with 5 additions and 5 deletions
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in a new issue