' CamBam VBScript

    Sub main()

        Dim txt As TextTranslationItem

        txt = TextTranslation.GetCacheItem(CamBamConfig.Defaults.Language, "AND_RELATED_MOPS")

        App.Log(txt.English)        'the English text
        App.Log(txt.Translation)    'the translated text
        App.Log(txt.Key)            'the key

    End Sub