CRUD working

This commit is contained in:
Odweta
2026-03-22 20:05:31 +01:00
parent 0219155f8e
commit a95d899ac5
11 changed files with 462 additions and 11 deletions
+14 -1
View File
@@ -1,10 +1,23 @@
class Strings {
static const String appName = "Nový Hláškovník";
static const String apiKey = "2ogD5kc4sw3JVZoouQSV0w3LGRjSj5IjVFnAnk7IRCIK0ktONCeoOYinbNLSIHuU";
static const String list = "Seznam";
static const String add = "Přidat";
static const String flashcards = "Flashkarty";
static const String leaderboard = "Žebříčky";
static const String settings = "Nastavení";
static const String createQuote = "Přidat hlášku";
static const String updateQuote = "Upravit hlášku";
static const String deleteQuote = "Smazat hlášku";
static const String update = "Upravit";
static const String cancel = "Zrušit";
static const String delete = "Smazat";
static const String save = "Uložit";
static const String quote = "Hláška";
static const String author = "Autor";
static const String noUndo = "Tuto akci nelze odčinit.";
}