diff --git a/lang/tr/music_productions.php b/lang/tr/music_productions.php index 3df8f79..5aa89db 100644 --- a/lang/tr/music_productions.php +++ b/lang/tr/music_productions.php @@ -109,7 +109,16 @@ return [ 'spotify_no_albums' => 'Spotify sanatçı hesabında albüm veya single bulunamadı.', 'spotify_untitled_album' => 'İsimsiz Albüm', - // YouTube + // Metadata table labels + 'field' => 'Alan', + 'value' => 'Değer', + 'track' => 'Parça', + 'style' => 'Stil', + 'contributors' => 'Katkıda Bulunanlar', + 'released_on' => 'Yayın Tarihi', + 'distributor' => 'Dağıtıcı', + 'label' => 'Etiket', + 'youtube_section' => 'YouTube Bilgileri', 'youtube_video_id_field' => 'YouTube Video ID', 'youtube_url_field' => 'YouTube URL', diff --git a/resources/views/front/music-productions/show.blade.php b/resources/views/front/music-productions/show.blade.php index 567d350..afb124a 100644 --- a/resources/views/front/music-productions/show.blade.php +++ b/resources/views/front/music-productions/show.blade.php @@ -185,46 +185,65 @@ {{-- Sidebar - Date & Client --}} -
- - - - {{ __('music_productions.back_to_list') }} - -
+
+ + + + + + + + + + + + + @if($styleParsed) + + + + + @endif + @if(!empty($contributors)) + + + + + @endif + @if($releasedOn) + + + + + @endif + @if($distributor) + + + + + @endif + @if($label) + + + + + @endif + @if($production->spotify_url) + + + + + @endif + @if($production->youtube_url) + + + + + @endif + +
FieldValue
Track{{ $trackNameParsed ?? $titlePart }}
Style{{ $styleParsed }}
Contributors{{ implode(', ', $contributors) }}
Released on{{ $releasedOn }}
Distributor{{ $distributor }}
Label{{ $label }}
Spotify{{ __('music_productions.spotify_listen_on_spotify') }}
YouTube{{ __('music_productions.youtube_watch_on_youtube') }}
+
+