PHPackages                             wotz/filament-translatable-strings - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Localization &amp; i18n](/categories/localization)
4. /
5. wotz/filament-translatable-strings

ActiveLibrary[Localization &amp; i18n](/categories/localization)

wotz/filament-translatable-strings
==================================

This package manages translatable strings in Filament.

v2.1.2(1mo ago)11.5k↓69.9%[1 PRs](https://github.com/wotzebra/filament-translatable-strings/pulls)2MITPHPPHP ^8.3CI passing

Since Aug 18Pushed 4w ago1 watchersCompare

[ Source](https://github.com/wotzebra/filament-translatable-strings)[ Packagist](https://packagist.org/packages/wotz/filament-translatable-strings)[ Docs](https://github.com/wotzebra/filament-translatable-strings)[ RSS](/packages/wotz-filament-translatable-strings/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (10)Dependencies (64)Versions (22)Used By (2)

This package manages translatable strings in Filament.
======================================================

[](#this-package-manages-translatable-strings-in-filament)

Package to manage the lang files in [Filament](https://filamentphp.com/) with import and export actions and a command to find them in your code.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require wotz/filament-translatable-strings
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="filament-translatable-strings-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-translatable-strings-config"
```

This is the contents of the published config file:

```
return [
    'trans_functions' => [
        '__',
        'trans',
        'trans_choice',
        'Lang::get',
        'Lang::choice',
        '@lang',
        '@choice',
    ],
    'html_trans_functions' => [
        '__html',
    ],
    'exclude_folders' => [
        'storage',
        'node_modules',
        'database',
        'lang',
        'vendor/symfony',
        'tests',
    ],
    'skip_export_to_lang' => (bool) env('SKIP_EXPORT_TO_LANG', false),
];
```

Register the plugin and/or Widget in your Panel provider:

```
public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            \Wotz\TranslatableStrings\TranslatableStringsPlugin::make(),
        ]);
    }
```

In an effort to align with Filament's theming methodology you will need to use a custom theme to use this plugin.

> **Note**If you have not set up a custom theme and are using a Panel follow the instructions in the [Filament Docs](https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme) first. The following applies to both the Panels Package and the standalone Forms package.

1. Import the plugin's views into your theme's css file.

```
@source '../../../../vendor/wotz/filament-translatable-strings/resources/**/*.blade.php';
```

Usage
-----

[](#usage)

```
php artisan translatable-strings:extract-and-parse
```

Documentation
-------------

[](#documentation)

For the full documentation, check [here](./docs/index.md).

Testing
-------

[](#testing)

```
vendor/bin/pest
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Upgrading
---------

[](#upgrading)

Please see [UPGRADING](UPGRADING.md) for more information on how to upgrade to a new version.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

If you discover any security-related issues, please email  instead of using the issue tracker.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

53

—

FairBetter than 96% of packages

Maintenance94

Actively maintained with recent releases

Popularity21

Limited adoption so far

Community18

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 50% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~81 days

Recently: every ~57 days

Total

14

Last Release

34d ago

Major Versions

v0.1.4 → v1.0.02023-12-07

v1.3.1 → v2.0.02026-01-20

PHP version history (2 changes)v0.1.0PHP ^8.2

v2.1.0PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/15cf50c665151125e406b8daceaca4ce27096798f9295cbae2f17b29440241f6?d=identicon)[Who Owns The Zebra](/maintainers/Who%20Owns%20The%20Zebra)

---

Top Contributors

[![jyrkidn](https://avatars.githubusercontent.com/u/2447042?v=4)](https://github.com/jyrkidn "jyrkidn (65 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (24 commits)")[![AngryMoustache](https://avatars.githubusercontent.com/u/20287748?v=4)](https://github.com/AngryMoustache "AngryMoustache (16 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (12 commits)")[![gdebrauwer](https://avatars.githubusercontent.com/u/22586858?v=4)](https://github.com/gdebrauwer "gdebrauwer (6 commits)")[![kjellkeisse](https://avatars.githubusercontent.com/u/2952516?v=4)](https://github.com/kjellkeisse "kjellkeisse (5 commits)")[![Copilot](https://avatars.githubusercontent.com/in/1143301?v=4)](https://github.com/Copilot "Copilot (1 commits)")[![Thomva](https://avatars.githubusercontent.com/u/67506591?v=4)](https://github.com/Thomva "Thomva (1 commits)")

---

Tags

laravelwho owns the zebrafilament-translatable-strings

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/wotz-filament-translatable-strings/health.svg)

```
[![Health](https://phpackages.com/badges/wotz-filament-translatable-strings/health.svg)](https://phpackages.com/packages/wotz-filament-translatable-strings)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3915.5k](/packages/rawilk-profile-filament-plugin)[finity-labs/fin-mail

A powerful email template manager and composer for Filament with dynamic token replacement, template versioning, and inline email sending.

316.8k2](/packages/finity-labs-fin-mail)[tapp/filament-form-builder

User facing form builder using Filament components

133.5k6](/packages/tapp-filament-form-builder)[statikbe/laravel-filament-flexible-content-blocks

The Laravel Filament Flexible Content Blocks package helps you to easily create content in Filament for any model, with predefined or custom blocks, and foreach block an extendable Blade view component.

17927.9k6](/packages/statikbe-laravel-filament-flexible-content-blocks)[backstage/mails

View logged mails and events in a beautiful Filament UI.

16429.7k](/packages/backstage-mails)[tapp/filament-lms

204.4k](/packages/tapp-filament-lms)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
