mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
translations updated
This commit is contained in:
@@ -65,7 +65,7 @@ class Lecturer extends Resource
|
|||||||
Images::make('Avatar', 'avatar')
|
Images::make('Avatar', 'avatar')
|
||||||
->conversionOnIndexView('thumb'),
|
->conversionOnIndexView('thumb'),
|
||||||
|
|
||||||
Images::make('Images', 'images')
|
Images::make(__('Images'), 'images')
|
||||||
->conversionOnIndexView('thumb')
|
->conversionOnIndexView('thumb')
|
||||||
->help('Lade hier Bilder hoch, um sie eventuell später in der Markdown Description einzufügen. Du musst vorher aber Speichern.'),
|
->help('Lade hier Bilder hoch, um sie eventuell später in der Markdown Description einzufügen. Du musst vorher aber Speichern.'),
|
||||||
|
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ class Meetup extends Resource
|
|||||||
Text::make('Link')
|
Text::make('Link')
|
||||||
->rules('required', 'string'),
|
->rules('required', 'string'),
|
||||||
|
|
||||||
BelongsTo::make('City')->searchable(),
|
BelongsTo::make(__('City'), 'city', City::class)->searchable(),
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,6 +22,11 @@ class MeetupEvent extends Resource
|
|||||||
*/
|
*/
|
||||||
public static $title = 'id';
|
public static $title = 'id';
|
||||||
|
|
||||||
|
public static function label()
|
||||||
|
{
|
||||||
|
return __('Meetup Event');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The columns that should be searched.
|
* The columns that should be searched.
|
||||||
* @var array
|
* @var array
|
||||||
@@ -45,10 +50,9 @@ class MeetupEvent extends Resource
|
|||||||
|
|
||||||
DateTime::make(__('Start'), 'start'),
|
DateTime::make(__('Start'), 'start'),
|
||||||
|
|
||||||
Text::make('Location')
|
Text::make(__('Location'), 'location'),
|
||||||
->rules('required', 'string'),
|
|
||||||
|
|
||||||
Text::make('Description')
|
Text::make(__('Description'), 'description')
|
||||||
->rules('required', 'string')
|
->rules('required', 'string')
|
||||||
->hideFromIndex(),
|
->hideFromIndex(),
|
||||||
|
|
||||||
|
|||||||
@@ -7,11 +7,15 @@
|
|||||||
"Article": "Artikel",
|
"Article": "Artikel",
|
||||||
"Libraries": "Bibliotheken",
|
"Libraries": "Bibliotheken",
|
||||||
"Library Items": "Bibliothekseinträge",
|
"Library Items": "Bibliothekseinträge",
|
||||||
|
"Images": "Bilder",
|
||||||
"Episodes": "Episoden",
|
"Episodes": "Episoden",
|
||||||
"Book Cases": "Bücher-Schränke",
|
"Book Cases": "Bücher-Schränke",
|
||||||
"Inputs": "Eingaben",
|
"Inputs": "Eingaben",
|
||||||
"First name": "Vorname",
|
"First name": "Vorname",
|
||||||
"Last name": "Nachname",
|
"Last name": "Nachname",
|
||||||
|
"Description": "Beschreibung",
|
||||||
|
"Location": "Ort",
|
||||||
|
"Meetup Event": "Meetup-Termin",
|
||||||
"Markdown Article": "Interner Artikel",
|
"Markdown Article": "Interner Artikel",
|
||||||
"Youtube Video": "Youtube Video",
|
"Youtube Video": "Youtube Video",
|
||||||
"Vimeo Video": "Vimeo Video",
|
"Vimeo Video": "Vimeo Video",
|
||||||
|
|||||||
Reference in New Issue
Block a user