Radicle site - translating wordpress using koodimonni files

in my composer i need these translations

"koodimonni-plugin-language/akismet-es_cl": "*",
        "koodimonni-plugin-language/classic-editor-es_cl": "*",
        "koodimonni-plugin-language/classic-widgets-es_cl": "*",
        "koodimonni-plugin-language/woocommerce-es_cl": "*",
        "koodimonni-plugin-language/wordpress-importer-es_cl": "*",

but im not completely sure where they need to be to work.

in their example they show some “dropin-paths” to “htdocs/wp-content/languages” but my guess is the routes must be something like this…

        "dropin-paths": {
            "public/content/languages/": ["vendor:koodimonni-language"],
            "public/content/languages/plugins/": ["vendor:koodimonni-plugin-language"],
            "public/content/languages/themes/": ["vendor:koodimonni-theme-language"]
        }

my problem is the folder languages is not being populated with the files… what am i doing wrong? (assuming those are the right paths)

Are you using koodimonni/composer-dropin-installer? What’s your full composer.json look like?

Ref Install&Update wordpress languages with composer
Ref https://wp-languages.github.io/

sorry about the delay, this is my composer.json file

{
    "name": "roots/bedrock",
    "type": "project",
    "license": "MIT",
    "description": "WordPress boilerplate with Composer, easier configuration, and an improved folder structure",
    "homepage": "https://roots.io/bedrock/",
    "authors": [
        {
            "name": "Scott Walkinshaw",
            "email": "scott.walkinshaw@gmail.com",
            "homepage": "https://github.com/swalkinshaw"
        },
        {
            "name": "Ben Word",
            "email": "ben@benword.com",
            "homepage": "https://github.com/retlehs"
        }
    ],
    "keywords": [
        "bedrock",
        "composer",
        "roots",
        "wordpress",
        "wp",
        "wp-config"
    ],
    "support": {
        "issues": "https://github.com/roots/bedrock/issues",
        "forum": "https://discourse.roots.io/category/bedrock"
    },
    "repositories": [
        {
            "type": "composer",
            "url": "https://wpackagist.org",
            "only": [
                "wpackagist-plugin/*",
                "wpackagist-theme/*"
            ]
        },
        {
            "type": "composer",
            "url": "https://wp-languages.github.io",
            "only": [
                "koodimonni-language/*",
                "koodimonni-plugin-language/*",
                "koodimonni-theme-language/*"
            ]
        }
    ],
    "autoload": {
        "psr-4": {
            "App\\": "app/",
            "Database\\Factories\\": "database/factories/",
            "Database\\Seeders\\": "database/seeders/"
        },
        "files": [
            "app/helpers.php"
        ]
    },
    "require": {
        "php": ">=8.2",
        "blade-ui-kit/blade-heroicons": "^2.2",
        "blade-ui-kit/blade-icons": "^1.5",
        "composer/installers": "^2.2",
        "generoi/sage-woocommerce": "^1.1",
        "guzzlehttp/guzzle": "^7.5",
        "johnbillion/extended-cpts": "^5.0",
        "log1x/acorn-disable-media-pages": "^1.0",
        "masterminds/html5": "^2.8",
        "oscarotero/env": "^2.1",
        "roots/acorn": "^4.0",
        "roots/acorn-prettify": "^1.0",
        "roots/bedrock-autoloader": "^1.0",
        "roots/bedrock-disallow-indexing": "^2.0",
        "roots/wordpress": "6.5.3",
        "roots/wp-config": "1.0.0",
        "roots/wp-password-bcrypt": "1.1.0",
        "roots/wp-stage-switcher": "^2.2",
        "vlucas/phpdotenv": "^5.5",
        "wpackagist-plugin/safe-svg": "^2.1",
        "wpackagist-plugin/woocommerce": "^8.9",
        "koodimonni-plugin-language/akismet-es_cl": "*",
        "koodimonni-plugin-language/classic-editor-es_cl": "*",
        "koodimonni-plugin-language/classic-widgets-es_cl": "*",
        "koodimonni-plugin-language/woocommerce-es_cl": "*",
        "koodimonni-plugin-language/wordpress-importer-es_cl": "*",
        "koodimonni/composer-dropin-installer": ">=0.2.3"
    },
    "require-dev": {
        "johnbillion/query-monitor": "^3.12",
        "laravel/pint": "^1.4",
        "pestphp/pest": "^2.0",
        "phpcompatibility/php-compatibility": "^9.3",
        "roave/security-advisories": "dev-latest",
        "spatie/laravel-ignition": "^2.4"
    },
    "config": {
        "optimize-autoloader": true,
        "preferred-install": "dist",
        "allow-plugins": {
            "composer/installers": true,
            "roots/wordpress-core-installer": true,
            "pestphp/pest-plugin": true,
            "koodimonni/composer-dropin-installer": true
        },
        "sort-packages": true,
        "platform": {
            "php": "8.2.18"
        }
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "extra": {
        "acorn": {
            "providers": [
                "App\\Providers\\AssetsServiceProvider",
                "App\\Providers\\BlocksServiceProvider",
                "App\\Providers\\ThemeServiceProvider",
                "App\\Providers\\PostTypesServiceProvider"
            ]
        },
        "installer-paths": {
            "public/content/mu-plugins/{$name}/": [
                "type:wordpress-muplugin"
            ],
            "public/content/plugins/{$name}/": [
                "type:wordpress-plugin"
            ],
            "public/content/themes/{$name}/": [
                "type:wordpress-theme"
            ]
        },
        "wordpress-install-dir": "public/wp",
        "dropin-paths": {
            "public/content/languages/": ["vendor:koodimonni-language"],
            "public/content/languages/plugins/": ["vendor:koodimonni-plugin-language"],
            "public/content/languages/themes/": ["vendor:koodimonni-theme-language"]
        }
    },
    "scripts": {
        "lint": "pint --test",
        "lint:fix": "pint",
        "test": "pest",
        "post-autoload-dump": [
            "Roots\\Acorn\\ComposerScripts::postAutoloadDump"
        ]
    }
}