Config file

--[[ 
    - this script needs tgiann-core script to work, you can download the script from your keymaster account
      Start tgiann-core script after es_extented/qb-core script and before tgiann-* scripts
      Adjust the tgiann-core config file according to the framework you are using
]]

tgiCoreExports = exports["tgiann-core"]
config = tgiCoreExports:getConfig()

config.items = {
    documentempty = "documentempty",
    document = "document"
}

config.lang = "en"
config.langs = {
    tr = {
        docUpdated = "Dökuman Güncellendi",
        docCreated = "Yeni Dökuman Oluşturuldu",
        docDeleted = "Dökuman Silindi",
        docDeletError = "Bir Hata Oluştu",
        docCreatedEmpty = "Boş Dökuman Oluşturuldu",
        docSaved = "Dökuman Kaydedildi",
        docCopied = "Dökuman Kopyalandı",
        html = {
            createElement = "Öğe Oluştur",
            myDocs = "Dökümanlarım",
            loadDocs = "ID İle Döküman Yükle",
            docID = "Düküman ID",
            docLoad = "Yükle",
            save = "Kaydet",
            copy = "Kopyala",
            delete = "Sil",
            headerSettings = "Başlık Ayarları",
            headerText = "Başlık",
            fontSize = "Yazı Boyutu",
            remove = "Kaldır",
            up = "Yukarı",
            down = "Aşağı",
            inputLabel = "Input Açıklaması",
            inputSettings = "Input Ayarları",
            descSettings = "Description Ayarları",
            lineSettings = "Çizgi Ayarları",
            lineText = "Çizgi Yazısı",
            inputPlaceholder = "Input Placeholder",
            inputType = "Input Tip",
            textareaSettings = "Textarea Ayarları",
            textareaLabel = "Textarea Açıklaması",
            textareaPlaceholder = "Textarea Placeholder",
            selectSettings = "Select Ayarları",
            selectLabel = "Select Açıklaması",
            selectable = "Seçilebilir Değerler",
            generalSettings = "Genel Ayarlar",
            docsName = "Döküman İsmi",
            reset = "Sıfırla",
            create = "Oluştur",
        },
        js = {
            selected = "Seçili",
            default = "Varsayılan Yazı...",
            header = "Başlık",
            desc = "Açıklama",
            line = "Çizgi",
            input = "Input Kutusu",
            textarea = "Textare Kutusu",
            select = "Select Kutusu",
        }
    },
    en = {
        docUpdated = "Document Updated",
        docCreated = "New Document Created",
        docDeleted = "Document Deleted",
        docDeletError = "An Error Occurred",
        docCreatedEmpty = "Empty Document Created",
        docSaved = "Document Saved",
        docCopied = "Document Copied",
        html = {
            createElement = "Create Element",
            myDocs = "My Documents",
            loadDocs = "Load Document by ID",
            docID = "Document ID",
            docLoad = "Load",
            save = "Save",
            copy = "Copy",
            delete = "Delete",
            headerSettings = "Header Settings",
            headerText = "Header",
            fontSize = "Font Size",
            remove = "Remove",
            up = "Up",
            down = "Down",
            inputLabel = "Input Description",
            inputSettings = "Input Settings",
            descSettings = "Description Settings",
            lineSettings = "Line Settings",
            lineText = "Line Text",
            inputPlaceholder = "Input Placeholder",
            inputType = "Input Type",
            textareaSettings = "Textarea Settings",
            textareaLabel = "Textarea Description",
            textareaPlaceholder = "Textarea Placeholder",
            selectSettings = "Select Settings",
            selectLabel = "Select Description",
            selectable = "Selectable Values",
            generalSettings = "General Settings",
            docsName = "Document Name",
            reset = "Reset",
            create = "Create",
        },
        js = {
            selected = "Selected",
            default = "Default Text...",
            header = "Header",
            desc = "Description",
            line = "Line",
            input = "Input Box",
            textarea = "Textarea Box",
            select = "Select Box",
        }
    },
    gr = { -- Transleted by chatgpt
        docUpdated = "Dokument aktualisiert",
        docCreated = "Neues Dokument erstellt",
        docDeleted = "Dokument gelöscht",
        docDeletError = "Ein Fehler ist aufgetreten",
        docCreatedEmpty = "Leeres Dokument erstellt",
        docSaved = "Dokument gespeichert",
        docCopied = "Dokument kopiert",
        html = {
            createElement = "Element erstellen",
            myDocs = "Meine Dokumente",
            loadDocs = "Dokument per ID laden",
            docID = "Dokument-ID",
            docLoad = "Laden",
            save = "Speichern",
            copy = "Kopieren",
            delete = "Löschen",
            headerSettings = "Kopfzeileneinstellungen",
            headerText = "Kopfzeile",
            fontSize = "Schriftgröße",
            remove = "Entfernen",
            up = "Nach oben",
            down = "Nach unten",
            inputLabel = "Input-Beschreibung",
            inputSettings = "Input-Einstellungen",
            descSettings = "Beschreibungseinstellungen",
            lineSettings = "Linien-Einstellungen",
            lineText = "Linien-Text",
            inputPlaceholder = "Input-Platzhalter",
            inputType = "Input-Typ",
            textareaSettings = "Textarea-Einstellungen",
            textareaLabel = "Textarea-Beschreibung",
            textareaPlaceholder = "Textarea-Platzhalter",
            selectSettings = "Auswahleinstellungen",
            selectLabel = "Auswahlbeschreibung",
            selectable = "Auswählbare Werte",
            generalSettings = "Allgemeine Einstellungen",
            docsName = "Dokumentname",
            reset = "Zurücksetzen",
            create = "Erstellen",
        },
        js = {
            selected = "Ausgewählt",
            default = "Standardtext...",
            header = "Kopfzeile",
            desc = "Beschreibung",
            line = "Linie",
            input = "Eingabefeld",
            textarea = "Textbereich",
            select = "Auswahl",
        }
    }
}

Last updated