{"id":26223428,"url":"https://github.com/backstagephp/translations","last_synced_at":"2025-10-28T12:37:48.990Z","repository":{"id":278533246,"uuid":"916535931","full_name":"backstagephp/translations","owner":"backstagephp","description":"Backstage Translations for Filament","archived":false,"fork":false,"pushed_at":"2025-04-10T08:32:26.000Z","size":699,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-10T08:58:24.975Z","etag":null,"topics":["filament","languages","laravel","plugin","translations"],"latest_commit_sha":null,"homepage":"https://backstagephp.com/docs/translations","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/backstagephp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"backstagephp"}},"created_at":"2025-01-14T09:38:57.000Z","updated_at":"2025-04-10T08:32:12.000Z","dependencies_parsed_at":"2025-03-07T17:22:40.464Z","dependency_job_id":null,"html_url":"https://github.com/backstagephp/translations","commit_stats":null,"previous_names":["backstagephp/translations"],"tags_count":39,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backstagephp%2Ftranslations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backstagephp%2Ftranslations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backstagephp%2Ftranslations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/backstagephp%2Ftranslations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/backstagephp","download_url":"https://codeload.github.com/backstagephp/translations/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249685166,"owners_count":21310556,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["filament","languages","laravel","plugin","translations"],"created_at":"2025-03-12T17:32:54.461Z","updated_at":"2025-10-28T12:37:48.984Z","avatar_url":"https://github.com/backstagephp.png","language":"PHP","funding_links":["https://github.com/sponsors/backstagephp"],"categories":[],"sub_categories":[],"readme":"# Backstage: Translations for Filament\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/backstage/translations.svg?style=flat-square)](https://packagist.org/packages/backstage/translations)\n[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/backstagephp/translations/run-tests.yml?branch=main\u0026label=tests\u0026style=flat-square)](https://github.com/backstagephp/translations/actions?query=workflow%3Arun-tests+branch%3Amain)\n[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/backstagephp/translations/fix-php-code-styling.yml?branch=main\u0026label=code%20style\u0026style=flat-square)](https://github.com/backstagephp/translations/actions?query=workflow%3A\"Fix+PHP+code+styling\"+branch%3Amain)\n[![Total Downloads](https://img.shields.io/packagist/dt/backstage/translations.svg?style=flat-square)](https://packagist.org/packages/backstage/translations)\n\n## Nice to meet you, we're [Vormkracht10](https://vormkracht10.nl)\n\nHi! We're a digital agency from Nijmegen in the Netherlands and we use Laravel for everything: advanced websites with a lot of bells and whistles and large web applications.\n\n\u003e **Note**: All screenshots used in documentation are taken using browser developer tools simulating a \"Nest Hub Max\" device with dimensions of 1280x800 pixels at 100% zoom.\n\n## Before using\n\nPlease read this documentation first: [https://github.com/backstagephp/laravel-translations](https://github.com/backstagephp/laravel-translations)\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require backstage/translations\n```\n\nYou can publish and run the migrations with:\n\n```bash\nphp artisan vendor:publish --provider=\"Backstage\\Translations\\Laravel\\TranslationServiceProvider\"\n\nphp artisan vendor:publish --provider=\"Backstage\\Translations\\Filament\\TranslationServiceProvider\"\n\nphp artisan migrate\n```\n\nYou can publish the config file with:\n\n```bash\nphp artisan vendor:publish --tag=\"translations-config\"\nphp artisan vendor:publish --tag=\"backstage-translations-config\"\n```\n\nOptionally, you can publish the views using\n\n```bash\nphp artisan vendor:publish --tag=\"backstage-translations-views\"\n```\n\nAdd the TranslationsPlugin to the desired panel provider:\n\n```php\nuse Backstage\\Translations\\Filament\\TranslationsPlugin;\n\n$panel\n    -\u003eplugins([\n        TranslationsPlugin::make(),\n    ]);\n```\n\nOptionally, you can disable the language switcher and rely on the ``default`` language:\n ```php\nuse Backstage\\Translations\\Filament\\TranslationsPlugin;\n\n$panel\n    -\u003eplugins([\n        TranslationsPlugin::make()\n            -\u003elanguageSwitcherDisabled(),\n    ]);\n```\n\nIf you want to show only the language switcher in a panel, you can set the `canManageTranslations` to `false`:\n\n ```php\nuse Backstage\\Translations\\Filament\\TranslationsPlugin;\n\n$panel\n    -\u003eplugins([\n        TranslationsPlugin::make()\n            -\u003euserCanManageTranslations(false),\n    ]);\n```\n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](../../security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n- [Manoj Hortulanus](https://github.com/arduinomaster22)\n- [Mark van Eijk](https://github.com/markvaneijk)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n---\n\n\u003cdiv align=\"center\"\u003e\nMade with ❤️ by [Vormkracht10](https://vormkracht10.nl)\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackstagephp%2Ftranslations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbackstagephp%2Ftranslations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbackstagephp%2Ftranslations/lists"}