Use :if attributes and proper translations
This commit is contained in:
@@ -1,245 +1,231 @@
|
|||||||
<Layouts.app flash={@flash} current_section={:scrobble} socket={@socket}>
|
<Layouts.app flash={@flash} current_section={:scrobble} socket={@socket}>
|
||||||
<div>
|
<div>
|
||||||
<%= if @loading do %>
|
<div :if={@loading} class="text-center py-8">
|
||||||
<div class="text-center py-8">
|
<.icon name="hero-arrow-path" class="h-8 w-8 animate-spin mx-auto text-gray-400" />
|
||||||
<.icon name="hero-arrow-path" class="h-8 w-8 animate-spin mx-auto text-gray-400" />
|
<p class="text-gray-600 dark:text-gray-400 mt-2">{gettext("Loading release details...")}</p>
|
||||||
<p class="text-gray-600 dark:text-gray-400 mt-2">Loading release details...</p>
|
</div>
|
||||||
</div>
|
<div :if={not @loading} class="space-y-6">
|
||||||
<% else %>
|
<div class="flex items-center gap-4">
|
||||||
<div class="space-y-6">
|
<.link navigate={~p"/scrobble"} class="flex-shrink-0">
|
||||||
<div class="flex items-center gap-4">
|
<.button variant="ghost" size="sm">
|
||||||
<.link navigate={~p"/scrobble"} class="flex-shrink-0">
|
<.icon name="hero-arrow-left" class="h-4 w-4 mr-2" /> {gettext("Back to Search")}
|
||||||
<.button variant="ghost" size="sm">
|
</.button>
|
||||||
<.icon name="hero-arrow-left" class="h-4 w-4 mr-2" /> Back to Search
|
</.link>
|
||||||
</.button>
|
|
||||||
</.link>
|
|
||||||
|
|
||||||
<div class="min-w-0 flex-1">
|
<div class="min-w-0 flex-1">
|
||||||
<h1 class="text-base lg:text-2xl text-zinc-900 dark:text-zinc-200 font-semibold">
|
<h1 class="text-base lg:text-2xl text-zinc-900 dark:text-zinc-200 font-semibold">
|
||||||
{@release.title}
|
{@release.title}
|
||||||
</h1>
|
</h1>
|
||||||
<p class="text-sm text-gray-600 dark:text-gray-400 mt-1">
|
<p class="text-sm text-gray-600 dark:text-gray-400 mt-1">
|
||||||
<%= if @release.artists != [] do %>
|
<span :if={@release.artists != []}>
|
||||||
by {@release.artists |> Enum.map(& &1.name) |> Enum.join(", ")}
|
by {@release.artists |> Enum.map(& &1.name) |> Enum.join(", ")}
|
||||||
<% end %>
|
</span>
|
||||||
<%= if @release.date do %>
|
<span :if={@release.date}>
|
||||||
{@release.date}
|
{@release.date}
|
||||||
<% end %>
|
</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
:if={not @can_scrobble}
|
||||||
|
class="bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg p-4"
|
||||||
|
>
|
||||||
|
<div class="flex">
|
||||||
|
<.icon name="hero-exclamation-triangle" class="h-5 w-5 text-yellow-400" />
|
||||||
|
<div class="ml-3">
|
||||||
|
<p class="text-sm text-yellow-800 dark:text-yellow-200">
|
||||||
|
{gettext(
|
||||||
|
"You need to connect your Last.fm account to scrobble. Please set up your Last.fm session key in the settings."
|
||||||
|
)}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<%= if not @can_scrobble do %>
|
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
||||||
<div class="bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg p-4">
|
<div class="lg:col-span-2">
|
||||||
<div class="flex">
|
<div class="bg-white dark:bg-zinc-800 shadow rounded-lg">
|
||||||
<.icon name="hero-exclamation-triangle" class="h-5 w-5 text-yellow-400" />
|
<div class="p-6">
|
||||||
<div class="ml-3">
|
<h3 class="text-lg font-semibold mb-4">{gettext("Release Information")}</h3>
|
||||||
<p class="text-sm text-yellow-800 dark:text-yellow-200">
|
<div class="flex gap-6">
|
||||||
You need to connect your Last.fm account to scrobble. Please set up your Last.fm session key in the settings.
|
<div class="flex-shrink-0">
|
||||||
</p>
|
<img
|
||||||
</div>
|
src={MusicBrainz.Release.thumb_url(@release)}
|
||||||
</div>
|
alt={"Cover art for #{@release.title}"}
|
||||||
</div>
|
class="w-32 h-32 object-cover rounded-lg shadow-sm"
|
||||||
<% end %>
|
loading="lazy"
|
||||||
|
/>
|
||||||
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
</div>
|
||||||
<div class="lg:col-span-2">
|
<div class="flex-1">
|
||||||
<div class="bg-white dark:bg-zinc-800 shadow rounded-lg">
|
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4 text-sm">
|
||||||
<div class="p-6">
|
<div :if={@release.date}>
|
||||||
<h3 class="text-lg font-semibold mb-4">Release Information</h3>
|
<span class="font-medium text-gray-600 dark:text-gray-400">
|
||||||
<div class="flex gap-6">
|
{gettext("Release Date:")}
|
||||||
<div class="flex-shrink-0">
|
</span>
|
||||||
<img
|
<br />{@release.date}
|
||||||
src={MusicBrainz.Release.thumb_url(@release)}
|
</div>
|
||||||
alt={"Cover art for #{@release.title}"}
|
<div :if={@release.country}>
|
||||||
class="w-32 h-32 object-cover rounded-lg shadow-sm"
|
<span class="font-medium text-gray-600 dark:text-gray-400">
|
||||||
loading="lazy"
|
{gettext("Country:")}
|
||||||
/>
|
</span>
|
||||||
</div>
|
<br />{@release.country}
|
||||||
<div class="flex-1">
|
</div>
|
||||||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4 text-sm">
|
<div :if={@release.barcode}>
|
||||||
<%= if @release.date do %>
|
<span class="font-medium text-gray-600 dark:text-gray-400">
|
||||||
<div>
|
{gettext("Barcode:")}
|
||||||
<span class="font-medium text-gray-600 dark:text-gray-400">
|
</span>
|
||||||
Release Date:
|
<br />{@release.barcode}
|
||||||
</span>
|
</div>
|
||||||
<br />{@release.date}
|
<div :if={@release.catalog_number}>
|
||||||
</div>
|
<span class="font-medium text-gray-600 dark:text-gray-400">
|
||||||
<% end %>
|
{gettext("Catalog Number:")}
|
||||||
<%= if @release.country do %>
|
</span>
|
||||||
<div>
|
<br />{@release.catalog_number}
|
||||||
<span class="font-medium text-gray-600 dark:text-gray-400">
|
|
||||||
Country:
|
|
||||||
</span>
|
|
||||||
<br />{@release.country}
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
<%= if @release.barcode do %>
|
|
||||||
<div>
|
|
||||||
<span class="font-medium text-gray-600 dark:text-gray-400">
|
|
||||||
Barcode:
|
|
||||||
</span>
|
|
||||||
<br />{@release.barcode}
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
<%= if @release.catalog_number do %>
|
|
||||||
<div>
|
|
||||||
<span class="font-medium text-gray-600 dark:text-gray-400">
|
|
||||||
Catalog Number:
|
|
||||||
</span>
|
|
||||||
<br />{@release.catalog_number}
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%= if @release.media != [] do %>
|
|
||||||
<div class="bg-white dark:bg-zinc-800 shadow rounded-lg mt-6">
|
|
||||||
<div class="p-6">
|
|
||||||
<h3 class="text-lg font-semibold mb-4">Tracks</h3>
|
|
||||||
<div class="space-y-6">
|
|
||||||
<%= for medium <- @release.media do %>
|
|
||||||
<div class="space-y-3">
|
|
||||||
<div class="flex justify-between items-center">
|
|
||||||
<h4 class="font-medium">
|
|
||||||
<%= if length(@release.media) > 1 do %>
|
|
||||||
Medium {medium.number}
|
|
||||||
<%= if medium.title do %>
|
|
||||||
- {medium.title}
|
|
||||||
<% end %>
|
|
||||||
<%= if medium.format do %>
|
|
||||||
({medium.format})
|
|
||||||
<% end %>
|
|
||||||
<% else %>
|
|
||||||
Tracks
|
|
||||||
<%= if medium.format do %>
|
|
||||||
({medium.format})
|
|
||||||
<% end %>
|
|
||||||
<% end %>
|
|
||||||
</h4>
|
|
||||||
<%= if @can_scrobble do %>
|
|
||||||
<.button
|
|
||||||
size="sm"
|
|
||||||
variant="outline"
|
|
||||||
phx-click="scrobble_medium"
|
|
||||||
phx-value-medium_number={medium.number}
|
|
||||||
>
|
|
||||||
<.icon name="hero-play" class="h-3 w-3 mr-1" /> Scrobble Medium
|
|
||||||
</.button>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="space-y-1">
|
|
||||||
<%= for track <- medium.tracks do %>
|
|
||||||
<div class="flex justify-between items-center py-2 px-3 bg-gray-50 dark:bg-gray-800 rounded">
|
|
||||||
<div class="flex items-center gap-3">
|
|
||||||
<span class="text-xs text-gray-500 dark:text-gray-400 w-6 text-right">
|
|
||||||
{track.position}
|
|
||||||
</span>
|
|
||||||
<div class="min-w-0 flex-1">
|
|
||||||
<p class="font-medium text-sm text-gray-900 dark:text-gray-100 truncate">
|
|
||||||
{track.title}
|
|
||||||
</p>
|
|
||||||
<%= if track.artists != [] and track.artists != @release.artists do %>
|
|
||||||
<p class="text-xs text-gray-600 dark:text-gray-400 truncate">
|
|
||||||
{track.artists |> Enum.map(& &1.name) |> Enum.join(", ")}
|
|
||||||
</p>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<%= if track.length do %>
|
|
||||||
<span class="text-xs text-gray-500 dark:text-gray-400 font-mono">
|
|
||||||
{format_duration(track.length)}
|
|
||||||
</span>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%= if @can_scrobble do %>
|
<div :if={@release.media != []} class="bg-white dark:bg-zinc-800 shadow rounded-lg mt-6">
|
||||||
<div class="lg:col-span-1">
|
<div class="p-6">
|
||||||
<div class="bg-white dark:bg-zinc-800 shadow rounded-lg sticky top-6">
|
<h3 class="text-lg font-semibold mb-4">{gettext("Tracks")}</h3>
|
||||||
<div class="p-6">
|
<div class="space-y-6">
|
||||||
<h3 class="text-lg font-semibold mb-4">Scrobble Options</h3>
|
<div :for={medium <- @release.media} class="space-y-3">
|
||||||
|
<div class="flex justify-between items-center">
|
||||||
<.form
|
<h4 :if={length(@release.media) > 1} class="font-medium">
|
||||||
for={%{}}
|
Medium {medium.number}
|
||||||
as={:scrobble}
|
<span :if={medium.title}>
|
||||||
phx-change="update_scrobble_form"
|
- {medium.title}
|
||||||
class="space-y-4"
|
</span>
|
||||||
>
|
<span :if={medium.format}>
|
||||||
<.select
|
({medium.format})
|
||||||
name="type"
|
</span>
|
||||||
label="Scrobble timing"
|
</h4>
|
||||||
value={@scrobble_form["type"]}
|
<h4 :if={length(@release.media) == 1} class="font-medium">
|
||||||
options={[
|
{gettext("Tracks")}
|
||||||
{"Just finished listening", "finished_at"},
|
<span :if={medium.format}>
|
||||||
{"Started listening at", "started_at"}
|
({medium.format})
|
||||||
]}
|
</span>
|
||||||
/>
|
</h4>
|
||||||
|
|
||||||
<%= if @scrobble_form["type"] == "finished_at" do %>
|
|
||||||
<div class="space-y-2">
|
|
||||||
<.input
|
|
||||||
type="date"
|
|
||||||
name="finished_at_date"
|
|
||||||
label="Finished Date"
|
|
||||||
value={@scrobble_form["finished_at_date"]}
|
|
||||||
/>
|
|
||||||
<.input
|
|
||||||
type="time"
|
|
||||||
name="finished_at_time"
|
|
||||||
label="Finished Time"
|
|
||||||
value={@scrobble_form["finished_at_time"]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<% else %>
|
|
||||||
<div class="space-y-2">
|
|
||||||
<.input
|
|
||||||
type="date"
|
|
||||||
name="started_at_date"
|
|
||||||
label="Started Date"
|
|
||||||
value={@scrobble_form["started_at_date"]}
|
|
||||||
/>
|
|
||||||
<.input
|
|
||||||
type="time"
|
|
||||||
name="started_at_time"
|
|
||||||
label="Started Time"
|
|
||||||
value={@scrobble_form["started_at_time"]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
</.form>
|
|
||||||
|
|
||||||
<div class="space-y-3 mt-6">
|
|
||||||
<.button
|
<.button
|
||||||
phx-click="scrobble_release"
|
:if={@can_scrobble}
|
||||||
class="w-full"
|
size="sm"
|
||||||
size="lg"
|
variant="outline"
|
||||||
|
phx-click="scrobble_medium"
|
||||||
|
phx-value-medium_number={medium.number}
|
||||||
>
|
>
|
||||||
<.icon name="hero-play" class="h-4 w-4 mr-2" /> Scrobble Entire Release
|
<.icon name="hero-play" class="h-3 w-3 mr-1" /> {gettext("Scrobble Medium")}
|
||||||
</.button>
|
</.button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p class="text-xs text-gray-500 dark:text-gray-400 text-center">
|
<div class="space-y-1">
|
||||||
This will scrobble all tracks from all media in sequence
|
<div
|
||||||
</p>
|
:for={track <- medium.tracks}
|
||||||
|
class="flex justify-between items-center py-2 px-3 bg-gray-50 dark:bg-gray-800 rounded"
|
||||||
|
>
|
||||||
|
<div class="flex items-center gap-3">
|
||||||
|
<span class="text-xs text-gray-500 dark:text-gray-400 w-6 text-right">
|
||||||
|
{track.position}
|
||||||
|
</span>
|
||||||
|
<div class="min-w-0 flex-1">
|
||||||
|
<p class="font-medium text-sm text-gray-900 dark:text-gray-100 truncate">
|
||||||
|
{track.title}
|
||||||
|
</p>
|
||||||
|
<p
|
||||||
|
:if={track.artists != [] and track.artists != @release.artists}
|
||||||
|
class="text-xs text-gray-600 dark:text-gray-400 truncate"
|
||||||
|
>
|
||||||
|
{track.artists |> Enum.map(& &1.name) |> Enum.join(", ")}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<span
|
||||||
|
:if={track.length}
|
||||||
|
class="text-xs text-gray-500 dark:text-gray-400 font-mono"
|
||||||
|
>
|
||||||
|
{format_duration(track.length)}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div :if={@can_scrobble} class="lg:col-span-1">
|
||||||
|
<div class="bg-white dark:bg-zinc-800 shadow rounded-lg sticky top-6">
|
||||||
|
<div class="p-6">
|
||||||
|
<h3 class="text-lg font-semibold mb-4">{gettext("Scrobble Options")}</h3>
|
||||||
|
|
||||||
|
<.form
|
||||||
|
for={%{}}
|
||||||
|
as={:scrobble}
|
||||||
|
phx-change="update_scrobble_form"
|
||||||
|
class="space-y-4"
|
||||||
|
>
|
||||||
|
<.select
|
||||||
|
name="type"
|
||||||
|
label={gettext("Scrobble timing")}
|
||||||
|
value={@scrobble_form["type"]}
|
||||||
|
options={[
|
||||||
|
{gettext("Just finished listening"), "finished_at"},
|
||||||
|
{gettext("Started listening at"), "started_at"}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div :if={@scrobble_form["type"] == "finished_at"} class="space-y-2">
|
||||||
|
<.input
|
||||||
|
type="date"
|
||||||
|
name="finished_at_date"
|
||||||
|
label={gettext("Finished Date")}
|
||||||
|
value={@scrobble_form["finished_at_date"]}
|
||||||
|
/>
|
||||||
|
<.input
|
||||||
|
type="time"
|
||||||
|
name="finished_at_time"
|
||||||
|
label={gettext("Finished Time")}
|
||||||
|
value={@scrobble_form["finished_at_time"]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div :if={@scrobble_form["type"] != "finished_at"} class="space-y-2">
|
||||||
|
<.input
|
||||||
|
type="date"
|
||||||
|
name="started_at_date"
|
||||||
|
label={gettext("Started Date")}
|
||||||
|
value={@scrobble_form["started_at_date"]}
|
||||||
|
/>
|
||||||
|
<.input
|
||||||
|
type="time"
|
||||||
|
name="started_at_time"
|
||||||
|
label={gettext("Started Time")}
|
||||||
|
value={@scrobble_form["started_at_time"]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</.form>
|
||||||
|
|
||||||
|
<div class="space-y-3 mt-6">
|
||||||
|
<.button
|
||||||
|
phx-click="scrobble_release"
|
||||||
|
class="w-full"
|
||||||
|
size="lg"
|
||||||
|
>
|
||||||
|
<.icon name="hero-play" class="h-4 w-4 mr-2" /> {gettext(
|
||||||
|
"Scrobble Entire Release"
|
||||||
|
)}
|
||||||
|
</.button>
|
||||||
|
|
||||||
|
<p class="text-xs text-gray-500 dark:text-gray-400 text-center">
|
||||||
|
{gettext("This will scrobble all tracks from all media in sequence")}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Layouts.app>
|
</Layouts.app>
|
||||||
|
|||||||
@@ -630,6 +630,7 @@ msgid "Albums"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/release.ex
|
#: lib/music_library_web/components/release.ex
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
#: lib/music_library_web/live/stats_live/index.html.heex
|
#: lib/music_library_web/live/stats_live/index.html.heex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tracks"
|
msgid "Tracks"
|
||||||
@@ -1433,3 +1434,98 @@ msgstr[1] ""
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Releases for \"%{title}\""
|
msgid "Releases for \"%{title}\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Back to Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Barcode:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Catalog Number:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Country:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Finished Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Finished Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Just finished listening"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Loading release details..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Release Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Release Information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Scrobble Entire Release"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Scrobble Medium"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Scrobble Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Scrobble timing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Started Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Started Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Started listening at"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "This will scrobble all tracks from all media in sequence"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "You need to connect your Last.fm account to scrobble. Please set up your Last.fm session key in the settings."
|
||||||
|
msgstr ""
|
||||||
|
|||||||
@@ -630,6 +630,7 @@ msgid "Albums"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/release.ex
|
#: lib/music_library_web/components/release.ex
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
#: lib/music_library_web/live/stats_live/index.html.heex
|
#: lib/music_library_web/live/stats_live/index.html.heex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tracks"
|
msgid "Tracks"
|
||||||
@@ -1433,3 +1434,98 @@ msgstr[1] ""
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Releases for \"%{title}\""
|
msgid "Releases for \"%{title}\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Back to Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Barcode:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Catalog Number:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Country:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Finished Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Finished Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Just finished listening"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
|
msgid "Loading release details..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
|
msgid "Release Date:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Release Information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
|
msgid "Scrobble Entire Release"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
|
msgid "Scrobble Medium"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
|
msgid "Scrobble Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
|
msgid "Scrobble timing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Started Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Started Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Started listening at"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "This will scrobble all tracks from all media in sequence"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/music_library_web/live/scrobble_live/show.html.heex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "You need to connect your Last.fm account to scrobble. Please set up your Last.fm session key in the settings."
|
||||||
|
msgstr ""
|
||||||
|
|||||||
Reference in New Issue
Block a user