' CamBam VBScript
    ' static TextTranslationItem SetCacheItem(LanguageCode lang, string key, string english, string translation);

    Sub main()

        Dim LgCode As LanguageCode

        'read the langage code used in the current config
        LgCode = CamBamConfig.Defaults.Language

        ' create an entry with the KEY: MyPlugin_ALR_EXIST, the English text: already exist
        ' and let the translated entry empty in this case

        CamBam.Util.TextTranslation.SetCacheItem(LgCode, "MyPlugin_ALR_EXIST", "already exist", "")

    End Sub