## Example
+!!! info "Prior to version 5.5, there was no support for deleting language items and the `category` elements had to be placed directly as children of the `language` element, see [the migration guide to version 5.5](../../migration/wsc54/php.md#language-package-installation-plugin)."
+
{jinja{ codebox(
title="language/en.xml",
language="xml",
<?xml version="1.0" encoding="UTF-8"?>
<language xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/2019/language.xsd" languagecode="en">
- <category name="wcf.example">
- <item name="wcf.example.foo"><![CDATA[<strong>Look!</strong>]]></item>
- </category>
-</language>
\ No newline at end of file
+ <import>
+ <category name="wcf.example">
+ <item name="wcf.example.foo"><![CDATA[<strong>Look!</strong>]]></item>
+ </category>
+ </import>
+ <delete>
+ <item name="wcf.example.obsolete"/>
+ </delete>
+</language>