├── README.md ├── composer.json ├── resources └── lang │ ├── ar │ └── actions.php │ ├── az │ └── actions.php │ ├── bn │ └── actions.php │ ├── ca │ └── actions.php │ ├── ckb │ └── actions.php │ ├── cs │ └── actions.php │ ├── da │ └── actions.php │ ├── de │ └── actions.php │ ├── en │ └── actions.php │ ├── es │ └── actions.php │ ├── eu │ └── actions.php │ ├── fa │ └── actions.php │ ├── fi │ └── actions.php │ ├── fr │ └── actions.php │ ├── he │ └── actions.php │ ├── hr │ └── actions.php │ ├── hu │ └── actions.php │ ├── hy │ └── actions.php │ ├── id │ └── actions.php │ ├── it │ └── actions.php │ ├── ja │ └── actions.php │ ├── ka │ └── actions.php │ ├── km │ └── actions.php │ ├── ku │ └── actions.php │ ├── lt │ └── actions.php │ ├── ms │ └── actions.php │ ├── nl │ └── actions.php │ ├── no │ └── actions.php │ ├── np │ └── actions.php │ ├── pl │ └── actions.php │ ├── pt_BR │ └── actions.php │ ├── pt_PT │ └── actions.php │ ├── ro │ └── actions.php │ ├── ru │ └── actions.php │ ├── sk │ └── actions.php │ ├── sv │ └── actions.php │ ├── tr │ └── actions.php │ ├── uk │ └── actions.php │ ├── uz │ └── actions.php │ ├── vi │ └── actions.php │ ├── zh_CN │ └── actions.php │ └── zh_TW │ └── actions.php └── src ├── Actions ├── Concerns │ └── HasTranslatableLocaleOptions.php └── LocaleSwitcher.php ├── Pages └── Actions │ └── LocaleSwitcher.php ├── Resources ├── Concerns │ ├── HasActiveLocaleSwitcher.php │ └── Translatable.php ├── Pages │ ├── Concerns │ │ ├── HasTranslatableFormWithExistingRecordData.php │ │ └── HasTranslatableRecord.php │ ├── CreateRecord │ │ └── Concerns │ │ │ └── Translatable.php │ ├── EditRecord │ │ └── Concerns │ │ │ └── Translatable.php │ ├── ListRecords │ │ └── Concerns │ │ │ └── Translatable.php │ ├── ManageRecords │ │ └── Concerns │ │ │ └── Translatable.php │ └── ViewRecord │ │ └── Concerns │ │ └── Translatable.php └── RelationManagers │ └── Concerns │ └── Translatable.php ├── SpatieLaravelTranslatableContentDriver.php ├── SpatieLaravelTranslatablePlugin.php ├── SpatieLaravelTranslatablePluginServiceProvider.php └── Tables └── Actions └── LocaleSwitcher.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /resources/lang/ar/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/ar/actions.php -------------------------------------------------------------------------------- /resources/lang/az/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/az/actions.php -------------------------------------------------------------------------------- /resources/lang/bn/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/bn/actions.php -------------------------------------------------------------------------------- /resources/lang/ca/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/ca/actions.php -------------------------------------------------------------------------------- /resources/lang/ckb/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/ckb/actions.php -------------------------------------------------------------------------------- /resources/lang/cs/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/cs/actions.php -------------------------------------------------------------------------------- /resources/lang/da/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/da/actions.php -------------------------------------------------------------------------------- /resources/lang/de/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/de/actions.php -------------------------------------------------------------------------------- /resources/lang/en/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/en/actions.php -------------------------------------------------------------------------------- /resources/lang/es/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/es/actions.php -------------------------------------------------------------------------------- /resources/lang/eu/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/eu/actions.php -------------------------------------------------------------------------------- /resources/lang/fa/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/fa/actions.php -------------------------------------------------------------------------------- /resources/lang/fi/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/fi/actions.php -------------------------------------------------------------------------------- /resources/lang/fr/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/fr/actions.php -------------------------------------------------------------------------------- /resources/lang/he/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/he/actions.php -------------------------------------------------------------------------------- /resources/lang/hr/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/hr/actions.php -------------------------------------------------------------------------------- /resources/lang/hu/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/hu/actions.php -------------------------------------------------------------------------------- /resources/lang/hy/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/hy/actions.php -------------------------------------------------------------------------------- /resources/lang/id/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/id/actions.php -------------------------------------------------------------------------------- /resources/lang/it/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/it/actions.php -------------------------------------------------------------------------------- /resources/lang/ja/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/ja/actions.php -------------------------------------------------------------------------------- /resources/lang/ka/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/ka/actions.php -------------------------------------------------------------------------------- /resources/lang/km/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/km/actions.php -------------------------------------------------------------------------------- /resources/lang/ku/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/ku/actions.php -------------------------------------------------------------------------------- /resources/lang/lt/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/lt/actions.php -------------------------------------------------------------------------------- /resources/lang/ms/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/ms/actions.php -------------------------------------------------------------------------------- /resources/lang/nl/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/nl/actions.php -------------------------------------------------------------------------------- /resources/lang/no/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/no/actions.php -------------------------------------------------------------------------------- /resources/lang/np/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/np/actions.php -------------------------------------------------------------------------------- /resources/lang/pl/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/pl/actions.php -------------------------------------------------------------------------------- /resources/lang/pt_BR/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/pt_BR/actions.php -------------------------------------------------------------------------------- /resources/lang/pt_PT/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/pt_PT/actions.php -------------------------------------------------------------------------------- /resources/lang/ro/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/ro/actions.php -------------------------------------------------------------------------------- /resources/lang/ru/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/ru/actions.php -------------------------------------------------------------------------------- /resources/lang/sk/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/sk/actions.php -------------------------------------------------------------------------------- /resources/lang/sv/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/sv/actions.php -------------------------------------------------------------------------------- /resources/lang/tr/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/tr/actions.php -------------------------------------------------------------------------------- /resources/lang/uk/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/uk/actions.php -------------------------------------------------------------------------------- /resources/lang/uz/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/uz/actions.php -------------------------------------------------------------------------------- /resources/lang/vi/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/vi/actions.php -------------------------------------------------------------------------------- /resources/lang/zh_CN/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/zh_CN/actions.php -------------------------------------------------------------------------------- /resources/lang/zh_TW/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/resources/lang/zh_TW/actions.php -------------------------------------------------------------------------------- /src/Actions/Concerns/HasTranslatableLocaleOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Actions/Concerns/HasTranslatableLocaleOptions.php -------------------------------------------------------------------------------- /src/Actions/LocaleSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Actions/LocaleSwitcher.php -------------------------------------------------------------------------------- /src/Pages/Actions/LocaleSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Pages/Actions/LocaleSwitcher.php -------------------------------------------------------------------------------- /src/Resources/Concerns/HasActiveLocaleSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Resources/Concerns/HasActiveLocaleSwitcher.php -------------------------------------------------------------------------------- /src/Resources/Concerns/Translatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Resources/Concerns/Translatable.php -------------------------------------------------------------------------------- /src/Resources/Pages/Concerns/HasTranslatableFormWithExistingRecordData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Resources/Pages/Concerns/HasTranslatableFormWithExistingRecordData.php -------------------------------------------------------------------------------- /src/Resources/Pages/Concerns/HasTranslatableRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Resources/Pages/Concerns/HasTranslatableRecord.php -------------------------------------------------------------------------------- /src/Resources/Pages/CreateRecord/Concerns/Translatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Resources/Pages/CreateRecord/Concerns/Translatable.php -------------------------------------------------------------------------------- /src/Resources/Pages/EditRecord/Concerns/Translatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Resources/Pages/EditRecord/Concerns/Translatable.php -------------------------------------------------------------------------------- /src/Resources/Pages/ListRecords/Concerns/Translatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Resources/Pages/ListRecords/Concerns/Translatable.php -------------------------------------------------------------------------------- /src/Resources/Pages/ManageRecords/Concerns/Translatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Resources/Pages/ManageRecords/Concerns/Translatable.php -------------------------------------------------------------------------------- /src/Resources/Pages/ViewRecord/Concerns/Translatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Resources/Pages/ViewRecord/Concerns/Translatable.php -------------------------------------------------------------------------------- /src/Resources/RelationManagers/Concerns/Translatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Resources/RelationManagers/Concerns/Translatable.php -------------------------------------------------------------------------------- /src/SpatieLaravelTranslatableContentDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/SpatieLaravelTranslatableContentDriver.php -------------------------------------------------------------------------------- /src/SpatieLaravelTranslatablePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/SpatieLaravelTranslatablePlugin.php -------------------------------------------------------------------------------- /src/SpatieLaravelTranslatablePluginServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/SpatieLaravelTranslatablePluginServiceProvider.php -------------------------------------------------------------------------------- /src/Tables/Actions/LocaleSwitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filamentphp/spatie-laravel-translatable-plugin/HEAD/src/Tables/Actions/LocaleSwitcher.php --------------------------------------------------------------------------------