Check for existing bookmarks

This commit is contained in:
eikek
2022-01-08 22:42:30 +01:00
parent a50a0a9a1a
commit 04b258689f
4 changed files with 103 additions and 8 deletions

View File

@ -21,6 +21,7 @@ type alias Texts =
, userLocationText : String
, collectiveLocation : String
, collectiveLocationText : String
, nameExistsWarning : String
}
@ -32,6 +33,7 @@ gb =
, userLocationText = "The bookmarked query is just for you"
, collectiveLocation = "Collective scope"
, collectiveLocationText = "The bookmarked query can be used and edited by all users"
, nameExistsWarning = "A bookmark with this name exists, it is overwritten on save!"
}
@ -43,4 +45,5 @@ de =
, userLocationText = "Der Bookmark ist nur für dich"
, collectiveLocation = "Kollektiv-Bookmark"
, collectiveLocationText = "Der Bookmark kann von allen Benutzer verwendet werden"
, nameExistsWarning = "Der Bookmark existiert bereits. Er wird beim Speichern überschrieben."
}