Rename FormComponent(s) to just Form
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
defmodule MusicLibraryWeb.RecordFormComponent do
|
defmodule MusicLibraryWeb.RecordForm do
|
||||||
use MusicLibraryWeb, :live_component
|
use MusicLibraryWeb, :live_component
|
||||||
|
|
||||||
import MusicLibraryWeb.RecordComponents,
|
import MusicLibraryWeb.RecordComponents,
|
||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
defmodule MusicLibraryWeb.ArtistLive.FormComponent do
|
defmodule MusicLibraryWeb.ArtistLive.Form do
|
||||||
use MusicLibraryWeb, :live_component
|
use MusicLibraryWeb, :live_component
|
||||||
|
|
||||||
import MusicLibraryWeb.ArtistComponents, only: [artist_image: 1]
|
import MusicLibraryWeb.ArtistComponents, only: [artist_image: 1]
|
||||||
@@ -261,7 +261,7 @@
|
|||||||
on_close={JS.patch(~p"/artists/#{@artist.musicbrainz_id}")}
|
on_close={JS.patch(~p"/artists/#{@artist.musicbrainz_id}")}
|
||||||
>
|
>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={MusicLibraryWeb.ArtistLive.FormComponent}
|
module={MusicLibraryWeb.ArtistLive.Form}
|
||||||
id={@artist_info.id}
|
id={@artist_info.id}
|
||||||
action={@live_action}
|
action={@live_action}
|
||||||
artist_info={@artist_info}
|
artist_info={@artist_info}
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ defmodule MusicLibraryWeb.CollectionLive.Index do
|
|||||||
end
|
end
|
||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
def handle_info({MusicLibraryWeb.RecordFormComponent, {:saved, _record}}, socket) do
|
def handle_info({MusicLibraryWeb.RecordForm, {:saved, _record}}, socket) do
|
||||||
{:noreply, load_and_assign_records(socket, socket.assigns.record_list_params)}
|
{:noreply, load_and_assign_records(socket, socket.assigns.record_list_params)}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -67,7 +67,7 @@
|
|||||||
on_close={JS.patch(back_path(@record_list_params))}
|
on_close={JS.patch(back_path(@record_list_params))}
|
||||||
>
|
>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={MusicLibraryWeb.RecordFormComponent}
|
module={MusicLibraryWeb.RecordForm}
|
||||||
id={@record.id}
|
id={@record.id}
|
||||||
action={@live_action}
|
action={@live_action}
|
||||||
show_purchased_at={true}
|
show_purchased_at={true}
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ defmodule MusicLibraryWeb.CollectionLive.Show do
|
|||||||
end
|
end
|
||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
def handle_info({MusicLibraryWeb.RecordFormComponent, {:saved, record}}, socket) do
|
def handle_info({MusicLibraryWeb.RecordForm, {:saved, record}}, socket) do
|
||||||
{:noreply, assign(socket, :record, record)}
|
{:noreply, assign(socket, :record, record)}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -349,7 +349,7 @@
|
|||||||
on_close={JS.patch(~p"/collection/#{@record}")}
|
on_close={JS.patch(~p"/collection/#{@record}")}
|
||||||
>
|
>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={MusicLibraryWeb.RecordFormComponent}
|
module={MusicLibraryWeb.RecordForm}
|
||||||
id={@record.id}
|
id={@record.id}
|
||||||
action={@live_action}
|
action={@live_action}
|
||||||
show_purchased_at={true}
|
show_purchased_at={true}
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
defmodule MusicLibraryWeb.OnlineStoreTemplateLive.FormComponent do
|
defmodule MusicLibraryWeb.OnlineStoreTemplateLive.Form do
|
||||||
use MusicLibraryWeb, :live_component
|
use MusicLibraryWeb, :live_component
|
||||||
|
|
||||||
alias MusicLibrary.Artists.Artist
|
alias MusicLibrary.Artists.Artist
|
||||||
@@ -37,7 +37,7 @@ defmodule MusicLibraryWeb.OnlineStoreTemplateLive.Index do
|
|||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
def handle_info(
|
def handle_info(
|
||||||
{MusicLibraryWeb.OnlineStoreTemplateLive.FormComponent, {:saved, template}},
|
{MusicLibraryWeb.OnlineStoreTemplateLive.Form, {:saved, template}},
|
||||||
socket
|
socket
|
||||||
) do
|
) do
|
||||||
{:noreply, stream_insert(socket, :templates, template)}
|
{:noreply, stream_insert(socket, :templates, template)}
|
||||||
|
|||||||
@@ -97,7 +97,7 @@
|
|||||||
on_close={JS.patch(~p"/online-store-templates")}
|
on_close={JS.patch(~p"/online-store-templates")}
|
||||||
>
|
>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={MusicLibraryWeb.OnlineStoreTemplateLive.FormComponent}
|
module={MusicLibraryWeb.OnlineStoreTemplateLive.Form}
|
||||||
id={@template.id || :new}
|
id={@template.id || :new}
|
||||||
title={@page_title}
|
title={@page_title}
|
||||||
action={@live_action}
|
action={@live_action}
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
defmodule MusicLibraryWeb.ScrobbleRulesLive.FormComponent do
|
defmodule MusicLibraryWeb.ScrobbleRulesLive.Form do
|
||||||
use MusicLibraryWeb, :live_component
|
use MusicLibraryWeb, :live_component
|
||||||
|
|
||||||
import Ecto.Changeset, only: [get_field: 2]
|
import Ecto.Changeset, only: [get_field: 2]
|
||||||
@@ -46,14 +46,14 @@ defmodule MusicLibraryWeb.ScrobbleRulesLive.Index do
|
|||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
def handle_info(
|
def handle_info(
|
||||||
{MusicLibraryWeb.ScrobbleRulesLive.FormComponent, {:created, scrobble_rule}},
|
{MusicLibraryWeb.ScrobbleRulesLive.Form, {:created, scrobble_rule}},
|
||||||
socket
|
socket
|
||||||
) do
|
) do
|
||||||
{:noreply, stream_insert(socket, :scrobble_rules, scrobble_rule, at: 0)}
|
{:noreply, stream_insert(socket, :scrobble_rules, scrobble_rule, at: 0)}
|
||||||
end
|
end
|
||||||
|
|
||||||
def handle_info(
|
def handle_info(
|
||||||
{MusicLibraryWeb.ScrobbleRulesLive.FormComponent, {:updated, scrobble_rule}},
|
{MusicLibraryWeb.ScrobbleRulesLive.Form, {:updated, scrobble_rule}},
|
||||||
socket
|
socket
|
||||||
) do
|
) do
|
||||||
{:noreply, stream_insert(socket, :scrobble_rules, scrobble_rule)}
|
{:noreply, stream_insert(socket, :scrobble_rules, scrobble_rule)}
|
||||||
|
|||||||
@@ -106,7 +106,7 @@
|
|||||||
on_close={JS.patch(~p"/scrobble-rules")}
|
on_close={JS.patch(~p"/scrobble-rules")}
|
||||||
>
|
>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={MusicLibraryWeb.ScrobbleRulesLive.FormComponent}
|
module={MusicLibraryWeb.ScrobbleRulesLive.Form}
|
||||||
id={@scrobble_rule.id || :new}
|
id={@scrobble_rule.id || :new}
|
||||||
title={@page_title}
|
title={@page_title}
|
||||||
action={@live_action}
|
action={@live_action}
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
defmodule MusicLibraryWeb.ScrobbledTracksLive.FormComponent do
|
defmodule MusicLibraryWeb.ScrobbledTracksLive.Form do
|
||||||
use MusicLibraryWeb, :live_component
|
use MusicLibraryWeb, :live_component
|
||||||
|
|
||||||
alias LastFm.Track
|
alias LastFm.Track
|
||||||
@@ -63,7 +63,7 @@ defmodule MusicLibraryWeb.ScrobbledTracksLive.Index do
|
|||||||
end
|
end
|
||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
def handle_info({MusicLibraryWeb.ScrobbledTracksLive.FormComponent, {:saved, _track}}, socket) do
|
def handle_info({MusicLibraryWeb.ScrobbledTracksLive.Form, {:saved, _track}}, socket) do
|
||||||
{:noreply, load_and_assign_tracks(socket, socket.assigns.track_list_params)}
|
{:noreply, load_and_assign_tracks(socket, socket.assigns.track_list_params)}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -152,7 +152,7 @@
|
|||||||
on_close={JS.patch(back_path(@track_list_params))}
|
on_close={JS.patch(back_path(@track_list_params))}
|
||||||
>
|
>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={MusicLibraryWeb.ScrobbledTracksLive.FormComponent}
|
module={MusicLibraryWeb.ScrobbledTracksLive.Form}
|
||||||
id={@track.scrobbled_at_uts}
|
id={@track.scrobbled_at_uts}
|
||||||
action={@live_action}
|
action={@live_action}
|
||||||
track={@track}
|
track={@track}
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ defmodule MusicLibraryWeb.WishlistLive.Index do
|
|||||||
end
|
end
|
||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
def handle_info({MusicLibraryWeb.RecordFormComponent, {:saved, _record}}, socket) do
|
def handle_info({MusicLibraryWeb.RecordForm, {:saved, _record}}, socket) do
|
||||||
{:noreply, load_and_assign_records(socket, socket.assigns.record_list_params)}
|
{:noreply, load_and_assign_records(socket, socket.assigns.record_list_params)}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -55,7 +55,7 @@
|
|||||||
on_close={JS.patch(back_path(@record_list_params))}
|
on_close={JS.patch(back_path(@record_list_params))}
|
||||||
>
|
>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={MusicLibraryWeb.RecordFormComponent}
|
module={MusicLibraryWeb.RecordForm}
|
||||||
id={@record.id}
|
id={@record.id}
|
||||||
action={@live_action}
|
action={@live_action}
|
||||||
show_purchased_at={false}
|
show_purchased_at={false}
|
||||||
|
|||||||
@@ -144,7 +144,7 @@ defmodule MusicLibraryWeb.WishlistLive.Show do
|
|||||||
end
|
end
|
||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
def handle_info({MusicLibraryWeb.RecordFormComponent, {:saved, record}}, socket) do
|
def handle_info({MusicLibraryWeb.RecordForm, {:saved, record}}, socket) do
|
||||||
{:noreply, assign(socket, :record, record)}
|
{:noreply, assign(socket, :record, record)}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -310,7 +310,7 @@
|
|||||||
on_close={JS.patch(~p"/wishlist/#{@record}")}
|
on_close={JS.patch(~p"/wishlist/#{@record}")}
|
||||||
>
|
>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={MusicLibraryWeb.RecordFormComponent}
|
module={MusicLibraryWeb.RecordForm}
|
||||||
id={@record.id}
|
id={@record.id}
|
||||||
action={@live_action}
|
action={@live_action}
|
||||||
show_purchased_at={false}
|
show_purchased_at={false}
|
||||||
|
|||||||
+68
-68
@@ -30,7 +30,7 @@ msgstr ""
|
|||||||
msgid "Collection"
|
msgid "Collection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Cover art"
|
msgid "Cover art"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -66,7 +66,7 @@ msgstr ""
|
|||||||
msgid "Error importing record"
|
msgid "Error importing record"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -109,7 +109,7 @@ msgstr ""
|
|||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/show.html.heex
|
#: lib/music_library_web/live/artist_live/show.html.heex
|
||||||
#: lib/music_library_web/live/collection_live/show.html.heex
|
#: lib/music_library_web/live/collection_live/show.html.heex
|
||||||
#: lib/music_library_web/live/wishlist_live/show.html.heex
|
#: lib/music_library_web/live/wishlist_live/show.html.heex
|
||||||
@@ -142,7 +142,7 @@ msgstr ""
|
|||||||
msgid "Purchase"
|
msgid "Purchase"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased at"
|
msgid "Purchased at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -159,24 +159,24 @@ msgstr ""
|
|||||||
msgid "Record imported successfully"
|
msgid "Record imported successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Record updated successfully"
|
msgid "Record updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/notes_component.ex
|
#: lib/music_library_web/components/notes_component.ex
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/notes_component.ex
|
#: lib/music_library_web/components/notes_component.ex
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -203,7 +203,7 @@ msgstr ""
|
|||||||
msgid "The application has been updated, please reload."
|
msgid "The application has been updated, please reload."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -428,7 +428,7 @@ msgid "Unreleased"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_components.ex
|
#: lib/music_library_web/components/record_components.ex
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/index.ex
|
#: lib/music_library_web/live/scrobble_rules_live/index.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -560,20 +560,20 @@ msgstr ""
|
|||||||
msgid "Similar artists"
|
msgid "Similar artists"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "PNG, JPG, WEBP up to 8MB"
|
msgid "PNG, JPG, WEBP up to 8MB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Upload a file"
|
msgid "Upload a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "or drag and drop"
|
msgid "or drag and drop"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -691,7 +691,7 @@ msgstr ""
|
|||||||
msgid "Top %{n} Genres"
|
msgid "Top %{n} Genres"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Release Date"
|
msgid "Release Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -707,7 +707,7 @@ msgstr ""
|
|||||||
msgid "No release selected"
|
msgid "No release selected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Selected Release"
|
msgid "Selected Release"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -950,13 +950,13 @@ msgstr ""
|
|||||||
msgid "Track ID:"
|
msgid "Track ID:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Add a description to help identify this rule"
|
msgid "Add a description to help identify this rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Album Title"
|
msgid "Album Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -966,21 +966,21 @@ msgstr ""
|
|||||||
msgid "All rules applied successfully. Updated %{count} tracks total."
|
msgid "All rules applied successfully. Updated %{count} tracks total."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/index.ex
|
#: lib/music_library_web/live/scrobble_rules_live/index.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Artist Name"
|
msgid "Artist Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Description (optional)"
|
msgid "Description (optional)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -990,12 +990,12 @@ msgstr ""
|
|||||||
msgid "Edit Scrobble Rule"
|
msgid "Edit Scrobble Rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Enable this rule"
|
msgid "Enable this rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Enter the value to match"
|
msgid "Enter the value to match"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1005,7 +1005,7 @@ msgstr ""
|
|||||||
msgid "Error applying rule: %{reason}"
|
msgid "Error applying rule: %{reason}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Match Value"
|
msgid "Match Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1020,7 +1020,7 @@ msgstr ""
|
|||||||
msgid "New Scrobble Rule"
|
msgid "New Scrobble Rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rule Type"
|
msgid "Rule Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1030,7 +1030,7 @@ msgstr ""
|
|||||||
msgid "Rule applied successfully. Updated %{count} tracks."
|
msgid "Rule applied successfully. Updated %{count} tracks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save Rule"
|
msgid "Save Rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1042,32 +1042,32 @@ msgstr ""
|
|||||||
msgid "Scrobble Rules"
|
msgid "Scrobble Rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Scrobble rule created successfully"
|
msgid "Scrobble rule created successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Scrobble rule updated successfully"
|
msgid "Scrobble rule updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a rule type"
|
msgid "Select a rule type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Target MusicBrainz ID"
|
msgid "Target MusicBrainz ID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "e.g. Pink Floyd"
|
msgid "e.g. Pink Floyd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "e.g. The Dark Side of the Moon"
|
msgid "e.g. The Dark Side of the Moon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1126,12 +1126,12 @@ msgstr[1] ""
|
|||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Artist image"
|
msgid "Artist image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Artist updated successfully"
|
msgid "Artist updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1146,7 +1146,7 @@ msgstr ""
|
|||||||
msgid "Copy record selected release ID to clipboard"
|
msgid "Copy record selected release ID to clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Dominant Colors"
|
msgid "Dominant Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1156,7 +1156,7 @@ msgstr ""
|
|||||||
msgid "Apply All"
|
msgid "Apply All"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@@ -1167,17 +1167,17 @@ msgstr ""
|
|||||||
msgid "Wishlisted release"
|
msgid "Wishlisted release"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Add a description to help identify this template"
|
msgid "Add a description to help identify this template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Artist name(s)"
|
msgid "Artist name(s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Available Variables"
|
msgid "Available Variables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1187,7 +1187,7 @@ msgstr ""
|
|||||||
msgid "Check Online Stores"
|
msgid "Check Online Stores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Enable this template"
|
msgid "Enable this template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1198,52 +1198,52 @@ msgstr ""
|
|||||||
msgid "Online Store Templates"
|
msgid "Online Store Templates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Online store template created successfully"
|
msgid "Online store template created successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Online store template updated successfully"
|
msgid "Online store template updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Record title"
|
msgid "Record title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save Template"
|
msgid "Save Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Template Name"
|
msgid "Template Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "URL Template"
|
msgid "URL Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "e.g. Amazon UK"
|
msgid "e.g. Amazon UK"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "e.g. https://www.amazon.co.uk/s?k={artist}+{title}+vinyl"
|
msgid "e.g. https://www.amazon.co.uk/s?k={artist}+{title}+vinyl"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Record format"
|
msgid "Record format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview not available"
|
msgid "Preview not available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1280,7 +1280,7 @@ msgstr ""
|
|||||||
msgid "90 days"
|
msgid "90 days"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rotate colors"
|
msgid "Rotate colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1312,22 +1312,22 @@ msgstr ""
|
|||||||
msgid "No records released on this day."
|
msgid "No records released on this day."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Album name"
|
msgid "Album name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Artist name"
|
msgid "Artist name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Cover Image URL (optional)"
|
msgid "Cover Image URL (optional)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit Scrobbled Track"
|
msgid "Edit Scrobbled Track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1353,22 +1353,22 @@ msgstr ""
|
|||||||
msgid "Scrobbled Tracks"
|
msgid "Scrobbled Tracks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Track Title"
|
msgid "Track Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Track name"
|
msgid "Track name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Track updated successfully"
|
msgid "Track updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Update Track"
|
msgid "Update Track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ msgstr ""
|
|||||||
msgid "Collection"
|
msgid "Collection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Cover art"
|
msgid "Cover art"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -66,7 +66,7 @@ msgstr ""
|
|||||||
msgid "Error importing record"
|
msgid "Error importing record"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -109,7 +109,7 @@ msgstr ""
|
|||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/show.html.heex
|
#: lib/music_library_web/live/artist_live/show.html.heex
|
||||||
#: lib/music_library_web/live/collection_live/show.html.heex
|
#: lib/music_library_web/live/collection_live/show.html.heex
|
||||||
#: lib/music_library_web/live/wishlist_live/show.html.heex
|
#: lib/music_library_web/live/wishlist_live/show.html.heex
|
||||||
@@ -142,7 +142,7 @@ msgstr ""
|
|||||||
msgid "Purchase"
|
msgid "Purchase"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased at"
|
msgid "Purchased at"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -159,24 +159,24 @@ msgstr ""
|
|||||||
msgid "Record imported successfully"
|
msgid "Record imported successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Record updated successfully"
|
msgid "Record updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/notes_component.ex
|
#: lib/music_library_web/components/notes_component.ex
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/notes_component.ex
|
#: lib/music_library_web/components/notes_component.ex
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -203,7 +203,7 @@ msgstr ""
|
|||||||
msgid "The application has been updated, please reload."
|
msgid "The application has been updated, please reload."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -428,7 +428,7 @@ msgid "Unreleased"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_components.ex
|
#: lib/music_library_web/components/record_components.ex
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/index.ex
|
#: lib/music_library_web/live/scrobble_rules_live/index.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -560,20 +560,20 @@ msgstr ""
|
|||||||
msgid "Similar artists"
|
msgid "Similar artists"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "PNG, JPG, WEBP up to 8MB"
|
msgid "PNG, JPG, WEBP up to 8MB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Upload a file"
|
msgid "Upload a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "or drag and drop"
|
msgid "or drag and drop"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -691,7 +691,7 @@ msgstr ""
|
|||||||
msgid "Top %{n} Genres"
|
msgid "Top %{n} Genres"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Release Date"
|
msgid "Release Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -707,7 +707,7 @@ msgstr ""
|
|||||||
msgid "No release selected"
|
msgid "No release selected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Selected Release"
|
msgid "Selected Release"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -950,13 +950,13 @@ msgstr ""
|
|||||||
msgid "Track ID:"
|
msgid "Track ID:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Add a description to help identify this rule"
|
msgid "Add a description to help identify this rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Album Title"
|
msgid "Album Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -966,21 +966,21 @@ msgstr ""
|
|||||||
msgid "All rules applied successfully. Updated %{count} tracks total."
|
msgid "All rules applied successfully. Updated %{count} tracks total."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/index.ex
|
#: lib/music_library_web/live/scrobble_rules_live/index.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Artist Name"
|
msgid "Artist Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Description (optional)"
|
msgid "Description (optional)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -990,12 +990,12 @@ msgstr ""
|
|||||||
msgid "Edit Scrobble Rule"
|
msgid "Edit Scrobble Rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Enable this rule"
|
msgid "Enable this rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Enter the value to match"
|
msgid "Enter the value to match"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1005,7 +1005,7 @@ msgstr ""
|
|||||||
msgid "Error applying rule: %{reason}"
|
msgid "Error applying rule: %{reason}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Match Value"
|
msgid "Match Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1020,7 +1020,7 @@ msgstr ""
|
|||||||
msgid "New Scrobble Rule"
|
msgid "New Scrobble Rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rule Type"
|
msgid "Rule Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1030,7 +1030,7 @@ msgstr ""
|
|||||||
msgid "Rule applied successfully. Updated %{count} tracks."
|
msgid "Rule applied successfully. Updated %{count} tracks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Save Rule"
|
msgid "Save Rule"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1042,32 +1042,32 @@ msgstr ""
|
|||||||
msgid "Scrobble Rules"
|
msgid "Scrobble Rules"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Scrobble rule created successfully"
|
msgid "Scrobble rule created successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Scrobble rule updated successfully"
|
msgid "Scrobble rule updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a rule type"
|
msgid "Select a rule type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Target MusicBrainz ID"
|
msgid "Target MusicBrainz ID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "e.g. Pink Floyd"
|
msgid "e.g. Pink Floyd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobble_rules_live/form_component.ex
|
#: lib/music_library_web/live/scrobble_rules_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "e.g. The Dark Side of the Moon"
|
msgid "e.g. The Dark Side of the Moon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1126,12 +1126,12 @@ msgstr[1] ""
|
|||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Artist image"
|
msgid "Artist image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/artist_live/form_component.ex
|
#: lib/music_library_web/live/artist_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Artist updated successfully"
|
msgid "Artist updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1146,7 +1146,7 @@ msgstr ""
|
|||||||
msgid "Copy record selected release ID to clipboard"
|
msgid "Copy record selected release ID to clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Dominant Colors"
|
msgid "Dominant Colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1156,7 +1156,7 @@ msgstr ""
|
|||||||
msgid "Apply All"
|
msgid "Apply All"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
#: lib/music_library_web/live/scrobbled_tracks_live/index.html.heex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
@@ -1167,17 +1167,17 @@ msgstr ""
|
|||||||
msgid "Wishlisted release"
|
msgid "Wishlisted release"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Add a description to help identify this template"
|
msgid "Add a description to help identify this template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Artist name(s)"
|
msgid "Artist name(s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Available Variables"
|
msgid "Available Variables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1187,7 +1187,7 @@ msgstr ""
|
|||||||
msgid "Check Online Stores"
|
msgid "Check Online Stores"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Enable this template"
|
msgid "Enable this template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1198,52 +1198,52 @@ msgstr ""
|
|||||||
msgid "Online Store Templates"
|
msgid "Online Store Templates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Online store template created successfully"
|
msgid "Online store template created successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Online store template updated successfully"
|
msgid "Online store template updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Record title"
|
msgid "Record title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save Template"
|
msgid "Save Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Template Name"
|
msgid "Template Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "URL Template"
|
msgid "URL Template"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "e.g. Amazon UK"
|
msgid "e.g. Amazon UK"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "e.g. https://www.amazon.co.uk/s?k={artist}+{title}+vinyl"
|
msgid "e.g. https://www.amazon.co.uk/s?k={artist}+{title}+vinyl"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Record format"
|
msgid "Record format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/online_store_template_live/form_component.ex
|
#: lib/music_library_web/live/online_store_template_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview not available"
|
msgid "Preview not available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1280,7 +1280,7 @@ msgstr ""
|
|||||||
msgid "90 days"
|
msgid "90 days"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/components/record_form_component.ex
|
#: lib/music_library_web/components/record_form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rotate colors"
|
msgid "Rotate colors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1312,22 +1312,22 @@ msgstr ""
|
|||||||
msgid "No records released on this day."
|
msgid "No records released on this day."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Album name"
|
msgid "Album name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Artist name"
|
msgid "Artist name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Cover Image URL (optional)"
|
msgid "Cover Image URL (optional)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Edit Scrobbled Track"
|
msgid "Edit Scrobbled Track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1353,22 +1353,22 @@ msgstr ""
|
|||||||
msgid "Scrobbled Tracks"
|
msgid "Scrobbled Tracks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Track Title"
|
msgid "Track Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Track name"
|
msgid "Track name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Track updated successfully"
|
msgid "Track updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/music_library_web/live/scrobbled_tracks_live/form_component.ex
|
#: lib/music_library_web/live/scrobbled_tracks_live/form.ex
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Update Track"
|
msgid "Update Track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
Reference in New Issue
Block a user