---
title: "Deprecation: #73482 - $LANG->csConvObj and $LANG->parserFactory"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-73482"
source: "Changelog/8.0/Deprecation-73482-LANG-csConvObjAndLANG-parserFactory.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Deprecation: #73482 - $LANG->csConvObj and $LANG->parserFactory

See [forge#73482](https://forge.typo3.org/issues/73482)

## Description

The properties of LanguageService (also known as `$GLOBALS[LANG]`) csConvObj and parserFactory
have been marked as deprecated. Since these three PHP classes are not dependent on each other, they
can be decoupled. The getter method `getParserFactory()` has thus been marked as deprecated as well.

## Impact

These properties will be removed in TYPO3 v9. Calling `LanguageService->getParserFactory()` will trigger a
deprecation log entry.

## Affected Installations

Installations with custom extension accessing the LanguageService properties and method above.

## Migration

Instantiate CharsetConverter (csConvObj) and LocalizationFactory (parserFactory) via `GeneralUtility::makeInstance`
directly if needed, as they are Singleton objects and then fetched from the General Utility Object container
functionalities.
