add kirby-loop plugin with French translations
All checks were successful
Deploy / Deploy to Production (push) Successful in 6s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2026-03-23 21:41:50 +01:00
parent 8ea5f0c462
commit ab7fd8b2ea
74 changed files with 16423 additions and 2 deletions

55
site/plugins/loop/composer.json Executable file
View file

@ -0,0 +1,55 @@
{
"name": "moinframe/kirby-loop",
"description": "Interactive feedback tool for Kirby CMS websites that allows users to add contextual comments directly on page elements",
"homepage": "https://github.com/moinframe/kirby-loop",
"license": "MIT",
"type": "kirby-plugin",
"version": "1.0.1",
"keywords": [
"kirby",
"cms",
"plugin",
"feedback",
"comments",
"review",
"loop"
],
"authors": [
{
"name": "Justus Kraft",
"email": "justus@moinfra.me",
"homepage": "https://moinfra.me"
}
],
"require": {
"getkirby/composer-installer": "^1.1",
"getkirby/cms": "^4.0||^5.0"
},
"autoload": {
"psr-4": {
"Moinframe\\Loop\\": "src/"
}
},
"support": {
"docs": "https://moinfra.me/docs/moinframe-loop",
"source": "https://github.com/moinframe/kirby-loop",
"issues": "https://github.com/moinframe/kirby-loop/issues"
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"installer-name": "loop"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0"
}
}