Fix language code reference in package.xml documentation
authorIceQ1337 <IceQ1337@gmx.de>
Mon, 13 Mar 2023 17:47:41 +0000 (18:47 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Tue, 14 Mar 2023 10:13:39 +0000 (11:13 +0100)
Fixes #363

docs/package/package-xml.md

index c26811cb22711a2974f63329d11c8b7d49adf518..246c78b66773275c811bfe70b687cc3d347b9fd6 100644 (file)
@@ -31,19 +31,19 @@ Holds the entire meta data of the package.
 #### `<packagename>`
 
 This is the actual package name displayed to the end user, this can be anything you want, try to keep it short.
-It supports the attribute `languagecode` which allows you to provide the package name in different languages, please be aware that if it is not present, `en` (English) is assumed:
+It supports the attribute `language` which allows you to provide the package name in different languages, please be aware that if it is not present, `en` (English) is assumed:
 
 ```xml
 <packageinformation>
        <packagename>Simple Package</packagename>
-       <packagename languagecode="de">Einfaches Paket</packagename>
+       <packagename language="de">Einfaches Paket</packagename>
 </packageinformation>
 ```
 
 #### `<packagedescription>`
 
 Brief summary of the package, use it to explain what it does since the package name might not always be clear enough.
-The attribute `languagecode` is available here too, please reference to [`<packagename>`](#packageName) for details.
+The attribute `language` can also be used here, please reference to [`<packagename>`](#packageName) for details.
 
 #### `<version>`