feat: add sending user requests to process (#1908)

* feat: add sending user requests to process

* fix(snjs): yarn lock

* fix(snjs): imports

* fix: specs
This commit is contained in:
Karol Sójko
2022-11-02 11:33:02 +01:00
committed by GitHub
parent f687334d7d
commit b2faa815e9
81 changed files with 766 additions and 325 deletions

View File

@@ -1,11 +0,0 @@
export const InfoStrings = {
AccountDeleted: 'Your account has been successfully deleted.',
UnsupportedBackupFileVersion:
'This backup file was created using a newer version of the application and cannot be imported here. Please update your application and try again.',
BackupFileMoreRecentThanAccount:
"This backup file was created using a newer encryption version than your account's. Please run the available encryption upgrade and try again.",
SavingWhileDocumentHidden:
'Attempting to save an item while the application is hidden. To protect data integrity, please refresh the application window and try again.',
InvalidNote:
"The note you are attempting to save can not be found or has been deleted. Changes you make will not be synced. Please copy this note's text and start a new note.",
}

View File

@@ -1,10 +1,8 @@
import { ConfirmStrings } from './Confirm'
import { InfoStrings } from './Info'
import { InputStrings } from './Input'
import { NetworkStrings } from './Network'
export const Strings = {
Info: InfoStrings,
Network: NetworkStrings,
Confirm: ConfirmStrings,
Input: InputStrings,