23 lines
679 B
Python
23 lines
679 B
Python
from ApiLayers.LanguageModels.Database.Mixins.crud_mixin import (
|
||
CrudCollectionLanguageModel,
|
||
)
|
||
|
||
EndpointRestrictionLanguageModel = dict(
|
||
tr={
|
||
**CrudCollectionLanguageModel["tr"],
|
||
"endpoint_function": "API Fonksiyonu",
|
||
"endpoint_name": "API Adı",
|
||
"endpoint_method": "API Metodu",
|
||
"endpoint_desc": "API Açıklaması",
|
||
"endpoint_code": "API Kodu",
|
||
},
|
||
en={
|
||
**CrudCollectionLanguageModel["en"],
|
||
"endpoint_function": "API Function",
|
||
"endpoint_name": "API Name",
|
||
"endpoint_method": "API Method",
|
||
"endpoint_desc": "API Description",
|
||
"endpoint_code": "API Code",
|
||
},
|
||
)
|