From 9235cb8350e3df33a284d4f5153096ed7e99df4a Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Tue, 15 Apr 2025 06:20:13 +0200 Subject: [PATCH] Doc: Update --- developing.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/developing.md b/developing.md index 16684c7c..a5516f55 100644 --- a/developing.md +++ b/developing.md @@ -252,7 +252,8 @@ This extracts them for translation and applies translations if available. Translations are updated via [lang.php](/lang.php), which also checks for style consistency, such as matching punctuation. Plurals are stored as arrays, with selection logic handled in [lang.inc.php](/adminer/include/lang.inc.php). -Plugins extending [`Adminer\Plugin`](/adminer/include/plugin.inc.php) can use `$this->lang()` and store translations in `static $translations = array('en' => array('' => 'Plugin description'))`. +Plugins extending [`Adminer\Plugin`](/adminer/include/plugin.inc.php) can use `$this->lang()` and store translations in `$translations = array('en' => array('' => 'Plugin description'))`. + The website translations are managed at https://www.adminer.org/en/translations/. ## Compilation