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:
@@ -24,6 +24,11 @@ class City extends Resource
|
|||||||
*/
|
*/
|
||||||
public static $title = 'name';
|
public static $title = 'name';
|
||||||
|
|
||||||
|
public static function label()
|
||||||
|
{
|
||||||
|
return __('City');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The columns that should be searched.
|
* The columns that should be searched.
|
||||||
* @var array
|
* @var array
|
||||||
|
|||||||
@@ -22,6 +22,11 @@ class Venue extends Resource
|
|||||||
*/
|
*/
|
||||||
public static $title = 'name';
|
public static $title = 'name';
|
||||||
|
|
||||||
|
public static function label()
|
||||||
|
{
|
||||||
|
return __('Venue');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The columns that should be searched.
|
* The columns that should be searched.
|
||||||
* @var array
|
* @var array
|
||||||
@@ -53,10 +58,10 @@ class Venue extends Resource
|
|||||||
Text::make('Slug')
|
Text::make('Slug')
|
||||||
->exceptOnForms(),
|
->exceptOnForms(),
|
||||||
|
|
||||||
Text::make('Street')
|
Text::make(__('Street'), 'street')
|
||||||
->rules('required', 'string'),
|
->rules('required', 'string'),
|
||||||
|
|
||||||
BelongsTo::make('City'),
|
BelongsTo::make(__('City'), 'city', City::class),
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ class NovaServiceProvider extends NovaApplicationServiceProvider
|
|||||||
MenuSection::dashboard(Main::class)
|
MenuSection::dashboard(Main::class)
|
||||||
->icon('lightning-bolt'),
|
->icon('lightning-bolt'),
|
||||||
|
|
||||||
MenuSection::make('Locations', [
|
MenuSection::make(__('Locations'), [
|
||||||
MenuItem::resource(City::class),
|
MenuItem::resource(City::class),
|
||||||
MenuItem::resource(Venue::class),
|
MenuItem::resource(Venue::class),
|
||||||
])
|
])
|
||||||
|
|||||||
14
lang/de.json
14
lang/de.json
@@ -1,8 +1,17 @@
|
|||||||
{
|
{
|
||||||
"Orange Pill Book Case": "Wie viele Bitcoin-Bücher hast du hinzu gefügt?",
|
"Orange Pill Book Case": "Wie viele Bitcoin-Bücher hast du hinzu gefügt?",
|
||||||
"Book": "Buch",
|
"Book": "Buch",
|
||||||
|
"Course Events": "Kurs-Termine",
|
||||||
|
"Course": "Kurs",
|
||||||
"Bookcase": "Bücher-Schrank",
|
"Bookcase": "Bücher-Schrank",
|
||||||
"Article": "Artikel",
|
"Article": "Artikel",
|
||||||
|
"Libraries": "Bibliotheken",
|
||||||
|
"Library Items": "Bibliothekseinträge",
|
||||||
|
"Episodes": "Episoden",
|
||||||
|
"Book Cases": "Bücher-Schränke",
|
||||||
|
"Inputs": "Eingaben",
|
||||||
|
"First name": "Vorname",
|
||||||
|
"Last name": "Nachname",
|
||||||
"Markdown Article": "Interner Artikel",
|
"Markdown Article": "Interner Artikel",
|
||||||
"Youtube Video": "Youtube Video",
|
"Youtube Video": "Youtube Video",
|
||||||
"Vimeo Video": "Vimeo Video",
|
"Vimeo Video": "Vimeo Video",
|
||||||
@@ -14,6 +23,9 @@
|
|||||||
"Lecturer": "Dozent",
|
"Lecturer": "Dozent",
|
||||||
"Lecturers": "Dozenten",
|
"Lecturers": "Dozenten",
|
||||||
"Cities": "Städte",
|
"Cities": "Städte",
|
||||||
|
"Locations": "Orte",
|
||||||
|
"City": "Stadt",
|
||||||
|
"Venue": "Veranstaltungs-Ort",
|
||||||
"Venues": "Veranstaltungs-Orte",
|
"Venues": "Veranstaltungs-Orte",
|
||||||
"Courses": "Kurse",
|
"Courses": "Kurse",
|
||||||
"Events": "Termine",
|
"Events": "Termine",
|
||||||
@@ -21,6 +33,8 @@
|
|||||||
"Registrations": "Registrierungen",
|
"Registrations": "Registrierungen",
|
||||||
"Categories": "Kategorien",
|
"Categories": "Kategorien",
|
||||||
"Countries": "Länder",
|
"Countries": "Länder",
|
||||||
|
"Country": "Land",
|
||||||
|
"Street": "Straße",
|
||||||
"Users": "Benutzer",
|
"Users": "Benutzer",
|
||||||
"I want to submit new courses on this platform": "Ich bin Dozent und möchte neue Kurse auf dieser Plattform einstellen",
|
"I want to submit new courses on this platform": "Ich bin Dozent und möchte neue Kurse auf dieser Plattform einstellen",
|
||||||
"(and :count more error)": "(und :count weiterer Fehler)",
|
"(and :count more error)": "(und :count weiterer Fehler)",
|
||||||
|
|||||||
Reference in New Issue
Block a user