feat: vi-style / search in the TUI sidebar with tag:, category: and ISO-date filters (issue #31)
This commit is contained in:
114
lib/bds/tui.ex
114
lib/bds/tui.ex
@@ -13,7 +13,9 @@ defmodule BDS.TUI do
|
|||||||
`1..5` switch view (posts/media/templates/scripts/tags), `r` refresh,
|
`1..5` switch view (posts/media/templates/scripts/tags), `r` refresh,
|
||||||
`p` projects overlay (switch the active project or open an existing
|
`p` projects overlay (switch the active project or open an existing
|
||||||
blog folder by path, with bash-style tab completion — opening one
|
blog folder by path, with bash-style tab completion — opening one
|
||||||
queues a full database rebuild),
|
queues a full database rebuild), `/` vi-style search that live-filters
|
||||||
|
the current view (plain text, `tag:x`, `category:x`, or an ISO date
|
||||||
|
`yyyy-mm-dd`; enter keeps the filter, esc clears it),
|
||||||
`:` vi-style command prompt over the Blog-menu shell commands, `?`
|
`:` vi-style command prompt over the Blog-menu shell commands, `?`
|
||||||
command help (commands whose report/apply UI is GUI-only are marked).
|
command help (commands whose report/apply UI is GUI-only are marked).
|
||||||
Editor focus: text keys edit, `ctrl+s` save, `ctrl+p` publish,
|
Editor focus: text keys edit, `ctrl+s` save, `ctrl+p` publish,
|
||||||
@@ -59,6 +61,8 @@ defmodule BDS.TUI do
|
|||||||
task_snapshot_fun: Keyword.get(opts, :task_snapshot_fun, &BDS.Tasks.status_snapshot/0),
|
task_snapshot_fun: Keyword.get(opts, :task_snapshot_fun, &BDS.Tasks.status_snapshot/0),
|
||||||
command: nil,
|
command: nil,
|
||||||
projects: nil,
|
projects: nil,
|
||||||
|
search: nil,
|
||||||
|
filters_by_view: %{},
|
||||||
report: nil,
|
report: nil,
|
||||||
handled_task_ids: nil,
|
handled_task_ids: nil,
|
||||||
task_polling: false,
|
task_polling: false,
|
||||||
@@ -118,6 +122,10 @@ defmodule BDS.TUI do
|
|||||||
when projects != nil,
|
when projects != nil,
|
||||||
do: projects_key(key, state)
|
do: projects_key(key, state)
|
||||||
|
|
||||||
|
def handle_event(%ExRatatui.Event.Key{kind: "press"} = key, %{search: search} = state)
|
||||||
|
when search != nil,
|
||||||
|
do: search_key(key, state)
|
||||||
|
|
||||||
def handle_event(%ExRatatui.Event.Key{code: "esc"}, %{image: image} = state)
|
def handle_event(%ExRatatui.Event.Key{code: "esc"}, %{image: image} = state)
|
||||||
when image != nil,
|
when image != nil,
|
||||||
do: {:noreply, %{state | image: nil}}
|
do: {:noreply, %{state | image: nil}}
|
||||||
@@ -148,6 +156,9 @@ defmodule BDS.TUI do
|
|||||||
defp sidebar_key(%{code: ":"}, state),
|
defp sidebar_key(%{code: ":"}, state),
|
||||||
do: {:noreply, %{state | command: %{input: "", selected: 0, help?: false}}}
|
do: {:noreply, %{state | command: %{input: "", selected: 0, help?: false}}}
|
||||||
|
|
||||||
|
defp sidebar_key(%{code: "/"}, state),
|
||||||
|
do: {:noreply, %{state | search: %{input: Map.get(state.filters_by_view, state.view, "")}}}
|
||||||
|
|
||||||
defp sidebar_key(%{code: "p"}, state) do
|
defp sidebar_key(%{code: "p"}, state) do
|
||||||
snapshot = Projects.shell_snapshot()
|
snapshot = Projects.shell_snapshot()
|
||||||
selected = Enum.find_index(snapshot.projects, & &1.is_active) || 0
|
selected = Enum.find_index(snapshot.projects, & &1.is_active) || 0
|
||||||
@@ -258,6 +269,86 @@ defmodule BDS.TUI do
|
|||||||
|
|
||||||
defp apply_report(state, _report), do: state
|
defp apply_report(state, _report), do: state
|
||||||
|
|
||||||
|
# ── Events: sidebar search (vi-style "/") ─────────────────────────────────
|
||||||
|
|
||||||
|
# The prompt lives in the status line and filters the current view live
|
||||||
|
# on every keystroke. Esc clears the view's filter, enter keeps it (the
|
||||||
|
# active filter stays visible in the sidebar title).
|
||||||
|
defp search_key(%{code: "esc"}, state) do
|
||||||
|
state = %{state | search: nil, filters_by_view: Map.delete(state.filters_by_view, state.view)}
|
||||||
|
{:noreply, load_sidebar(state)}
|
||||||
|
end
|
||||||
|
|
||||||
|
defp search_key(%{code: "enter"}, state), do: {:noreply, %{state | search: nil}}
|
||||||
|
|
||||||
|
defp search_key(%{code: "backspace"}, %{search: search} = state),
|
||||||
|
do: {:noreply, apply_search(state, String.slice(search.input, 0..-2//1))}
|
||||||
|
|
||||||
|
defp search_key(%{code: code, modifiers: []}, %{search: search} = state)
|
||||||
|
when byte_size(code) >= 1 do
|
||||||
|
if String.length(code) == 1 do
|
||||||
|
{:noreply, apply_search(state, search.input <> code)}
|
||||||
|
else
|
||||||
|
{:noreply, state}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
defp search_key(_key, state), do: {:noreply, state}
|
||||||
|
|
||||||
|
defp apply_search(state, input) do
|
||||||
|
filters_by_view =
|
||||||
|
case String.trim(input) do
|
||||||
|
"" -> Map.delete(state.filters_by_view, state.view)
|
||||||
|
_some -> Map.put(state.filters_by_view, state.view, input)
|
||||||
|
end
|
||||||
|
|
||||||
|
load_sidebar(%{
|
||||||
|
state
|
||||||
|
| search: %{input: input},
|
||||||
|
filters_by_view: filters_by_view,
|
||||||
|
selected: 0
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
# "/" query syntax: plain words are a text search, "tag:x" and
|
||||||
|
# "category:x" filter exactly like the GUI filter chips, and an ISO date
|
||||||
|
# (yyyy-mm-dd) narrows to that day. Tokens combine with AND.
|
||||||
|
defp parse_search_query(query) do
|
||||||
|
initial = %{words: [], tags: [], categories: [], date: nil}
|
||||||
|
|
||||||
|
parsed =
|
||||||
|
query
|
||||||
|
|> String.split()
|
||||||
|
|> Enum.reduce(initial, fn token, acc ->
|
||||||
|
cond do
|
||||||
|
String.starts_with?(token, "tag:") ->
|
||||||
|
add_filter_token(acc, :tags, String.replace_prefix(token, "tag:", ""))
|
||||||
|
|
||||||
|
String.starts_with?(token, "category:") ->
|
||||||
|
add_filter_token(acc, :categories, String.replace_prefix(token, "category:", ""))
|
||||||
|
|
||||||
|
match?({:ok, _date}, Date.from_iso8601(token)) ->
|
||||||
|
{:ok, date} = Date.from_iso8601(token)
|
||||||
|
%{acc | date: date}
|
||||||
|
|
||||||
|
true ->
|
||||||
|
%{acc | words: acc.words ++ [token]}
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
|
%{
|
||||||
|
search: if(parsed.words == [], do: nil, else: Enum.join(parsed.words, " ")),
|
||||||
|
tags: parsed.tags,
|
||||||
|
categories: parsed.categories,
|
||||||
|
year: parsed.date && parsed.date.year,
|
||||||
|
month: parsed.date && parsed.date.month,
|
||||||
|
day: parsed.date && parsed.date.day
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
defp add_filter_token(acc, _key, ""), do: acc
|
||||||
|
defp add_filter_token(acc, key, value), do: Map.update!(acc, key, &(&1 ++ [value]))
|
||||||
|
|
||||||
# ── Events: projects overlay (switch / open existing) ────────────────────
|
# ── Events: projects overlay (switch / open existing) ────────────────────
|
||||||
|
|
||||||
defp projects_key(%{code: "esc"}, %{projects: %{mode: :open} = projects} = state),
|
defp projects_key(%{code: "esc"}, %{projects: %{mode: :open} = projects} = state),
|
||||||
@@ -685,11 +776,18 @@ defmodule BDS.TUI do
|
|||||||
do: %Style{fg: :black, bg: :cyan},
|
do: %Style{fg: :black, bg: :cyan},
|
||||||
else: %Style{modifiers: [:bold]}
|
else: %Style{modifiers: [:bold]}
|
||||||
),
|
),
|
||||||
block: %Block{title: view_label(state.view), borders: [:all]}
|
block: %Block{title: sidebar_title(state), borders: [:all]}
|
||||||
}, rect}
|
}, rect}
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
defp sidebar_title(state) do
|
||||||
|
case Map.get(state.filters_by_view, state.view) do
|
||||||
|
nil -> view_label(state.view)
|
||||||
|
query -> view_label(state.view) <> " /" <> query
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# The List widget requires selected: nil when the collection is empty
|
# The List widget requires selected: nil when the collection is empty
|
||||||
# and raises otherwise — clamp every dynamic list through this.
|
# and raises otherwise — clamp every dynamic list through this.
|
||||||
defp list_selected([], _selected), do: nil
|
defp list_selected([], _selected), do: nil
|
||||||
@@ -761,6 +859,7 @@ defmodule BDS.TUI do
|
|||||||
defp status_widgets(state, rect) do
|
defp status_widgets(state, rect) do
|
||||||
text =
|
text =
|
||||||
cond do
|
cond do
|
||||||
|
state.search -> "/" <> state.search.input
|
||||||
state.busy -> dgettext("ui", "Working…")
|
state.busy -> dgettext("ui", "Working…")
|
||||||
state.status -> state.status
|
state.status -> state.status
|
||||||
true -> default_status(state)
|
true -> default_status(state)
|
||||||
@@ -1021,7 +1120,7 @@ defmodule BDS.TUI do
|
|||||||
do:
|
do:
|
||||||
dgettext(
|
dgettext(
|
||||||
"ui",
|
"ui",
|
||||||
"enter open · n new post · 1-5 views · p projects · : commands (:? help) · r refresh · ctrl+q quit"
|
"enter open · n new post · 1-5 views · p projects · / search · : commands (:? help) · r refresh · ctrl+q quit"
|
||||||
)
|
)
|
||||||
|
|
||||||
defp default_status(%{focus: :editor}),
|
defp default_status(%{focus: :editor}),
|
||||||
@@ -1034,7 +1133,7 @@ defmodule BDS.TUI do
|
|||||||
# ── Sidebar data ─────────────────────────────────────────────────────────
|
# ── Sidebar data ─────────────────────────────────────────────────────────
|
||||||
|
|
||||||
defp load_sidebar(state) do
|
defp load_sidebar(state) do
|
||||||
view = Sidebar.view(state.project_id, state.view)
|
view = Sidebar.view(state.project_id, state.view, search_filter_params(state))
|
||||||
items = flatten_items(view, state.view)
|
items = flatten_items(view, state.view)
|
||||||
|
|
||||||
selected =
|
selected =
|
||||||
@@ -1046,6 +1145,13 @@ defmodule BDS.TUI do
|
|||||||
%{state | sidebar: view, items: items, selected: selected}
|
%{state | sidebar: view, items: items, selected: selected}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
defp search_filter_params(state) do
|
||||||
|
case Map.get(state.filters_by_view, state.view) do
|
||||||
|
nil -> %{}
|
||||||
|
query -> parse_search_query(query)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
defp flatten_items(view, route) do
|
defp flatten_items(view, route) do
|
||||||
sections =
|
sections =
|
||||||
cond do
|
cond do
|
||||||
|
|||||||
@@ -363,6 +363,7 @@ defmodule BDS.UI.Sidebar do
|
|||||||
|> maybe_where_search(filters.search)
|
|> maybe_where_search(filters.search)
|
||||||
|> maybe_where_year(filters.year)
|
|> maybe_where_year(filters.year)
|
||||||
|> maybe_where_month(filters.month)
|
|> maybe_where_month(filters.month)
|
||||||
|
|> maybe_where_day(filters.day)
|
||||||
|> maybe_where_all_tags(filters.tags)
|
|> maybe_where_all_tags(filters.tags)
|
||||||
|> maybe_where_all_categories(filters.categories)
|
|> maybe_where_all_categories(filters.categories)
|
||||||
end
|
end
|
||||||
@@ -424,6 +425,25 @@ defmodule BDS.UI.Sidebar do
|
|||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Day-of-month filter used by the TUI's ISO-date search (yyyy-mm-dd);
|
||||||
|
# always combined with year and month by the caller.
|
||||||
|
defp maybe_where_day(query, nil), do: query
|
||||||
|
|
||||||
|
defp maybe_where_day(query, day) do
|
||||||
|
day_str = String.pad_leading(to_string(day), 2, "0")
|
||||||
|
|
||||||
|
where(
|
||||||
|
query,
|
||||||
|
[p],
|
||||||
|
fragment(
|
||||||
|
"strftime('%d', datetime(COALESCE(?, ?) / 1000, 'unixepoch')) = ?",
|
||||||
|
p.published_at,
|
||||||
|
p.updated_at,
|
||||||
|
^day_str
|
||||||
|
)
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
defp maybe_where_all_tags(query, []), do: query
|
defp maybe_where_all_tags(query, []), do: query
|
||||||
|
|
||||||
defp maybe_where_all_tags(query, tags), do: where_all_in_json_array(query, tags, :tags)
|
defp maybe_where_all_tags(query, tags), do: where_all_in_json_array(query, tags, :tags)
|
||||||
@@ -609,6 +629,7 @@ defmodule BDS.UI.Sidebar do
|
|||||||
|> maybe_where_media_search(filters.search)
|
|> maybe_where_media_search(filters.search)
|
||||||
|> maybe_where_media_year(filters.year)
|
|> maybe_where_media_year(filters.year)
|
||||||
|> maybe_where_media_month(filters.month)
|
|> maybe_where_media_month(filters.month)
|
||||||
|
|> maybe_where_media_day(filters.day)
|
||||||
|> maybe_where_all_media_tags(filters.tags)
|
|> maybe_where_all_media_tags(filters.tags)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -667,6 +688,22 @@ defmodule BDS.UI.Sidebar do
|
|||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
defp maybe_where_media_day(query, nil), do: query
|
||||||
|
|
||||||
|
defp maybe_where_media_day(query, day) do
|
||||||
|
day_str = String.pad_leading(to_string(day), 2, "0")
|
||||||
|
|
||||||
|
where(
|
||||||
|
query,
|
||||||
|
[m],
|
||||||
|
fragment(
|
||||||
|
"strftime('%d', datetime(? / 1000, 'unixepoch')) = ?",
|
||||||
|
m.updated_at,
|
||||||
|
^day_str
|
||||||
|
)
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
defp maybe_where_all_media_tags(query, []), do: query
|
defp maybe_where_all_media_tags(query, []), do: query
|
||||||
|
|
||||||
defp maybe_where_all_media_tags(query, tags),
|
defp maybe_where_all_media_tags(query, tags),
|
||||||
@@ -1028,6 +1065,7 @@ defmodule BDS.UI.Sidebar do
|
|||||||
search: normalize_string(BDS.MapUtils.attr(params, :search)),
|
search: normalize_string(BDS.MapUtils.attr(params, :search)),
|
||||||
year: normalize_integer(BDS.MapUtils.attr(params, :year)),
|
year: normalize_integer(BDS.MapUtils.attr(params, :year)),
|
||||||
month: normalize_integer(BDS.MapUtils.attr(params, :month)),
|
month: normalize_integer(BDS.MapUtils.attr(params, :month)),
|
||||||
|
day: normalize_integer(BDS.MapUtils.attr(params, :day)),
|
||||||
tags: normalize_string_list(BDS.MapUtils.attr(params, :tags)),
|
tags: normalize_string_list(BDS.MapUtils.attr(params, :tags)),
|
||||||
categories: normalize_string_list(BDS.MapUtils.attr(params, :categories)),
|
categories: normalize_string_list(BDS.MapUtils.attr(params, :categories)),
|
||||||
display_limit:
|
display_limit:
|
||||||
@@ -1045,6 +1083,7 @@ defmodule BDS.UI.Sidebar do
|
|||||||
search: nil,
|
search: nil,
|
||||||
year: nil,
|
year: nil,
|
||||||
month: nil,
|
month: nil,
|
||||||
|
day: nil,
|
||||||
tags: [],
|
tags: [],
|
||||||
categories: [],
|
categories: [],
|
||||||
display_limit: @default_page_size
|
display_limit: @default_page_size
|
||||||
@@ -1052,8 +1091,8 @@ defmodule BDS.UI.Sidebar do
|
|||||||
end
|
end
|
||||||
|
|
||||||
defp filter_active?(filters) do
|
defp filter_active?(filters) do
|
||||||
present?(filters.search) or not is_nil(filters.year) or filters.tags != [] or
|
present?(filters.search) or not is_nil(filters.year) or not is_nil(filters.day) or
|
||||||
filters.categories != []
|
filters.tags != [] or filters.categories != []
|
||||||
end
|
end
|
||||||
|
|
||||||
defp post_search_blob(post) do
|
defp post_search_blob(post) do
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#: lib/bds/rendering/labels.ex:18
|
#: lib/bds/rendering/labels.ex:18
|
||||||
#: lib/bds/ui/sidebar.ex:288
|
#: lib/bds/ui/sidebar.ex:288
|
||||||
#: lib/bds/ui/sidebar.ex:566
|
#: lib/bds/ui/sidebar.ex:586
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "Archiv"
|
msgstr "Archiv"
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ msgid "--"
|
|||||||
msgstr "--"
|
msgstr "--"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
||||||
#: lib/bds/ui/sidebar.ex:765
|
#: lib/bds/ui/sidebar.ex:802
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI"
|
msgid "AI"
|
||||||
msgstr "KI"
|
msgstr "KI"
|
||||||
@@ -81,11 +81,11 @@ msgstr "KI-Einstellungen"
|
|||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#: lib/bds/tui.ex:570
|
#: lib/bds/tui.ex:661
|
||||||
#: lib/bds/tui.ex:578
|
#: lib/bds/tui.ex:669
|
||||||
#: lib/bds/tui.ex:1203
|
#: lib/bds/tui.ex:1309
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
msgstr "KI-Vorschlaege"
|
msgstr "KI-Vorschlaege"
|
||||||
@@ -527,7 +527,7 @@ msgid "Clear categories"
|
|||||||
msgstr "Kategorien löschen"
|
msgstr "Kategorien löschen"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:293
|
#: lib/bds/ui/sidebar.ex:293
|
||||||
#: lib/bds/ui/sidebar.ex:569
|
#: lib/bds/ui/sidebar.ex:589
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr "Filter löschen"
|
msgstr "Filter löschen"
|
||||||
@@ -539,7 +539,7 @@ msgid "Clear mapping"
|
|||||||
msgstr "Zuordnung entfernen"
|
msgstr "Zuordnung entfernen"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:291
|
#: lib/bds/ui/sidebar.ex:291
|
||||||
#: lib/bds/ui/sidebar.ex:568
|
#: lib/bds/ui/sidebar.ex:588
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear tags"
|
msgid "Clear tags"
|
||||||
msgstr "Tags löschen"
|
msgstr "Tags löschen"
|
||||||
@@ -572,7 +572,7 @@ msgid "Collapse unchanged diff hunks"
|
|||||||
msgstr "Unveränderte Diff-Blöcke einklappen"
|
msgstr "Unveränderte Diff-Blöcke einklappen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
||||||
#: lib/bds/tui.ex:1299
|
#: lib/bds/tui.ex:1405
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr "Befehl abgeschlossen"
|
msgstr "Befehl abgeschlossen"
|
||||||
@@ -590,8 +590,8 @@ msgstr "Bestaetigen"
|
|||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
||||||
#: lib/bds/tui.ex:747
|
#: lib/bds/tui.ex:845
|
||||||
#: lib/bds/ui/sidebar.ex:764
|
#: lib/bds/ui/sidebar.ex:801
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Inhalte"
|
msgstr "Inhalte"
|
||||||
@@ -632,7 +632,7 @@ msgid "Create"
|
|||||||
msgstr "Erstellen"
|
msgstr "Erstellen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
||||||
#: lib/bds/ui/sidebar.ex:749
|
#: lib/bds/ui/sidebar.ex:786
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create / Edit"
|
msgid "Create / Edit"
|
||||||
msgstr "Erstellen / Bearbeiten"
|
msgstr "Erstellen / Bearbeiten"
|
||||||
@@ -678,7 +678,7 @@ msgstr "Dunkel"
|
|||||||
msgid "Dashboard"
|
msgid "Dashboard"
|
||||||
msgstr "Instrumententafel"
|
msgstr "Instrumententafel"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:778
|
#: lib/bds/ui/sidebar.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr "Daten"
|
msgstr "Daten"
|
||||||
@@ -913,7 +913,7 @@ msgstr "Übersetzung bearbeiten"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:513
|
#: lib/bds/desktop/shell_live/index.html.heex:513
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
||||||
#: lib/bds/ui/sidebar.ex:763
|
#: lib/bds/ui/sidebar.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editor"
|
msgid "Editor"
|
||||||
msgstr "Editor"
|
msgstr "Editor"
|
||||||
@@ -1030,7 +1030,7 @@ msgid "Filename"
|
|||||||
msgstr "Dateiname"
|
msgstr "Dateiname"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:254
|
#: lib/bds/desktop/menu_bar.ex:254
|
||||||
#: lib/bds/tui.ex:1263
|
#: lib/bds/tui.ex:1369
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Fill Missing Translations"
|
msgid "Fill Missing Translations"
|
||||||
msgstr "Fehlende Übersetzungen ergänzen"
|
msgstr "Fehlende Übersetzungen ergänzen"
|
||||||
@@ -1041,7 +1041,7 @@ msgid "Find"
|
|||||||
msgstr "Suchen"
|
msgstr "Suchen"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:255
|
#: lib/bds/desktop/menu_bar.ex:255
|
||||||
#: lib/bds/tui.ex:1266
|
#: lib/bds/tui.ex:1372
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Find Duplicate Posts"
|
msgid "Find Duplicate Posts"
|
||||||
msgstr "Doppelte Beiträge finden"
|
msgstr "Doppelte Beiträge finden"
|
||||||
@@ -1068,14 +1068,14 @@ msgid "Gallery"
|
|||||||
msgstr "Galerie"
|
msgstr "Galerie"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:256
|
#: lib/bds/desktop/menu_bar.ex:256
|
||||||
#: lib/bds/tui.ex:1247
|
#: lib/bds/tui.ex:1353
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Generate Site"
|
msgid "Generate Site"
|
||||||
msgstr "Website generieren"
|
msgstr "Website generieren"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:792
|
#: lib/bds/desktop/shell_live.ex:792
|
||||||
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
||||||
#: lib/bds/ui/sidebar.ex:789
|
#: lib/bds/ui/sidebar.ex:826
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Git"
|
msgid "Git"
|
||||||
msgstr "Git"
|
msgstr "Git"
|
||||||
@@ -1126,7 +1126,7 @@ msgstr "Leerlauf"
|
|||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr "Ignorieren"
|
msgstr "Ignorieren"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:559
|
#: lib/bds/ui/sidebar.ex:579
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Images and files"
|
msgid "Images and files"
|
||||||
msgstr "Bilder und Dateien"
|
msgstr "Bilder und Dateien"
|
||||||
@@ -1332,7 +1332,7 @@ msgstr "Mehr laden"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
||||||
#: lib/bds/ui/sidebar.ex:779
|
#: lib/bds/ui/sidebar.ex:816
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "MCP"
|
msgid "MCP"
|
||||||
msgstr "MCP"
|
msgstr "MCP"
|
||||||
@@ -1389,12 +1389,12 @@ msgstr "Maximale Beiträge pro Seite"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
||||||
#: lib/bds/tui.ex:1117
|
#: lib/bds/tui.ex:1223
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#: lib/bds/ui/registry.ex:30
|
#: lib/bds/ui/registry.ex:30
|
||||||
#: lib/bds/ui/registry.ex:100
|
#: lib/bds/ui/registry.ex:100
|
||||||
#: lib/bds/ui/sidebar.ex:558
|
#: lib/bds/ui/sidebar.ex:578
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr "Medien"
|
msgstr "Medien"
|
||||||
@@ -1420,7 +1420,7 @@ msgid "Merge"
|
|||||||
msgstr "Zusammenführen"
|
msgstr "Zusammenführen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
||||||
#: lib/bds/ui/sidebar.ex:750
|
#: lib/bds/ui/sidebar.ex:787
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Merge Tags"
|
msgid "Merge Tags"
|
||||||
msgstr "Tags zusammenführen"
|
msgstr "Tags zusammenführen"
|
||||||
@@ -1434,11 +1434,11 @@ msgstr "Metadaten"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#: lib/bds/tui.ex:224
|
|
||||||
#: lib/bds/tui.ex:235
|
#: lib/bds/tui.ex:235
|
||||||
#: lib/bds/tui.ex:935
|
#: lib/bds/tui.ex:246
|
||||||
#: lib/bds/tui.ex:1244
|
#: lib/bds/tui.ex:1034
|
||||||
|
#: lib/bds/tui.ex:1350
|
||||||
#: lib/bds/ui/registry.ex:111
|
#: lib/bds/ui/registry.ex:111
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Metadata Diff"
|
msgid "Metadata Diff"
|
||||||
@@ -1484,7 +1484,7 @@ msgstr "Neue Seite"
|
|||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:214
|
#: lib/bds/desktop/menu_bar.ex:214
|
||||||
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
||||||
#: lib/bds/tui.ex:175
|
#: lib/bds/tui.ex:186
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Post"
|
msgid "New Post"
|
||||||
msgstr "Neuer Beitrag"
|
msgstr "Neuer Beitrag"
|
||||||
@@ -1544,8 +1544,8 @@ msgstr "Noch keine Git-Historie"
|
|||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
||||||
#: lib/bds/ui/sidebar.ex:202
|
#: lib/bds/ui/sidebar.ex:202
|
||||||
#: lib/bds/ui/sidebar.ex:792
|
#: lib/bds/ui/sidebar.ex:829
|
||||||
#: lib/bds/ui/sidebar.ex:899
|
#: lib/bds/ui/sidebar.ex:936
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No items"
|
msgid "No items"
|
||||||
msgstr "Keine Einträge"
|
msgstr "Keine Einträge"
|
||||||
@@ -1570,8 +1570,8 @@ msgstr "Keine passenden Seiten gefunden."
|
|||||||
msgid "No matching posts"
|
msgid "No matching posts"
|
||||||
msgstr "Keine passenden Beiträge"
|
msgstr "Keine passenden Beiträge"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:561
|
#: lib/bds/ui/sidebar.ex:581
|
||||||
#: lib/bds/ui/sidebar.ex:572
|
#: lib/bds/ui/sidebar.ex:592
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No media files"
|
msgid "No media files"
|
||||||
msgstr "Keine Mediendateien"
|
msgstr "Keine Mediendateien"
|
||||||
@@ -1762,8 +1762,8 @@ msgid "Open Data Folder"
|
|||||||
msgstr "Datenordner öffnen"
|
msgstr "Datenordner öffnen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:644
|
#: lib/bds/desktop/shell_live/index.html.heex:644
|
||||||
#: lib/bds/tui.ex:416
|
#: lib/bds/tui.ex:507
|
||||||
#: lib/bds/tui.ex:421
|
#: lib/bds/tui.ex:512
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog"
|
msgid "Open Existing Blog"
|
||||||
msgstr "Bestehenden Blog öffnen"
|
msgstr "Bestehenden Blog öffnen"
|
||||||
@@ -1775,7 +1775,7 @@ msgid "Open Settings"
|
|||||||
msgstr "Einstellungen öffnen"
|
msgstr "Einstellungen öffnen"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:217
|
#: lib/bds/desktop/menu_bar.ex:217
|
||||||
#: lib/bds/tui.ex:1268
|
#: lib/bds/tui.ex:1374
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open in Browser"
|
msgid "Open in Browser"
|
||||||
msgstr "Im Browser öffnen"
|
msgstr "Im Browser öffnen"
|
||||||
@@ -1923,8 +1923,8 @@ msgstr "Beitrag gespeichert"
|
|||||||
#: lib/bds/desktop/menu_bar.ex:233
|
#: lib/bds/desktop/menu_bar.ex:233
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
||||||
#: lib/bds/tui.ex:1116
|
#: lib/bds/tui.ex:1222
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#: lib/bds/ui/registry.ex:14
|
#: lib/bds/ui/registry.ex:14
|
||||||
#: lib/bds/ui/sidebar.ex:271
|
#: lib/bds/ui/sidebar.ex:271
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -1966,7 +1966,7 @@ msgstr "Vorschau nicht verfügbar"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
||||||
#: lib/bds/ui/sidebar.ex:762
|
#: lib/bds/ui/sidebar.ex:799
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project"
|
msgid "Project"
|
||||||
msgstr "Projekt"
|
msgstr "Projekt"
|
||||||
@@ -1976,15 +1976,15 @@ msgstr "Projekt"
|
|||||||
msgid "Project Name"
|
msgid "Project Name"
|
||||||
msgstr "Projektname"
|
msgstr "Projektname"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:759
|
#: lib/bds/ui/sidebar.ex:796
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project and publishing"
|
msgid "Project and publishing"
|
||||||
msgstr "Projekt und Veröffentlichung"
|
msgstr "Projekt und Veröffentlichung"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:623
|
#: lib/bds/desktop/shell_live/index.html.heex:623
|
||||||
#: lib/bds/tui.ex:329
|
#: lib/bds/tui.ex:420
|
||||||
#: lib/bds/tui.ex:334
|
#: lib/bds/tui.ex:425
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects"
|
msgid "Projects"
|
||||||
msgstr "Projekte"
|
msgstr "Projekte"
|
||||||
@@ -2028,7 +2028,7 @@ msgstr "Veröffentlichte Übersetzung hat Inhalt in der DB statt im Dateisystem"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
||||||
#: lib/bds/ui/sidebar.ex:774
|
#: lib/bds/ui/sidebar.ex:811
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Publishing"
|
msgid "Publishing"
|
||||||
msgstr "Veröffentlichung"
|
msgstr "Veröffentlichung"
|
||||||
@@ -2050,15 +2050,15 @@ msgid "Ready to import:"
|
|||||||
msgstr "Bereit zum Import:"
|
msgstr "Bereit zum Import:"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:248
|
#: lib/bds/desktop/menu_bar.ex:248
|
||||||
#: lib/bds/tui.ex:413
|
#: lib/bds/tui.ex:504
|
||||||
#: lib/bds/tui.ex:1248
|
#: lib/bds/tui.ex:1354
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Database"
|
msgid "Rebuild Database"
|
||||||
msgstr "Datenbank neu aufbauen"
|
msgstr "Datenbank neu aufbauen"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:250
|
#: lib/bds/desktop/menu_bar.ex:250
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
||||||
#: lib/bds/tui.ex:1252
|
#: lib/bds/tui.ex:1358
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Embedding Index"
|
msgid "Rebuild Embedding Index"
|
||||||
msgstr "Embedding-Index neu aufbauen"
|
msgstr "Embedding-Index neu aufbauen"
|
||||||
@@ -2116,7 +2116,7 @@ msgid "Refresh Translation"
|
|||||||
msgstr "Übersetzung aktualisieren"
|
msgstr "Übersetzung aktualisieren"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:252
|
#: lib/bds/desktop/menu_bar.ex:252
|
||||||
#: lib/bds/tui.ex:1255
|
#: lib/bds/tui.ex:1361
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Regenerate Calendar"
|
msgid "Regenerate Calendar"
|
||||||
msgstr "Kalender neu erzeugen"
|
msgstr "Kalender neu erzeugen"
|
||||||
@@ -2127,7 +2127,7 @@ msgid "Regenerate Missing Thumbnails"
|
|||||||
msgstr "Fehlende Vorschaubilder neu erzeugen"
|
msgstr "Fehlende Vorschaubilder neu erzeugen"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:249
|
#: lib/bds/desktop/menu_bar.ex:249
|
||||||
#: lib/bds/tui.ex:1249
|
#: lib/bds/tui.ex:1355
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reindex Text"
|
msgid "Reindex Text"
|
||||||
msgstr "Text neu indizieren"
|
msgstr "Text neu indizieren"
|
||||||
@@ -2313,7 +2313,7 @@ msgstr "Scripting-Funktionen werden in der Neufassung auf Anwendungsebene konfig
|
|||||||
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
||||||
#: lib/bds/tui.ex:1119
|
#: lib/bds/tui.ex:1225
|
||||||
#: lib/bds/ui/registry.ex:38
|
#: lib/bds/ui/registry.ex:38
|
||||||
#: lib/bds/ui/sidebar.ex:63
|
#: lib/bds/ui/sidebar.ex:63
|
||||||
#: lib/bds/ui/sidebar.ex:115
|
#: lib/bds/ui/sidebar.ex:115
|
||||||
@@ -2328,7 +2328,7 @@ msgid "Search"
|
|||||||
msgstr "Suchen"
|
msgstr "Suchen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
||||||
#: lib/bds/ui/sidebar.ex:564
|
#: lib/bds/ui/sidebar.ex:584
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search media..."
|
msgid "Search media..."
|
||||||
msgstr "Medien durchsuchen..."
|
msgstr "Medien durchsuchen..."
|
||||||
@@ -2420,7 +2420,7 @@ msgstr "Semantische Ähnlichkeit"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
||||||
#: lib/bds/ui/registry.ex:86
|
#: lib/bds/ui/registry.ex:86
|
||||||
#: lib/bds/ui/registry.ex:101
|
#: lib/bds/ui/registry.ex:101
|
||||||
#: lib/bds/ui/sidebar.ex:758
|
#: lib/bds/ui/sidebar.ex:795
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Einstellungen"
|
msgstr "Einstellungen"
|
||||||
@@ -2441,9 +2441,9 @@ msgid "Site"
|
|||||||
msgstr "Website"
|
msgstr "Website"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#: lib/bds/tui.ex:253
|
#: lib/bds/tui.ex:264
|
||||||
#: lib/bds/tui.ex:940
|
#: lib/bds/tui.ex:1039
|
||||||
#: lib/bds/ui/registry.ex:125
|
#: lib/bds/ui/registry.ex:125
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site Validation"
|
msgid "Site Validation"
|
||||||
@@ -2507,7 +2507,7 @@ msgstr "Stopp"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
||||||
#: lib/bds/ui/registry.ex:102
|
#: lib/bds/ui/registry.ex:102
|
||||||
#: lib/bds/ui/sidebar.ex:780
|
#: lib/bds/ui/sidebar.ex:817
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Style"
|
msgid "Style"
|
||||||
msgstr "Stil"
|
msgstr "Stil"
|
||||||
@@ -2538,12 +2538,12 @@ msgid "System Prompt"
|
|||||||
msgstr "System-Prompt"
|
msgstr "System-Prompt"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
||||||
#: lib/bds/ui/sidebar.ex:748
|
#: lib/bds/ui/sidebar.ex:785
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag Cloud"
|
msgid "Tag Cloud"
|
||||||
msgstr "Tag-Wolke"
|
msgstr "Tag-Wolke"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:745
|
#: lib/bds/ui/sidebar.ex:782
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag management"
|
msgid "Tag management"
|
||||||
msgstr "Tag-Verwaltung"
|
msgstr "Tag-Verwaltung"
|
||||||
@@ -2564,25 +2564,25 @@ msgstr "Schlagwortname"
|
|||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
||||||
#: lib/bds/tui.ex:1120
|
#: lib/bds/tui.ex:1226
|
||||||
#: lib/bds/ui/registry.ex:54
|
#: lib/bds/ui/registry.ex:54
|
||||||
#: lib/bds/ui/registry.ex:103
|
#: lib/bds/ui/registry.ex:103
|
||||||
#: lib/bds/ui/sidebar.ex:289
|
#: lib/bds/ui/sidebar.ex:289
|
||||||
#: lib/bds/ui/sidebar.ex:567
|
#: lib/bds/ui/sidebar.ex:587
|
||||||
#: lib/bds/ui/sidebar.ex:744
|
#: lib/bds/ui/sidebar.ex:781
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tags"
|
msgstr "Tags"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:786
|
#: lib/bds/desktop/shell_live.ex:786
|
||||||
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tasks"
|
msgid "Tasks"
|
||||||
msgstr "Aufgaben"
|
msgstr "Aufgaben"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
||||||
#: lib/bds/ui/sidebar.ex:768
|
#: lib/bds/ui/sidebar.ex:805
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Technology"
|
msgid "Technology"
|
||||||
msgstr "Technik"
|
msgstr "Technik"
|
||||||
@@ -2621,7 +2621,7 @@ msgstr "Template-Syntax ist gültig"
|
|||||||
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
||||||
#: lib/bds/tui.ex:1118
|
#: lib/bds/tui.ex:1224
|
||||||
#: lib/bds/ui/registry.ex:46
|
#: lib/bds/ui/registry.ex:46
|
||||||
#: lib/bds/ui/sidebar.ex:71
|
#: lib/bds/ui/sidebar.ex:71
|
||||||
#: lib/bds/ui/sidebar.ex:122
|
#: lib/bds/ui/sidebar.ex:122
|
||||||
@@ -2682,7 +2682,7 @@ msgid "Toggle Dev Tools"
|
|||||||
msgstr "Entwicklertools umschalten"
|
msgstr "Entwicklertools umschalten"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:287
|
#: lib/bds/ui/sidebar.ex:287
|
||||||
#: lib/bds/ui/sidebar.ex:565
|
#: lib/bds/ui/sidebar.ex:585
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Toggle Filters"
|
msgid "Toggle Filters"
|
||||||
msgstr "Filter umschalten"
|
msgstr "Filter umschalten"
|
||||||
@@ -2819,7 +2819,7 @@ msgstr "Nicht gespeichert"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
||||||
#: lib/bds/ui/post_editor/metadata.ex:166
|
#: lib/bds/ui/post_editor/metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1108
|
#: lib/bds/ui/sidebar.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Ohne Titel"
|
msgstr "Ohne Titel"
|
||||||
@@ -2844,7 +2844,7 @@ msgid "Updated URLs"
|
|||||||
msgstr "Aktualisierte URLs"
|
msgstr "Aktualisierte URLs"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:259
|
#: lib/bds/desktop/menu_bar.ex:259
|
||||||
#: lib/bds/tui.ex:1267
|
#: lib/bds/tui.ex:1373
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Upload Site"
|
msgid "Upload Site"
|
||||||
msgstr "Website hochladen"
|
msgstr "Website hochladen"
|
||||||
@@ -2872,13 +2872,13 @@ msgid "Validate"
|
|||||||
msgstr "Validieren"
|
msgstr "Validieren"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:258
|
#: lib/bds/desktop/menu_bar.ex:258
|
||||||
#: lib/bds/tui.ex:1245
|
#: lib/bds/tui.ex:1351
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Site"
|
msgid "Validate Site"
|
||||||
msgstr "Website validieren"
|
msgstr "Website validieren"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:253
|
#: lib/bds/desktop/menu_bar.ex:253
|
||||||
#: lib/bds/tui.ex:1258
|
#: lib/bds/tui.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Translations"
|
msgid "Validate Translations"
|
||||||
msgstr "Übersetzungen validieren"
|
msgstr "Übersetzungen validieren"
|
||||||
@@ -2916,7 +2916,7 @@ msgid "Working tree"
|
|||||||
msgstr "Arbeitsverzeichnis"
|
msgstr "Arbeitsverzeichnis"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
||||||
#: lib/bds/ui/sidebar.ex:790
|
#: lib/bds/ui/sidebar.ex:827
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working tree and history"
|
msgid "Working tree and history"
|
||||||
msgstr "Arbeitsverzeichnis und Verlauf"
|
msgstr "Arbeitsverzeichnis und Verlauf"
|
||||||
@@ -3093,13 +3093,13 @@ msgid "posts"
|
|||||||
msgstr "Beiträge"
|
msgstr "Beiträge"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:294
|
#: lib/bds/ui/sidebar.ex:294
|
||||||
#: lib/bds/ui/sidebar.ex:570
|
#: lib/bds/ui/sidebar.ex:590
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results"
|
msgid "results"
|
||||||
msgstr "Ergebnisse"
|
msgstr "Ergebnisse"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:295
|
#: lib/bds/ui/sidebar.ex:295
|
||||||
#: lib/bds/ui/sidebar.ex:571
|
#: lib/bds/ui/sidebar.ex:591
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr "Ergebnisse für"
|
msgstr "Ergebnisse für"
|
||||||
@@ -3460,28 +3460,28 @@ msgstr "Synchronisiert"
|
|||||||
msgid "This project is not a Git repository yet."
|
msgid "This project is not a Git repository yet."
|
||||||
msgstr "Dieses Projekt ist noch kein Git-Repository."
|
msgstr "Dieses Projekt ist noch kein Git-Repository."
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:872
|
#: lib/bds/ui/sidebar.ex:909
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "added"
|
msgid "added"
|
||||||
msgstr "hinzugefügt"
|
msgstr "hinzugefügt"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:873
|
#: lib/bds/ui/sidebar.ex:910
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "deleted"
|
msgid "deleted"
|
||||||
msgstr "gelöscht"
|
msgstr "gelöscht"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:874
|
#: lib/bds/ui/sidebar.ex:911
|
||||||
#: lib/bds/ui/sidebar.ex:877
|
#: lib/bds/ui/sidebar.ex:914
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "modified"
|
msgid "modified"
|
||||||
msgstr "geändert"
|
msgstr "geändert"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:875
|
#: lib/bds/ui/sidebar.ex:912
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "renamed"
|
msgid "renamed"
|
||||||
msgstr "umbenannt"
|
msgstr "umbenannt"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:876
|
#: lib/bds/ui/sidebar.ex:913
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "untracked"
|
msgid "untracked"
|
||||||
msgstr "nicht verfolgt"
|
msgstr "nicht verfolgt"
|
||||||
@@ -3543,7 +3543,7 @@ msgid "Suggested tags"
|
|||||||
msgstr "Vorgeschlagene Tags"
|
msgstr "Vorgeschlagene Tags"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:257
|
#: lib/bds/desktop/menu_bar.ex:257
|
||||||
#: lib/bds/tui.ex:1246
|
#: lib/bds/tui.ex:1352
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Force Render Site"
|
msgid "Force Render Site"
|
||||||
msgstr "Website vollständig neu generieren"
|
msgstr "Website vollständig neu generieren"
|
||||||
@@ -3640,82 +3640,82 @@ msgstr "OK"
|
|||||||
msgid "The endpoint returned no models. You can still type a model name manually."
|
msgid "The endpoint returned no models. You can still type a model name manually."
|
||||||
msgstr "Der Endpunkt hat keine Modelle zurückgegeben. Sie können einen Modellnamen weiterhin manuell eingeben."
|
msgstr "Der Endpunkt hat keine Modelle zurückgegeben. Sie können einen Modellnamen weiterhin manuell eingeben."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1204
|
#: lib/bds/tui.ex:1310
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI is unavailable in airplane mode without a local endpoint."
|
msgid "AI is unavailable in airplane mode without a local endpoint."
|
||||||
msgstr "KI ist im Flugmodus ohne lokalen Endpunkt nicht verfügbar."
|
msgstr "KI ist im Flugmodus ohne lokalen Endpunkt nicht verfügbar."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Could not load this file."
|
msgid "Could not load this file."
|
||||||
msgstr "Diese Datei konnte nicht geladen werden."
|
msgstr "Diese Datei konnte nicht geladen werden."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:183
|
#: lib/bds/tui.ex:194
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editing this item is not available in the terminal UI yet."
|
msgid "Editing this item is not available in the terminal UI yet."
|
||||||
msgstr "Die Bearbeitung dieses Eintrags ist in der Terminal-Oberfläche noch nicht verfügbar."
|
msgstr "Die Bearbeitung dieses Eintrags ist in der Terminal-Oberfläche noch nicht verfügbar."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No suggestions returned."
|
msgid "No suggestions returned."
|
||||||
msgstr "Keine Vorschläge erhalten."
|
msgstr "Keine Vorschläge erhalten."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Only images can be previewed."
|
msgid "Only images can be previewed."
|
||||||
msgstr "Nur Bilder können in der Vorschau angezeigt werden."
|
msgstr "Nur Bilder können in der Vorschau angezeigt werden."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post not found."
|
msgid "Post not found."
|
||||||
msgstr "Beitrag nicht gefunden."
|
msgstr "Beitrag nicht gefunden."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:702
|
#: lib/bds/tui.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Press enter to preview %{name}."
|
msgid "Press enter to preview %{name}."
|
||||||
msgstr "Drücken Sie Enter, um %{name} in der Vorschau anzuzeigen."
|
msgstr "Drücken Sie Enter, um %{name} in der Vorschau anzuzeigen."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1174
|
#: lib/bds/tui.ex:1280
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published."
|
msgid "Published."
|
||||||
msgstr "Veröffentlicht."
|
msgstr "Veröffentlicht."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1190
|
#: lib/bds/tui.ex:1296
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save before switching languages."
|
msgid "Save before switching languages."
|
||||||
msgstr "Speichern Sie vor dem Sprachwechsel."
|
msgstr "Speichern Sie vor dem Sprachwechsel."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1175
|
#: lib/bds/tui.ex:1281
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved."
|
msgid "Saved."
|
||||||
msgstr "Gespeichert."
|
msgstr "Gespeichert."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:705
|
#: lib/bds/tui.ex:803
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select an entry and press enter to open it."
|
msgid "Select an entry and press enter to open it."
|
||||||
msgstr "Wählen Sie einen Eintrag aus und öffnen Sie ihn mit Enter."
|
msgstr "Wählen Sie einen Eintrag aus und öffnen Sie ihn mit Enter."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Suggestions applied."
|
msgid "Suggestions applied."
|
||||||
msgstr "Vorschläge übernommen."
|
msgstr "Vorschläge übernommen."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:717
|
#: lib/bds/tui.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (ctrl+t to edit)"
|
msgid "Title (ctrl+t to edit)"
|
||||||
msgstr "Titel (Strg+T zum Bearbeiten)"
|
msgstr "Titel (Strg+T zum Bearbeiten)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:716
|
#: lib/bds/tui.ex:814
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (editing — enter to confirm)"
|
msgid "Title (editing — enter to confirm)"
|
||||||
msgstr "Titel (Bearbeitung — Enter zum Bestätigen)"
|
msgstr "Titel (Bearbeitung — Enter zum Bestätigen)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:764
|
#: lib/bds/tui.ex:863
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working…"
|
msgid "Working…"
|
||||||
msgstr "Wird bearbeitet…"
|
msgstr "Wird bearbeitet…"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:786
|
#: lib/bds/tui.ex:885
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "esc to close"
|
msgid "esc to close"
|
||||||
msgstr "Esc zum Schließen"
|
msgstr "Esc zum Schließen"
|
||||||
@@ -3752,122 +3752,122 @@ msgstr "Serveradresse (user@host oder user@host:port), Public-Key-Authentifizier
|
|||||||
msgid "Use the form user@host or user@host:port."
|
msgid "Use the form user@host or user@host:port."
|
||||||
msgstr "Verwenden Sie das Format user@host oder user@host:port."
|
msgstr "Verwenden Sie das Format user@host oder user@host:port."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:736
|
#: lib/bds/tui.ex:834
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview (ctrl+e to edit)"
|
msgid "Preview (ctrl+e to edit)"
|
||||||
msgstr "Vorschau (ctrl+e zum Bearbeiten)"
|
msgstr "Vorschau (ctrl+e zum Bearbeiten)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1029
|
#: lib/bds/tui.ex:1128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
||||||
msgstr "Strg+S Speichern · Strg+P Veröffentlichen · Strg+E Vorschau · Strg+T Titel · Strg+L Sprache · Strg+G KI · Esc Zurück"
|
msgstr "Strg+S Speichern · Strg+P Veröffentlichen · Strg+E Vorschau · Strg+T Titel · Strg+L Sprache · Strg+G KI · Esc Zurück"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "All tasks finished."
|
msgid "All tasks finished."
|
||||||
msgstr "Alle Aufgaben abgeschlossen."
|
msgstr "Alle Aufgaben abgeschlossen."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:812
|
#: lib/bds/tui.ex:911
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Commands — esc to close"
|
msgid "Commands — esc to close"
|
||||||
msgstr "Befehle — Esc zum Schließen"
|
msgstr "Befehle — Esc zum Schließen"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:438
|
#: lib/bds/tui.ex:529
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown command."
|
msgid "Unknown command."
|
||||||
msgstr "Unbekannter Befehl."
|
msgstr "Unbekannter Befehl."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:802
|
#: lib/bds/tui.ex:901
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "[report/apply in GUI]"
|
msgid "[report/apply in GUI]"
|
||||||
msgstr "[Bericht/Anwenden in der GUI]"
|
msgstr "[Bericht/Anwenden in der GUI]"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:951
|
#: lib/bds/tui.ex:1050
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{diffs} differences · %{orphans} orphan files"
|
msgid "%{diffs} differences · %{orphans} orphan files"
|
||||||
msgstr "%{diffs} Unterschiede · %{orphans} verwaiste Dateien"
|
msgstr "%{diffs} Unterschiede · %{orphans} verwaiste Dateien"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:983
|
#: lib/bds/tui.ex:1082
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Expected %{expected} · Existing %{existing}"
|
msgid "Expected %{expected} · Existing %{existing}"
|
||||||
msgstr "Erwartet %{expected} · Vorhanden %{existing}"
|
msgstr "Erwartet %{expected} · Vorhanden %{existing}"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1000
|
#: lib/bds/tui.ex:1099
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Extra files (will be removed):"
|
msgid "Extra files (will be removed):"
|
||||||
msgstr "Überzählige Dateien (werden entfernt):"
|
msgstr "Überzählige Dateien (werden entfernt):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:996
|
#: lib/bds/tui.ex:1095
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Missing pages (will be rendered):"
|
msgid "Missing pages (will be rendered):"
|
||||||
msgstr "Fehlende Seiten (werden gerendert):"
|
msgstr "Fehlende Seiten (werden gerendert):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to apply."
|
msgid "Nothing to apply."
|
||||||
msgstr "Nichts anzuwenden."
|
msgstr "Nichts anzuwenden."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to repair."
|
msgid "Nothing to repair."
|
||||||
msgstr "Nichts zu reparieren."
|
msgstr "Nichts zu reparieren."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:974
|
#: lib/bds/tui.ex:1073
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Orphan files (not in database):"
|
msgid "Orphan files (not in database):"
|
||||||
msgstr "Verwaiste Dateien (nicht in der Datenbank):"
|
msgstr "Verwaiste Dateien (nicht in der Datenbank):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:990
|
#: lib/bds/tui.ex:1089
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sitemap changed."
|
msgid "Sitemap changed."
|
||||||
msgstr "Sitemap geändert."
|
msgstr "Sitemap geändert."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1004
|
#: lib/bds/tui.ex:1103
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Updated posts (will be re-rendered):"
|
msgid "Updated posts (will be re-rendered):"
|
||||||
msgstr "Aktualisierte Beiträge (werden neu gerendert):"
|
msgstr "Aktualisierte Beiträge (werden neu gerendert):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:941
|
#: lib/bds/tui.ex:1040
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter apply changes · esc close"
|
msgid "enter apply changes · esc close"
|
||||||
msgstr "Enter Änderungen anwenden · Esc Schließen"
|
msgstr "Enter Änderungen anwenden · Esc Schließen"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:936
|
#: lib/bds/tui.ex:1035
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter repair all from files · esc close"
|
msgid "enter repair all from files · esc close"
|
||||||
msgstr "Enter alles aus Dateien reparieren · Esc Schließen"
|
msgstr "Enter alles aus Dateien reparieren · Esc Schließen"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:403
|
#: lib/bds/tui.ex:494
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Imported Blog"
|
msgid "Imported Blog"
|
||||||
msgstr "Importierter Blog"
|
msgstr "Importierter Blog"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:422
|
#: lib/bds/tui.ex:513
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Not a folder: %{path}"
|
msgid "Not a folder: %{path}"
|
||||||
msgstr "Kein Ordner: %{path}"
|
msgstr "Kein Ordner: %{path}"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:878
|
#: lib/bds/tui.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects — enter switch · o open existing · esc close"
|
msgid "Projects — enter switch · o open existing · esc close"
|
||||||
msgstr "Projekte — Enter Wechseln · O Bestehenden öffnen · Esc Schließen"
|
msgstr "Projekte — Enter Wechseln · O Bestehenden öffnen · Esc Schließen"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:330
|
#: lib/bds/tui.ex:421
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Switched to %{name}."
|
msgid "Switched to %{name}."
|
||||||
msgstr "Zu %{name} gewechselt."
|
msgstr "Zu %{name} gewechselt."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1022
|
#: lib/bds/tui.ex:1005
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "enter open · n new post · 1-5 views · p projects · : commands (:? help) · r refresh · ctrl+q quit"
|
|
||||||
msgstr "Enter Öffnen · N Neuer Beitrag · 1-5 Ansichten · P Projekte · : Befehle (:? Hilfe) · R Aktualisieren · Strg+Q Beenden"
|
|
||||||
|
|
||||||
#: lib/bds/tui.ex:906
|
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Matching folders"
|
msgid "Matching folders"
|
||||||
msgstr "Passende Ordner"
|
msgstr "Passende Ordner"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:844
|
#: lib/bds/tui.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
||||||
msgstr "Bestehenden Blog öffnen — Ordnerpfad eingeben · Tab Vervollständigen · Enter Öffnen · Esc Zurück"
|
msgstr "Bestehenden Blog öffnen — Ordnerpfad eingeben · Tab Vervollständigen · Enter Öffnen · Esc Zurück"
|
||||||
|
|
||||||
|
#: lib/bds/tui.ex:1121
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "enter open · n new post · 1-5 views · p projects · / search · : commands (:? help) · r refresh · ctrl+q quit"
|
||||||
|
msgstr "Enter Öffnen · N Neuer Beitrag · 1-5 Ansichten · P Projekte · / Suche · : Befehle (:? Hilfe) · R Aktualisieren · Strg+Q Beenden"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#: lib/bds/rendering/labels.ex:18
|
#: lib/bds/rendering/labels.ex:18
|
||||||
#: lib/bds/ui/sidebar.ex:288
|
#: lib/bds/ui/sidebar.ex:288
|
||||||
#: lib/bds/ui/sidebar.ex:566
|
#: lib/bds/ui/sidebar.ex:586
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ msgid "--"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
||||||
#: lib/bds/ui/sidebar.ex:765
|
#: lib/bds/ui/sidebar.ex:802
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI"
|
msgid "AI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -81,11 +81,11 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#: lib/bds/tui.ex:570
|
#: lib/bds/tui.ex:661
|
||||||
#: lib/bds/tui.ex:578
|
#: lib/bds/tui.ex:669
|
||||||
#: lib/bds/tui.ex:1203
|
#: lib/bds/tui.ex:1309
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -527,7 +527,7 @@ msgid "Clear categories"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:293
|
#: lib/bds/ui/sidebar.ex:293
|
||||||
#: lib/bds/ui/sidebar.ex:569
|
#: lib/bds/ui/sidebar.ex:589
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -539,7 +539,7 @@ msgid "Clear mapping"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:291
|
#: lib/bds/ui/sidebar.ex:291
|
||||||
#: lib/bds/ui/sidebar.ex:568
|
#: lib/bds/ui/sidebar.ex:588
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear tags"
|
msgid "Clear tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -572,7 +572,7 @@ msgid "Collapse unchanged diff hunks"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
||||||
#: lib/bds/tui.ex:1299
|
#: lib/bds/tui.ex:1405
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -590,8 +590,8 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
||||||
#: lib/bds/tui.ex:747
|
#: lib/bds/tui.ex:845
|
||||||
#: lib/bds/ui/sidebar.ex:764
|
#: lib/bds/ui/sidebar.ex:801
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -632,7 +632,7 @@ msgid "Create"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
||||||
#: lib/bds/ui/sidebar.ex:749
|
#: lib/bds/ui/sidebar.ex:786
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create / Edit"
|
msgid "Create / Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -678,7 +678,7 @@ msgstr ""
|
|||||||
msgid "Dashboard"
|
msgid "Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:778
|
#: lib/bds/ui/sidebar.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -913,7 +913,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:513
|
#: lib/bds/desktop/shell_live/index.html.heex:513
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
||||||
#: lib/bds/ui/sidebar.ex:763
|
#: lib/bds/ui/sidebar.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editor"
|
msgid "Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1030,7 +1030,7 @@ msgid "Filename"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:254
|
#: lib/bds/desktop/menu_bar.ex:254
|
||||||
#: lib/bds/tui.ex:1263
|
#: lib/bds/tui.ex:1369
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Fill Missing Translations"
|
msgid "Fill Missing Translations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1041,7 +1041,7 @@ msgid "Find"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:255
|
#: lib/bds/desktop/menu_bar.ex:255
|
||||||
#: lib/bds/tui.ex:1266
|
#: lib/bds/tui.ex:1372
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Find Duplicate Posts"
|
msgid "Find Duplicate Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1068,14 +1068,14 @@ msgid "Gallery"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:256
|
#: lib/bds/desktop/menu_bar.ex:256
|
||||||
#: lib/bds/tui.ex:1247
|
#: lib/bds/tui.ex:1353
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Generate Site"
|
msgid "Generate Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:792
|
#: lib/bds/desktop/shell_live.ex:792
|
||||||
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
||||||
#: lib/bds/ui/sidebar.ex:789
|
#: lib/bds/ui/sidebar.ex:826
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Git"
|
msgid "Git"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1126,7 +1126,7 @@ msgstr ""
|
|||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:559
|
#: lib/bds/ui/sidebar.ex:579
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Images and files"
|
msgid "Images and files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1332,7 +1332,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
||||||
#: lib/bds/ui/sidebar.ex:779
|
#: lib/bds/ui/sidebar.ex:816
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "MCP"
|
msgid "MCP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1389,12 +1389,12 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
||||||
#: lib/bds/tui.ex:1117
|
#: lib/bds/tui.ex:1223
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#: lib/bds/ui/registry.ex:30
|
#: lib/bds/ui/registry.ex:30
|
||||||
#: lib/bds/ui/registry.ex:100
|
#: lib/bds/ui/registry.ex:100
|
||||||
#: lib/bds/ui/sidebar.ex:558
|
#: lib/bds/ui/sidebar.ex:578
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1420,7 +1420,7 @@ msgid "Merge"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
||||||
#: lib/bds/ui/sidebar.ex:750
|
#: lib/bds/ui/sidebar.ex:787
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Merge Tags"
|
msgid "Merge Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1434,11 +1434,11 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#: lib/bds/tui.ex:224
|
|
||||||
#: lib/bds/tui.ex:235
|
#: lib/bds/tui.ex:235
|
||||||
#: lib/bds/tui.ex:935
|
#: lib/bds/tui.ex:246
|
||||||
#: lib/bds/tui.ex:1244
|
#: lib/bds/tui.ex:1034
|
||||||
|
#: lib/bds/tui.ex:1350
|
||||||
#: lib/bds/ui/registry.ex:111
|
#: lib/bds/ui/registry.ex:111
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Metadata Diff"
|
msgid "Metadata Diff"
|
||||||
@@ -1484,7 +1484,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:214
|
#: lib/bds/desktop/menu_bar.ex:214
|
||||||
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
||||||
#: lib/bds/tui.ex:175
|
#: lib/bds/tui.ex:186
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Post"
|
msgid "New Post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1544,8 +1544,8 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
||||||
#: lib/bds/ui/sidebar.ex:202
|
#: lib/bds/ui/sidebar.ex:202
|
||||||
#: lib/bds/ui/sidebar.ex:792
|
#: lib/bds/ui/sidebar.ex:829
|
||||||
#: lib/bds/ui/sidebar.ex:899
|
#: lib/bds/ui/sidebar.ex:936
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No items"
|
msgid "No items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1570,8 +1570,8 @@ msgstr ""
|
|||||||
msgid "No matching posts"
|
msgid "No matching posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:561
|
#: lib/bds/ui/sidebar.ex:581
|
||||||
#: lib/bds/ui/sidebar.ex:572
|
#: lib/bds/ui/sidebar.ex:592
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No media files"
|
msgid "No media files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1762,8 +1762,8 @@ msgid "Open Data Folder"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:644
|
#: lib/bds/desktop/shell_live/index.html.heex:644
|
||||||
#: lib/bds/tui.ex:416
|
#: lib/bds/tui.ex:507
|
||||||
#: lib/bds/tui.ex:421
|
#: lib/bds/tui.ex:512
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog"
|
msgid "Open Existing Blog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1775,7 +1775,7 @@ msgid "Open Settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:217
|
#: lib/bds/desktop/menu_bar.ex:217
|
||||||
#: lib/bds/tui.ex:1268
|
#: lib/bds/tui.ex:1374
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open in Browser"
|
msgid "Open in Browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1923,8 +1923,8 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/menu_bar.ex:233
|
#: lib/bds/desktop/menu_bar.ex:233
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
||||||
#: lib/bds/tui.ex:1116
|
#: lib/bds/tui.ex:1222
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#: lib/bds/ui/registry.ex:14
|
#: lib/bds/ui/registry.ex:14
|
||||||
#: lib/bds/ui/sidebar.ex:271
|
#: lib/bds/ui/sidebar.ex:271
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -1966,7 +1966,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
||||||
#: lib/bds/ui/sidebar.ex:762
|
#: lib/bds/ui/sidebar.ex:799
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project"
|
msgid "Project"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1976,15 +1976,15 @@ msgstr ""
|
|||||||
msgid "Project Name"
|
msgid "Project Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:759
|
#: lib/bds/ui/sidebar.ex:796
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project and publishing"
|
msgid "Project and publishing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:623
|
#: lib/bds/desktop/shell_live/index.html.heex:623
|
||||||
#: lib/bds/tui.ex:329
|
#: lib/bds/tui.ex:420
|
||||||
#: lib/bds/tui.ex:334
|
#: lib/bds/tui.ex:425
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects"
|
msgid "Projects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2028,7 +2028,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
||||||
#: lib/bds/ui/sidebar.ex:774
|
#: lib/bds/ui/sidebar.ex:811
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Publishing"
|
msgid "Publishing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2050,15 +2050,15 @@ msgid "Ready to import:"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:248
|
#: lib/bds/desktop/menu_bar.ex:248
|
||||||
#: lib/bds/tui.ex:413
|
#: lib/bds/tui.ex:504
|
||||||
#: lib/bds/tui.ex:1248
|
#: lib/bds/tui.ex:1354
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Database"
|
msgid "Rebuild Database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:250
|
#: lib/bds/desktop/menu_bar.ex:250
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
||||||
#: lib/bds/tui.ex:1252
|
#: lib/bds/tui.ex:1358
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Embedding Index"
|
msgid "Rebuild Embedding Index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2116,7 +2116,7 @@ msgid "Refresh Translation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:252
|
#: lib/bds/desktop/menu_bar.ex:252
|
||||||
#: lib/bds/tui.ex:1255
|
#: lib/bds/tui.ex:1361
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Regenerate Calendar"
|
msgid "Regenerate Calendar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2127,7 +2127,7 @@ msgid "Regenerate Missing Thumbnails"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:249
|
#: lib/bds/desktop/menu_bar.ex:249
|
||||||
#: lib/bds/tui.ex:1249
|
#: lib/bds/tui.ex:1355
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reindex Text"
|
msgid "Reindex Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2313,7 +2313,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
||||||
#: lib/bds/tui.ex:1119
|
#: lib/bds/tui.ex:1225
|
||||||
#: lib/bds/ui/registry.ex:38
|
#: lib/bds/ui/registry.ex:38
|
||||||
#: lib/bds/ui/sidebar.ex:63
|
#: lib/bds/ui/sidebar.ex:63
|
||||||
#: lib/bds/ui/sidebar.ex:115
|
#: lib/bds/ui/sidebar.ex:115
|
||||||
@@ -2328,7 +2328,7 @@ msgid "Search"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
||||||
#: lib/bds/ui/sidebar.ex:564
|
#: lib/bds/ui/sidebar.ex:584
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search media..."
|
msgid "Search media..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2420,7 +2420,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
||||||
#: lib/bds/ui/registry.ex:86
|
#: lib/bds/ui/registry.ex:86
|
||||||
#: lib/bds/ui/registry.ex:101
|
#: lib/bds/ui/registry.ex:101
|
||||||
#: lib/bds/ui/sidebar.ex:758
|
#: lib/bds/ui/sidebar.ex:795
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2441,9 +2441,9 @@ msgid "Site"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#: lib/bds/tui.ex:253
|
#: lib/bds/tui.ex:264
|
||||||
#: lib/bds/tui.ex:940
|
#: lib/bds/tui.ex:1039
|
||||||
#: lib/bds/ui/registry.ex:125
|
#: lib/bds/ui/registry.ex:125
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site Validation"
|
msgid "Site Validation"
|
||||||
@@ -2507,7 +2507,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
||||||
#: lib/bds/ui/registry.ex:102
|
#: lib/bds/ui/registry.ex:102
|
||||||
#: lib/bds/ui/sidebar.ex:780
|
#: lib/bds/ui/sidebar.ex:817
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Style"
|
msgid "Style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2538,12 +2538,12 @@ msgid "System Prompt"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
||||||
#: lib/bds/ui/sidebar.ex:748
|
#: lib/bds/ui/sidebar.ex:785
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag Cloud"
|
msgid "Tag Cloud"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:745
|
#: lib/bds/ui/sidebar.ex:782
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag management"
|
msgid "Tag management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2564,25 +2564,25 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
||||||
#: lib/bds/tui.ex:1120
|
#: lib/bds/tui.ex:1226
|
||||||
#: lib/bds/ui/registry.ex:54
|
#: lib/bds/ui/registry.ex:54
|
||||||
#: lib/bds/ui/registry.ex:103
|
#: lib/bds/ui/registry.ex:103
|
||||||
#: lib/bds/ui/sidebar.ex:289
|
#: lib/bds/ui/sidebar.ex:289
|
||||||
#: lib/bds/ui/sidebar.ex:567
|
#: lib/bds/ui/sidebar.ex:587
|
||||||
#: lib/bds/ui/sidebar.ex:744
|
#: lib/bds/ui/sidebar.ex:781
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:786
|
#: lib/bds/desktop/shell_live.ex:786
|
||||||
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tasks"
|
msgid "Tasks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
||||||
#: lib/bds/ui/sidebar.ex:768
|
#: lib/bds/ui/sidebar.ex:805
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Technology"
|
msgid "Technology"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2621,7 +2621,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
||||||
#: lib/bds/tui.ex:1118
|
#: lib/bds/tui.ex:1224
|
||||||
#: lib/bds/ui/registry.ex:46
|
#: lib/bds/ui/registry.ex:46
|
||||||
#: lib/bds/ui/sidebar.ex:71
|
#: lib/bds/ui/sidebar.ex:71
|
||||||
#: lib/bds/ui/sidebar.ex:122
|
#: lib/bds/ui/sidebar.ex:122
|
||||||
@@ -2682,7 +2682,7 @@ msgid "Toggle Dev Tools"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:287
|
#: lib/bds/ui/sidebar.ex:287
|
||||||
#: lib/bds/ui/sidebar.ex:565
|
#: lib/bds/ui/sidebar.ex:585
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Toggle Filters"
|
msgid "Toggle Filters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2819,7 +2819,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
||||||
#: lib/bds/ui/post_editor/metadata.ex:166
|
#: lib/bds/ui/post_editor/metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1108
|
#: lib/bds/ui/sidebar.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2844,7 +2844,7 @@ msgid "Updated URLs"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:259
|
#: lib/bds/desktop/menu_bar.ex:259
|
||||||
#: lib/bds/tui.ex:1267
|
#: lib/bds/tui.ex:1373
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Upload Site"
|
msgid "Upload Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2872,13 +2872,13 @@ msgid "Validate"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:258
|
#: lib/bds/desktop/menu_bar.ex:258
|
||||||
#: lib/bds/tui.ex:1245
|
#: lib/bds/tui.ex:1351
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Site"
|
msgid "Validate Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:253
|
#: lib/bds/desktop/menu_bar.ex:253
|
||||||
#: lib/bds/tui.ex:1258
|
#: lib/bds/tui.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Translations"
|
msgid "Validate Translations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2916,7 +2916,7 @@ msgid "Working tree"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
||||||
#: lib/bds/ui/sidebar.ex:790
|
#: lib/bds/ui/sidebar.ex:827
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working tree and history"
|
msgid "Working tree and history"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3093,13 +3093,13 @@ msgid "posts"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:294
|
#: lib/bds/ui/sidebar.ex:294
|
||||||
#: lib/bds/ui/sidebar.ex:570
|
#: lib/bds/ui/sidebar.ex:590
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results"
|
msgid "results"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:295
|
#: lib/bds/ui/sidebar.ex:295
|
||||||
#: lib/bds/ui/sidebar.ex:571
|
#: lib/bds/ui/sidebar.ex:591
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3460,28 +3460,28 @@ msgstr ""
|
|||||||
msgid "This project is not a Git repository yet."
|
msgid "This project is not a Git repository yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:872
|
#: lib/bds/ui/sidebar.ex:909
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "added"
|
msgid "added"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:873
|
#: lib/bds/ui/sidebar.ex:910
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "deleted"
|
msgid "deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:874
|
#: lib/bds/ui/sidebar.ex:911
|
||||||
#: lib/bds/ui/sidebar.ex:877
|
#: lib/bds/ui/sidebar.ex:914
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "modified"
|
msgid "modified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:875
|
#: lib/bds/ui/sidebar.ex:912
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "renamed"
|
msgid "renamed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:876
|
#: lib/bds/ui/sidebar.ex:913
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "untracked"
|
msgid "untracked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3543,7 +3543,7 @@ msgid "Suggested tags"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:257
|
#: lib/bds/desktop/menu_bar.ex:257
|
||||||
#: lib/bds/tui.ex:1246
|
#: lib/bds/tui.ex:1352
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Force Render Site"
|
msgid "Force Render Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3640,82 +3640,82 @@ msgstr ""
|
|||||||
msgid "The endpoint returned no models. You can still type a model name manually."
|
msgid "The endpoint returned no models. You can still type a model name manually."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1204
|
#: lib/bds/tui.ex:1310
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI is unavailable in airplane mode without a local endpoint."
|
msgid "AI is unavailable in airplane mode without a local endpoint."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Could not load this file."
|
msgid "Could not load this file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:183
|
#: lib/bds/tui.ex:194
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editing this item is not available in the terminal UI yet."
|
msgid "Editing this item is not available in the terminal UI yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No suggestions returned."
|
msgid "No suggestions returned."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Only images can be previewed."
|
msgid "Only images can be previewed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post not found."
|
msgid "Post not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:702
|
#: lib/bds/tui.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Press enter to preview %{name}."
|
msgid "Press enter to preview %{name}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1174
|
#: lib/bds/tui.ex:1280
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Published."
|
msgid "Published."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1190
|
#: lib/bds/tui.ex:1296
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save before switching languages."
|
msgid "Save before switching languages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1175
|
#: lib/bds/tui.ex:1281
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Saved."
|
msgid "Saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:705
|
#: lib/bds/tui.ex:803
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select an entry and press enter to open it."
|
msgid "Select an entry and press enter to open it."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Suggestions applied."
|
msgid "Suggestions applied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:717
|
#: lib/bds/tui.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (ctrl+t to edit)"
|
msgid "Title (ctrl+t to edit)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:716
|
#: lib/bds/tui.ex:814
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (editing — enter to confirm)"
|
msgid "Title (editing — enter to confirm)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:764
|
#: lib/bds/tui.ex:863
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Working…"
|
msgid "Working…"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:786
|
#: lib/bds/tui.ex:885
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "esc to close"
|
msgid "esc to close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3752,122 +3752,122 @@ msgstr ""
|
|||||||
msgid "Use the form user@host or user@host:port."
|
msgid "Use the form user@host or user@host:port."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:736
|
#: lib/bds/tui.ex:834
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview (ctrl+e to edit)"
|
msgid "Preview (ctrl+e to edit)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1029
|
#: lib/bds/tui.ex:1128
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "All tasks finished."
|
msgid "All tasks finished."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:812
|
#: lib/bds/tui.ex:911
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Commands — esc to close"
|
msgid "Commands — esc to close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:438
|
#: lib/bds/tui.ex:529
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Unknown command."
|
msgid "Unknown command."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:802
|
#: lib/bds/tui.ex:901
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "[report/apply in GUI]"
|
msgid "[report/apply in GUI]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:951
|
#: lib/bds/tui.ex:1050
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{diffs} differences · %{orphans} orphan files"
|
msgid "%{diffs} differences · %{orphans} orphan files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:983
|
#: lib/bds/tui.ex:1082
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Expected %{expected} · Existing %{existing}"
|
msgid "Expected %{expected} · Existing %{existing}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1000
|
#: lib/bds/tui.ex:1099
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Extra files (will be removed):"
|
msgid "Extra files (will be removed):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:996
|
#: lib/bds/tui.ex:1095
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Missing pages (will be rendered):"
|
msgid "Missing pages (will be rendered):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Nothing to apply."
|
msgid "Nothing to apply."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Nothing to repair."
|
msgid "Nothing to repair."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:974
|
#: lib/bds/tui.ex:1073
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Orphan files (not in database):"
|
msgid "Orphan files (not in database):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:990
|
#: lib/bds/tui.ex:1089
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sitemap changed."
|
msgid "Sitemap changed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1004
|
#: lib/bds/tui.ex:1103
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Updated posts (will be re-rendered):"
|
msgid "Updated posts (will be re-rendered):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:941
|
#: lib/bds/tui.ex:1040
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter apply changes · esc close"
|
msgid "enter apply changes · esc close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:936
|
#: lib/bds/tui.ex:1035
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter repair all from files · esc close"
|
msgid "enter repair all from files · esc close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:403
|
#: lib/bds/tui.ex:494
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Imported Blog"
|
msgid "Imported Blog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:422
|
#: lib/bds/tui.ex:513
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Not a folder: %{path}"
|
msgid "Not a folder: %{path}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:878
|
#: lib/bds/tui.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects — enter switch · o open existing · esc close"
|
msgid "Projects — enter switch · o open existing · esc close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:330
|
#: lib/bds/tui.ex:421
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Switched to %{name}."
|
msgid "Switched to %{name}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1022
|
#: lib/bds/tui.ex:1005
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
|
||||||
msgid "enter open · n new post · 1-5 views · p projects · : commands (:? help) · r refresh · ctrl+q quit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/bds/tui.ex:906
|
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Matching folders"
|
msgid "Matching folders"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:844
|
#: lib/bds/tui.ex:943
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/bds/tui.ex:1121
|
||||||
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
|
msgid "enter open · n new post · 1-5 views · p projects · / search · : commands (:? help) · r refresh · ctrl+q quit"
|
||||||
|
msgstr ""
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#: lib/bds/rendering/labels.ex:18
|
#: lib/bds/rendering/labels.ex:18
|
||||||
#: lib/bds/ui/sidebar.ex:288
|
#: lib/bds/ui/sidebar.ex:288
|
||||||
#: lib/bds/ui/sidebar.ex:566
|
#: lib/bds/ui/sidebar.ex:586
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "Archivo"
|
msgstr "Archivo"
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ msgid "--"
|
|||||||
msgstr "--"
|
msgstr "--"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
||||||
#: lib/bds/ui/sidebar.ex:765
|
#: lib/bds/ui/sidebar.ex:802
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI"
|
msgid "AI"
|
||||||
msgstr "IA"
|
msgstr "IA"
|
||||||
@@ -81,11 +81,11 @@ msgstr "Configuración de IA"
|
|||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#: lib/bds/tui.ex:570
|
#: lib/bds/tui.ex:661
|
||||||
#: lib/bds/tui.ex:578
|
#: lib/bds/tui.ex:669
|
||||||
#: lib/bds/tui.ex:1203
|
#: lib/bds/tui.ex:1309
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
msgstr "Sugerencias de IA"
|
msgstr "Sugerencias de IA"
|
||||||
@@ -527,7 +527,7 @@ msgid "Clear categories"
|
|||||||
msgstr "Limpiar categorías"
|
msgstr "Limpiar categorías"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:293
|
#: lib/bds/ui/sidebar.ex:293
|
||||||
#: lib/bds/ui/sidebar.ex:569
|
#: lib/bds/ui/sidebar.ex:589
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr "Limpiar filtros"
|
msgstr "Limpiar filtros"
|
||||||
@@ -539,7 +539,7 @@ msgid "Clear mapping"
|
|||||||
msgstr "Borrar mapeo"
|
msgstr "Borrar mapeo"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:291
|
#: lib/bds/ui/sidebar.ex:291
|
||||||
#: lib/bds/ui/sidebar.ex:568
|
#: lib/bds/ui/sidebar.ex:588
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear tags"
|
msgid "Clear tags"
|
||||||
msgstr "Limpiar etiquetas"
|
msgstr "Limpiar etiquetas"
|
||||||
@@ -572,7 +572,7 @@ msgid "Collapse unchanged diff hunks"
|
|||||||
msgstr "Contraer bloques de diff sin cambios"
|
msgstr "Contraer bloques de diff sin cambios"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
||||||
#: lib/bds/tui.ex:1299
|
#: lib/bds/tui.ex:1405
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr "Comando completado"
|
msgstr "Comando completado"
|
||||||
@@ -590,8 +590,8 @@ msgstr "Confirmar"
|
|||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
||||||
#: lib/bds/tui.ex:747
|
#: lib/bds/tui.ex:845
|
||||||
#: lib/bds/ui/sidebar.ex:764
|
#: lib/bds/ui/sidebar.ex:801
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
@@ -632,7 +632,7 @@ msgid "Create"
|
|||||||
msgstr "Crear"
|
msgstr "Crear"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
||||||
#: lib/bds/ui/sidebar.ex:749
|
#: lib/bds/ui/sidebar.ex:786
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create / Edit"
|
msgid "Create / Edit"
|
||||||
msgstr "Crear / editar"
|
msgstr "Crear / editar"
|
||||||
@@ -678,7 +678,7 @@ msgstr "Oscuro"
|
|||||||
msgid "Dashboard"
|
msgid "Dashboard"
|
||||||
msgstr "Panel"
|
msgstr "Panel"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:778
|
#: lib/bds/ui/sidebar.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr "Datos"
|
msgstr "Datos"
|
||||||
@@ -913,7 +913,7 @@ msgstr "Editar traducción"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:513
|
#: lib/bds/desktop/shell_live/index.html.heex:513
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
||||||
#: lib/bds/ui/sidebar.ex:763
|
#: lib/bds/ui/sidebar.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editor"
|
msgid "Editor"
|
||||||
msgstr "Editor"
|
msgstr "Editor"
|
||||||
@@ -1030,7 +1030,7 @@ msgid "Filename"
|
|||||||
msgstr "Nombre de archivo"
|
msgstr "Nombre de archivo"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:254
|
#: lib/bds/desktop/menu_bar.ex:254
|
||||||
#: lib/bds/tui.ex:1263
|
#: lib/bds/tui.ex:1369
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Fill Missing Translations"
|
msgid "Fill Missing Translations"
|
||||||
msgstr "Completar traducciones faltantes"
|
msgstr "Completar traducciones faltantes"
|
||||||
@@ -1041,7 +1041,7 @@ msgid "Find"
|
|||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:255
|
#: lib/bds/desktop/menu_bar.ex:255
|
||||||
#: lib/bds/tui.ex:1266
|
#: lib/bds/tui.ex:1372
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Find Duplicate Posts"
|
msgid "Find Duplicate Posts"
|
||||||
msgstr "Buscar entradas duplicadas"
|
msgstr "Buscar entradas duplicadas"
|
||||||
@@ -1068,14 +1068,14 @@ msgid "Gallery"
|
|||||||
msgstr "Galeria"
|
msgstr "Galeria"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:256
|
#: lib/bds/desktop/menu_bar.ex:256
|
||||||
#: lib/bds/tui.ex:1247
|
#: lib/bds/tui.ex:1353
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Generate Site"
|
msgid "Generate Site"
|
||||||
msgstr "Generar sitio"
|
msgstr "Generar sitio"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:792
|
#: lib/bds/desktop/shell_live.ex:792
|
||||||
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
||||||
#: lib/bds/ui/sidebar.ex:789
|
#: lib/bds/ui/sidebar.ex:826
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Git"
|
msgid "Git"
|
||||||
msgstr "Git"
|
msgstr "Git"
|
||||||
@@ -1126,7 +1126,7 @@ msgstr "Inactivo"
|
|||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr "Ignorar"
|
msgstr "Ignorar"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:559
|
#: lib/bds/ui/sidebar.ex:579
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Images and files"
|
msgid "Images and files"
|
||||||
msgstr "Imágenes y archivos"
|
msgstr "Imágenes y archivos"
|
||||||
@@ -1332,7 +1332,7 @@ msgstr "Cargar más"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
||||||
#: lib/bds/ui/sidebar.ex:779
|
#: lib/bds/ui/sidebar.ex:816
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "MCP"
|
msgid "MCP"
|
||||||
msgstr "MCP"
|
msgstr "MCP"
|
||||||
@@ -1389,12 +1389,12 @@ msgstr "Máximo de publicaciones por página"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
||||||
#: lib/bds/tui.ex:1117
|
#: lib/bds/tui.ex:1223
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#: lib/bds/ui/registry.ex:30
|
#: lib/bds/ui/registry.ex:30
|
||||||
#: lib/bds/ui/registry.ex:100
|
#: lib/bds/ui/registry.ex:100
|
||||||
#: lib/bds/ui/sidebar.ex:558
|
#: lib/bds/ui/sidebar.ex:578
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr "Medios"
|
msgstr "Medios"
|
||||||
@@ -1420,7 +1420,7 @@ msgid "Merge"
|
|||||||
msgstr "Fusionar"
|
msgstr "Fusionar"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
||||||
#: lib/bds/ui/sidebar.ex:750
|
#: lib/bds/ui/sidebar.ex:787
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Merge Tags"
|
msgid "Merge Tags"
|
||||||
msgstr "Combinar etiquetas"
|
msgstr "Combinar etiquetas"
|
||||||
@@ -1434,11 +1434,11 @@ msgstr "Metadatos"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#: lib/bds/tui.ex:224
|
|
||||||
#: lib/bds/tui.ex:235
|
#: lib/bds/tui.ex:235
|
||||||
#: lib/bds/tui.ex:935
|
#: lib/bds/tui.ex:246
|
||||||
#: lib/bds/tui.ex:1244
|
#: lib/bds/tui.ex:1034
|
||||||
|
#: lib/bds/tui.ex:1350
|
||||||
#: lib/bds/ui/registry.ex:111
|
#: lib/bds/ui/registry.ex:111
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Metadata Diff"
|
msgid "Metadata Diff"
|
||||||
@@ -1484,7 +1484,7 @@ msgstr "Nueva página"
|
|||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:214
|
#: lib/bds/desktop/menu_bar.ex:214
|
||||||
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
||||||
#: lib/bds/tui.ex:175
|
#: lib/bds/tui.ex:186
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Post"
|
msgid "New Post"
|
||||||
msgstr "Nueva entrada"
|
msgstr "Nueva entrada"
|
||||||
@@ -1544,8 +1544,8 @@ msgstr "Aún no hay historial de Git"
|
|||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
||||||
#: lib/bds/ui/sidebar.ex:202
|
#: lib/bds/ui/sidebar.ex:202
|
||||||
#: lib/bds/ui/sidebar.ex:792
|
#: lib/bds/ui/sidebar.ex:829
|
||||||
#: lib/bds/ui/sidebar.ex:899
|
#: lib/bds/ui/sidebar.ex:936
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No items"
|
msgid "No items"
|
||||||
msgstr "No hay elementos"
|
msgstr "No hay elementos"
|
||||||
@@ -1570,8 +1570,8 @@ msgstr "No se encontraron páginas coincidentes."
|
|||||||
msgid "No matching posts"
|
msgid "No matching posts"
|
||||||
msgstr "No hay entradas coincidentes"
|
msgstr "No hay entradas coincidentes"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:561
|
#: lib/bds/ui/sidebar.ex:581
|
||||||
#: lib/bds/ui/sidebar.ex:572
|
#: lib/bds/ui/sidebar.ex:592
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No media files"
|
msgid "No media files"
|
||||||
msgstr "No hay archivos multimedia"
|
msgstr "No hay archivos multimedia"
|
||||||
@@ -1762,8 +1762,8 @@ msgid "Open Data Folder"
|
|||||||
msgstr "Abrir carpeta de datos"
|
msgstr "Abrir carpeta de datos"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:644
|
#: lib/bds/desktop/shell_live/index.html.heex:644
|
||||||
#: lib/bds/tui.ex:416
|
#: lib/bds/tui.ex:507
|
||||||
#: lib/bds/tui.ex:421
|
#: lib/bds/tui.ex:512
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog"
|
msgid "Open Existing Blog"
|
||||||
msgstr "Abrir blog existente"
|
msgstr "Abrir blog existente"
|
||||||
@@ -1775,7 +1775,7 @@ msgid "Open Settings"
|
|||||||
msgstr "Abrir Ajustes"
|
msgstr "Abrir Ajustes"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:217
|
#: lib/bds/desktop/menu_bar.ex:217
|
||||||
#: lib/bds/tui.ex:1268
|
#: lib/bds/tui.ex:1374
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open in Browser"
|
msgid "Open in Browser"
|
||||||
msgstr "Abrir en el navegador"
|
msgstr "Abrir en el navegador"
|
||||||
@@ -1923,8 +1923,8 @@ msgstr "Artículo guardado"
|
|||||||
#: lib/bds/desktop/menu_bar.ex:233
|
#: lib/bds/desktop/menu_bar.ex:233
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
||||||
#: lib/bds/tui.ex:1116
|
#: lib/bds/tui.ex:1222
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#: lib/bds/ui/registry.ex:14
|
#: lib/bds/ui/registry.ex:14
|
||||||
#: lib/bds/ui/sidebar.ex:271
|
#: lib/bds/ui/sidebar.ex:271
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -1966,7 +1966,7 @@ msgstr "Vista previa no disponible"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
||||||
#: lib/bds/ui/sidebar.ex:762
|
#: lib/bds/ui/sidebar.ex:799
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project"
|
msgid "Project"
|
||||||
msgstr "Proyecto"
|
msgstr "Proyecto"
|
||||||
@@ -1976,15 +1976,15 @@ msgstr "Proyecto"
|
|||||||
msgid "Project Name"
|
msgid "Project Name"
|
||||||
msgstr "Nombre del proyecto"
|
msgstr "Nombre del proyecto"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:759
|
#: lib/bds/ui/sidebar.ex:796
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project and publishing"
|
msgid "Project and publishing"
|
||||||
msgstr "Proyecto y publicación"
|
msgstr "Proyecto y publicación"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:623
|
#: lib/bds/desktop/shell_live/index.html.heex:623
|
||||||
#: lib/bds/tui.ex:329
|
#: lib/bds/tui.ex:420
|
||||||
#: lib/bds/tui.ex:334
|
#: lib/bds/tui.ex:425
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects"
|
msgid "Projects"
|
||||||
msgstr "Proyectos"
|
msgstr "Proyectos"
|
||||||
@@ -2028,7 +2028,7 @@ msgstr "Traducción publicada con contenido en la BD en lugar del sistema de arc
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
||||||
#: lib/bds/ui/sidebar.ex:774
|
#: lib/bds/ui/sidebar.ex:811
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Publishing"
|
msgid "Publishing"
|
||||||
msgstr "Publicación"
|
msgstr "Publicación"
|
||||||
@@ -2050,15 +2050,15 @@ msgid "Ready to import:"
|
|||||||
msgstr "Listo para importar:"
|
msgstr "Listo para importar:"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:248
|
#: lib/bds/desktop/menu_bar.ex:248
|
||||||
#: lib/bds/tui.ex:413
|
#: lib/bds/tui.ex:504
|
||||||
#: lib/bds/tui.ex:1248
|
#: lib/bds/tui.ex:1354
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Database"
|
msgid "Rebuild Database"
|
||||||
msgstr "Reconstruir base de datos"
|
msgstr "Reconstruir base de datos"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:250
|
#: lib/bds/desktop/menu_bar.ex:250
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
||||||
#: lib/bds/tui.ex:1252
|
#: lib/bds/tui.ex:1358
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Embedding Index"
|
msgid "Rebuild Embedding Index"
|
||||||
msgstr "Reconstruir índice de embeddings"
|
msgstr "Reconstruir índice de embeddings"
|
||||||
@@ -2116,7 +2116,7 @@ msgid "Refresh Translation"
|
|||||||
msgstr "Actualizar traducción"
|
msgstr "Actualizar traducción"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:252
|
#: lib/bds/desktop/menu_bar.ex:252
|
||||||
#: lib/bds/tui.ex:1255
|
#: lib/bds/tui.ex:1361
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Regenerate Calendar"
|
msgid "Regenerate Calendar"
|
||||||
msgstr "Regenerar calendario"
|
msgstr "Regenerar calendario"
|
||||||
@@ -2127,7 +2127,7 @@ msgid "Regenerate Missing Thumbnails"
|
|||||||
msgstr "Regenerar miniaturas faltantes"
|
msgstr "Regenerar miniaturas faltantes"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:249
|
#: lib/bds/desktop/menu_bar.ex:249
|
||||||
#: lib/bds/tui.ex:1249
|
#: lib/bds/tui.ex:1355
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reindex Text"
|
msgid "Reindex Text"
|
||||||
msgstr "Reindexar texto"
|
msgstr "Reindexar texto"
|
||||||
@@ -2313,7 +2313,7 @@ msgstr "Las capacidades de scripts se configuran en la capa de aplicación en la
|
|||||||
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
||||||
#: lib/bds/tui.ex:1119
|
#: lib/bds/tui.ex:1225
|
||||||
#: lib/bds/ui/registry.ex:38
|
#: lib/bds/ui/registry.ex:38
|
||||||
#: lib/bds/ui/sidebar.ex:63
|
#: lib/bds/ui/sidebar.ex:63
|
||||||
#: lib/bds/ui/sidebar.ex:115
|
#: lib/bds/ui/sidebar.ex:115
|
||||||
@@ -2328,7 +2328,7 @@ msgid "Search"
|
|||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
||||||
#: lib/bds/ui/sidebar.ex:564
|
#: lib/bds/ui/sidebar.ex:584
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search media..."
|
msgid "Search media..."
|
||||||
msgstr "Buscar medios..."
|
msgstr "Buscar medios..."
|
||||||
@@ -2420,7 +2420,7 @@ msgstr "Similitud semántica"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
||||||
#: lib/bds/ui/registry.ex:86
|
#: lib/bds/ui/registry.ex:86
|
||||||
#: lib/bds/ui/registry.ex:101
|
#: lib/bds/ui/registry.ex:101
|
||||||
#: lib/bds/ui/sidebar.ex:758
|
#: lib/bds/ui/sidebar.ex:795
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Configuración"
|
msgstr "Configuración"
|
||||||
@@ -2441,9 +2441,9 @@ msgid "Site"
|
|||||||
msgstr "Sitio"
|
msgstr "Sitio"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#: lib/bds/tui.ex:253
|
#: lib/bds/tui.ex:264
|
||||||
#: lib/bds/tui.ex:940
|
#: lib/bds/tui.ex:1039
|
||||||
#: lib/bds/ui/registry.ex:125
|
#: lib/bds/ui/registry.ex:125
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site Validation"
|
msgid "Site Validation"
|
||||||
@@ -2507,7 +2507,7 @@ msgstr "Detener"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
||||||
#: lib/bds/ui/registry.ex:102
|
#: lib/bds/ui/registry.ex:102
|
||||||
#: lib/bds/ui/sidebar.ex:780
|
#: lib/bds/ui/sidebar.ex:817
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Style"
|
msgid "Style"
|
||||||
msgstr "Estilo"
|
msgstr "Estilo"
|
||||||
@@ -2538,12 +2538,12 @@ msgid "System Prompt"
|
|||||||
msgstr "Prompt del sistema"
|
msgstr "Prompt del sistema"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
||||||
#: lib/bds/ui/sidebar.ex:748
|
#: lib/bds/ui/sidebar.ex:785
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag Cloud"
|
msgid "Tag Cloud"
|
||||||
msgstr "Nube de etiquetas"
|
msgstr "Nube de etiquetas"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:745
|
#: lib/bds/ui/sidebar.ex:782
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag management"
|
msgid "Tag management"
|
||||||
msgstr "Gestión de etiquetas"
|
msgstr "Gestión de etiquetas"
|
||||||
@@ -2564,25 +2564,25 @@ msgstr "Nombre de la etiqueta"
|
|||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
||||||
#: lib/bds/tui.ex:1120
|
#: lib/bds/tui.ex:1226
|
||||||
#: lib/bds/ui/registry.ex:54
|
#: lib/bds/ui/registry.ex:54
|
||||||
#: lib/bds/ui/registry.ex:103
|
#: lib/bds/ui/registry.ex:103
|
||||||
#: lib/bds/ui/sidebar.ex:289
|
#: lib/bds/ui/sidebar.ex:289
|
||||||
#: lib/bds/ui/sidebar.ex:567
|
#: lib/bds/ui/sidebar.ex:587
|
||||||
#: lib/bds/ui/sidebar.ex:744
|
#: lib/bds/ui/sidebar.ex:781
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Etiquetas"
|
msgstr "Etiquetas"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:786
|
#: lib/bds/desktop/shell_live.ex:786
|
||||||
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tasks"
|
msgid "Tasks"
|
||||||
msgstr "Tareas"
|
msgstr "Tareas"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
||||||
#: lib/bds/ui/sidebar.ex:768
|
#: lib/bds/ui/sidebar.ex:805
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Technology"
|
msgid "Technology"
|
||||||
msgstr "Tecnología"
|
msgstr "Tecnología"
|
||||||
@@ -2621,7 +2621,7 @@ msgstr "La sintaxis de la plantilla es válida"
|
|||||||
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
||||||
#: lib/bds/tui.ex:1118
|
#: lib/bds/tui.ex:1224
|
||||||
#: lib/bds/ui/registry.ex:46
|
#: lib/bds/ui/registry.ex:46
|
||||||
#: lib/bds/ui/sidebar.ex:71
|
#: lib/bds/ui/sidebar.ex:71
|
||||||
#: lib/bds/ui/sidebar.ex:122
|
#: lib/bds/ui/sidebar.ex:122
|
||||||
@@ -2682,7 +2682,7 @@ msgid "Toggle Dev Tools"
|
|||||||
msgstr "Alternar herramientas de desarrollo"
|
msgstr "Alternar herramientas de desarrollo"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:287
|
#: lib/bds/ui/sidebar.ex:287
|
||||||
#: lib/bds/ui/sidebar.ex:565
|
#: lib/bds/ui/sidebar.ex:585
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Toggle Filters"
|
msgid "Toggle Filters"
|
||||||
msgstr "Alternar filtros"
|
msgstr "Alternar filtros"
|
||||||
@@ -2819,7 +2819,7 @@ msgstr "Sin guardar"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
||||||
#: lib/bds/ui/post_editor/metadata.ex:166
|
#: lib/bds/ui/post_editor/metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1108
|
#: lib/bds/ui/sidebar.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Sin título"
|
msgstr "Sin título"
|
||||||
@@ -2844,7 +2844,7 @@ msgid "Updated URLs"
|
|||||||
msgstr "URLs actualizadas"
|
msgstr "URLs actualizadas"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:259
|
#: lib/bds/desktop/menu_bar.ex:259
|
||||||
#: lib/bds/tui.ex:1267
|
#: lib/bds/tui.ex:1373
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Upload Site"
|
msgid "Upload Site"
|
||||||
msgstr "Subir sitio"
|
msgstr "Subir sitio"
|
||||||
@@ -2872,13 +2872,13 @@ msgid "Validate"
|
|||||||
msgstr "Validar"
|
msgstr "Validar"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:258
|
#: lib/bds/desktop/menu_bar.ex:258
|
||||||
#: lib/bds/tui.ex:1245
|
#: lib/bds/tui.ex:1351
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Site"
|
msgid "Validate Site"
|
||||||
msgstr "Validar sitio"
|
msgstr "Validar sitio"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:253
|
#: lib/bds/desktop/menu_bar.ex:253
|
||||||
#: lib/bds/tui.ex:1258
|
#: lib/bds/tui.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Translations"
|
msgid "Validate Translations"
|
||||||
msgstr "Validar traducciones"
|
msgstr "Validar traducciones"
|
||||||
@@ -2916,7 +2916,7 @@ msgid "Working tree"
|
|||||||
msgstr "Árbol de trabajo"
|
msgstr "Árbol de trabajo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
||||||
#: lib/bds/ui/sidebar.ex:790
|
#: lib/bds/ui/sidebar.ex:827
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working tree and history"
|
msgid "Working tree and history"
|
||||||
msgstr "Árbol de trabajo e historial"
|
msgstr "Árbol de trabajo e historial"
|
||||||
@@ -3093,13 +3093,13 @@ msgid "posts"
|
|||||||
msgstr "publicaciones"
|
msgstr "publicaciones"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:294
|
#: lib/bds/ui/sidebar.ex:294
|
||||||
#: lib/bds/ui/sidebar.ex:570
|
#: lib/bds/ui/sidebar.ex:590
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results"
|
msgid "results"
|
||||||
msgstr "resultados"
|
msgstr "resultados"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:295
|
#: lib/bds/ui/sidebar.ex:295
|
||||||
#: lib/bds/ui/sidebar.ex:571
|
#: lib/bds/ui/sidebar.ex:591
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr "resultados para"
|
msgstr "resultados para"
|
||||||
@@ -3460,28 +3460,28 @@ msgstr "Sincronizado"
|
|||||||
msgid "This project is not a Git repository yet."
|
msgid "This project is not a Git repository yet."
|
||||||
msgstr "Este proyecto aún no es un repositorio Git."
|
msgstr "Este proyecto aún no es un repositorio Git."
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:872
|
#: lib/bds/ui/sidebar.ex:909
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "added"
|
msgid "added"
|
||||||
msgstr "añadido"
|
msgstr "añadido"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:873
|
#: lib/bds/ui/sidebar.ex:910
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "deleted"
|
msgid "deleted"
|
||||||
msgstr "eliminado"
|
msgstr "eliminado"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:874
|
#: lib/bds/ui/sidebar.ex:911
|
||||||
#: lib/bds/ui/sidebar.ex:877
|
#: lib/bds/ui/sidebar.ex:914
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "modified"
|
msgid "modified"
|
||||||
msgstr "modificado"
|
msgstr "modificado"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:875
|
#: lib/bds/ui/sidebar.ex:912
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "renamed"
|
msgid "renamed"
|
||||||
msgstr "renombrado"
|
msgstr "renombrado"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:876
|
#: lib/bds/ui/sidebar.ex:913
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "untracked"
|
msgid "untracked"
|
||||||
msgstr "sin seguimiento"
|
msgstr "sin seguimiento"
|
||||||
@@ -3543,7 +3543,7 @@ msgid "Suggested tags"
|
|||||||
msgstr "Etiquetas sugeridas"
|
msgstr "Etiquetas sugeridas"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:257
|
#: lib/bds/desktop/menu_bar.ex:257
|
||||||
#: lib/bds/tui.ex:1246
|
#: lib/bds/tui.ex:1352
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Force Render Site"
|
msgid "Force Render Site"
|
||||||
msgstr "Forzar la regeneración del sitio"
|
msgstr "Forzar la regeneración del sitio"
|
||||||
@@ -3640,82 +3640,82 @@ msgstr "OK"
|
|||||||
msgid "The endpoint returned no models. You can still type a model name manually."
|
msgid "The endpoint returned no models. You can still type a model name manually."
|
||||||
msgstr "El endpoint no devolvió ningún modelo. Aún puedes escribir el nombre de un modelo manualmente."
|
msgstr "El endpoint no devolvió ningún modelo. Aún puedes escribir el nombre de un modelo manualmente."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1204
|
#: lib/bds/tui.ex:1310
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI is unavailable in airplane mode without a local endpoint."
|
msgid "AI is unavailable in airplane mode without a local endpoint."
|
||||||
msgstr "La IA no está disponible en modo avión sin un punto de conexión local."
|
msgstr "La IA no está disponible en modo avión sin un punto de conexión local."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Could not load this file."
|
msgid "Could not load this file."
|
||||||
msgstr "No se pudo cargar este archivo."
|
msgstr "No se pudo cargar este archivo."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:183
|
#: lib/bds/tui.ex:194
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editing this item is not available in the terminal UI yet."
|
msgid "Editing this item is not available in the terminal UI yet."
|
||||||
msgstr "La edición de este elemento aún no está disponible en la interfaz de terminal."
|
msgstr "La edición de este elemento aún no está disponible en la interfaz de terminal."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No suggestions returned."
|
msgid "No suggestions returned."
|
||||||
msgstr "No se recibieron sugerencias."
|
msgstr "No se recibieron sugerencias."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Only images can be previewed."
|
msgid "Only images can be previewed."
|
||||||
msgstr "Solo se pueden previsualizar imágenes."
|
msgstr "Solo se pueden previsualizar imágenes."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post not found."
|
msgid "Post not found."
|
||||||
msgstr "Entrada no encontrada."
|
msgstr "Entrada no encontrada."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:702
|
#: lib/bds/tui.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Press enter to preview %{name}."
|
msgid "Press enter to preview %{name}."
|
||||||
msgstr "Pulsa Intro para previsualizar %{name}."
|
msgstr "Pulsa Intro para previsualizar %{name}."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1174
|
#: lib/bds/tui.ex:1280
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published."
|
msgid "Published."
|
||||||
msgstr "Publicado."
|
msgstr "Publicado."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1190
|
#: lib/bds/tui.ex:1296
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save before switching languages."
|
msgid "Save before switching languages."
|
||||||
msgstr "Guarda antes de cambiar de idioma."
|
msgstr "Guarda antes de cambiar de idioma."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1175
|
#: lib/bds/tui.ex:1281
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved."
|
msgid "Saved."
|
||||||
msgstr "Guardado."
|
msgstr "Guardado."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:705
|
#: lib/bds/tui.ex:803
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select an entry and press enter to open it."
|
msgid "Select an entry and press enter to open it."
|
||||||
msgstr "Selecciona una entrada y pulsa Intro para abrirla."
|
msgstr "Selecciona una entrada y pulsa Intro para abrirla."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Suggestions applied."
|
msgid "Suggestions applied."
|
||||||
msgstr "Sugerencias aplicadas."
|
msgstr "Sugerencias aplicadas."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:717
|
#: lib/bds/tui.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (ctrl+t to edit)"
|
msgid "Title (ctrl+t to edit)"
|
||||||
msgstr "Título (ctrl+t para editar)"
|
msgstr "Título (ctrl+t para editar)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:716
|
#: lib/bds/tui.ex:814
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (editing — enter to confirm)"
|
msgid "Title (editing — enter to confirm)"
|
||||||
msgstr "Título (edición — Intro para confirmar)"
|
msgstr "Título (edición — Intro para confirmar)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:764
|
#: lib/bds/tui.ex:863
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working…"
|
msgid "Working…"
|
||||||
msgstr "Procesando…"
|
msgstr "Procesando…"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:786
|
#: lib/bds/tui.ex:885
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "esc to close"
|
msgid "esc to close"
|
||||||
msgstr "esc para cerrar"
|
msgstr "esc para cerrar"
|
||||||
@@ -3752,122 +3752,122 @@ msgstr "Dirección del servidor (user@host o user@host:port), autenticación de
|
|||||||
msgid "Use the form user@host or user@host:port."
|
msgid "Use the form user@host or user@host:port."
|
||||||
msgstr "Usa el formato user@host o user@host:port."
|
msgstr "Usa el formato user@host o user@host:port."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:736
|
#: lib/bds/tui.ex:834
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview (ctrl+e to edit)"
|
msgid "Preview (ctrl+e to edit)"
|
||||||
msgstr "Vista previa (ctrl+e para editar)"
|
msgstr "Vista previa (ctrl+e para editar)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1029
|
#: lib/bds/tui.ex:1128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
||||||
msgstr "ctrl+s guardar · ctrl+p publicar · ctrl+e vista previa · ctrl+t título · ctrl+l idioma · ctrl+g IA · esc volver"
|
msgstr "ctrl+s guardar · ctrl+p publicar · ctrl+e vista previa · ctrl+t título · ctrl+l idioma · ctrl+g IA · esc volver"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "All tasks finished."
|
msgid "All tasks finished."
|
||||||
msgstr "Todas las tareas han terminado."
|
msgstr "Todas las tareas han terminado."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:812
|
#: lib/bds/tui.ex:911
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Commands — esc to close"
|
msgid "Commands — esc to close"
|
||||||
msgstr "Comandos — esc para cerrar"
|
msgstr "Comandos — esc para cerrar"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:438
|
#: lib/bds/tui.ex:529
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown command."
|
msgid "Unknown command."
|
||||||
msgstr "Comando desconocido."
|
msgstr "Comando desconocido."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:802
|
#: lib/bds/tui.ex:901
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "[report/apply in GUI]"
|
msgid "[report/apply in GUI]"
|
||||||
msgstr "[informe/aplicación en la GUI]"
|
msgstr "[informe/aplicación en la GUI]"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:951
|
#: lib/bds/tui.ex:1050
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{diffs} differences · %{orphans} orphan files"
|
msgid "%{diffs} differences · %{orphans} orphan files"
|
||||||
msgstr "%{diffs} diferencias · %{orphans} archivos huérfanos"
|
msgstr "%{diffs} diferencias · %{orphans} archivos huérfanos"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:983
|
#: lib/bds/tui.ex:1082
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Expected %{expected} · Existing %{existing}"
|
msgid "Expected %{expected} · Existing %{existing}"
|
||||||
msgstr "Esperados %{expected} · Existentes %{existing}"
|
msgstr "Esperados %{expected} · Existentes %{existing}"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1000
|
#: lib/bds/tui.ex:1099
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Extra files (will be removed):"
|
msgid "Extra files (will be removed):"
|
||||||
msgstr "Archivos sobrantes (se eliminarán):"
|
msgstr "Archivos sobrantes (se eliminarán):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:996
|
#: lib/bds/tui.ex:1095
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Missing pages (will be rendered):"
|
msgid "Missing pages (will be rendered):"
|
||||||
msgstr "Páginas faltantes (se generarán):"
|
msgstr "Páginas faltantes (se generarán):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to apply."
|
msgid "Nothing to apply."
|
||||||
msgstr "Nada que aplicar."
|
msgstr "Nada que aplicar."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to repair."
|
msgid "Nothing to repair."
|
||||||
msgstr "Nada que reparar."
|
msgstr "Nada que reparar."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:974
|
#: lib/bds/tui.ex:1073
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Orphan files (not in database):"
|
msgid "Orphan files (not in database):"
|
||||||
msgstr "Archivos huérfanos (no están en la base de datos):"
|
msgstr "Archivos huérfanos (no están en la base de datos):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:990
|
#: lib/bds/tui.ex:1089
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sitemap changed."
|
msgid "Sitemap changed."
|
||||||
msgstr "Sitemap modificado."
|
msgstr "Sitemap modificado."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1004
|
#: lib/bds/tui.ex:1103
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Updated posts (will be re-rendered):"
|
msgid "Updated posts (will be re-rendered):"
|
||||||
msgstr "Entradas actualizadas (se volverán a generar):"
|
msgstr "Entradas actualizadas (se volverán a generar):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:941
|
#: lib/bds/tui.ex:1040
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter apply changes · esc close"
|
msgid "enter apply changes · esc close"
|
||||||
msgstr "intro aplicar cambios · esc cerrar"
|
msgstr "intro aplicar cambios · esc cerrar"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:936
|
#: lib/bds/tui.ex:1035
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter repair all from files · esc close"
|
msgid "enter repair all from files · esc close"
|
||||||
msgstr "intro reparar todo desde archivos · esc cerrar"
|
msgstr "intro reparar todo desde archivos · esc cerrar"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:403
|
#: lib/bds/tui.ex:494
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Imported Blog"
|
msgid "Imported Blog"
|
||||||
msgstr "Blog importado"
|
msgstr "Blog importado"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:422
|
#: lib/bds/tui.ex:513
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Not a folder: %{path}"
|
msgid "Not a folder: %{path}"
|
||||||
msgstr "No es una carpeta: %{path}"
|
msgstr "No es una carpeta: %{path}"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:878
|
#: lib/bds/tui.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects — enter switch · o open existing · esc close"
|
msgid "Projects — enter switch · o open existing · esc close"
|
||||||
msgstr "Proyectos — intro cambiar · o abrir existente · esc cerrar"
|
msgstr "Proyectos — intro cambiar · o abrir existente · esc cerrar"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:330
|
#: lib/bds/tui.ex:421
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Switched to %{name}."
|
msgid "Switched to %{name}."
|
||||||
msgstr "Cambiado a %{name}."
|
msgstr "Cambiado a %{name}."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1022
|
#: lib/bds/tui.ex:1005
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "enter open · n new post · 1-5 views · p projects · : commands (:? help) · r refresh · ctrl+q quit"
|
|
||||||
msgstr "intro abrir · n nueva entrada · 1-5 vistas · p proyectos · : comandos (:? ayuda) · r actualizar · ctrl+q salir"
|
|
||||||
|
|
||||||
#: lib/bds/tui.ex:906
|
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Matching folders"
|
msgid "Matching folders"
|
||||||
msgstr "Carpetas coincidentes"
|
msgstr "Carpetas coincidentes"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:844
|
#: lib/bds/tui.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
||||||
msgstr "Abrir blog existente — escribe la ruta de una carpeta · tab completar · intro abrir · esc volver"
|
msgstr "Abrir blog existente — escribe la ruta de una carpeta · tab completar · intro abrir · esc volver"
|
||||||
|
|
||||||
|
#: lib/bds/tui.ex:1121
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "enter open · n new post · 1-5 views · p projects · / search · : commands (:? help) · r refresh · ctrl+q quit"
|
||||||
|
msgstr "intro abrir · n nueva entrada · 1-5 vistas · p proyectos · / buscar · : comandos (:? ayuda) · r actualizar · ctrl+q salir"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#: lib/bds/rendering/labels.ex:18
|
#: lib/bds/rendering/labels.ex:18
|
||||||
#: lib/bds/ui/sidebar.ex:288
|
#: lib/bds/ui/sidebar.ex:288
|
||||||
#: lib/bds/ui/sidebar.ex:566
|
#: lib/bds/ui/sidebar.ex:586
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "Archives"
|
msgstr "Archives"
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ msgid "--"
|
|||||||
msgstr "--"
|
msgstr "--"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
||||||
#: lib/bds/ui/sidebar.ex:765
|
#: lib/bds/ui/sidebar.ex:802
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI"
|
msgid "AI"
|
||||||
msgstr "IA"
|
msgstr "IA"
|
||||||
@@ -81,11 +81,11 @@ msgstr "Paramètres IA"
|
|||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#: lib/bds/tui.ex:570
|
#: lib/bds/tui.ex:661
|
||||||
#: lib/bds/tui.ex:578
|
#: lib/bds/tui.ex:669
|
||||||
#: lib/bds/tui.ex:1203
|
#: lib/bds/tui.ex:1309
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
msgstr "Suggestions IA"
|
msgstr "Suggestions IA"
|
||||||
@@ -527,7 +527,7 @@ msgid "Clear categories"
|
|||||||
msgstr "Effacer les catégories"
|
msgstr "Effacer les catégories"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:293
|
#: lib/bds/ui/sidebar.ex:293
|
||||||
#: lib/bds/ui/sidebar.ex:569
|
#: lib/bds/ui/sidebar.ex:589
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr "Effacer les filtres"
|
msgstr "Effacer les filtres"
|
||||||
@@ -539,7 +539,7 @@ msgid "Clear mapping"
|
|||||||
msgstr "Effacer le mapping"
|
msgstr "Effacer le mapping"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:291
|
#: lib/bds/ui/sidebar.ex:291
|
||||||
#: lib/bds/ui/sidebar.ex:568
|
#: lib/bds/ui/sidebar.ex:588
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear tags"
|
msgid "Clear tags"
|
||||||
msgstr "Effacer les étiquettes"
|
msgstr "Effacer les étiquettes"
|
||||||
@@ -572,7 +572,7 @@ msgid "Collapse unchanged diff hunks"
|
|||||||
msgstr "Réduire les blocs de diff inchangés"
|
msgstr "Réduire les blocs de diff inchangés"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
||||||
#: lib/bds/tui.ex:1299
|
#: lib/bds/tui.ex:1405
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr "Commande terminée"
|
msgstr "Commande terminée"
|
||||||
@@ -590,8 +590,8 @@ msgstr "Confirmer"
|
|||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
||||||
#: lib/bds/tui.ex:747
|
#: lib/bds/tui.ex:845
|
||||||
#: lib/bds/ui/sidebar.ex:764
|
#: lib/bds/ui/sidebar.ex:801
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenu"
|
msgstr "Contenu"
|
||||||
@@ -632,7 +632,7 @@ msgid "Create"
|
|||||||
msgstr "Créer"
|
msgstr "Créer"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
||||||
#: lib/bds/ui/sidebar.ex:749
|
#: lib/bds/ui/sidebar.ex:786
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create / Edit"
|
msgid "Create / Edit"
|
||||||
msgstr "Créer / modifier"
|
msgstr "Créer / modifier"
|
||||||
@@ -678,7 +678,7 @@ msgstr "Sombre"
|
|||||||
msgid "Dashboard"
|
msgid "Dashboard"
|
||||||
msgstr "Tableau de bord"
|
msgstr "Tableau de bord"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:778
|
#: lib/bds/ui/sidebar.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr "Données"
|
msgstr "Données"
|
||||||
@@ -913,7 +913,7 @@ msgstr "Modifier la traduction"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:513
|
#: lib/bds/desktop/shell_live/index.html.heex:513
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
||||||
#: lib/bds/ui/sidebar.ex:763
|
#: lib/bds/ui/sidebar.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editor"
|
msgid "Editor"
|
||||||
msgstr "Éditeur"
|
msgstr "Éditeur"
|
||||||
@@ -1030,7 +1030,7 @@ msgid "Filename"
|
|||||||
msgstr "Nom de fichier"
|
msgstr "Nom de fichier"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:254
|
#: lib/bds/desktop/menu_bar.ex:254
|
||||||
#: lib/bds/tui.ex:1263
|
#: lib/bds/tui.ex:1369
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Fill Missing Translations"
|
msgid "Fill Missing Translations"
|
||||||
msgstr "Compléter les traductions manquantes"
|
msgstr "Compléter les traductions manquantes"
|
||||||
@@ -1041,7 +1041,7 @@ msgid "Find"
|
|||||||
msgstr "Rechercher"
|
msgstr "Rechercher"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:255
|
#: lib/bds/desktop/menu_bar.ex:255
|
||||||
#: lib/bds/tui.ex:1266
|
#: lib/bds/tui.ex:1372
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Find Duplicate Posts"
|
msgid "Find Duplicate Posts"
|
||||||
msgstr "Trouver les doublons"
|
msgstr "Trouver les doublons"
|
||||||
@@ -1068,14 +1068,14 @@ msgid "Gallery"
|
|||||||
msgstr "Galerie"
|
msgstr "Galerie"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:256
|
#: lib/bds/desktop/menu_bar.ex:256
|
||||||
#: lib/bds/tui.ex:1247
|
#: lib/bds/tui.ex:1353
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Generate Site"
|
msgid "Generate Site"
|
||||||
msgstr "Générer le site"
|
msgstr "Générer le site"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:792
|
#: lib/bds/desktop/shell_live.ex:792
|
||||||
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
||||||
#: lib/bds/ui/sidebar.ex:789
|
#: lib/bds/ui/sidebar.ex:826
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Git"
|
msgid "Git"
|
||||||
msgstr "Git"
|
msgstr "Git"
|
||||||
@@ -1126,7 +1126,7 @@ msgstr "Inactif"
|
|||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr "Ignorer"
|
msgstr "Ignorer"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:559
|
#: lib/bds/ui/sidebar.ex:579
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Images and files"
|
msgid "Images and files"
|
||||||
msgstr "Images et fichiers"
|
msgstr "Images et fichiers"
|
||||||
@@ -1332,7 +1332,7 @@ msgstr "Charger plus"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
||||||
#: lib/bds/ui/sidebar.ex:779
|
#: lib/bds/ui/sidebar.ex:816
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "MCP"
|
msgid "MCP"
|
||||||
msgstr "MCP"
|
msgstr "MCP"
|
||||||
@@ -1389,12 +1389,12 @@ msgstr "Nombre maximal d’articles par page"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
||||||
#: lib/bds/tui.ex:1117
|
#: lib/bds/tui.ex:1223
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#: lib/bds/ui/registry.ex:30
|
#: lib/bds/ui/registry.ex:30
|
||||||
#: lib/bds/ui/registry.ex:100
|
#: lib/bds/ui/registry.ex:100
|
||||||
#: lib/bds/ui/sidebar.ex:558
|
#: lib/bds/ui/sidebar.ex:578
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr "Médias"
|
msgstr "Médias"
|
||||||
@@ -1420,7 +1420,7 @@ msgid "Merge"
|
|||||||
msgstr "Fusionner"
|
msgstr "Fusionner"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
||||||
#: lib/bds/ui/sidebar.ex:750
|
#: lib/bds/ui/sidebar.ex:787
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Merge Tags"
|
msgid "Merge Tags"
|
||||||
msgstr "Fusionner les tags"
|
msgstr "Fusionner les tags"
|
||||||
@@ -1434,11 +1434,11 @@ msgstr "Métadonnées"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#: lib/bds/tui.ex:224
|
|
||||||
#: lib/bds/tui.ex:235
|
#: lib/bds/tui.ex:235
|
||||||
#: lib/bds/tui.ex:935
|
#: lib/bds/tui.ex:246
|
||||||
#: lib/bds/tui.ex:1244
|
#: lib/bds/tui.ex:1034
|
||||||
|
#: lib/bds/tui.ex:1350
|
||||||
#: lib/bds/ui/registry.ex:111
|
#: lib/bds/ui/registry.ex:111
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Metadata Diff"
|
msgid "Metadata Diff"
|
||||||
@@ -1484,7 +1484,7 @@ msgstr "Nouvelle page"
|
|||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:214
|
#: lib/bds/desktop/menu_bar.ex:214
|
||||||
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
||||||
#: lib/bds/tui.ex:175
|
#: lib/bds/tui.ex:186
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Post"
|
msgid "New Post"
|
||||||
msgstr "Nouvel article"
|
msgstr "Nouvel article"
|
||||||
@@ -1544,8 +1544,8 @@ msgstr "Pas encore d'historique Git"
|
|||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
||||||
#: lib/bds/ui/sidebar.ex:202
|
#: lib/bds/ui/sidebar.ex:202
|
||||||
#: lib/bds/ui/sidebar.ex:792
|
#: lib/bds/ui/sidebar.ex:829
|
||||||
#: lib/bds/ui/sidebar.ex:899
|
#: lib/bds/ui/sidebar.ex:936
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No items"
|
msgid "No items"
|
||||||
msgstr "Aucun élément"
|
msgstr "Aucun élément"
|
||||||
@@ -1570,8 +1570,8 @@ msgstr "Aucune page correspondante trouvée."
|
|||||||
msgid "No matching posts"
|
msgid "No matching posts"
|
||||||
msgstr "Aucun article correspondant"
|
msgstr "Aucun article correspondant"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:561
|
#: lib/bds/ui/sidebar.ex:581
|
||||||
#: lib/bds/ui/sidebar.ex:572
|
#: lib/bds/ui/sidebar.ex:592
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No media files"
|
msgid "No media files"
|
||||||
msgstr "Aucun fichier média"
|
msgstr "Aucun fichier média"
|
||||||
@@ -1762,8 +1762,8 @@ msgid "Open Data Folder"
|
|||||||
msgstr "Ouvrir le dossier de données"
|
msgstr "Ouvrir le dossier de données"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:644
|
#: lib/bds/desktop/shell_live/index.html.heex:644
|
||||||
#: lib/bds/tui.ex:416
|
#: lib/bds/tui.ex:507
|
||||||
#: lib/bds/tui.ex:421
|
#: lib/bds/tui.ex:512
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog"
|
msgid "Open Existing Blog"
|
||||||
msgstr "Ouvrir un blog existant"
|
msgstr "Ouvrir un blog existant"
|
||||||
@@ -1775,7 +1775,7 @@ msgid "Open Settings"
|
|||||||
msgstr "Ouvrir les Réglages"
|
msgstr "Ouvrir les Réglages"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:217
|
#: lib/bds/desktop/menu_bar.ex:217
|
||||||
#: lib/bds/tui.ex:1268
|
#: lib/bds/tui.ex:1374
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open in Browser"
|
msgid "Open in Browser"
|
||||||
msgstr "Ouvrir dans le navigateur"
|
msgstr "Ouvrir dans le navigateur"
|
||||||
@@ -1923,8 +1923,8 @@ msgstr "Article enregistré"
|
|||||||
#: lib/bds/desktop/menu_bar.ex:233
|
#: lib/bds/desktop/menu_bar.ex:233
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
||||||
#: lib/bds/tui.ex:1116
|
#: lib/bds/tui.ex:1222
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#: lib/bds/ui/registry.ex:14
|
#: lib/bds/ui/registry.ex:14
|
||||||
#: lib/bds/ui/sidebar.ex:271
|
#: lib/bds/ui/sidebar.ex:271
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -1966,7 +1966,7 @@ msgstr "Aperçu non disponible"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
||||||
#: lib/bds/ui/sidebar.ex:762
|
#: lib/bds/ui/sidebar.ex:799
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project"
|
msgid "Project"
|
||||||
msgstr "Projet"
|
msgstr "Projet"
|
||||||
@@ -1976,15 +1976,15 @@ msgstr "Projet"
|
|||||||
msgid "Project Name"
|
msgid "Project Name"
|
||||||
msgstr "Nom du projet"
|
msgstr "Nom du projet"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:759
|
#: lib/bds/ui/sidebar.ex:796
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project and publishing"
|
msgid "Project and publishing"
|
||||||
msgstr "Projet et publication"
|
msgstr "Projet et publication"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:623
|
#: lib/bds/desktop/shell_live/index.html.heex:623
|
||||||
#: lib/bds/tui.ex:329
|
#: lib/bds/tui.ex:420
|
||||||
#: lib/bds/tui.ex:334
|
#: lib/bds/tui.ex:425
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects"
|
msgid "Projects"
|
||||||
msgstr "Projets"
|
msgstr "Projets"
|
||||||
@@ -2028,7 +2028,7 @@ msgstr "Traduction publiée avec contenu encore en base au lieu du système de f
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
||||||
#: lib/bds/ui/sidebar.ex:774
|
#: lib/bds/ui/sidebar.ex:811
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Publishing"
|
msgid "Publishing"
|
||||||
msgstr "Publication"
|
msgstr "Publication"
|
||||||
@@ -2050,15 +2050,15 @@ msgid "Ready to import:"
|
|||||||
msgstr "Prêt à importer :"
|
msgstr "Prêt à importer :"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:248
|
#: lib/bds/desktop/menu_bar.ex:248
|
||||||
#: lib/bds/tui.ex:413
|
#: lib/bds/tui.ex:504
|
||||||
#: lib/bds/tui.ex:1248
|
#: lib/bds/tui.ex:1354
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Database"
|
msgid "Rebuild Database"
|
||||||
msgstr "Reconstruire la base de données"
|
msgstr "Reconstruire la base de données"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:250
|
#: lib/bds/desktop/menu_bar.ex:250
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
||||||
#: lib/bds/tui.ex:1252
|
#: lib/bds/tui.ex:1358
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Embedding Index"
|
msgid "Rebuild Embedding Index"
|
||||||
msgstr "Reconstruire l’index d’embeddings"
|
msgstr "Reconstruire l’index d’embeddings"
|
||||||
@@ -2116,7 +2116,7 @@ msgid "Refresh Translation"
|
|||||||
msgstr "Actualiser la traduction"
|
msgstr "Actualiser la traduction"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:252
|
#: lib/bds/desktop/menu_bar.ex:252
|
||||||
#: lib/bds/tui.ex:1255
|
#: lib/bds/tui.ex:1361
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Regenerate Calendar"
|
msgid "Regenerate Calendar"
|
||||||
msgstr "Régénérer le calendrier"
|
msgstr "Régénérer le calendrier"
|
||||||
@@ -2127,7 +2127,7 @@ msgid "Regenerate Missing Thumbnails"
|
|||||||
msgstr "Régénérer les vignettes manquantes"
|
msgstr "Régénérer les vignettes manquantes"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:249
|
#: lib/bds/desktop/menu_bar.ex:249
|
||||||
#: lib/bds/tui.ex:1249
|
#: lib/bds/tui.ex:1355
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reindex Text"
|
msgid "Reindex Text"
|
||||||
msgstr "Réindexer le texte"
|
msgstr "Réindexer le texte"
|
||||||
@@ -2313,7 +2313,7 @@ msgstr "Les capacités de script sont configurées au niveau de l’application
|
|||||||
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
||||||
#: lib/bds/tui.ex:1119
|
#: lib/bds/tui.ex:1225
|
||||||
#: lib/bds/ui/registry.ex:38
|
#: lib/bds/ui/registry.ex:38
|
||||||
#: lib/bds/ui/sidebar.ex:63
|
#: lib/bds/ui/sidebar.ex:63
|
||||||
#: lib/bds/ui/sidebar.ex:115
|
#: lib/bds/ui/sidebar.ex:115
|
||||||
@@ -2328,7 +2328,7 @@ msgid "Search"
|
|||||||
msgstr "Rechercher"
|
msgstr "Rechercher"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
||||||
#: lib/bds/ui/sidebar.ex:564
|
#: lib/bds/ui/sidebar.ex:584
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search media..."
|
msgid "Search media..."
|
||||||
msgstr "Rechercher des médias..."
|
msgstr "Rechercher des médias..."
|
||||||
@@ -2420,7 +2420,7 @@ msgstr "Similarité sémantique"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
||||||
#: lib/bds/ui/registry.ex:86
|
#: lib/bds/ui/registry.ex:86
|
||||||
#: lib/bds/ui/registry.ex:101
|
#: lib/bds/ui/registry.ex:101
|
||||||
#: lib/bds/ui/sidebar.ex:758
|
#: lib/bds/ui/sidebar.ex:795
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Paramètres"
|
msgstr "Paramètres"
|
||||||
@@ -2441,9 +2441,9 @@ msgid "Site"
|
|||||||
msgstr "Site"
|
msgstr "Site"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#: lib/bds/tui.ex:253
|
#: lib/bds/tui.ex:264
|
||||||
#: lib/bds/tui.ex:940
|
#: lib/bds/tui.ex:1039
|
||||||
#: lib/bds/ui/registry.ex:125
|
#: lib/bds/ui/registry.ex:125
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site Validation"
|
msgid "Site Validation"
|
||||||
@@ -2507,7 +2507,7 @@ msgstr "Arrêter"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
||||||
#: lib/bds/ui/registry.ex:102
|
#: lib/bds/ui/registry.ex:102
|
||||||
#: lib/bds/ui/sidebar.ex:780
|
#: lib/bds/ui/sidebar.ex:817
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Style"
|
msgid "Style"
|
||||||
msgstr "Style"
|
msgstr "Style"
|
||||||
@@ -2538,12 +2538,12 @@ msgid "System Prompt"
|
|||||||
msgstr "Prompt système"
|
msgstr "Prompt système"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
||||||
#: lib/bds/ui/sidebar.ex:748
|
#: lib/bds/ui/sidebar.ex:785
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag Cloud"
|
msgid "Tag Cloud"
|
||||||
msgstr "Nuage de tags"
|
msgstr "Nuage de tags"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:745
|
#: lib/bds/ui/sidebar.ex:782
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag management"
|
msgid "Tag management"
|
||||||
msgstr "Gestion des tags"
|
msgstr "Gestion des tags"
|
||||||
@@ -2564,25 +2564,25 @@ msgstr "Nom du mot-clé"
|
|||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
||||||
#: lib/bds/tui.ex:1120
|
#: lib/bds/tui.ex:1226
|
||||||
#: lib/bds/ui/registry.ex:54
|
#: lib/bds/ui/registry.ex:54
|
||||||
#: lib/bds/ui/registry.ex:103
|
#: lib/bds/ui/registry.ex:103
|
||||||
#: lib/bds/ui/sidebar.ex:289
|
#: lib/bds/ui/sidebar.ex:289
|
||||||
#: lib/bds/ui/sidebar.ex:567
|
#: lib/bds/ui/sidebar.ex:587
|
||||||
#: lib/bds/ui/sidebar.ex:744
|
#: lib/bds/ui/sidebar.ex:781
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tags"
|
msgstr "Tags"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:786
|
#: lib/bds/desktop/shell_live.ex:786
|
||||||
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tasks"
|
msgid "Tasks"
|
||||||
msgstr "Tâches"
|
msgstr "Tâches"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
||||||
#: lib/bds/ui/sidebar.ex:768
|
#: lib/bds/ui/sidebar.ex:805
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Technology"
|
msgid "Technology"
|
||||||
msgstr "Technologie"
|
msgstr "Technologie"
|
||||||
@@ -2621,7 +2621,7 @@ msgstr "La syntaxe du template est valide"
|
|||||||
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
||||||
#: lib/bds/tui.ex:1118
|
#: lib/bds/tui.ex:1224
|
||||||
#: lib/bds/ui/registry.ex:46
|
#: lib/bds/ui/registry.ex:46
|
||||||
#: lib/bds/ui/sidebar.ex:71
|
#: lib/bds/ui/sidebar.ex:71
|
||||||
#: lib/bds/ui/sidebar.ex:122
|
#: lib/bds/ui/sidebar.ex:122
|
||||||
@@ -2682,7 +2682,7 @@ msgid "Toggle Dev Tools"
|
|||||||
msgstr "Afficher/masquer les outils de développement"
|
msgstr "Afficher/masquer les outils de développement"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:287
|
#: lib/bds/ui/sidebar.ex:287
|
||||||
#: lib/bds/ui/sidebar.ex:565
|
#: lib/bds/ui/sidebar.ex:585
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Toggle Filters"
|
msgid "Toggle Filters"
|
||||||
msgstr "Afficher/masquer les filtres"
|
msgstr "Afficher/masquer les filtres"
|
||||||
@@ -2819,7 +2819,7 @@ msgstr "Non enregistré"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
||||||
#: lib/bds/ui/post_editor/metadata.ex:166
|
#: lib/bds/ui/post_editor/metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1108
|
#: lib/bds/ui/sidebar.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Sans titre"
|
msgstr "Sans titre"
|
||||||
@@ -2844,7 +2844,7 @@ msgid "Updated URLs"
|
|||||||
msgstr "URLs mises à jour"
|
msgstr "URLs mises à jour"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:259
|
#: lib/bds/desktop/menu_bar.ex:259
|
||||||
#: lib/bds/tui.ex:1267
|
#: lib/bds/tui.ex:1373
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Upload Site"
|
msgid "Upload Site"
|
||||||
msgstr "Téléverser le site"
|
msgstr "Téléverser le site"
|
||||||
@@ -2872,13 +2872,13 @@ msgid "Validate"
|
|||||||
msgstr "Valider"
|
msgstr "Valider"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:258
|
#: lib/bds/desktop/menu_bar.ex:258
|
||||||
#: lib/bds/tui.ex:1245
|
#: lib/bds/tui.ex:1351
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Site"
|
msgid "Validate Site"
|
||||||
msgstr "Valider le site"
|
msgstr "Valider le site"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:253
|
#: lib/bds/desktop/menu_bar.ex:253
|
||||||
#: lib/bds/tui.ex:1258
|
#: lib/bds/tui.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Translations"
|
msgid "Validate Translations"
|
||||||
msgstr "Valider les traductions"
|
msgstr "Valider les traductions"
|
||||||
@@ -2916,7 +2916,7 @@ msgid "Working tree"
|
|||||||
msgstr "Arbre de travail"
|
msgstr "Arbre de travail"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
||||||
#: lib/bds/ui/sidebar.ex:790
|
#: lib/bds/ui/sidebar.ex:827
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working tree and history"
|
msgid "Working tree and history"
|
||||||
msgstr "Arbre de travail et historique"
|
msgstr "Arbre de travail et historique"
|
||||||
@@ -3093,13 +3093,13 @@ msgid "posts"
|
|||||||
msgstr "articles"
|
msgstr "articles"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:294
|
#: lib/bds/ui/sidebar.ex:294
|
||||||
#: lib/bds/ui/sidebar.ex:570
|
#: lib/bds/ui/sidebar.ex:590
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results"
|
msgid "results"
|
||||||
msgstr "résultats"
|
msgstr "résultats"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:295
|
#: lib/bds/ui/sidebar.ex:295
|
||||||
#: lib/bds/ui/sidebar.ex:571
|
#: lib/bds/ui/sidebar.ex:591
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr "résultats pour"
|
msgstr "résultats pour"
|
||||||
@@ -3460,28 +3460,28 @@ msgstr "Synchronisé"
|
|||||||
msgid "This project is not a Git repository yet."
|
msgid "This project is not a Git repository yet."
|
||||||
msgstr "Ce projet n’est pas encore un dépôt Git."
|
msgstr "Ce projet n’est pas encore un dépôt Git."
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:872
|
#: lib/bds/ui/sidebar.ex:909
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "added"
|
msgid "added"
|
||||||
msgstr "ajouté"
|
msgstr "ajouté"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:873
|
#: lib/bds/ui/sidebar.ex:910
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "deleted"
|
msgid "deleted"
|
||||||
msgstr "supprimé"
|
msgstr "supprimé"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:874
|
#: lib/bds/ui/sidebar.ex:911
|
||||||
#: lib/bds/ui/sidebar.ex:877
|
#: lib/bds/ui/sidebar.ex:914
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "modified"
|
msgid "modified"
|
||||||
msgstr "modifié"
|
msgstr "modifié"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:875
|
#: lib/bds/ui/sidebar.ex:912
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "renamed"
|
msgid "renamed"
|
||||||
msgstr "renommé"
|
msgstr "renommé"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:876
|
#: lib/bds/ui/sidebar.ex:913
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "untracked"
|
msgid "untracked"
|
||||||
msgstr "non suivi"
|
msgstr "non suivi"
|
||||||
@@ -3543,7 +3543,7 @@ msgid "Suggested tags"
|
|||||||
msgstr "Tags suggérés"
|
msgstr "Tags suggérés"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:257
|
#: lib/bds/desktop/menu_bar.ex:257
|
||||||
#: lib/bds/tui.ex:1246
|
#: lib/bds/tui.ex:1352
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Force Render Site"
|
msgid "Force Render Site"
|
||||||
msgstr "Forcer la régénération du site"
|
msgstr "Forcer la régénération du site"
|
||||||
@@ -3640,82 +3640,82 @@ msgstr "OK"
|
|||||||
msgid "The endpoint returned no models. You can still type a model name manually."
|
msgid "The endpoint returned no models. You can still type a model name manually."
|
||||||
msgstr "Le point de terminaison n'a renvoyé aucun modèle. Vous pouvez toujours saisir un nom de modèle manuellement."
|
msgstr "Le point de terminaison n'a renvoyé aucun modèle. Vous pouvez toujours saisir un nom de modèle manuellement."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1204
|
#: lib/bds/tui.ex:1310
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI is unavailable in airplane mode without a local endpoint."
|
msgid "AI is unavailable in airplane mode without a local endpoint."
|
||||||
msgstr "L'IA n'est pas disponible en mode avion sans point de terminaison local."
|
msgstr "L'IA n'est pas disponible en mode avion sans point de terminaison local."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Could not load this file."
|
msgid "Could not load this file."
|
||||||
msgstr "Impossible de charger ce fichier."
|
msgstr "Impossible de charger ce fichier."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:183
|
#: lib/bds/tui.ex:194
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editing this item is not available in the terminal UI yet."
|
msgid "Editing this item is not available in the terminal UI yet."
|
||||||
msgstr "La modification de cet élément n'est pas encore disponible dans l'interface du terminal."
|
msgstr "La modification de cet élément n'est pas encore disponible dans l'interface du terminal."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No suggestions returned."
|
msgid "No suggestions returned."
|
||||||
msgstr "Aucune suggestion reçue."
|
msgstr "Aucune suggestion reçue."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Only images can be previewed."
|
msgid "Only images can be previewed."
|
||||||
msgstr "Seules les images peuvent être prévisualisées."
|
msgstr "Seules les images peuvent être prévisualisées."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post not found."
|
msgid "Post not found."
|
||||||
msgstr "Article introuvable."
|
msgstr "Article introuvable."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:702
|
#: lib/bds/tui.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Press enter to preview %{name}."
|
msgid "Press enter to preview %{name}."
|
||||||
msgstr "Appuyez sur Entrée pour prévisualiser %{name}."
|
msgstr "Appuyez sur Entrée pour prévisualiser %{name}."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1174
|
#: lib/bds/tui.ex:1280
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published."
|
msgid "Published."
|
||||||
msgstr "Publié."
|
msgstr "Publié."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1190
|
#: lib/bds/tui.ex:1296
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save before switching languages."
|
msgid "Save before switching languages."
|
||||||
msgstr "Enregistrez avant de changer de langue."
|
msgstr "Enregistrez avant de changer de langue."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1175
|
#: lib/bds/tui.ex:1281
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved."
|
msgid "Saved."
|
||||||
msgstr "Enregistré."
|
msgstr "Enregistré."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:705
|
#: lib/bds/tui.ex:803
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select an entry and press enter to open it."
|
msgid "Select an entry and press enter to open it."
|
||||||
msgstr "Sélectionnez une entrée et appuyez sur Entrée pour l'ouvrir."
|
msgstr "Sélectionnez une entrée et appuyez sur Entrée pour l'ouvrir."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Suggestions applied."
|
msgid "Suggestions applied."
|
||||||
msgstr "Suggestions appliquées."
|
msgstr "Suggestions appliquées."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:717
|
#: lib/bds/tui.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (ctrl+t to edit)"
|
msgid "Title (ctrl+t to edit)"
|
||||||
msgstr "Titre (ctrl+t pour modifier)"
|
msgstr "Titre (ctrl+t pour modifier)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:716
|
#: lib/bds/tui.ex:814
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (editing — enter to confirm)"
|
msgid "Title (editing — enter to confirm)"
|
||||||
msgstr "Titre (édition — Entrée pour confirmer)"
|
msgstr "Titre (édition — Entrée pour confirmer)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:764
|
#: lib/bds/tui.ex:863
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working…"
|
msgid "Working…"
|
||||||
msgstr "Traitement en cours…"
|
msgstr "Traitement en cours…"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:786
|
#: lib/bds/tui.ex:885
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "esc to close"
|
msgid "esc to close"
|
||||||
msgstr "échap pour fermer"
|
msgstr "échap pour fermer"
|
||||||
@@ -3752,122 +3752,122 @@ msgstr "Adresse du serveur (user@host ou user@host:port), authentification par c
|
|||||||
msgid "Use the form user@host or user@host:port."
|
msgid "Use the form user@host or user@host:port."
|
||||||
msgstr "Utilisez le format user@host ou user@host:port."
|
msgstr "Utilisez le format user@host ou user@host:port."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:736
|
#: lib/bds/tui.ex:834
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview (ctrl+e to edit)"
|
msgid "Preview (ctrl+e to edit)"
|
||||||
msgstr "Aperçu (ctrl+e pour modifier)"
|
msgstr "Aperçu (ctrl+e pour modifier)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1029
|
#: lib/bds/tui.ex:1128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
||||||
msgstr "ctrl+s enregistrer · ctrl+p publier · ctrl+e aperçu · ctrl+t titre · ctrl+l langue · ctrl+g IA · échap retour"
|
msgstr "ctrl+s enregistrer · ctrl+p publier · ctrl+e aperçu · ctrl+t titre · ctrl+l langue · ctrl+g IA · échap retour"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "All tasks finished."
|
msgid "All tasks finished."
|
||||||
msgstr "Toutes les tâches sont terminées."
|
msgstr "Toutes les tâches sont terminées."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:812
|
#: lib/bds/tui.ex:911
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Commands — esc to close"
|
msgid "Commands — esc to close"
|
||||||
msgstr "Commandes — échap pour fermer"
|
msgstr "Commandes — échap pour fermer"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:438
|
#: lib/bds/tui.ex:529
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown command."
|
msgid "Unknown command."
|
||||||
msgstr "Commande inconnue."
|
msgstr "Commande inconnue."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:802
|
#: lib/bds/tui.ex:901
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "[report/apply in GUI]"
|
msgid "[report/apply in GUI]"
|
||||||
msgstr "[rapport/application dans la GUI]"
|
msgstr "[rapport/application dans la GUI]"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:951
|
#: lib/bds/tui.ex:1050
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{diffs} differences · %{orphans} orphan files"
|
msgid "%{diffs} differences · %{orphans} orphan files"
|
||||||
msgstr "%{diffs} différences · %{orphans} fichiers orphelins"
|
msgstr "%{diffs} différences · %{orphans} fichiers orphelins"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:983
|
#: lib/bds/tui.ex:1082
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Expected %{expected} · Existing %{existing}"
|
msgid "Expected %{expected} · Existing %{existing}"
|
||||||
msgstr "Attendu %{expected} · Existant %{existing}"
|
msgstr "Attendu %{expected} · Existant %{existing}"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1000
|
#: lib/bds/tui.ex:1099
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Extra files (will be removed):"
|
msgid "Extra files (will be removed):"
|
||||||
msgstr "Fichiers en trop (seront supprimés) :"
|
msgstr "Fichiers en trop (seront supprimés) :"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:996
|
#: lib/bds/tui.ex:1095
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Missing pages (will be rendered):"
|
msgid "Missing pages (will be rendered):"
|
||||||
msgstr "Pages manquantes (seront rendues) :"
|
msgstr "Pages manquantes (seront rendues) :"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to apply."
|
msgid "Nothing to apply."
|
||||||
msgstr "Rien à appliquer."
|
msgstr "Rien à appliquer."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to repair."
|
msgid "Nothing to repair."
|
||||||
msgstr "Rien à réparer."
|
msgstr "Rien à réparer."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:974
|
#: lib/bds/tui.ex:1073
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Orphan files (not in database):"
|
msgid "Orphan files (not in database):"
|
||||||
msgstr "Fichiers orphelins (absents de la base de données) :"
|
msgstr "Fichiers orphelins (absents de la base de données) :"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:990
|
#: lib/bds/tui.ex:1089
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sitemap changed."
|
msgid "Sitemap changed."
|
||||||
msgstr "Sitemap modifié."
|
msgstr "Sitemap modifié."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1004
|
#: lib/bds/tui.ex:1103
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Updated posts (will be re-rendered):"
|
msgid "Updated posts (will be re-rendered):"
|
||||||
msgstr "Articles mis à jour (seront rendus à nouveau) :"
|
msgstr "Articles mis à jour (seront rendus à nouveau) :"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:941
|
#: lib/bds/tui.ex:1040
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter apply changes · esc close"
|
msgid "enter apply changes · esc close"
|
||||||
msgstr "entrée appliquer les modifications · échap fermer"
|
msgstr "entrée appliquer les modifications · échap fermer"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:936
|
#: lib/bds/tui.ex:1035
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter repair all from files · esc close"
|
msgid "enter repair all from files · esc close"
|
||||||
msgstr "entrée tout réparer depuis les fichiers · échap fermer"
|
msgstr "entrée tout réparer depuis les fichiers · échap fermer"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:403
|
#: lib/bds/tui.ex:494
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Imported Blog"
|
msgid "Imported Blog"
|
||||||
msgstr "Blog importé"
|
msgstr "Blog importé"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:422
|
#: lib/bds/tui.ex:513
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Not a folder: %{path}"
|
msgid "Not a folder: %{path}"
|
||||||
msgstr "Pas un dossier : %{path}"
|
msgstr "Pas un dossier : %{path}"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:878
|
#: lib/bds/tui.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects — enter switch · o open existing · esc close"
|
msgid "Projects — enter switch · o open existing · esc close"
|
||||||
msgstr "Projets — entrée changer · o ouvrir existant · échap fermer"
|
msgstr "Projets — entrée changer · o ouvrir existant · échap fermer"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:330
|
#: lib/bds/tui.ex:421
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Switched to %{name}."
|
msgid "Switched to %{name}."
|
||||||
msgstr "Passage à %{name}."
|
msgstr "Passage à %{name}."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1022
|
#: lib/bds/tui.ex:1005
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "enter open · n new post · 1-5 views · p projects · : commands (:? help) · r refresh · ctrl+q quit"
|
|
||||||
msgstr "entrée ouvrir · n nouvel article · 1-5 vues · p projets · : commandes (:? aide) · r actualiser · ctrl+q quitter"
|
|
||||||
|
|
||||||
#: lib/bds/tui.ex:906
|
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Matching folders"
|
msgid "Matching folders"
|
||||||
msgstr "Dossiers correspondants"
|
msgstr "Dossiers correspondants"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:844
|
#: lib/bds/tui.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
||||||
msgstr "Ouvrir un blog existant — saisir le chemin d'un dossier · tab compléter · entrée ouvrir · échap retour"
|
msgstr "Ouvrir un blog existant — saisir le chemin d'un dossier · tab compléter · entrée ouvrir · échap retour"
|
||||||
|
|
||||||
|
#: lib/bds/tui.ex:1121
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "enter open · n new post · 1-5 views · p projects · / search · : commands (:? help) · r refresh · ctrl+q quit"
|
||||||
|
msgstr "entrée ouvrir · n nouvel article · 1-5 vues · p projets · / rechercher · : commandes (:? aide) · r actualiser · ctrl+q quitter"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#: lib/bds/rendering/labels.ex:18
|
#: lib/bds/rendering/labels.ex:18
|
||||||
#: lib/bds/ui/sidebar.ex:288
|
#: lib/bds/ui/sidebar.ex:288
|
||||||
#: lib/bds/ui/sidebar.ex:566
|
#: lib/bds/ui/sidebar.ex:586
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr "Archivio"
|
msgstr "Archivio"
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ msgid "--"
|
|||||||
msgstr "--"
|
msgstr "--"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
||||||
#: lib/bds/ui/sidebar.ex:765
|
#: lib/bds/ui/sidebar.ex:802
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI"
|
msgid "AI"
|
||||||
msgstr "IA"
|
msgstr "IA"
|
||||||
@@ -81,11 +81,11 @@ msgstr "Impostazioni IA"
|
|||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#: lib/bds/tui.ex:570
|
#: lib/bds/tui.ex:661
|
||||||
#: lib/bds/tui.ex:578
|
#: lib/bds/tui.ex:669
|
||||||
#: lib/bds/tui.ex:1203
|
#: lib/bds/tui.ex:1309
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
msgstr "Suggerimenti IA"
|
msgstr "Suggerimenti IA"
|
||||||
@@ -527,7 +527,7 @@ msgid "Clear categories"
|
|||||||
msgstr "Cancella categorie"
|
msgstr "Cancella categorie"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:293
|
#: lib/bds/ui/sidebar.ex:293
|
||||||
#: lib/bds/ui/sidebar.ex:569
|
#: lib/bds/ui/sidebar.ex:589
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr "Cancella filtri"
|
msgstr "Cancella filtri"
|
||||||
@@ -539,7 +539,7 @@ msgid "Clear mapping"
|
|||||||
msgstr "Cancella mappatura"
|
msgstr "Cancella mappatura"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:291
|
#: lib/bds/ui/sidebar.ex:291
|
||||||
#: lib/bds/ui/sidebar.ex:568
|
#: lib/bds/ui/sidebar.ex:588
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear tags"
|
msgid "Clear tags"
|
||||||
msgstr "Cancella tag"
|
msgstr "Cancella tag"
|
||||||
@@ -572,7 +572,7 @@ msgid "Collapse unchanged diff hunks"
|
|||||||
msgstr "Comprimi i blocchi diff invariati"
|
msgstr "Comprimi i blocchi diff invariati"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
||||||
#: lib/bds/tui.ex:1299
|
#: lib/bds/tui.ex:1405
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr "Comando completato"
|
msgstr "Comando completato"
|
||||||
@@ -590,8 +590,8 @@ msgstr "Conferma"
|
|||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
||||||
#: lib/bds/tui.ex:747
|
#: lib/bds/tui.ex:845
|
||||||
#: lib/bds/ui/sidebar.ex:764
|
#: lib/bds/ui/sidebar.ex:801
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenuti"
|
msgstr "Contenuti"
|
||||||
@@ -632,7 +632,7 @@ msgid "Create"
|
|||||||
msgstr "Crea"
|
msgstr "Crea"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
||||||
#: lib/bds/ui/sidebar.ex:749
|
#: lib/bds/ui/sidebar.ex:786
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create / Edit"
|
msgid "Create / Edit"
|
||||||
msgstr "Crea / modifica"
|
msgstr "Crea / modifica"
|
||||||
@@ -678,7 +678,7 @@ msgstr "Scuro"
|
|||||||
msgid "Dashboard"
|
msgid "Dashboard"
|
||||||
msgstr "Dashboard"
|
msgstr "Dashboard"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:778
|
#: lib/bds/ui/sidebar.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr "Dati"
|
msgstr "Dati"
|
||||||
@@ -913,7 +913,7 @@ msgstr "Modifica traduzione"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:513
|
#: lib/bds/desktop/shell_live/index.html.heex:513
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
||||||
#: lib/bds/ui/sidebar.ex:763
|
#: lib/bds/ui/sidebar.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editor"
|
msgid "Editor"
|
||||||
msgstr "Editor"
|
msgstr "Editor"
|
||||||
@@ -1030,7 +1030,7 @@ msgid "Filename"
|
|||||||
msgstr "Nome file"
|
msgstr "Nome file"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:254
|
#: lib/bds/desktop/menu_bar.ex:254
|
||||||
#: lib/bds/tui.ex:1263
|
#: lib/bds/tui.ex:1369
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Fill Missing Translations"
|
msgid "Fill Missing Translations"
|
||||||
msgstr "Completa traduzioni mancanti"
|
msgstr "Completa traduzioni mancanti"
|
||||||
@@ -1041,7 +1041,7 @@ msgid "Find"
|
|||||||
msgstr "Trova"
|
msgstr "Trova"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:255
|
#: lib/bds/desktop/menu_bar.ex:255
|
||||||
#: lib/bds/tui.ex:1266
|
#: lib/bds/tui.ex:1372
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Find Duplicate Posts"
|
msgid "Find Duplicate Posts"
|
||||||
msgstr "Trova post duplicati"
|
msgstr "Trova post duplicati"
|
||||||
@@ -1068,14 +1068,14 @@ msgid "Gallery"
|
|||||||
msgstr "Galleria"
|
msgstr "Galleria"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:256
|
#: lib/bds/desktop/menu_bar.ex:256
|
||||||
#: lib/bds/tui.ex:1247
|
#: lib/bds/tui.ex:1353
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Generate Site"
|
msgid "Generate Site"
|
||||||
msgstr "Genera sito"
|
msgstr "Genera sito"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:792
|
#: lib/bds/desktop/shell_live.ex:792
|
||||||
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
||||||
#: lib/bds/ui/sidebar.ex:789
|
#: lib/bds/ui/sidebar.ex:826
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Git"
|
msgid "Git"
|
||||||
msgstr "Git"
|
msgstr "Git"
|
||||||
@@ -1126,7 +1126,7 @@ msgstr "Inattivo"
|
|||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr "Ignora"
|
msgstr "Ignora"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:559
|
#: lib/bds/ui/sidebar.ex:579
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Images and files"
|
msgid "Images and files"
|
||||||
msgstr "Immagini e file"
|
msgstr "Immagini e file"
|
||||||
@@ -1332,7 +1332,7 @@ msgstr "Carica altri"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
||||||
#: lib/bds/ui/sidebar.ex:779
|
#: lib/bds/ui/sidebar.ex:816
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "MCP"
|
msgid "MCP"
|
||||||
msgstr "MCP"
|
msgstr "MCP"
|
||||||
@@ -1389,12 +1389,12 @@ msgstr "Numero massimo di post per pagina"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
||||||
#: lib/bds/tui.ex:1117
|
#: lib/bds/tui.ex:1223
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#: lib/bds/ui/registry.ex:30
|
#: lib/bds/ui/registry.ex:30
|
||||||
#: lib/bds/ui/registry.ex:100
|
#: lib/bds/ui/registry.ex:100
|
||||||
#: lib/bds/ui/sidebar.ex:558
|
#: lib/bds/ui/sidebar.ex:578
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr "Media"
|
msgstr "Media"
|
||||||
@@ -1420,7 +1420,7 @@ msgid "Merge"
|
|||||||
msgstr "Unisci"
|
msgstr "Unisci"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
||||||
#: lib/bds/ui/sidebar.ex:750
|
#: lib/bds/ui/sidebar.ex:787
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Merge Tags"
|
msgid "Merge Tags"
|
||||||
msgstr "Unisci tag"
|
msgstr "Unisci tag"
|
||||||
@@ -1434,11 +1434,11 @@ msgstr "Metadati"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#: lib/bds/tui.ex:224
|
|
||||||
#: lib/bds/tui.ex:235
|
#: lib/bds/tui.ex:235
|
||||||
#: lib/bds/tui.ex:935
|
#: lib/bds/tui.ex:246
|
||||||
#: lib/bds/tui.ex:1244
|
#: lib/bds/tui.ex:1034
|
||||||
|
#: lib/bds/tui.ex:1350
|
||||||
#: lib/bds/ui/registry.ex:111
|
#: lib/bds/ui/registry.ex:111
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Metadata Diff"
|
msgid "Metadata Diff"
|
||||||
@@ -1484,7 +1484,7 @@ msgstr "Nuova pagina"
|
|||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:214
|
#: lib/bds/desktop/menu_bar.ex:214
|
||||||
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
||||||
#: lib/bds/tui.ex:175
|
#: lib/bds/tui.ex:186
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Post"
|
msgid "New Post"
|
||||||
msgstr "Nuovo post"
|
msgstr "Nuovo post"
|
||||||
@@ -1544,8 +1544,8 @@ msgstr "Nessuna cronologia Git"
|
|||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
||||||
#: lib/bds/ui/sidebar.ex:202
|
#: lib/bds/ui/sidebar.ex:202
|
||||||
#: lib/bds/ui/sidebar.ex:792
|
#: lib/bds/ui/sidebar.ex:829
|
||||||
#: lib/bds/ui/sidebar.ex:899
|
#: lib/bds/ui/sidebar.ex:936
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No items"
|
msgid "No items"
|
||||||
msgstr "Nessun elemento"
|
msgstr "Nessun elemento"
|
||||||
@@ -1570,8 +1570,8 @@ msgstr "Nessuna pagina corrispondente trovata."
|
|||||||
msgid "No matching posts"
|
msgid "No matching posts"
|
||||||
msgstr "Nessun post corrispondente"
|
msgstr "Nessun post corrispondente"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:561
|
#: lib/bds/ui/sidebar.ex:581
|
||||||
#: lib/bds/ui/sidebar.ex:572
|
#: lib/bds/ui/sidebar.ex:592
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No media files"
|
msgid "No media files"
|
||||||
msgstr "Nessun file multimediale"
|
msgstr "Nessun file multimediale"
|
||||||
@@ -1762,8 +1762,8 @@ msgid "Open Data Folder"
|
|||||||
msgstr "Apri cartella dati"
|
msgstr "Apri cartella dati"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:644
|
#: lib/bds/desktop/shell_live/index.html.heex:644
|
||||||
#: lib/bds/tui.ex:416
|
#: lib/bds/tui.ex:507
|
||||||
#: lib/bds/tui.ex:421
|
#: lib/bds/tui.ex:512
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog"
|
msgid "Open Existing Blog"
|
||||||
msgstr "Apri blog esistente"
|
msgstr "Apri blog esistente"
|
||||||
@@ -1775,7 +1775,7 @@ msgid "Open Settings"
|
|||||||
msgstr "Apri Impostazioni"
|
msgstr "Apri Impostazioni"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:217
|
#: lib/bds/desktop/menu_bar.ex:217
|
||||||
#: lib/bds/tui.ex:1268
|
#: lib/bds/tui.ex:1374
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open in Browser"
|
msgid "Open in Browser"
|
||||||
msgstr "Apri nel browser"
|
msgstr "Apri nel browser"
|
||||||
@@ -1923,8 +1923,8 @@ msgstr "Articolo salvato"
|
|||||||
#: lib/bds/desktop/menu_bar.ex:233
|
#: lib/bds/desktop/menu_bar.ex:233
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
||||||
#: lib/bds/tui.ex:1116
|
#: lib/bds/tui.ex:1222
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#: lib/bds/ui/registry.ex:14
|
#: lib/bds/ui/registry.ex:14
|
||||||
#: lib/bds/ui/sidebar.ex:271
|
#: lib/bds/ui/sidebar.ex:271
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -1966,7 +1966,7 @@ msgstr "Anteprima non disponibile"
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
||||||
#: lib/bds/ui/sidebar.ex:762
|
#: lib/bds/ui/sidebar.ex:799
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project"
|
msgid "Project"
|
||||||
msgstr "Progetto"
|
msgstr "Progetto"
|
||||||
@@ -1976,15 +1976,15 @@ msgstr "Progetto"
|
|||||||
msgid "Project Name"
|
msgid "Project Name"
|
||||||
msgstr "Nome progetto"
|
msgstr "Nome progetto"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:759
|
#: lib/bds/ui/sidebar.ex:796
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project and publishing"
|
msgid "Project and publishing"
|
||||||
msgstr "Progetto e pubblicazione"
|
msgstr "Progetto e pubblicazione"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:623
|
#: lib/bds/desktop/shell_live/index.html.heex:623
|
||||||
#: lib/bds/tui.ex:329
|
#: lib/bds/tui.ex:420
|
||||||
#: lib/bds/tui.ex:334
|
#: lib/bds/tui.ex:425
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects"
|
msgid "Projects"
|
||||||
msgstr "Progetti"
|
msgstr "Progetti"
|
||||||
@@ -2028,7 +2028,7 @@ msgstr "Traduzione pubblicata con contenuto nel DB invece del filesystem"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
||||||
#: lib/bds/ui/sidebar.ex:774
|
#: lib/bds/ui/sidebar.ex:811
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Publishing"
|
msgid "Publishing"
|
||||||
msgstr "Pubblicazione"
|
msgstr "Pubblicazione"
|
||||||
@@ -2050,15 +2050,15 @@ msgid "Ready to import:"
|
|||||||
msgstr "Pronto per importare:"
|
msgstr "Pronto per importare:"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:248
|
#: lib/bds/desktop/menu_bar.ex:248
|
||||||
#: lib/bds/tui.ex:413
|
#: lib/bds/tui.ex:504
|
||||||
#: lib/bds/tui.ex:1248
|
#: lib/bds/tui.ex:1354
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Database"
|
msgid "Rebuild Database"
|
||||||
msgstr "Ricostruisci database"
|
msgstr "Ricostruisci database"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:250
|
#: lib/bds/desktop/menu_bar.ex:250
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
||||||
#: lib/bds/tui.ex:1252
|
#: lib/bds/tui.ex:1358
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Embedding Index"
|
msgid "Rebuild Embedding Index"
|
||||||
msgstr "Ricostruisci indice embeddings"
|
msgstr "Ricostruisci indice embeddings"
|
||||||
@@ -2116,7 +2116,7 @@ msgid "Refresh Translation"
|
|||||||
msgstr "Aggiorna traduzione"
|
msgstr "Aggiorna traduzione"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:252
|
#: lib/bds/desktop/menu_bar.ex:252
|
||||||
#: lib/bds/tui.ex:1255
|
#: lib/bds/tui.ex:1361
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Regenerate Calendar"
|
msgid "Regenerate Calendar"
|
||||||
msgstr "Rigenera calendario"
|
msgstr "Rigenera calendario"
|
||||||
@@ -2127,7 +2127,7 @@ msgid "Regenerate Missing Thumbnails"
|
|||||||
msgstr "Rigenera miniature mancanti"
|
msgstr "Rigenera miniature mancanti"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:249
|
#: lib/bds/desktop/menu_bar.ex:249
|
||||||
#: lib/bds/tui.ex:1249
|
#: lib/bds/tui.ex:1355
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reindex Text"
|
msgid "Reindex Text"
|
||||||
msgstr "Reindicizza testo"
|
msgstr "Reindicizza testo"
|
||||||
@@ -2313,7 +2313,7 @@ msgstr "Le capacità di scripting sono configurate a livello applicativo nella r
|
|||||||
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
||||||
#: lib/bds/tui.ex:1119
|
#: lib/bds/tui.ex:1225
|
||||||
#: lib/bds/ui/registry.ex:38
|
#: lib/bds/ui/registry.ex:38
|
||||||
#: lib/bds/ui/sidebar.ex:63
|
#: lib/bds/ui/sidebar.ex:63
|
||||||
#: lib/bds/ui/sidebar.ex:115
|
#: lib/bds/ui/sidebar.ex:115
|
||||||
@@ -2328,7 +2328,7 @@ msgid "Search"
|
|||||||
msgstr "Cerca"
|
msgstr "Cerca"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
||||||
#: lib/bds/ui/sidebar.ex:564
|
#: lib/bds/ui/sidebar.ex:584
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search media..."
|
msgid "Search media..."
|
||||||
msgstr "Cerca media..."
|
msgstr "Cerca media..."
|
||||||
@@ -2420,7 +2420,7 @@ msgstr "Somiglianza semantica"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
||||||
#: lib/bds/ui/registry.ex:86
|
#: lib/bds/ui/registry.ex:86
|
||||||
#: lib/bds/ui/registry.ex:101
|
#: lib/bds/ui/registry.ex:101
|
||||||
#: lib/bds/ui/sidebar.ex:758
|
#: lib/bds/ui/sidebar.ex:795
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Impostazioni"
|
msgstr "Impostazioni"
|
||||||
@@ -2441,9 +2441,9 @@ msgid "Site"
|
|||||||
msgstr "Sito"
|
msgstr "Sito"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#: lib/bds/tui.ex:253
|
#: lib/bds/tui.ex:264
|
||||||
#: lib/bds/tui.ex:940
|
#: lib/bds/tui.ex:1039
|
||||||
#: lib/bds/ui/registry.ex:125
|
#: lib/bds/ui/registry.ex:125
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site Validation"
|
msgid "Site Validation"
|
||||||
@@ -2507,7 +2507,7 @@ msgstr "Ferma"
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
||||||
#: lib/bds/ui/registry.ex:102
|
#: lib/bds/ui/registry.ex:102
|
||||||
#: lib/bds/ui/sidebar.ex:780
|
#: lib/bds/ui/sidebar.ex:817
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Style"
|
msgid "Style"
|
||||||
msgstr "Stile"
|
msgstr "Stile"
|
||||||
@@ -2538,12 +2538,12 @@ msgid "System Prompt"
|
|||||||
msgstr "Prompt di sistema"
|
msgstr "Prompt di sistema"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
||||||
#: lib/bds/ui/sidebar.ex:748
|
#: lib/bds/ui/sidebar.ex:785
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag Cloud"
|
msgid "Tag Cloud"
|
||||||
msgstr "Nuvola di tag"
|
msgstr "Nuvola di tag"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:745
|
#: lib/bds/ui/sidebar.ex:782
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag management"
|
msgid "Tag management"
|
||||||
msgstr "Gestione tag"
|
msgstr "Gestione tag"
|
||||||
@@ -2564,25 +2564,25 @@ msgstr "Nome del tag"
|
|||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
||||||
#: lib/bds/tui.ex:1120
|
#: lib/bds/tui.ex:1226
|
||||||
#: lib/bds/ui/registry.ex:54
|
#: lib/bds/ui/registry.ex:54
|
||||||
#: lib/bds/ui/registry.ex:103
|
#: lib/bds/ui/registry.ex:103
|
||||||
#: lib/bds/ui/sidebar.ex:289
|
#: lib/bds/ui/sidebar.ex:289
|
||||||
#: lib/bds/ui/sidebar.ex:567
|
#: lib/bds/ui/sidebar.ex:587
|
||||||
#: lib/bds/ui/sidebar.ex:744
|
#: lib/bds/ui/sidebar.ex:781
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tag"
|
msgstr "Tag"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:786
|
#: lib/bds/desktop/shell_live.ex:786
|
||||||
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tasks"
|
msgid "Tasks"
|
||||||
msgstr "Attività"
|
msgstr "Attività"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
||||||
#: lib/bds/ui/sidebar.ex:768
|
#: lib/bds/ui/sidebar.ex:805
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Technology"
|
msgid "Technology"
|
||||||
msgstr "Tecnologia"
|
msgstr "Tecnologia"
|
||||||
@@ -2621,7 +2621,7 @@ msgstr "La sintassi del template è valida"
|
|||||||
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
||||||
#: lib/bds/tui.ex:1118
|
#: lib/bds/tui.ex:1224
|
||||||
#: lib/bds/ui/registry.ex:46
|
#: lib/bds/ui/registry.ex:46
|
||||||
#: lib/bds/ui/sidebar.ex:71
|
#: lib/bds/ui/sidebar.ex:71
|
||||||
#: lib/bds/ui/sidebar.ex:122
|
#: lib/bds/ui/sidebar.ex:122
|
||||||
@@ -2682,7 +2682,7 @@ msgid "Toggle Dev Tools"
|
|||||||
msgstr "Attiva/disattiva strumenti sviluppo"
|
msgstr "Attiva/disattiva strumenti sviluppo"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:287
|
#: lib/bds/ui/sidebar.ex:287
|
||||||
#: lib/bds/ui/sidebar.ex:565
|
#: lib/bds/ui/sidebar.ex:585
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Toggle Filters"
|
msgid "Toggle Filters"
|
||||||
msgstr "Mostra/nascondi filtri"
|
msgstr "Mostra/nascondi filtri"
|
||||||
@@ -2819,7 +2819,7 @@ msgstr "Non salvato"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
||||||
#: lib/bds/ui/post_editor/metadata.ex:166
|
#: lib/bds/ui/post_editor/metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1108
|
#: lib/bds/ui/sidebar.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr "Senza titolo"
|
msgstr "Senza titolo"
|
||||||
@@ -2844,7 +2844,7 @@ msgid "Updated URLs"
|
|||||||
msgstr "URL aggiornati"
|
msgstr "URL aggiornati"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:259
|
#: lib/bds/desktop/menu_bar.ex:259
|
||||||
#: lib/bds/tui.ex:1267
|
#: lib/bds/tui.ex:1373
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Upload Site"
|
msgid "Upload Site"
|
||||||
msgstr "Carica sito"
|
msgstr "Carica sito"
|
||||||
@@ -2872,13 +2872,13 @@ msgid "Validate"
|
|||||||
msgstr "Valida"
|
msgstr "Valida"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:258
|
#: lib/bds/desktop/menu_bar.ex:258
|
||||||
#: lib/bds/tui.ex:1245
|
#: lib/bds/tui.ex:1351
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Site"
|
msgid "Validate Site"
|
||||||
msgstr "Valida sito"
|
msgstr "Valida sito"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:253
|
#: lib/bds/desktop/menu_bar.ex:253
|
||||||
#: lib/bds/tui.ex:1258
|
#: lib/bds/tui.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Translations"
|
msgid "Validate Translations"
|
||||||
msgstr "Valida traduzioni"
|
msgstr "Valida traduzioni"
|
||||||
@@ -2916,7 +2916,7 @@ msgid "Working tree"
|
|||||||
msgstr "Working tree"
|
msgstr "Working tree"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
||||||
#: lib/bds/ui/sidebar.ex:790
|
#: lib/bds/ui/sidebar.ex:827
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working tree and history"
|
msgid "Working tree and history"
|
||||||
msgstr "Working tree e cronologia"
|
msgstr "Working tree e cronologia"
|
||||||
@@ -3093,13 +3093,13 @@ msgid "posts"
|
|||||||
msgstr "articoli"
|
msgstr "articoli"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:294
|
#: lib/bds/ui/sidebar.ex:294
|
||||||
#: lib/bds/ui/sidebar.ex:570
|
#: lib/bds/ui/sidebar.ex:590
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results"
|
msgid "results"
|
||||||
msgstr "risultati"
|
msgstr "risultati"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:295
|
#: lib/bds/ui/sidebar.ex:295
|
||||||
#: lib/bds/ui/sidebar.ex:571
|
#: lib/bds/ui/sidebar.ex:591
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr "risultati per"
|
msgstr "risultati per"
|
||||||
@@ -3460,28 +3460,28 @@ msgstr "Sincronizzato"
|
|||||||
msgid "This project is not a Git repository yet."
|
msgid "This project is not a Git repository yet."
|
||||||
msgstr "Questo progetto non è ancora un repository Git."
|
msgstr "Questo progetto non è ancora un repository Git."
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:872
|
#: lib/bds/ui/sidebar.ex:909
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "added"
|
msgid "added"
|
||||||
msgstr "aggiunto"
|
msgstr "aggiunto"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:873
|
#: lib/bds/ui/sidebar.ex:910
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "deleted"
|
msgid "deleted"
|
||||||
msgstr "eliminato"
|
msgstr "eliminato"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:874
|
#: lib/bds/ui/sidebar.ex:911
|
||||||
#: lib/bds/ui/sidebar.ex:877
|
#: lib/bds/ui/sidebar.ex:914
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "modified"
|
msgid "modified"
|
||||||
msgstr "modificato"
|
msgstr "modificato"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:875
|
#: lib/bds/ui/sidebar.ex:912
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "renamed"
|
msgid "renamed"
|
||||||
msgstr "rinominato"
|
msgstr "rinominato"
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:876
|
#: lib/bds/ui/sidebar.ex:913
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "untracked"
|
msgid "untracked"
|
||||||
msgstr "non tracciato"
|
msgstr "non tracciato"
|
||||||
@@ -3543,7 +3543,7 @@ msgid "Suggested tags"
|
|||||||
msgstr "Tag suggeriti"
|
msgstr "Tag suggeriti"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:257
|
#: lib/bds/desktop/menu_bar.ex:257
|
||||||
#: lib/bds/tui.ex:1246
|
#: lib/bds/tui.ex:1352
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Force Render Site"
|
msgid "Force Render Site"
|
||||||
msgstr "Forza la rigenerazione del sito"
|
msgstr "Forza la rigenerazione del sito"
|
||||||
@@ -3640,82 +3640,82 @@ msgstr "OK"
|
|||||||
msgid "The endpoint returned no models. You can still type a model name manually."
|
msgid "The endpoint returned no models. You can still type a model name manually."
|
||||||
msgstr "L'endpoint non ha restituito alcun modello. Puoi comunque digitare manualmente il nome di un modello."
|
msgstr "L'endpoint non ha restituito alcun modello. Puoi comunque digitare manualmente il nome di un modello."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1204
|
#: lib/bds/tui.ex:1310
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI is unavailable in airplane mode without a local endpoint."
|
msgid "AI is unavailable in airplane mode without a local endpoint."
|
||||||
msgstr "L'IA non è disponibile in modalità aereo senza un endpoint locale."
|
msgstr "L'IA non è disponibile in modalità aereo senza un endpoint locale."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Could not load this file."
|
msgid "Could not load this file."
|
||||||
msgstr "Impossibile caricare questo file."
|
msgstr "Impossibile caricare questo file."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:183
|
#: lib/bds/tui.ex:194
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editing this item is not available in the terminal UI yet."
|
msgid "Editing this item is not available in the terminal UI yet."
|
||||||
msgstr "La modifica di questo elemento non è ancora disponibile nell'interfaccia del terminale."
|
msgstr "La modifica di questo elemento non è ancora disponibile nell'interfaccia del terminale."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No suggestions returned."
|
msgid "No suggestions returned."
|
||||||
msgstr "Nessun suggerimento ricevuto."
|
msgstr "Nessun suggerimento ricevuto."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Only images can be previewed."
|
msgid "Only images can be previewed."
|
||||||
msgstr "Solo le immagini possono essere visualizzate in anteprima."
|
msgstr "Solo le immagini possono essere visualizzate in anteprima."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post not found."
|
msgid "Post not found."
|
||||||
msgstr "Post non trovato."
|
msgstr "Post non trovato."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:702
|
#: lib/bds/tui.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Press enter to preview %{name}."
|
msgid "Press enter to preview %{name}."
|
||||||
msgstr "Premi Invio per l'anteprima di %{name}."
|
msgstr "Premi Invio per l'anteprima di %{name}."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1174
|
#: lib/bds/tui.ex:1280
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published."
|
msgid "Published."
|
||||||
msgstr "Pubblicato."
|
msgstr "Pubblicato."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1190
|
#: lib/bds/tui.ex:1296
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save before switching languages."
|
msgid "Save before switching languages."
|
||||||
msgstr "Salva prima di cambiare lingua."
|
msgstr "Salva prima di cambiare lingua."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1175
|
#: lib/bds/tui.ex:1281
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved."
|
msgid "Saved."
|
||||||
msgstr "Salvato."
|
msgstr "Salvato."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:705
|
#: lib/bds/tui.ex:803
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select an entry and press enter to open it."
|
msgid "Select an entry and press enter to open it."
|
||||||
msgstr "Seleziona una voce e premi Invio per aprirla."
|
msgstr "Seleziona una voce e premi Invio per aprirla."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Suggestions applied."
|
msgid "Suggestions applied."
|
||||||
msgstr "Suggerimenti applicati."
|
msgstr "Suggerimenti applicati."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:717
|
#: lib/bds/tui.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (ctrl+t to edit)"
|
msgid "Title (ctrl+t to edit)"
|
||||||
msgstr "Titolo (ctrl+t per modificare)"
|
msgstr "Titolo (ctrl+t per modificare)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:716
|
#: lib/bds/tui.ex:814
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (editing — enter to confirm)"
|
msgid "Title (editing — enter to confirm)"
|
||||||
msgstr "Titolo (modifica — Invio per confermare)"
|
msgstr "Titolo (modifica — Invio per confermare)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:764
|
#: lib/bds/tui.ex:863
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working…"
|
msgid "Working…"
|
||||||
msgstr "Elaborazione…"
|
msgstr "Elaborazione…"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:786
|
#: lib/bds/tui.ex:885
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "esc to close"
|
msgid "esc to close"
|
||||||
msgstr "esc per chiudere"
|
msgstr "esc per chiudere"
|
||||||
@@ -3752,122 +3752,122 @@ msgstr "Indirizzo del server (user@host o user@host:port), autenticazione a chia
|
|||||||
msgid "Use the form user@host or user@host:port."
|
msgid "Use the form user@host or user@host:port."
|
||||||
msgstr "Usa il formato user@host o user@host:port."
|
msgstr "Usa il formato user@host o user@host:port."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:736
|
#: lib/bds/tui.ex:834
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview (ctrl+e to edit)"
|
msgid "Preview (ctrl+e to edit)"
|
||||||
msgstr "Anteprima (ctrl+e per modificare)"
|
msgstr "Anteprima (ctrl+e per modificare)"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1029
|
#: lib/bds/tui.ex:1128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
||||||
msgstr "ctrl+s salva · ctrl+p pubblica · ctrl+e anteprima · ctrl+t titolo · ctrl+l lingua · ctrl+g IA · esc indietro"
|
msgstr "ctrl+s salva · ctrl+p pubblica · ctrl+e anteprima · ctrl+t titolo · ctrl+l lingua · ctrl+g IA · esc indietro"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "All tasks finished."
|
msgid "All tasks finished."
|
||||||
msgstr "Tutte le attività sono terminate."
|
msgstr "Tutte le attività sono terminate."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:812
|
#: lib/bds/tui.ex:911
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Commands — esc to close"
|
msgid "Commands — esc to close"
|
||||||
msgstr "Comandi — esc per chiudere"
|
msgstr "Comandi — esc per chiudere"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:438
|
#: lib/bds/tui.ex:529
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown command."
|
msgid "Unknown command."
|
||||||
msgstr "Comando sconosciuto."
|
msgstr "Comando sconosciuto."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:802
|
#: lib/bds/tui.ex:901
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "[report/apply in GUI]"
|
msgid "[report/apply in GUI]"
|
||||||
msgstr "[report/applicazione nella GUI]"
|
msgstr "[report/applicazione nella GUI]"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:951
|
#: lib/bds/tui.ex:1050
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{diffs} differences · %{orphans} orphan files"
|
msgid "%{diffs} differences · %{orphans} orphan files"
|
||||||
msgstr "%{diffs} differenze · %{orphans} file orfani"
|
msgstr "%{diffs} differenze · %{orphans} file orfani"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:983
|
#: lib/bds/tui.ex:1082
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Expected %{expected} · Existing %{existing}"
|
msgid "Expected %{expected} · Existing %{existing}"
|
||||||
msgstr "Attesi %{expected} · Esistenti %{existing}"
|
msgstr "Attesi %{expected} · Esistenti %{existing}"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1000
|
#: lib/bds/tui.ex:1099
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Extra files (will be removed):"
|
msgid "Extra files (will be removed):"
|
||||||
msgstr "File in eccesso (verranno rimossi):"
|
msgstr "File in eccesso (verranno rimossi):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:996
|
#: lib/bds/tui.ex:1095
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Missing pages (will be rendered):"
|
msgid "Missing pages (will be rendered):"
|
||||||
msgstr "Pagine mancanti (verranno generate):"
|
msgstr "Pagine mancanti (verranno generate):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to apply."
|
msgid "Nothing to apply."
|
||||||
msgstr "Niente da applicare."
|
msgstr "Niente da applicare."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to repair."
|
msgid "Nothing to repair."
|
||||||
msgstr "Niente da riparare."
|
msgstr "Niente da riparare."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:974
|
#: lib/bds/tui.ex:1073
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Orphan files (not in database):"
|
msgid "Orphan files (not in database):"
|
||||||
msgstr "File orfani (non presenti nel database):"
|
msgstr "File orfani (non presenti nel database):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:990
|
#: lib/bds/tui.ex:1089
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sitemap changed."
|
msgid "Sitemap changed."
|
||||||
msgstr "Sitemap modificata."
|
msgstr "Sitemap modificata."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1004
|
#: lib/bds/tui.ex:1103
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Updated posts (will be re-rendered):"
|
msgid "Updated posts (will be re-rendered):"
|
||||||
msgstr "Post aggiornati (verranno rigenerati):"
|
msgstr "Post aggiornati (verranno rigenerati):"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:941
|
#: lib/bds/tui.ex:1040
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter apply changes · esc close"
|
msgid "enter apply changes · esc close"
|
||||||
msgstr "invio applica le modifiche · esc chiudi"
|
msgstr "invio applica le modifiche · esc chiudi"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:936
|
#: lib/bds/tui.ex:1035
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter repair all from files · esc close"
|
msgid "enter repair all from files · esc close"
|
||||||
msgstr "invio ripara tutto dai file · esc chiudi"
|
msgstr "invio ripara tutto dai file · esc chiudi"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:403
|
#: lib/bds/tui.ex:494
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Imported Blog"
|
msgid "Imported Blog"
|
||||||
msgstr "Blog importato"
|
msgstr "Blog importato"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:422
|
#: lib/bds/tui.ex:513
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Not a folder: %{path}"
|
msgid "Not a folder: %{path}"
|
||||||
msgstr "Non è una cartella: %{path}"
|
msgstr "Non è una cartella: %{path}"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:878
|
#: lib/bds/tui.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects — enter switch · o open existing · esc close"
|
msgid "Projects — enter switch · o open existing · esc close"
|
||||||
msgstr "Progetti — invio cambia · o apri esistente · esc chiudi"
|
msgstr "Progetti — invio cambia · o apri esistente · esc chiudi"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:330
|
#: lib/bds/tui.ex:421
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Switched to %{name}."
|
msgid "Switched to %{name}."
|
||||||
msgstr "Passato a %{name}."
|
msgstr "Passato a %{name}."
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1022
|
#: lib/bds/tui.ex:1005
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "enter open · n new post · 1-5 views · p projects · : commands (:? help) · r refresh · ctrl+q quit"
|
|
||||||
msgstr "invio apri · n nuovo post · 1-5 viste · p progetti · : comandi (:? aiuto) · r aggiorna · ctrl+q esci"
|
|
||||||
|
|
||||||
#: lib/bds/tui.ex:906
|
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Matching folders"
|
msgid "Matching folders"
|
||||||
msgstr "Cartelle corrispondenti"
|
msgstr "Cartelle corrispondenti"
|
||||||
|
|
||||||
#: lib/bds/tui.ex:844
|
#: lib/bds/tui.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
||||||
msgstr "Apri blog esistente — digita il percorso di una cartella · tab completa · invio apri · esc indietro"
|
msgstr "Apri blog esistente — digita il percorso di una cartella · tab completa · invio apri · esc indietro"
|
||||||
|
|
||||||
|
#: lib/bds/tui.ex:1121
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "enter open · n new post · 1-5 views · p projects · / search · : commands (:? help) · r refresh · ctrl+q quit"
|
||||||
|
msgstr "invio apri · n nuovo post · 1-5 viste · p progetti · / cerca · : comandi (:? aiuto) · r aggiorna · ctrl+q esci"
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/rendering/labels.ex:18
|
#: lib/bds/rendering/labels.ex:18
|
||||||
#: lib/bds/ui/sidebar.ex:288
|
#: lib/bds/ui/sidebar.ex:288
|
||||||
#: lib/bds/ui/sidebar.ex:566
|
#: lib/bds/ui/sidebar.ex:586
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ msgid "--"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:220
|
||||||
#: lib/bds/ui/sidebar.ex:765
|
#: lib/bds/ui/sidebar.ex:802
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI"
|
msgid "AI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -94,11 +94,11 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:72
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
#: lib/bds/desktop/shell_live/post_editor.ex:920
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:43
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#: lib/bds/tui.ex:570
|
#: lib/bds/tui.ex:661
|
||||||
#: lib/bds/tui.ex:578
|
#: lib/bds/tui.ex:669
|
||||||
#: lib/bds/tui.ex:1203
|
#: lib/bds/tui.ex:1309
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -540,7 +540,7 @@ msgid "Clear categories"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:293
|
#: lib/bds/ui/sidebar.ex:293
|
||||||
#: lib/bds/ui/sidebar.ex:569
|
#: lib/bds/ui/sidebar.ex:589
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -552,7 +552,7 @@ msgid "Clear mapping"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:291
|
#: lib/bds/ui/sidebar.ex:291
|
||||||
#: lib/bds/ui/sidebar.ex:568
|
#: lib/bds/ui/sidebar.ex:588
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear tags"
|
msgid "Clear tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -585,7 +585,7 @@ msgid "Collapse unchanged diff hunks"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:422
|
||||||
#: lib/bds/tui.ex:1299
|
#: lib/bds/tui.ex:1405
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -603,8 +603,8 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:375
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:34
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:32
|
||||||
#: lib/bds/tui.ex:747
|
#: lib/bds/tui.ex:845
|
||||||
#: lib/bds/ui/sidebar.ex:764
|
#: lib/bds/ui/sidebar.ex:801
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -645,7 +645,7 @@ msgid "Create"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:36
|
||||||
#: lib/bds/ui/sidebar.ex:749
|
#: lib/bds/ui/sidebar.ex:786
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create / Edit"
|
msgid "Create / Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -691,7 +691,7 @@ msgstr ""
|
|||||||
msgid "Dashboard"
|
msgid "Dashboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:778
|
#: lib/bds/ui/sidebar.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Data"
|
msgid "Data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -926,7 +926,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:513
|
#: lib/bds/desktop/shell_live/index.html.heex:513
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:114
|
||||||
#: lib/bds/ui/sidebar.ex:763
|
#: lib/bds/ui/sidebar.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editor"
|
msgid "Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1043,7 +1043,7 @@ msgid "Filename"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:254
|
#: lib/bds/desktop/menu_bar.ex:254
|
||||||
#: lib/bds/tui.ex:1263
|
#: lib/bds/tui.ex:1369
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Fill Missing Translations"
|
msgid "Fill Missing Translations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1054,7 +1054,7 @@ msgid "Find"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:255
|
#: lib/bds/desktop/menu_bar.ex:255
|
||||||
#: lib/bds/tui.ex:1266
|
#: lib/bds/tui.ex:1372
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Find Duplicate Posts"
|
msgid "Find Duplicate Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1081,14 +1081,14 @@ msgid "Gallery"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:256
|
#: lib/bds/desktop/menu_bar.ex:256
|
||||||
#: lib/bds/tui.ex:1247
|
#: lib/bds/tui.ex:1353
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Generate Site"
|
msgid "Generate Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:792
|
#: lib/bds/desktop/shell_live.ex:792
|
||||||
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
#: lib/bds/desktop/shell_live/socket_state.ex:109
|
||||||
#: lib/bds/ui/sidebar.ex:789
|
#: lib/bds/ui/sidebar.ex:826
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Git"
|
msgid "Git"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1139,7 +1139,7 @@ msgstr ""
|
|||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:559
|
#: lib/bds/ui/sidebar.ex:579
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Images and files"
|
msgid "Images and files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1345,7 +1345,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:50
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/mcp_config.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:351
|
||||||
#: lib/bds/ui/sidebar.ex:779
|
#: lib/bds/ui/sidebar.ex:816
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "MCP"
|
msgid "MCP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1402,12 +1402,12 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
#: lib/bds/desktop/shell_live/misc_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:175
|
||||||
#: lib/bds/tui.ex:1117
|
#: lib/bds/tui.ex:1223
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#: lib/bds/ui/registry.ex:30
|
#: lib/bds/ui/registry.ex:30
|
||||||
#: lib/bds/ui/registry.ex:100
|
#: lib/bds/ui/registry.ex:100
|
||||||
#: lib/bds/ui/sidebar.ex:558
|
#: lib/bds/ui/sidebar.ex:578
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1433,7 +1433,7 @@ msgid "Merge"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:78
|
||||||
#: lib/bds/ui/sidebar.ex:750
|
#: lib/bds/ui/sidebar.ex:787
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Merge Tags"
|
msgid "Merge Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1447,11 +1447,11 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
#: lib/bds/desktop/shell_live/misc_editor.ex:214
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
#: lib/bds/desktop/shell_live/misc_editor.ex:226
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
#: lib/bds/desktop/shell_live/misc_editor.ex:448
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#: lib/bds/tui.ex:224
|
|
||||||
#: lib/bds/tui.ex:235
|
#: lib/bds/tui.ex:235
|
||||||
#: lib/bds/tui.ex:935
|
#: lib/bds/tui.ex:246
|
||||||
#: lib/bds/tui.ex:1244
|
#: lib/bds/tui.ex:1034
|
||||||
|
#: lib/bds/tui.ex:1350
|
||||||
#: lib/bds/ui/registry.ex:111
|
#: lib/bds/ui/registry.ex:111
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Metadata Diff"
|
msgid "Metadata Diff"
|
||||||
@@ -1497,7 +1497,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:214
|
#: lib/bds/desktop/menu_bar.ex:214
|
||||||
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
#: lib/bds/desktop/shell_live/sidebar_create.ex:41
|
||||||
#: lib/bds/tui.ex:175
|
#: lib/bds/tui.ex:186
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Post"
|
msgid "New Post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1557,8 +1557,8 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:381
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:455
|
||||||
#: lib/bds/ui/sidebar.ex:202
|
#: lib/bds/ui/sidebar.ex:202
|
||||||
#: lib/bds/ui/sidebar.ex:792
|
#: lib/bds/ui/sidebar.ex:829
|
||||||
#: lib/bds/ui/sidebar.ex:899
|
#: lib/bds/ui/sidebar.ex:936
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No items"
|
msgid "No items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1583,8 +1583,8 @@ msgstr ""
|
|||||||
msgid "No matching posts"
|
msgid "No matching posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:561
|
#: lib/bds/ui/sidebar.ex:581
|
||||||
#: lib/bds/ui/sidebar.ex:572
|
#: lib/bds/ui/sidebar.ex:592
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No media files"
|
msgid "No media files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1775,8 +1775,8 @@ msgid "Open Data Folder"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:644
|
#: lib/bds/desktop/shell_live/index.html.heex:644
|
||||||
#: lib/bds/tui.ex:416
|
#: lib/bds/tui.ex:507
|
||||||
#: lib/bds/tui.ex:421
|
#: lib/bds/tui.ex:512
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog"
|
msgid "Open Existing Blog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1788,7 +1788,7 @@ msgid "Open Settings"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:217
|
#: lib/bds/desktop/menu_bar.ex:217
|
||||||
#: lib/bds/tui.ex:1268
|
#: lib/bds/tui.ex:1374
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open in Browser"
|
msgid "Open in Browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1936,8 +1936,8 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/menu_bar.ex:233
|
#: lib/bds/desktop/menu_bar.ex:233
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
#: lib/bds/desktop/shell_live/misc_editor.ex:664
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
#: lib/bds/desktop/shell_live/misc_editor.ex:761
|
||||||
#: lib/bds/tui.ex:1116
|
#: lib/bds/tui.ex:1222
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#: lib/bds/ui/registry.ex:14
|
#: lib/bds/ui/registry.ex:14
|
||||||
#: lib/bds/ui/sidebar.ex:271
|
#: lib/bds/ui/sidebar.ex:271
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -1979,7 +1979,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
#: lib/bds/desktop/shell_live/misc_editor.ex:739
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
#: lib/bds/desktop/shell_live/misc_editor.ex:765
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:27
|
||||||
#: lib/bds/ui/sidebar.ex:762
|
#: lib/bds/ui/sidebar.ex:799
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project"
|
msgid "Project"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1989,15 +1989,15 @@ msgstr ""
|
|||||||
msgid "Project Name"
|
msgid "Project Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:759
|
#: lib/bds/ui/sidebar.ex:796
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Project and publishing"
|
msgid "Project and publishing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
#: lib/bds/desktop/shell_live/chat_surface.ex:15
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:623
|
#: lib/bds/desktop/shell_live/index.html.heex:623
|
||||||
#: lib/bds/tui.ex:329
|
#: lib/bds/tui.ex:420
|
||||||
#: lib/bds/tui.ex:334
|
#: lib/bds/tui.ex:425
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects"
|
msgid "Projects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2041,7 +2041,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:40
|
||||||
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
#: lib/bds/desktop/shell_live/settings_editor/publishing_settings.ex:57
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:338
|
||||||
#: lib/bds/ui/sidebar.ex:774
|
#: lib/bds/ui/sidebar.ex:811
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Publishing"
|
msgid "Publishing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2063,15 +2063,15 @@ msgid "Ready to import:"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:248
|
#: lib/bds/desktop/menu_bar.ex:248
|
||||||
#: lib/bds/tui.ex:413
|
#: lib/bds/tui.ex:504
|
||||||
#: lib/bds/tui.ex:1248
|
#: lib/bds/tui.ex:1354
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Database"
|
msgid "Rebuild Database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:250
|
#: lib/bds/desktop/menu_bar.ex:250
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:381
|
||||||
#: lib/bds/tui.ex:1252
|
#: lib/bds/tui.ex:1358
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Rebuild Embedding Index"
|
msgid "Rebuild Embedding Index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2129,7 +2129,7 @@ msgid "Refresh Translation"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:252
|
#: lib/bds/desktop/menu_bar.ex:252
|
||||||
#: lib/bds/tui.ex:1255
|
#: lib/bds/tui.ex:1361
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Regenerate Calendar"
|
msgid "Regenerate Calendar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2140,7 +2140,7 @@ msgid "Regenerate Missing Thumbnails"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:249
|
#: lib/bds/desktop/menu_bar.ex:249
|
||||||
#: lib/bds/tui.ex:1249
|
#: lib/bds/tui.ex:1355
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reindex Text"
|
msgid "Reindex Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2326,7 +2326,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
#: lib/bds/desktop/shell_live/script_editor.ex:216
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
#: lib/bds/desktop/shell_live/script_editor.ex:219
|
||||||
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
#: lib/bds/desktop/shell_live/script_editor.ex:234
|
||||||
#: lib/bds/tui.ex:1119
|
#: lib/bds/tui.ex:1225
|
||||||
#: lib/bds/ui/registry.ex:38
|
#: lib/bds/ui/registry.ex:38
|
||||||
#: lib/bds/ui/sidebar.ex:63
|
#: lib/bds/ui/sidebar.ex:63
|
||||||
#: lib/bds/ui/sidebar.ex:115
|
#: lib/bds/ui/sidebar.ex:115
|
||||||
@@ -2341,7 +2341,7 @@ msgid "Search"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:99
|
||||||
#: lib/bds/ui/sidebar.ex:564
|
#: lib/bds/ui/sidebar.ex:584
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search media..."
|
msgid "Search media..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2433,7 +2433,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:11
|
||||||
#: lib/bds/ui/registry.ex:86
|
#: lib/bds/ui/registry.ex:86
|
||||||
#: lib/bds/ui/registry.ex:101
|
#: lib/bds/ui/registry.ex:101
|
||||||
#: lib/bds/ui/sidebar.ex:758
|
#: lib/bds/ui/sidebar.ex:795
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2454,9 +2454,9 @@ msgid "Site"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
#: lib/bds/desktop/shell_live/misc_editor.ex:412
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#: lib/bds/tui.ex:253
|
#: lib/bds/tui.ex:264
|
||||||
#: lib/bds/tui.ex:940
|
#: lib/bds/tui.ex:1039
|
||||||
#: lib/bds/ui/registry.ex:125
|
#: lib/bds/ui/registry.ex:125
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site Validation"
|
msgid "Site Validation"
|
||||||
@@ -2520,7 +2520,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
#: lib/bds/desktop/shell_live/settings_editor/style_editor.ex:76
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
#: lib/bds/desktop/shell_live/settings_editor_html/style_editor.html.heex:3
|
||||||
#: lib/bds/ui/registry.ex:102
|
#: lib/bds/ui/registry.ex:102
|
||||||
#: lib/bds/ui/sidebar.ex:780
|
#: lib/bds/ui/sidebar.ex:817
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Style"
|
msgid "Style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2551,12 +2551,12 @@ msgid "System Prompt"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:16
|
||||||
#: lib/bds/ui/sidebar.ex:748
|
#: lib/bds/ui/sidebar.ex:785
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag Cloud"
|
msgid "Tag Cloud"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:745
|
#: lib/bds/ui/sidebar.ex:782
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag management"
|
msgid "Tag management"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2577,25 +2577,25 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
#: lib/bds/desktop/shell_live/tags_editor.ex:222
|
||||||
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
#: lib/bds/desktop/shell_live/tags_editor.ex:253
|
||||||
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
#: lib/bds/desktop/shell_live/tags_editor_html/tags_editor.html.heex:11
|
||||||
#: lib/bds/tui.ex:1120
|
#: lib/bds/tui.ex:1226
|
||||||
#: lib/bds/ui/registry.ex:54
|
#: lib/bds/ui/registry.ex:54
|
||||||
#: lib/bds/ui/registry.ex:103
|
#: lib/bds/ui/registry.ex:103
|
||||||
#: lib/bds/ui/sidebar.ex:289
|
#: lib/bds/ui/sidebar.ex:289
|
||||||
#: lib/bds/ui/sidebar.ex:567
|
#: lib/bds/ui/sidebar.ex:587
|
||||||
#: lib/bds/ui/sidebar.ex:744
|
#: lib/bds/ui/sidebar.ex:781
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:786
|
#: lib/bds/desktop/shell_live.ex:786
|
||||||
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
#: lib/bds/desktop/shell_live/panel_renderer.ex:54
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tasks"
|
msgid "Tasks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:321
|
||||||
#: lib/bds/ui/sidebar.ex:768
|
#: lib/bds/ui/sidebar.ex:805
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Technology"
|
msgid "Technology"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2634,7 +2634,7 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
#: lib/bds/desktop/shell_live/template_editor.ex:171
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
#: lib/bds/desktop/shell_live/template_editor.ex:176
|
||||||
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
#: lib/bds/desktop/shell_live/template_editor.ex:191
|
||||||
#: lib/bds/tui.ex:1118
|
#: lib/bds/tui.ex:1224
|
||||||
#: lib/bds/ui/registry.ex:46
|
#: lib/bds/ui/registry.ex:46
|
||||||
#: lib/bds/ui/sidebar.ex:71
|
#: lib/bds/ui/sidebar.ex:71
|
||||||
#: lib/bds/ui/sidebar.ex:122
|
#: lib/bds/ui/sidebar.ex:122
|
||||||
@@ -2695,7 +2695,7 @@ msgid "Toggle Dev Tools"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:287
|
#: lib/bds/ui/sidebar.ex:287
|
||||||
#: lib/bds/ui/sidebar.ex:565
|
#: lib/bds/ui/sidebar.ex:585
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Toggle Filters"
|
msgid "Toggle Filters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2832,7 +2832,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
||||||
#: lib/bds/ui/post_editor/metadata.ex:166
|
#: lib/bds/ui/post_editor/metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1108
|
#: lib/bds/ui/sidebar.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled"
|
msgid "Untitled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2857,7 +2857,7 @@ msgid "Updated URLs"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:259
|
#: lib/bds/desktop/menu_bar.ex:259
|
||||||
#: lib/bds/tui.ex:1267
|
#: lib/bds/tui.ex:1373
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Upload Site"
|
msgid "Upload Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2885,13 +2885,13 @@ msgid "Validate"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:258
|
#: lib/bds/desktop/menu_bar.ex:258
|
||||||
#: lib/bds/tui.ex:1245
|
#: lib/bds/tui.ex:1351
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Site"
|
msgid "Validate Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:253
|
#: lib/bds/desktop/menu_bar.ex:253
|
||||||
#: lib/bds/tui.ex:1258
|
#: lib/bds/tui.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Validate Translations"
|
msgid "Validate Translations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2929,7 +2929,7 @@ msgid "Working tree"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:191
|
||||||
#: lib/bds/ui/sidebar.ex:790
|
#: lib/bds/ui/sidebar.ex:827
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working tree and history"
|
msgid "Working tree and history"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3106,13 +3106,13 @@ msgid "posts"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:294
|
#: lib/bds/ui/sidebar.ex:294
|
||||||
#: lib/bds/ui/sidebar.ex:570
|
#: lib/bds/ui/sidebar.ex:590
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results"
|
msgid "results"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:295
|
#: lib/bds/ui/sidebar.ex:295
|
||||||
#: lib/bds/ui/sidebar.ex:571
|
#: lib/bds/ui/sidebar.ex:591
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3473,28 +3473,28 @@ msgstr ""
|
|||||||
msgid "This project is not a Git repository yet."
|
msgid "This project is not a Git repository yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:872
|
#: lib/bds/ui/sidebar.ex:909
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "added"
|
msgid "added"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:873
|
#: lib/bds/ui/sidebar.ex:910
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "deleted"
|
msgid "deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:874
|
#: lib/bds/ui/sidebar.ex:911
|
||||||
#: lib/bds/ui/sidebar.ex:877
|
#: lib/bds/ui/sidebar.ex:914
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "modified"
|
msgid "modified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:875
|
#: lib/bds/ui/sidebar.ex:912
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "renamed"
|
msgid "renamed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/ui/sidebar.ex:876
|
#: lib/bds/ui/sidebar.ex:913
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "untracked"
|
msgid "untracked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3556,7 +3556,7 @@ msgid "Suggested tags"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:257
|
#: lib/bds/desktop/menu_bar.ex:257
|
||||||
#: lib/bds/tui.ex:1246
|
#: lib/bds/tui.ex:1352
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Force Render Site"
|
msgid "Force Render Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3653,82 +3653,82 @@ msgstr ""
|
|||||||
msgid "The endpoint returned no models. You can still type a model name manually."
|
msgid "The endpoint returned no models. You can still type a model name manually."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1204
|
#: lib/bds/tui.ex:1310
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI is unavailable in airplane mode without a local endpoint."
|
msgid "AI is unavailable in airplane mode without a local endpoint."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1331
|
#: lib/bds/tui.ex:1437
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Could not load this file."
|
msgid "Could not load this file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:183
|
#: lib/bds/tui.ex:194
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Editing this item is not available in the terminal UI yet."
|
msgid "Editing this item is not available in the terminal UI yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:567
|
#: lib/bds/tui.ex:658
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No suggestions returned."
|
msgid "No suggestions returned."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1328
|
#: lib/bds/tui.ex:1434
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Only images can be previewed."
|
msgid "Only images can be previewed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1127
|
#: lib/bds/tui.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post not found."
|
msgid "Post not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:702
|
#: lib/bds/tui.ex:800
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Press enter to preview %{name}."
|
msgid "Press enter to preview %{name}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1174
|
#: lib/bds/tui.ex:1280
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published."
|
msgid "Published."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1190
|
#: lib/bds/tui.ex:1296
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save before switching languages."
|
msgid "Save before switching languages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1175
|
#: lib/bds/tui.ex:1281
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved."
|
msgid "Saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:705
|
#: lib/bds/tui.ex:803
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select an entry and press enter to open it."
|
msgid "Select an entry and press enter to open it."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:564
|
#: lib/bds/tui.ex:655
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Suggestions applied."
|
msgid "Suggestions applied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:717
|
#: lib/bds/tui.ex:815
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (ctrl+t to edit)"
|
msgid "Title (ctrl+t to edit)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:716
|
#: lib/bds/tui.ex:814
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Title (editing — enter to confirm)"
|
msgid "Title (editing — enter to confirm)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:764
|
#: lib/bds/tui.ex:863
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Working…"
|
msgid "Working…"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:786
|
#: lib/bds/tui.ex:885
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "esc to close"
|
msgid "esc to close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3765,122 +3765,122 @@ msgstr ""
|
|||||||
msgid "Use the form user@host or user@host:port."
|
msgid "Use the form user@host or user@host:port."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:736
|
#: lib/bds/tui.ex:834
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview (ctrl+e to edit)"
|
msgid "Preview (ctrl+e to edit)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1029
|
#: lib/bds/tui.ex:1128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
msgid "ctrl+s save · ctrl+p publish · ctrl+e preview · ctrl+t title · ctrl+l language · ctrl+g AI · esc back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:594
|
#: lib/bds/tui.ex:685
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "All tasks finished."
|
msgid "All tasks finished."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:812
|
#: lib/bds/tui.ex:911
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Commands — esc to close"
|
msgid "Commands — esc to close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:438
|
#: lib/bds/tui.ex:529
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown command."
|
msgid "Unknown command."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:802
|
#: lib/bds/tui.ex:901
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "[report/apply in GUI]"
|
msgid "[report/apply in GUI]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:951
|
#: lib/bds/tui.ex:1050
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{diffs} differences · %{orphans} orphan files"
|
msgid "%{diffs} differences · %{orphans} orphan files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:983
|
#: lib/bds/tui.ex:1082
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Expected %{expected} · Existing %{existing}"
|
msgid "Expected %{expected} · Existing %{existing}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1000
|
#: lib/bds/tui.ex:1099
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Extra files (will be removed):"
|
msgid "Extra files (will be removed):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:996
|
#: lib/bds/tui.ex:1095
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Missing pages (will be rendered):"
|
msgid "Missing pages (will be rendered):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:251
|
#: lib/bds/tui.ex:262
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to apply."
|
msgid "Nothing to apply."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:218
|
#: lib/bds/tui.ex:229
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to repair."
|
msgid "Nothing to repair."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:974
|
#: lib/bds/tui.ex:1073
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Orphan files (not in database):"
|
msgid "Orphan files (not in database):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:990
|
#: lib/bds/tui.ex:1089
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sitemap changed."
|
msgid "Sitemap changed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1004
|
#: lib/bds/tui.ex:1103
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Updated posts (will be re-rendered):"
|
msgid "Updated posts (will be re-rendered):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:941
|
#: lib/bds/tui.ex:1040
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter apply changes · esc close"
|
msgid "enter apply changes · esc close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:936
|
#: lib/bds/tui.ex:1035
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "enter repair all from files · esc close"
|
msgid "enter repair all from files · esc close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:403
|
#: lib/bds/tui.ex:494
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Imported Blog"
|
msgid "Imported Blog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:422
|
#: lib/bds/tui.ex:513
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Not a folder: %{path}"
|
msgid "Not a folder: %{path}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:878
|
#: lib/bds/tui.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Projects — enter switch · o open existing · esc close"
|
msgid "Projects — enter switch · o open existing · esc close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:330
|
#: lib/bds/tui.ex:421
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Switched to %{name}."
|
msgid "Switched to %{name}."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:1022
|
#: lib/bds/tui.ex:1005
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "enter open · n new post · 1-5 views · p projects · : commands (:? help) · r refresh · ctrl+q quit"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/bds/tui.ex:906
|
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Matching folders"
|
msgid "Matching folders"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/tui.ex:844
|
#: lib/bds/tui.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
msgid "Open Existing Blog — type a folder path · tab complete · enter open · esc back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/bds/tui.ex:1121
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "enter open · n new post · 1-5 views · p projects · / search · : commands (:? help) · r refresh · ctrl+q quit"
|
||||||
|
msgstr ""
|
||||||
|
|||||||
@@ -83,6 +83,19 @@ rule ProjectSwitcher {
|
|||||||
ensures: ProjectSwitchedOrOpened()
|
ensures: ProjectSwitchedOrOpened()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rule SidebarSearch {
|
||||||
|
when: TuiKeyPressed(code: "/")
|
||||||
|
-- "/" in sidebar focus opens a vi-style search prompt in the status
|
||||||
|
-- line that live-filters the current view through the same
|
||||||
|
-- BDS.UI.Sidebar filter params the GUI sidebar uses (posts, pages,
|
||||||
|
-- media). Plain words are a text search, "tag:x" and "category:x"
|
||||||
|
-- filter like the GUI chips, and an ISO date (yyyy-mm-dd) narrows
|
||||||
|
-- to that day — the day filter extends the shared sidebar queries.
|
||||||
|
-- Tokens combine with AND. Enter keeps the filter (shown appended
|
||||||
|
-- to the sidebar title), esc clears it; filters are per view.
|
||||||
|
ensures: SidebarFiltered()
|
||||||
|
}
|
||||||
|
|
||||||
rule CommandPrompt {
|
rule CommandPrompt {
|
||||||
when: TuiKeyPressed(code: ":")
|
when: TuiKeyPressed(code: ":")
|
||||||
-- Vi-style prompt: ":" opens a filterable list of the parameterless
|
-- Vi-style prompt: ":" opens a filterable list of the parameterless
|
||||||
|
|||||||
@@ -524,6 +524,101 @@ defmodule BDS.TUITest do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "sidebar search" do
|
||||||
|
setup %{project: project} do
|
||||||
|
{:ok, tagged} =
|
||||||
|
BDS.Posts.create_post(%{
|
||||||
|
project_id: project.id,
|
||||||
|
title: "Tagged Post",
|
||||||
|
content: "x",
|
||||||
|
tags: ["elixir"],
|
||||||
|
categories: ["news"]
|
||||||
|
})
|
||||||
|
|
||||||
|
{:ok, tagged: tagged}
|
||||||
|
end
|
||||||
|
|
||||||
|
defp item_titles(state) do
|
||||||
|
for {:item, item} <- state.items, do: to_string(item[:title] || item[:name])
|
||||||
|
end
|
||||||
|
|
||||||
|
defp search(state, query) do
|
||||||
|
state |> press("/") |> type(query)
|
||||||
|
end
|
||||||
|
|
||||||
|
test "'/' opens the prompt and typing filters the list live" do
|
||||||
|
state = mount!() |> search("tagged")
|
||||||
|
|
||||||
|
assert state.search != nil
|
||||||
|
assert item_titles(state) == ["Tagged Post"]
|
||||||
|
assert screen_text(state) =~ "/tagged"
|
||||||
|
end
|
||||||
|
|
||||||
|
test "tag: filters by tag" do
|
||||||
|
state = mount!() |> search("tag:elixir")
|
||||||
|
assert item_titles(state) == ["Tagged Post"]
|
||||||
|
end
|
||||||
|
|
||||||
|
test "category: filters by category" do
|
||||||
|
state = mount!() |> search("category:news")
|
||||||
|
assert item_titles(state) == ["Tagged Post"]
|
||||||
|
end
|
||||||
|
|
||||||
|
test "an ISO date shows the posts from that date", %{post: post} do
|
||||||
|
on_ms =
|
||||||
|
DateTime.new!(~D[2026-07-04], ~T[10:00:00], "Etc/UTC") |> DateTime.to_unix(:millisecond)
|
||||||
|
|
||||||
|
BDS.Repo.update_all(
|
||||||
|
from(p in BDS.Posts.Post, where: p.id == ^post.id),
|
||||||
|
set: [updated_at: on_ms]
|
||||||
|
)
|
||||||
|
|
||||||
|
state = mount!() |> search("2026-07-04")
|
||||||
|
assert item_titles(state) == ["Hello TUI"]
|
||||||
|
end
|
||||||
|
|
||||||
|
test "tokens combine: tag plus text must both match" do
|
||||||
|
state = mount!() |> search("tag:elixir hello")
|
||||||
|
assert item_titles(state) == []
|
||||||
|
end
|
||||||
|
|
||||||
|
test "enter keeps the filter and shows it in the sidebar title" do
|
||||||
|
state = mount!() |> search("tag:elixir") |> press("enter")
|
||||||
|
|
||||||
|
assert state.search == nil
|
||||||
|
assert item_titles(state) == ["Tagged Post"]
|
||||||
|
assert screen_text(state) =~ "/tag:elixir"
|
||||||
|
end
|
||||||
|
|
||||||
|
test "esc clears the filter and restores the full list" do
|
||||||
|
state = mount!() |> search("tag:elixir") |> press("esc")
|
||||||
|
|
||||||
|
assert state.search == nil
|
||||||
|
assert "Hello TUI" in item_titles(state)
|
||||||
|
assert "Tagged Post" in item_titles(state)
|
||||||
|
end
|
||||||
|
|
||||||
|
test "the filter applies per view and works for media", %{project: project} do
|
||||||
|
media_file = Path.join(System.tmp_dir!(), "bds-tui-media-#{System.unique_integer([:positive])}.txt")
|
||||||
|
File.write!(media_file, "media body")
|
||||||
|
on_exit(fn -> File.rm(media_file) end)
|
||||||
|
|
||||||
|
{:ok, _media} =
|
||||||
|
BDS.Media.import_media(%{
|
||||||
|
project_id: project.id,
|
||||||
|
source_path: media_file,
|
||||||
|
title: "Findable Media"
|
||||||
|
})
|
||||||
|
|
||||||
|
state = mount!() |> press("2") |> search("findable") |> press("enter")
|
||||||
|
assert item_titles(state) == ["Findable Media"]
|
||||||
|
|
||||||
|
# posts view keeps its own (empty) filter
|
||||||
|
state = press(state, "1")
|
||||||
|
assert "Hello TUI" in item_titles(state)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe "path completion" do
|
describe "path completion" do
|
||||||
setup do
|
setup do
|
||||||
base = Path.join(System.tmp_dir!(), "bds-tui-tab-#{System.unique_integer([:positive])}")
|
base = Path.join(System.tmp_dir!(), "bds-tui-tab-#{System.unique_integer([:positive])}")
|
||||||
|
|||||||
@@ -175,6 +175,47 @@ defmodule BDS.UI.SidebarTest do
|
|||||||
assert Enum.map(import_view.items, & &1.title) == ["New Import", "Old Import"]
|
assert Enum.map(import_view.items, & &1.title) == ["New Import", "Old Import"]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "posts and media can be filtered to a single ISO date", %{
|
||||||
|
project: project,
|
||||||
|
temp_dir: temp_dir
|
||||||
|
} do
|
||||||
|
on_ms =
|
||||||
|
DateTime.new!(~D[2026-07-04], ~T[10:00:00], "Etc/UTC") |> DateTime.to_unix(:millisecond)
|
||||||
|
|
||||||
|
off_ms =
|
||||||
|
DateTime.new!(~D[2026-07-05], ~T[10:00:00], "Etc/UTC") |> DateTime.to_unix(:millisecond)
|
||||||
|
|
||||||
|
assert {:ok, on_post} = Posts.create_post(%{project_id: project.id, title: "On Date"})
|
||||||
|
assert {:ok, off_post} = Posts.create_post(%{project_id: project.id, title: "Off Date"})
|
||||||
|
update_post_sidebar_row(on_post.id, updated_at: on_ms)
|
||||||
|
update_post_sidebar_row(off_post.id, updated_at: off_ms)
|
||||||
|
|
||||||
|
view = Sidebar.view(project.id, "posts", %{year: 2026, month: 7, day: 4})
|
||||||
|
assert titles_in_section(view, "Drafts") == ["On Date"]
|
||||||
|
assert view.filters.has_active_filters
|
||||||
|
|
||||||
|
on_file = Path.join(temp_dir, "on.txt")
|
||||||
|
off_file = Path.join(temp_dir, "off.txt")
|
||||||
|
File.write!(on_file, "on")
|
||||||
|
File.write!(off_file, "off")
|
||||||
|
|
||||||
|
assert {:ok, on_media} =
|
||||||
|
Media.import_media(%{project_id: project.id, source_path: on_file, title: "Media On"})
|
||||||
|
|
||||||
|
assert {:ok, off_media} =
|
||||||
|
Media.import_media(%{
|
||||||
|
project_id: project.id,
|
||||||
|
source_path: off_file,
|
||||||
|
title: "Media Off"
|
||||||
|
})
|
||||||
|
|
||||||
|
update_media_sidebar_row(on_media.id, updated_at: on_ms)
|
||||||
|
update_media_sidebar_row(off_media.id, updated_at: off_ms)
|
||||||
|
|
||||||
|
media_view = Sidebar.view(project.id, "media", %{year: 2026, month: 7, day: 4})
|
||||||
|
assert Enum.map(media_view.items, & &1.title) == ["Media On"]
|
||||||
|
end
|
||||||
|
|
||||||
defp titles_in_section(view, title) do
|
defp titles_in_section(view, title) do
|
||||||
view.sections
|
view.sections
|
||||||
|> Enum.find(&(&1.title == title))
|
|> Enum.find(&(&1.title == title))
|
||||||
|
|||||||
Reference in New Issue
Block a user