Key features implemented: - New RELEASE_v1.1.0.md with comprehensive release notes for security upgrades and new features - New firewall.py plugin implementing dynamic IP filtering, port management, and attack detection - New frp_proxy.py plugin for FRP-based internal network tunneling and proxy services - New ftp_server.py plugin providing secure file transfer with user management and access control - New multi_lang_deploy.py orchestrator supporting automated detection and deployment of Python/Node.js/Go/Java/PHP projects - New ops_toolbox.py with backup/recovery, health checks, and resource quota management - New security_gateway.py with API rate limiting, JWT authentication, audit logging, and circuit breaker protection - New HTML5/CSS3/JS-based webui replacing PHP templates with modern responsive design and real-time metrics - New manifest.json files for all plugins adding configuration schemas and dependency declarations - Updated .gitignore with refined ignore patterns for development environments - Modified core plugin manifests to include internationalization dependencies and enhanced configurations - Removed legacy PHP template files from webui frontend views - Enhanced plugin bridge, storage, signature verification with multilingual support and security improvements
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"common": {
|
|
"success": "Success",
|
|
"error": "Error",
|
|
"not_found": "Not Found",
|
|
"forbidden": "Forbidden",
|
|
"unauthorized": "Unauthorized",
|
|
"server_error": "Internal Server Error",
|
|
"bad_request": "Bad Request",
|
|
"ok": "OK",
|
|
"cancel": "Cancel",
|
|
"save": "Save",
|
|
"delete": "Delete",
|
|
"edit": "Edit",
|
|
"create": "Create",
|
|
"search": "Search",
|
|
"loading": "Loading...",
|
|
"no_data": "No Data",
|
|
"confirm": "Confirm",
|
|
"back": "Back"
|
|
},
|
|
"health": {
|
|
"status": "Running",
|
|
"service": "Service",
|
|
"version": "Version",
|
|
"uptime": "Uptime"
|
|
},
|
|
"api": {
|
|
"welcome": "Welcome to FutureOSS API",
|
|
"docs": "API Documentation",
|
|
"rate_limit": "Rate limit exceeded, please try again later",
|
|
"invalid_request": "Invalid request parameters",
|
|
"missing_param": "Missing required parameter: {{param}}",
|
|
"invalid_param": "Invalid parameter format: {{param}}"
|
|
},
|
|
"errors": {
|
|
"400": "Bad Request",
|
|
"401": "Please login first",
|
|
"403": "You don't have permission to perform this action",
|
|
"404": "The requested resource was not found",
|
|
"500": "Internal server error, please try again later",
|
|
"502": "Bad Gateway",
|
|
"503": "Service temporarily unavailable, please try again later"
|
|
},
|
|
"plugin": {
|
|
"i18n_name": "Internationalization",
|
|
"i18n_desc": "Provides translation loading, language detection, and HTTP middleware",
|
|
"locale_changed": "Locale changed to {{locale}}",
|
|
"locale_not_supported": "Unsupported locale: {{locale}}"
|
|
}
|
|
}
|