46 lines
800 B
Python
46 lines
800 B
Python
from databases.sql_models.account.account import AccountBooks
|
|
from databases.sql_models.core_mixin import CrudCollection
|
|
|
|
|
|
|
|
AccountBooksLanguageModel = dict(
|
|
tr={
|
|
str(AccountBooks.created_at.key): "Oluşturulma Tarihi",
|
|
str(AccountBooks.updated_at.key): "Güncellenme Tarihi",
|
|
},
|
|
en={
|
|
str(AccountBooks.created_at.key): "Created At",
|
|
str(AccountBooks.updated_at.key): "Updated At",
|
|
}
|
|
)
|
|
|
|
AccountCodesLanguageModel = dict(
|
|
tr={},
|
|
en={}
|
|
)
|
|
|
|
AccountCodeParserLanguageModel = dict(
|
|
tr={},
|
|
en={}
|
|
)
|
|
|
|
AccountMasterLanguageModel = dict(
|
|
tr={},
|
|
en={}
|
|
)
|
|
|
|
AccountDetailLanguageModel = dict(
|
|
tr={},
|
|
en={}
|
|
)
|
|
|
|
AccountRecordsLanguageModel = dict(
|
|
tr={},
|
|
en={}
|
|
)
|
|
|
|
AccountRecordExchangesLanguageModel = dict(
|
|
tr={},
|
|
en={}
|
|
)
|