updated account info gathering

This commit is contained in:
2025-02-13 16:41:15 +03:00
parent 533fe1f84e
commit 3bcec2abff
8 changed files with 339 additions and 185 deletions

View File

View File

@@ -0,0 +1,36 @@
class AccountLanguageModels:
account_language_update_models = {
"en": {
"page": "Update Account Records",
},
"tr": {
"page": "Hesap Kayıdı Güncelle",
},
}
account_language_created_models = {
"en": {
"page": "Create Account Records",
},
"tr": {
"page": "Hesap Kayıdı Oluştur",
},
}
account_language_list_models = {
"en": {
"page": "List Account Records",
},
"tr": {
"page": "Hesap Kaytlarını Listele",
},
}
account_language_create_form_models = {
"en": {"page": "Create Account Records", "button": "Create"},
"tr": {"page": "Hesap Kayıdı Oluştur", "button": "Oluştur"},
},
account_language_update_form_models = {
"en": {"page": "Update Account Records", "button:": "Update"},
"tr": {"page": "Hesap Kayıdı Güncelle", "button:": "Güncelle"},
},