feat: D1-15 implement drag-and-drop image chain (import+thumbnails+link+insert) with tests
This commit is contained in:
@@ -129,7 +129,7 @@ All reconciled to follow code. Specs must be self-consistent and match code.
|
|||||||
| D1-12 | ~~BoundedToolLoop enforcement~~ | ai.allium:381-385 | **Resolved:** the round cap is now read from `config.chat_max_tool_rounds` (`config :bds, :chat, max_tool_rounds: 10`) via `chat_max_tool_rounds/0` in chat.ex instead of a hardcoded attribute, matching the spec wording; test added in `ai_test.exs` — a `LoopingToolRuntime` that always returns another tool call (never a final answer) with `max_tool_rounds: 3` ends with `{:error, %{kind: :tool_loop_exhausted}}` after exactly 3 runtime calls (the `rounds_left == 0` round short-circuits before contacting the runtime) |
|
| D1-12 | ~~BoundedToolLoop enforcement~~ | ai.allium:381-385 | **Resolved:** the round cap is now read from `config.chat_max_tool_rounds` (`config :bds, :chat, max_tool_rounds: 10`) via `chat_max_tool_rounds/0` in chat.ex instead of a hardcoded attribute, matching the spec wording; test added in `ai_test.exs` — a `LoopingToolRuntime` that always returns another tool call (never a final answer) with `max_tool_rounds: 3` ends with `{:error, %{kind: :tool_loop_exhausted}}` after exactly 3 runtime calls (the `rounds_left == 0` round short-circuits before contacting the runtime) |
|
||||||
| D1-13 | ~~DiscardPostChangesSideEffects~~ | engine_side_effects.allium:99-104 | **Resolved:** test added in `posts_test.exs` — a published post is dirtied with unsaved title/content edits (re-indexing the dirty text in FTS), then `discard_post_changes/1` restores the published file version (status=published, content=nil, original title) and re-syncs the FTS index so the published terms are searchable again and the discarded edits are gone |
|
| D1-13 | ~~DiscardPostChangesSideEffects~~ | engine_side_effects.allium:99-104 | **Resolved:** test added in `posts_test.exs` — a published post is dirtied with unsaved title/content edits (re-indexing the dirty text in FTS), then `discard_post_changes/1` restores the published file version (status=published, content=nil, original title) and re-syncs the FTS index so the published terms are searchable again and the discarded edits are gone |
|
||||||
| D1-14 | ~~ReplaceMediaFileSideEffects~~ | engine_side_effects.allium:128-134 | **Resolved:** 3 tests added in `media_test.exs` — `replace_media_file/2` copies the new image over the existing path, updates the row (checksum/size/width/height), and regenerates all thumbnails synchronously (present immediately after the call, no `.bak` backup left); identical-checksum replace is a no-op (`{:ok, nil}`); unknown media id returns `{:error, :not_found}` |
|
| D1-14 | ~~ReplaceMediaFileSideEffects~~ | engine_side_effects.allium:128-134 | **Resolved:** 3 tests added in `media_test.exs` — `replace_media_file/2` copies the new image over the existing path, updates the row (checksum/size/width/height), and regenerates all thumbnails synchronously (present immediately after the call, no `.bak` backup left); identical-checksum replace is a no-op (`{:ok, nil}`); unknown media id returns `{:error, :not_found}` |
|
||||||
| D1-15 | Drag-and-drop image chain | action_patterns.allium:84-103 | Write integration test |
|
| D1-15 | ~~Drag-and-drop image chain~~ | action_patterns.allium:84-103 | **Resolved:** the chain had no handler — added `BDS.Desktop.ShellLive.EditorImageDrop` (`import_and_link/3` runs steps 1-4: import media + synchronous thumbnails + link to post + return `` markdown; `enrich/3` runs background steps 5-6: AI analysis auto-applied with no modal + auto-translate cascade when `do_not_translate == false`). `PostEditor.handle_event("editor_image_dropped", ...)` runs the synchronous chain (works offline since import isn't AI), pushes the cursor insert, and spawns `enrich` only when airplane mode is off. MonacoEditor JS hook captures image drops on the editor surface and pushes the file path (`phx-target={@myself}` routes the hook event to the component); i18n for de/fr/it/es. 3 tests added (module chain incl. thumbnails+link+markdown, non-image link form, full LiveView drop in airplane mode asserting import/link/insert with no AI metadata). |
|
||||||
| D1-16 | DebouncedPersistence (5s) | embedding.allium:204-208 | Write test: index persistence debounced |
|
| D1-16 | DebouncedPersistence (5s) | embedding.allium:204-208 | Write test: index persistence debounced |
|
||||||
| D1-17 | Protected categories cannot be deleted | editor_settings.allium:81-84 | Write test: article/aside/page/picture deletion rejected |
|
| D1-17 | Protected categories cannot be deleted | editor_settings.allium:81-84 | Write test: article/aside/page/picture deletion rejected |
|
||||||
| D1-18 | HomeItemProtection (menu) | editor_misc.allium:206-209 | Write test: cannot move/reorder/delete Home |
|
| D1-18 | HomeItemProtection (menu) | editor_misc.allium:206-209 | Write test: cannot move/reorder/delete Home |
|
||||||
|
|||||||
@@ -118,6 +118,36 @@ export const MonacoEditor = {
|
|||||||
}, 120);
|
}, 120);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
this.dropEvent = this.el.dataset.monacoDropEvent || "";
|
||||||
|
this.dropPostId = this.el.dataset.monacoDropPostId || "";
|
||||||
|
|
||||||
|
this.handleDragOver = (event) => {
|
||||||
|
if (event.dataTransfer && Array.from(event.dataTransfer.types || []).includes("Files")) {
|
||||||
|
event.preventDefault();
|
||||||
|
event.dataTransfer.dropEffect = "copy";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
this.handleDrop = (event) => {
|
||||||
|
if (!this.dropEvent || !event.dataTransfer) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const files = Array.from(event.dataTransfer.files || []);
|
||||||
|
const images = files.filter((file) => (file.type || "").startsWith("image/") && file.path);
|
||||||
|
|
||||||
|
if (images.length === 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
|
||||||
|
images.forEach((file) => {
|
||||||
|
this.pushEvent(this.dropEvent, { "post-id": this.dropPostId, path: file.path });
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
this.handleInsert = ({ id, content }) => {
|
this.handleInsert = ({ id, content }) => {
|
||||||
if (!this.editor || !content || String(id) !== String(this.editorId)) {
|
if (!this.editor || !content || String(id) !== String(this.editorId)) {
|
||||||
return;
|
return;
|
||||||
@@ -197,6 +227,11 @@ export const MonacoEditor = {
|
|||||||
if (this.insertEvent) {
|
if (this.insertEvent) {
|
||||||
this.handleEvent(this.insertEvent, this.handleInsert);
|
this.handleEvent(this.insertEvent, this.handleInsert);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (this.dropEvent) {
|
||||||
|
this.el.addEventListener("dragover", this.handleDragOver);
|
||||||
|
this.el.addEventListener("drop", this.handleDrop);
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.error("Failed to load Monaco editor", error);
|
console.error("Failed to load Monaco editor", error);
|
||||||
@@ -232,6 +267,12 @@ export const MonacoEditor = {
|
|||||||
window.clearTimeout(this.syncTimer);
|
window.clearTimeout(this.syncTimer);
|
||||||
this.visibleSizeObserver?.disconnect();
|
this.visibleSizeObserver?.disconnect();
|
||||||
this.changeSubscription?.dispose();
|
this.changeSubscription?.dispose();
|
||||||
|
|
||||||
|
if (this.dropEvent) {
|
||||||
|
this.el.removeEventListener("dragover", this.handleDragOver);
|
||||||
|
this.el.removeEventListener("drop", this.handleDrop);
|
||||||
|
}
|
||||||
|
|
||||||
unregisterMonacoEditor(this.editorId || this.el.id);
|
unregisterMonacoEditor(this.editorId || this.el.id);
|
||||||
this.editor?.dispose();
|
this.editor?.dispose();
|
||||||
}
|
}
|
||||||
|
|||||||
110
lib/bds/desktop/shell_live/editor_image_drop.ex
Normal file
110
lib/bds/desktop/shell_live/editor_image_drop.ex
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
defmodule BDS.Desktop.ShellLive.EditorImageDrop do
|
||||||
|
@moduledoc false
|
||||||
|
|
||||||
|
# Implements the drag-and-drop image chain described in
|
||||||
|
# action_patterns.allium DragDropImageChain (trigger: editor_post.allium
|
||||||
|
# PostDragDropImage). A single image file dropped on the post editor body
|
||||||
|
# runs four synchronous steps the user waits on, then two background steps
|
||||||
|
# whose results are auto-applied without a modal.
|
||||||
|
|
||||||
|
require Logger
|
||||||
|
|
||||||
|
alias BDS.{AI, Media, Metadata, Posts}
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Synchronous portion of the chain (steps 1-4):
|
||||||
|
|
||||||
|
1. importMedia(file) -> media record + file copy + base sidecar
|
||||||
|
2. generateThumbnails(media) -> small/medium/large/ai (done inside import_media)
|
||||||
|
3. linkMediaToPost(media, post) -> update sidecar linkedPostIds
|
||||||
|
4. caller inserts the returned markdown at the cursor
|
||||||
|
|
||||||
|
Returns `{:ok, media, markdown}` where `markdown` is the reference inserted at
|
||||||
|
the cursor. These steps are not AI activities, so they run regardless of
|
||||||
|
airplane mode.
|
||||||
|
"""
|
||||||
|
@spec import_and_link(String.t(), String.t(), String.t()) ::
|
||||||
|
{:ok, Media.Media.t(), String.t()} | {:error, term()}
|
||||||
|
def import_and_link(project_id, post_id, source_path) do
|
||||||
|
with {:ok, media} <-
|
||||||
|
Media.import_media(%{project_id: project_id, source_path: source_path}),
|
||||||
|
{:ok, _link} <- Media.link_media_to_post(media.id, post_id) do
|
||||||
|
{:ok, media, markdown_for(media)}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Markdown reference inserted at the cursor (step 4): `` for
|
||||||
|
images, a plain link for other file types.
|
||||||
|
"""
|
||||||
|
@spec markdown_for(Media.Media.t()) :: String.t()
|
||||||
|
def markdown_for(media) do
|
||||||
|
if String.starts_with?(media.mime_type || "", "image/") do
|
||||||
|
""
|
||||||
|
else
|
||||||
|
"[#{media.original_name}](bds-media://#{media.id})"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Background portion of the chain (steps 5-6), gated behind airplane mode:
|
||||||
|
|
||||||
|
5. aiImageAnalysis(media) -> results auto-applied to media metadata (no modal)
|
||||||
|
6. if auto-translate enabled (post.do_not_translate == false):
|
||||||
|
translateMediaMetadata(media, lang) for each blog language
|
||||||
|
|
||||||
|
Only runs for images. Failures are logged and never roll back the import.
|
||||||
|
"""
|
||||||
|
@spec enrich(Media.Media.t(), String.t(), String.t()) :: :ok
|
||||||
|
def enrich(media, post_id, language) do
|
||||||
|
if image?(media) do
|
||||||
|
with {:ok, result} <- AI.analyze_image(media.id, language: language),
|
||||||
|
{:ok, _updated} <-
|
||||||
|
Media.update_media(media.id, %{
|
||||||
|
title: result.title,
|
||||||
|
alt: result.alt,
|
||||||
|
caption: result.caption
|
||||||
|
}) do
|
||||||
|
maybe_translate(media.id, post_id, language)
|
||||||
|
else
|
||||||
|
{:error, reason} ->
|
||||||
|
Logger.warning("Drag-drop AI analysis failed for #{media.id}: #{inspect(reason)}")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
:ok
|
||||||
|
end
|
||||||
|
|
||||||
|
defp maybe_translate(media_id, post_id, language) do
|
||||||
|
post = Posts.get_post(post_id)
|
||||||
|
|
||||||
|
if post && not post.do_not_translate do
|
||||||
|
translate_targets(post.project_id, language)
|
||||||
|
|> Enum.each(fn target ->
|
||||||
|
case AI.translate_media(media_id, target) do
|
||||||
|
{:ok, translation} ->
|
||||||
|
Media.upsert_media_translation(media_id, target, %{
|
||||||
|
title: translation.title,
|
||||||
|
alt: translation.alt,
|
||||||
|
caption: translation.caption
|
||||||
|
})
|
||||||
|
|
||||||
|
{:error, reason} ->
|
||||||
|
Logger.warning(
|
||||||
|
"Drag-drop media translation failed for #{media_id} -> #{target}: #{inspect(reason)}"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
defp translate_targets(project_id, language) do
|
||||||
|
{:ok, metadata} = Metadata.get_project_metadata(project_id)
|
||||||
|
|
||||||
|
[metadata.main_language | metadata.blog_languages || []]
|
||||||
|
|> Enum.reject(&(&1 == language or is_nil(&1)))
|
||||||
|
|> Enum.uniq()
|
||||||
|
end
|
||||||
|
|
||||||
|
defp image?(media), do: String.starts_with?(media.mime_type || "", "image/")
|
||||||
|
end
|
||||||
@@ -3,9 +3,9 @@ defmodule BDS.Desktop.ShellLive.PostEditor do
|
|||||||
|
|
||||||
use Phoenix.LiveComponent
|
use Phoenix.LiveComponent
|
||||||
|
|
||||||
alias BDS.{AI, Posts, Preview}
|
alias BDS.{AI, Metadata, Posts, Preview}
|
||||||
alias BDS.Desktop.ShellData
|
alias BDS.Desktop.ShellData
|
||||||
alias BDS.Desktop.ShellLive.Notify
|
alias BDS.Desktop.ShellLive.{EditorImageDrop, Notify}
|
||||||
alias BDS.Desktop.ShellLive.PostEditor.{DraftManagement, ListValues, Persistence, PostMetadata}
|
alias BDS.Desktop.ShellLive.PostEditor.{DraftManagement, ListValues, Persistence, PostMetadata}
|
||||||
alias BDS.Posts.Post
|
alias BDS.Posts.Post
|
||||||
alias BDS.Tags
|
alias BDS.Tags
|
||||||
@@ -212,6 +212,11 @@ defmodule BDS.Desktop.ShellLive.PostEditor do
|
|||||||
{:noreply, do_archive(socket)}
|
{:noreply, do_archive(socket)}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def handle_event("editor_image_dropped", %{"path" => path}, socket)
|
||||||
|
when is_binary(path) do
|
||||||
|
{:noreply, do_image_drop(socket, path)}
|
||||||
|
end
|
||||||
|
|
||||||
def handle_event("unarchive_post_editor", _params, socket) do
|
def handle_event("unarchive_post_editor", _params, socket) do
|
||||||
{:noreply, do_unarchive(socket)}
|
{:noreply, do_unarchive(socket)}
|
||||||
end
|
end
|
||||||
@@ -618,6 +623,56 @@ defmodule BDS.Desktop.ShellLive.PostEditor do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Drag-and-drop image chain (action_patterns.allium DragDropImageChain).
|
||||||
|
# Steps 1-4 run synchronously while the user waits; steps 5-6 (AI analysis +
|
||||||
|
# auto-translate) run in the background and are gated behind airplane mode.
|
||||||
|
defp do_image_drop(socket, path) do
|
||||||
|
case socket.assigns.post do
|
||||||
|
%Post{} = post ->
|
||||||
|
case EditorImageDrop.import_and_link(post.project_id, post.id, path) do
|
||||||
|
{:ok, media, markdown} ->
|
||||||
|
maybe_enrich_dropped_image(media, post)
|
||||||
|
|
||||||
|
socket
|
||||||
|
|> Phoenix.LiveView.push_event("post-editor-insert-content", %{
|
||||||
|
id: socket.assigns.post_id,
|
||||||
|
content: markdown
|
||||||
|
})
|
||||||
|
|> notify_output(
|
||||||
|
dgettext("ui", "Insert Image"),
|
||||||
|
dgettext("ui", "Added %{name}", name: media.original_name)
|
||||||
|
)
|
||||||
|
|
||||||
|
{:error, reason} ->
|
||||||
|
notify_output(
|
||||||
|
socket,
|
||||||
|
dgettext("ui", "Insert Image"),
|
||||||
|
dgettext("ui", "Failed to import %{path}: %{reason}",
|
||||||
|
path: Path.basename(path),
|
||||||
|
reason: inspect(reason)
|
||||||
|
),
|
||||||
|
"error"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
_other ->
|
||||||
|
socket
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
defp maybe_enrich_dropped_image(media, post) do
|
||||||
|
unless AI.airplane_mode?() do
|
||||||
|
{:ok, metadata} = Metadata.get_project_metadata(post.project_id)
|
||||||
|
language = metadata.main_language || "en"
|
||||||
|
|
||||||
|
Task.Supervisor.start_child(BDS.TCP.TaskSupervisor, fn ->
|
||||||
|
EditorImageDrop.enrich(media, post.id, language)
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
:ok
|
||||||
|
end
|
||||||
|
|
||||||
defp do_unarchive(socket) do
|
defp do_unarchive(socket) do
|
||||||
case socket.assigns.post do
|
case socket.assigns.post do
|
||||||
nil ->
|
nil ->
|
||||||
|
|||||||
@@ -436,11 +436,14 @@
|
|||||||
class="post-editor-markdown-surface monaco-editor-shell"
|
class="post-editor-markdown-surface monaco-editor-shell"
|
||||||
data-testid="post-editor-markdown-surface"
|
data-testid="post-editor-markdown-surface"
|
||||||
phx-hook="MonacoEditor"
|
phx-hook="MonacoEditor"
|
||||||
|
phx-target={@myself}
|
||||||
data-monaco-editor-id={@post_editor.id}
|
data-monaco-editor-id={@post_editor.id}
|
||||||
data-monaco-input-id={"post-editor-content-#{@post_editor.id}"}
|
data-monaco-input-id={"post-editor-content-#{@post_editor.id}"}
|
||||||
data-monaco-language="markdown-with-macros"
|
data-monaco-language="markdown-with-macros"
|
||||||
data-monaco-word-wrap="on"
|
data-monaco-word-wrap="on"
|
||||||
data-monaco-insert-event="post-editor-insert-content"
|
data-monaco-insert-event="post-editor-insert-content"
|
||||||
|
data-monaco-drop-event="editor_image_dropped"
|
||||||
|
data-monaco-drop-post-id={@post_editor.id}
|
||||||
>
|
>
|
||||||
<div id={"post-editor-monaco-#{@post_editor.id}"} class="monaco-editor-instance min-h-0 flex-1" phx-update="ignore"></div>
|
<div id={"post-editor-monaco-#{@post_editor.id}"} class="monaco-editor-instance min-h-0 flex-1" phx-update="ignore"></div>
|
||||||
<textarea id={"post-editor-content-#{@post_editor.id}"} class="monaco-editor-input post-editor-content" data-testid="post-editor-content" data-post-editor-id={@post_editor.id} name="post_editor[content]" rows="18" spellcheck="false"><%= @post_editor.form["content"] %></textarea>
|
<textarea id={"post-editor-content-#{@post_editor.id}"} class="monaco-editor-input post-editor-content" data-testid="post-editor-content" data-post-editor-id={@post_editor.id} name="post_editor[content]" rows="18" spellcheck="false"><%= @post_editor.form["content"] %></textarea>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ msgid "%{canonical} = %{translation}"
|
|||||||
msgstr "%{canonical} = %{translation}"
|
msgstr "%{canonical} = %{translation}"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1050
|
#: lib/bds/desktop/shell_live/import_editor.ex:1053
|
||||||
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} mapped"
|
msgid "%{count} mapped"
|
||||||
@@ -17,13 +17,13 @@ msgid_plural "%{count} posts"
|
|||||||
msgstr[0] "%{count} Beitrag"
|
msgstr[0] "%{count} Beitrag"
|
||||||
msgstr[1] "%{count} Beiträge"
|
msgstr[1] "%{count} Beiträge"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1051
|
#: lib/bds/desktop/shell_live/import_editor.ex:1054
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} unmapped"
|
msgid "%{count} unmapped"
|
||||||
msgstr "%{count} nicht zugeordnet"
|
msgstr "%{count} nicht zugeordnet"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1061
|
#: lib/bds/desktop/shell_live/import_editor.ex:1064
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
#: lib/bds/desktop/shell_live/import_editor.ex:1079
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} uses"
|
msgid "%{count} uses"
|
||||||
msgstr "%{count} Verwendungen"
|
msgstr "%{count} Verwendungen"
|
||||||
@@ -38,22 +38,22 @@ msgstr "%{count}s"
|
|||||||
msgid "%{minutes}m %{seconds}s"
|
msgid "%{minutes}m %{seconds}s"
|
||||||
msgstr "%{minutes}m %{seconds}s"
|
msgstr "%{minutes}m %{seconds}s"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1073
|
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "(no parameters)"
|
msgid "(no parameters)"
|
||||||
msgstr "(keine Parameter)"
|
msgstr "(keine Parameter)"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid ", +%{count} more"
|
msgid ", +%{count} more"
|
||||||
msgstr ", +%{count} weitere"
|
msgstr ", +%{count} weitere"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1137
|
#: lib/bds/desktop/shell_live/import_editor.ex:1140
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1199
|
#: lib/bds/desktop/shell_live/import_editor.ex:1202
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1200
|
#: lib/bds/desktop/shell_live/import_editor.ex:1203
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1241
|
#: lib/bds/desktop/shell_live/import_editor.ex:1244
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1243
|
#: lib/bds/desktop/shell_live/import_editor.ex:1246
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1427
|
#: lib/bds/desktop/shell_live/import_editor.ex:1430
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "--"
|
msgid "--"
|
||||||
msgstr "--"
|
msgstr "--"
|
||||||
@@ -79,7 +79,7 @@ msgstr "KI-Einstellungen"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
||||||
#: 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:781
|
#: lib/bds/desktop/shell_live/post_editor.ex:847
|
||||||
#: 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
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
@@ -94,7 +94,7 @@ msgstr "KI-Vorschlaege"
|
|||||||
msgid "AI conversations"
|
msgid "AI conversations"
|
||||||
msgstr "KI-Gespräche"
|
msgstr "KI-Gespräche"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1015
|
#: lib/bds/desktop/shell_live/import_editor.ex:1018
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
||||||
msgstr "KI schlägt Zuordnungen von neuen zu vorhandenen Einträgen vor, um Duplikate zu vermeiden"
|
msgstr "KI schlägt Zuordnungen von neuen zu vorhandenen Einträgen vor, um Duplikate zu vermeiden"
|
||||||
@@ -173,14 +173,14 @@ msgstr "Alt-Text"
|
|||||||
msgid "Analysis complete"
|
msgid "Analysis complete"
|
||||||
msgstr "Analyse abgeschlossen"
|
msgstr "Analyse abgeschlossen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:668
|
#: lib/bds/desktop/shell_live/import_editor.ex:671
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:999
|
#: lib/bds/desktop/shell_live/import_editor.ex:1002
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyze with..."
|
msgid "Analyze with..."
|
||||||
msgstr "Analysieren mit..."
|
msgstr "Analysieren mit..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:855
|
#: lib/bds/desktop/shell_live/import_editor.ex:858
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyzing WXR file..."
|
msgid "Analyzing WXR file..."
|
||||||
@@ -227,7 +227,7 @@ msgstr "Theme anwenden"
|
|||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr "Archiviert"
|
msgstr "Archiviert"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:594
|
#: lib/bds/desktop/shell_live/chat_editor.ex:599
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Argumente"
|
msgstr "Argumente"
|
||||||
@@ -237,7 +237,7 @@ msgstr "Argumente"
|
|||||||
msgid "Ask the assistant about the active project or editor."
|
msgid "Ask the assistant about the active project or editor."
|
||||||
msgstr "Frage den Assistenten zum aktiven Projekt oder Editor."
|
msgstr "Frage den Assistenten zum aktiven Projekt oder Editor."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:531
|
#: lib/bds/desktop/shell_live/chat_editor.ex:536
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
||||||
@@ -258,13 +258,13 @@ msgstr "Automatisch"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:98
|
#: lib/bds/desktop/shell_data.ex:98
|
||||||
#: lib/bds/desktop/shell_live.ex:431
|
#: lib/bds/desktop/shell_live.ex:431
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:231
|
#: lib/bds/desktop/shell_live/chat_editor.ex:234
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:156
|
#: lib/bds/desktop/shell_live/media_editor.ex:160
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:349
|
#: lib/bds/desktop/shell_live/media_editor.ex:353
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:538
|
#: lib/bds/desktop/shell_live/media_editor.ex:546
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:648
|
#: lib/bds/desktop/shell_live/post_editor.ex:714
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:697
|
#: lib/bds/desktop/shell_live/post_editor.ex:763
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Automatic AI actions stay gated by airplane mode."
|
msgid "Automatic AI actions stay gated by airplane mode."
|
||||||
msgstr "Automatische KI-Aktionen bleiben durch den Flugmodus gesperrt."
|
msgstr "Automatische KI-Aktionen bleiben durch den Flugmodus gesperrt."
|
||||||
@@ -337,7 +337,7 @@ msgstr "Blogmark-Kategorie"
|
|||||||
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
||||||
msgstr "Die Bookmarklet-Kopierfunktion ist über die Desktop-Laufzeit und die öffentliche Projekt-URL verdrahtet."
|
msgstr "Die Bookmarklet-Kopierfunktion ist über die Desktop-Laufzeit und die öffentliche Projekt-URL verdrahtet."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1362
|
#: lib/bds/desktop/shell_live/import_editor.ex:1365
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
||||||
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
||||||
@@ -361,9 +361,9 @@ msgstr "Abbrechen"
|
|||||||
msgid "Caption"
|
msgid "Caption"
|
||||||
msgstr "Bildunterschrift"
|
msgstr "Bildunterschrift"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:890
|
#: lib/bds/desktop/shell_live/import_editor.ex:893
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1020
|
#: lib/bds/desktop/shell_live/import_editor.ex:1023
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1184
|
#: lib/bds/desktop/shell_live/import_editor.ex:1187
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:336
|
#: lib/bds/desktop/shell_live/index.html.heex:336
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
||||||
@@ -379,7 +379,7 @@ msgstr "Bildunterschrift"
|
|||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "Kategorien"
|
msgstr "Kategorien"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:992
|
#: lib/bds/desktop/shell_live/import_editor.ex:995
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Categories & Tags"
|
msgid "Categories & Tags"
|
||||||
msgstr "Kategorien & Tags"
|
msgstr "Kategorien & Tags"
|
||||||
@@ -406,8 +406,8 @@ msgstr "Kategoriename ist erforderlich"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:979
|
#: lib/bds/desktop/shell_live.ex:979
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:230
|
#: lib/bds/desktop/shell_live/chat_editor.ex:233
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:318
|
#: lib/bds/desktop/shell_live/chat_editor.ex:323
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:503
|
#: lib/bds/desktop/shell_live/index.html.heex:503
|
||||||
#: lib/bds/ui/registry.ex:104
|
#: lib/bds/ui/registry.ex:104
|
||||||
@@ -444,8 +444,8 @@ msgstr "Kategorien löschen"
|
|||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr "Filter löschen"
|
msgstr "Filter löschen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
#: lib/bds/desktop/shell_live/import_editor.ex:1367
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1395
|
#: lib/bds/desktop/shell_live/import_editor.ex:1398
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear mapping"
|
msgid "Clear mapping"
|
||||||
msgstr "Zuordnung entfernen"
|
msgstr "Zuordnung entfernen"
|
||||||
@@ -488,7 +488,7 @@ msgstr "Unveränderte Diff-Blöcke einklappen"
|
|||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr "Befehl abgeschlossen"
|
msgstr "Befehl abgeschlossen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:927
|
#: lib/bds/desktop/shell_live/chat_editor.ex:932
|
||||||
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Configure an API key in Settings to enable AI chat."
|
msgid "Configure an API key in Settings to enable AI chat."
|
||||||
@@ -558,7 +558,7 @@ msgstr "Kategorie erstellen"
|
|||||||
msgid "Create tag"
|
msgid "Create tag"
|
||||||
msgstr "Schlagwort erstellen"
|
msgstr "Schlagwort erstellen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:453
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -604,7 +604,7 @@ msgstr "Datenwartung"
|
|||||||
msgid "Data Path"
|
msgid "Data Path"
|
||||||
msgstr "Datenpfad"
|
msgstr "Datenpfad"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:896
|
#: lib/bds/desktop/shell_live/import_editor.ex:899
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date Distribution"
|
msgid "Date Distribution"
|
||||||
msgstr "Datumsverteilung"
|
msgstr "Datumsverteilung"
|
||||||
@@ -660,7 +660,7 @@ msgstr "Loeschen"
|
|||||||
msgid "Delete Media"
|
msgid "Delete Media"
|
||||||
msgstr "Medium loeschen"
|
msgstr "Medium loeschen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:392
|
#: lib/bds/desktop/shell_live/media_editor.ex:396
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete Translation"
|
msgid "Delete Translation"
|
||||||
msgstr "Übersetzung löschen"
|
msgstr "Übersetzung löschen"
|
||||||
@@ -701,14 +701,14 @@ msgstr "Desktop-Laufzeit"
|
|||||||
msgid "Detect"
|
msgid "Detect"
|
||||||
msgstr "Erkennen"
|
msgstr "Erkennen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:155
|
#: lib/bds/desktop/shell_live/media_editor.ex:159
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:194
|
#: lib/bds/desktop/shell_live/media_editor.ex:198
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:199
|
#: lib/bds/desktop/shell_live/media_editor.ex:203
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:205
|
#: lib/bds/desktop/shell_live/media_editor.ex:209
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:647
|
#: lib/bds/desktop/shell_live/post_editor.ex:713
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:676
|
#: lib/bds/desktop/shell_live/post_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:682
|
#: lib/bds/desktop/shell_live/post_editor.ex:748
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Detect Language"
|
msgid "Detect Language"
|
||||||
msgstr "Sprache erkennen"
|
msgstr "Sprache erkennen"
|
||||||
@@ -764,7 +764,7 @@ msgstr "Verwerfen"
|
|||||||
msgid "Dismiss Checked"
|
msgid "Dismiss Checked"
|
||||||
msgstr "Markierte verwerfen"
|
msgstr "Markierte verwerfen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:618
|
#: lib/bds/desktop/shell_live/chat_editor.ex:623
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Dismiss surface"
|
msgid "Dismiss surface"
|
||||||
msgstr "Ansicht schließen"
|
msgstr "Ansicht schließen"
|
||||||
@@ -902,13 +902,13 @@ msgstr "Exakte Übereinstimmung"
|
|||||||
msgid "Excerpt"
|
msgid "Excerpt"
|
||||||
msgstr "Auszug"
|
msgstr "Auszug"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1128
|
#: lib/bds/desktop/shell_live/import_editor.ex:1131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Entry"
|
msgid "Existing Entry"
|
||||||
msgstr "Vorhandener Eintrag"
|
msgstr "Vorhandener Eintrag"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
#: lib/bds/desktop/shell_live/import_editor.ex:1189
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
#: lib/bds/desktop/shell_live/import_editor.ex:1236
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Match"
|
msgid "Existing Match"
|
||||||
msgstr "Vorhandene Übereinstimmung"
|
msgstr "Vorhandene Übereinstimmung"
|
||||||
@@ -924,7 +924,7 @@ msgid "Extra URLs"
|
|||||||
msgstr "Zusätzliche URLs"
|
msgstr "Zusätzliche URLs"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:144
|
#: lib/bds/desktop/menu_bar.ex:144
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
#: lib/bds/desktop/shell_live/import_editor.ex:881
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "File"
|
msgid "File"
|
||||||
@@ -940,7 +940,7 @@ msgstr "Dateiname"
|
|||||||
msgid "File to DB"
|
msgid "File to DB"
|
||||||
msgstr "Datei nach DB"
|
msgstr "Datei nach DB"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1230
|
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Filename"
|
msgid "Filename"
|
||||||
msgstr "Dateiname"
|
msgstr "Dateiname"
|
||||||
@@ -1032,13 +1032,13 @@ msgstr "Host"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:116
|
#: lib/bds/desktop/shell_data.ex:116
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:666
|
#: lib/bds/desktop/shell_live/index.html.heex:666
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:703
|
#: lib/bds/desktop/shell_live/media_editor.ex:711
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:899
|
#: lib/bds/desktop/shell_live/post_editor.ex:965
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Idle"
|
msgid "Idle"
|
||||||
msgstr "Leerlauf"
|
msgstr "Leerlauf"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1143
|
#: lib/bds/desktop/shell_live/import_editor.ex:1146
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr "Ignorieren"
|
msgstr "Ignorieren"
|
||||||
@@ -1055,12 +1055,12 @@ msgstr "Bilder und Dateien"
|
|||||||
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:700
|
#: lib/bds/desktop/shell_live/import_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:704
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:728
|
#: lib/bds/desktop/shell_live/import_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:742
|
#: lib/bds/desktop/shell_live/import_editor.ex:731
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:755
|
#: lib/bds/desktop/shell_live/import_editor.ex:745
|
||||||
|
#: lib/bds/desktop/shell_live/import_editor.ex:758
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
||||||
@@ -1087,12 +1087,12 @@ msgstr "Bilder und Dateien"
|
|||||||
msgid "Import"
|
msgid "Import"
|
||||||
msgstr "Importieren"
|
msgstr "Importieren"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:947
|
#: lib/bds/desktop/shell_live/import_editor.ex:950
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import %{count} Items"
|
msgid "Import %{count} Items"
|
||||||
msgstr "%{count} Elemente importieren"
|
msgstr "%{count} Elemente importieren"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1145
|
#: lib/bds/desktop/shell_live/import_editor.ex:1148
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import (new slug)"
|
msgid "Import (new slug)"
|
||||||
msgstr "Importieren (neuer Slug)"
|
msgstr "Importieren (neuer Slug)"
|
||||||
@@ -1107,8 +1107,8 @@ msgstr "Medien importieren"
|
|||||||
msgid "Import complete"
|
msgid "Import complete"
|
||||||
msgstr "Import abgeschlossen"
|
msgstr "Import abgeschlossen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:729
|
#: lib/bds/desktop/shell_live/import_editor.ex:732
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:955
|
#: lib/bds/desktop/shell_live/import_editor.ex:958
|
||||||
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import completed successfully!"
|
msgid "Import completed successfully!"
|
||||||
@@ -1122,7 +1122,7 @@ msgstr "Import erfolgreich abgeschlossen!"
|
|||||||
msgid "Import definitions"
|
msgid "Import definitions"
|
||||||
msgstr "Importdefinitionen"
|
msgstr "Importdefinitionen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:961
|
#: lib/bds/desktop/shell_live/import_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import failed: %{error}"
|
msgid "Import failed: %{error}"
|
||||||
msgstr "Import fehlgeschlagen: %{error}"
|
msgstr "Import fehlgeschlagen: %{error}"
|
||||||
@@ -1135,7 +1135,7 @@ msgstr "Import fehlgeschlagen: %{error}"
|
|||||||
msgid "Import media"
|
msgid "Import media"
|
||||||
msgstr "Medien importieren"
|
msgstr "Medien importieren"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:828
|
#: lib/bds/desktop/shell_live/import_editor.ex:831
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import name..."
|
msgid "Import name..."
|
||||||
msgstr "Importname..."
|
msgstr "Importname..."
|
||||||
@@ -1160,7 +1160,7 @@ msgstr "Beiträge werden importiert..."
|
|||||||
msgid "Importing tags & categories..."
|
msgid "Importing tags & categories..."
|
||||||
msgstr "Tags & Kategorien werden importiert..."
|
msgstr "Tags & Kategorien werden importiert..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:915
|
#: lib/bds/desktop/shell_live/import_editor.ex:918
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Importing..."
|
msgid "Importing..."
|
||||||
msgstr "Import läuft..."
|
msgstr "Import läuft..."
|
||||||
@@ -1196,15 +1196,15 @@ msgstr "Intern"
|
|||||||
msgid "Kind"
|
msgid "Kind"
|
||||||
msgstr "Art"
|
msgstr "Art"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
#: lib/bds/desktop/shell_live/import_editor.ex:877
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Sprache"
|
msgstr "Sprache"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:206
|
#: lib/bds/desktop/shell_live/media_editor.ex:210
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:683
|
#: lib/bds/desktop/shell_live/post_editor.ex:749
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language detection failed."
|
msgid "Language detection failed."
|
||||||
msgstr "Spracherkennung fehlgeschlagen."
|
msgstr "Spracherkennung fehlgeschlagen."
|
||||||
@@ -1214,7 +1214,7 @@ msgstr "Spracherkennung fehlgeschlagen."
|
|||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Hell"
|
msgstr "Hell"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:252
|
#: lib/bds/desktop/shell_live/media_editor.ex:256
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Link to Post"
|
msgid "Link to Post"
|
||||||
@@ -1259,7 +1259,7 @@ msgstr "MCP"
|
|||||||
msgid "MIME Type"
|
msgid "MIME Type"
|
||||||
msgstr "MIME-Typ"
|
msgstr "MIME-Typ"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1044
|
#: lib/bds/desktop/shell_live/import_editor.ex:1047
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Macros (%{count})"
|
msgid "Macros (%{count})"
|
||||||
msgstr "Makros (%{count})"
|
msgstr "Makros (%{count})"
|
||||||
@@ -1277,18 +1277,18 @@ msgstr "Hauptsprache"
|
|||||||
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
||||||
msgstr "Verwalte die zentrale Blog-Navigationsstruktur und speichere sie in meta/menu.opml."
|
msgstr "Verwalte die zentrale Blog-Navigationsstruktur und speichere sie in meta/menu.opml."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1357
|
#: lib/bds/desktop/shell_live/import_editor.ex:1360
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1361
|
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Map to..."
|
msgid "Map to..."
|
||||||
msgstr "Zuordnen zu..."
|
msgstr "Zuordnen zu..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Mapped"
|
msgid "Mapped"
|
||||||
msgstr "Zugeordnet"
|
msgstr "Zugeordnet"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:902
|
#: lib/bds/desktop/shell_live/post_editor.ex:968
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Markdown"
|
msgid "Markdown"
|
||||||
@@ -1300,8 +1300,8 @@ msgid "Max Posts Per Page"
|
|||||||
msgstr "Maximale Beiträge pro Seite"
|
msgstr "Maximale Beiträge pro Seite"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:168
|
#: lib/bds/desktop/menu_bar.ex:168
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:494
|
#: lib/bds/desktop/shell_live/media_editor.ex:502
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
@@ -1313,12 +1313,12 @@ msgstr "Maximale Beiträge pro Seite"
|
|||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr "Medien"
|
msgstr "Medien"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:986
|
#: lib/bds/desktop/shell_live/import_editor.ex:989
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media (%{count})"
|
msgid "Media (%{count})"
|
||||||
msgstr "Medien (%{count})"
|
msgstr "Medien (%{count})"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media saved"
|
msgid "Media saved"
|
||||||
msgstr "Medium gespeichert"
|
msgstr "Medium gespeichert"
|
||||||
@@ -1368,8 +1368,8 @@ msgstr "Fehlende URLs"
|
|||||||
msgid "Mode"
|
msgid "Mode"
|
||||||
msgstr "Modus"
|
msgstr "Modus"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:875
|
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "N/A"
|
msgid "N/A"
|
||||||
msgstr "k. A."
|
msgstr "k. A."
|
||||||
@@ -1380,7 +1380,7 @@ msgstr "k. A."
|
|||||||
msgid "New Chat"
|
msgid "New Chat"
|
||||||
msgstr "Neuer Chat"
|
msgstr "Neuer Chat"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1127
|
#: lib/bds/desktop/shell_live/import_editor.ex:1130
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Entry (WXR)"
|
msgid "New Entry (WXR)"
|
||||||
msgstr "Neuer Eintrag (WXR)"
|
msgstr "Neuer Eintrag (WXR)"
|
||||||
@@ -1439,7 +1439,7 @@ msgstr "Keine Hintergrundaufgaben aktiv"
|
|||||||
msgid "No commit subject"
|
msgid "No commit subject"
|
||||||
msgstr "Kein Commit-Betreff"
|
msgstr "Kein Commit-Betreff"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:837
|
#: lib/bds/desktop/shell_live/import_editor.ex:840
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No folder selected"
|
msgid "No folder selected"
|
||||||
msgstr "Kein Ordner ausgewählt"
|
msgstr "Kein Ordner ausgewählt"
|
||||||
@@ -1571,7 +1571,7 @@ msgstr "Mit keinen Beiträgen verknüpft"
|
|||||||
msgid "Not supported in the rewrite yet"
|
msgid "Not supported in the rewrite yet"
|
||||||
msgstr "In der Neufassung noch nicht unterstützt"
|
msgstr "In der Neufassung noch nicht unterstützt"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:945
|
#: lib/bds/desktop/shell_live/import_editor.ex:948
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to Import"
|
msgid "Nothing to Import"
|
||||||
msgstr "Nichts zu importieren"
|
msgstr "Nichts zu importieren"
|
||||||
@@ -1667,7 +1667,7 @@ msgstr "Online-Bildunterstützung"
|
|||||||
msgid "Online Title Model"
|
msgid "Online Title Model"
|
||||||
msgstr "Online-Titelmodell"
|
msgstr "Online-Titelmodell"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:839
|
#: lib/bds/desktop/shell_live/import_editor.ex:842
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@@ -1711,12 +1711,12 @@ msgstr "Reihenfolge"
|
|||||||
msgid "Orphan Files"
|
msgid "Orphan Files"
|
||||||
msgstr "Verwaiste Dateien"
|
msgstr "Verwaiste Dateien"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:886
|
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr "Sonstige"
|
msgstr "Sonstige"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:978
|
#: lib/bds/desktop/shell_live/import_editor.ex:981
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other (%{count})"
|
msgid "Other (%{count})"
|
||||||
msgstr "Andere (%{count})"
|
msgstr "Andere (%{count})"
|
||||||
@@ -1733,7 +1733,7 @@ msgstr "Ausgabe"
|
|||||||
msgid "Overview of your blog database"
|
msgid "Overview of your blog database"
|
||||||
msgstr "Überblick über deine Blog-Datenbank"
|
msgstr "Überblick über deine Blog-Datenbank"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1144
|
#: lib/bds/desktop/shell_live/import_editor.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Overwrite"
|
msgid "Overwrite"
|
||||||
msgstr "Überschreiben"
|
msgstr "Überschreiben"
|
||||||
@@ -1743,7 +1743,7 @@ msgstr "Überschreiben"
|
|||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Seite"
|
msgstr "Seite"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:970
|
#: lib/bds/desktop/shell_live/import_editor.ex:973
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Page Slug Conflicts"
|
msgid "Page Slug Conflicts"
|
||||||
msgstr "Seiten-Slug-Konflikte"
|
msgstr "Seiten-Slug-Konflikte"
|
||||||
@@ -1754,7 +1754,7 @@ msgstr "Seiten-Slug-Konflikte"
|
|||||||
msgid "Pages"
|
msgid "Pages"
|
||||||
msgstr "Seiten"
|
msgstr "Seiten"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:982
|
#: lib/bds/desktop/shell_live/import_editor.ex:985
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pages (%{count})"
|
msgid "Pages (%{count})"
|
||||||
msgstr "Seiten (%{count})"
|
msgstr "Seiten (%{count})"
|
||||||
@@ -1774,7 +1774,7 @@ msgstr "WXR-Datei wird gelesen..."
|
|||||||
msgid "Paste"
|
msgid "Paste"
|
||||||
msgstr "Einfügen"
|
msgstr "Einfügen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
#: lib/bds/desktop/shell_live/import_editor.ex:1235
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
@@ -1786,16 +1786,16 @@ msgid "Persist the detected language for this media item"
|
|||||||
msgstr "Die erkannte Sprache für dieses Medium speichern"
|
msgstr "Die erkannte Sprache für dieses Medium speichern"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:483
|
#: lib/bds/desktop/shell_live/post_editor.ex:492
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:522
|
#: lib/bds/desktop/shell_live/post_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:557
|
#: lib/bds/desktop/shell_live/post_editor.ex:573
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:572
|
#: lib/bds/desktop/shell_live/post_editor.ex:588
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:604
|
#: lib/bds/desktop/shell_live/post_editor.ex:620
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:637
|
#: lib/bds/desktop/shell_live/post_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
||||||
#: lib/bds/ui/registry.ex:99
|
#: lib/bds/ui/registry.ex:99
|
||||||
@@ -1810,7 +1810,7 @@ msgstr "Beitrag"
|
|||||||
msgid "Post Links"
|
msgid "Post Links"
|
||||||
msgstr "Beitragsverweise"
|
msgstr "Beitragsverweise"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:966
|
#: lib/bds/desktop/shell_live/import_editor.ex:969
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post Slug Conflicts"
|
msgid "Post Slug Conflicts"
|
||||||
msgstr "Beitrags-Slug-Konflikte"
|
msgstr "Beitrags-Slug-Konflikte"
|
||||||
@@ -1825,12 +1825,12 @@ msgstr "Beitragsvorlage"
|
|||||||
msgid "Post is marked as do-not-translate but has translations"
|
msgid "Post is marked as do-not-translate but has translations"
|
||||||
msgstr "Beitrag ist als nicht-übersetzen markiert, hat aber Übersetzungen"
|
msgstr "Beitrag ist als nicht-übersetzen markiert, hat aber Übersetzungen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post published"
|
msgid "Post published"
|
||||||
msgstr "Beitrag veröffentlicht"
|
msgstr "Beitrag veröffentlicht"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post saved"
|
msgid "Post saved"
|
||||||
msgstr "Beitrag gespeichert"
|
msgstr "Beitrag gespeichert"
|
||||||
@@ -1844,7 +1844,7 @@ msgstr "Beitrag gespeichert"
|
|||||||
msgid "Posts"
|
msgid "Posts"
|
||||||
msgstr "Beiträge"
|
msgstr "Beiträge"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:974
|
#: lib/bds/desktop/shell_live/import_editor.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Posts (%{count})"
|
msgid "Posts (%{count})"
|
||||||
msgstr "Beiträge (%{count})"
|
msgstr "Beiträge (%{count})"
|
||||||
@@ -1854,7 +1854,7 @@ msgstr "Beiträge (%{count})"
|
|||||||
msgid "Preferences"
|
msgid "Preferences"
|
||||||
msgstr "Einstellungen"
|
msgstr "Einstellungen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:903
|
#: lib/bds/desktop/shell_live/post_editor.ex:969
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
@@ -1923,8 +1923,8 @@ msgid "Publish Selected"
|
|||||||
msgstr "Ausgewähltes veröffentlichen"
|
msgstr "Ausgewähltes veröffentlichen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:181
|
#: lib/bds/desktop/shell_data.ex:181
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:897
|
#: lib/bds/desktop/shell_live/post_editor.ex:963
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:459
|
||||||
#: lib/bds/ui/sidebar.ex:324
|
#: lib/bds/ui/sidebar.ex:324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published"
|
msgid "Published"
|
||||||
@@ -1955,7 +1955,7 @@ msgstr "Schnellaktionen"
|
|||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr "Beenden"
|
msgstr "Beenden"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:936
|
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ready to import:"
|
msgid "Ready to import:"
|
||||||
msgstr "Bereit zum Import:"
|
msgstr "Bereit zum Import:"
|
||||||
@@ -2022,8 +2022,8 @@ msgstr "Offline-Modelle aktualisieren"
|
|||||||
msgid "Refresh Online Models"
|
msgid "Refresh Online Models"
|
||||||
msgstr "Online-Modelle aktualisieren"
|
msgstr "Online-Modelle aktualisieren"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:364
|
#: lib/bds/desktop/shell_live/media_editor.ex:368
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:373
|
#: lib/bds/desktop/shell_live/media_editor.ex:377
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Refresh Translation"
|
msgid "Refresh Translation"
|
||||||
msgstr "Übersetzung aktualisieren"
|
msgstr "Übersetzung aktualisieren"
|
||||||
@@ -2079,8 +2079,8 @@ msgstr "In Listen rendern"
|
|||||||
msgid "Replace"
|
msgid "Replace"
|
||||||
msgstr "Ersetzen"
|
msgstr "Ersetzen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:138
|
#: lib/bds/desktop/shell_live/media_editor.ex:142
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:146
|
#: lib/bds/desktop/shell_live/media_editor.ex:150
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Replace File"
|
msgid "Replace File"
|
||||||
@@ -2111,17 +2111,17 @@ msgstr "Auf Standard zurücksetzen"
|
|||||||
msgid "Reset to Defaults"
|
msgid "Reset to Defaults"
|
||||||
msgstr "Auf Standard zurücksetzen"
|
msgstr "Auf Standard zurücksetzen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
#: lib/bds/desktop/shell_live/import_editor.ex:1132
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Resolution"
|
msgid "Resolution"
|
||||||
msgstr "Lösung"
|
msgstr "Lösung"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:597
|
#: lib/bds/desktop/shell_live/chat_editor.ex:602
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Ergebnis"
|
msgstr "Ergebnis"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:898
|
#: lib/bds/desktop/shell_live/post_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reverted"
|
msgid "Reverted"
|
||||||
msgstr "Zurückgesetzt"
|
msgstr "Zurückgesetzt"
|
||||||
@@ -2167,13 +2167,13 @@ msgstr "SSH-Modus"
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Speichern"
|
msgstr "Speichern"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:324
|
#: lib/bds/desktop/shell_live/media_editor.ex:328
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save Translation"
|
msgid "Save Translation"
|
||||||
msgstr "Übersetzung speichern"
|
msgstr "Übersetzung speichern"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:702
|
#: lib/bds/desktop/shell_live/media_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:896
|
#: lib/bds/desktop/shell_live/post_editor.ex:962
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Gespeichert"
|
msgstr "Gespeichert"
|
||||||
@@ -2264,7 +2264,7 @@ msgstr "Beiträge durchsuchen..."
|
|||||||
msgid "Search settings"
|
msgid "Search settings"
|
||||||
msgstr "Einstellungen durchsuchen"
|
msgstr "Einstellungen durchsuchen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:847
|
#: lib/bds/desktop/shell_live/import_editor.ex:850
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select & Analyze"
|
msgid "Select & Analyze"
|
||||||
msgstr "Auswählen & analysieren"
|
msgstr "Auswählen & analysieren"
|
||||||
@@ -2279,19 +2279,19 @@ msgstr "Alles auswählen"
|
|||||||
msgid "Select Page"
|
msgid "Select Page"
|
||||||
msgstr "Seite auswählen"
|
msgstr "Seite auswählen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:646
|
#: lib/bds/desktop/shell_live/import_editor.ex:649
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
#: lib/bds/desktop/shell_live/import_editor.ex:833
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
||||||
msgstr "Wähle eine WordPress-Exportdatei (WXR) und einen Upload-Ordner, um den Import zu analysieren."
|
msgstr "Wähle eine WordPress-Exportdatei (WXR) und einen Upload-Ordner, um den Import zu analysieren."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1099
|
#: lib/bds/desktop/shell_live/import_editor.ex:1102
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file to begin analysis."
|
msgid "Select a WordPress export file to begin analysis."
|
||||||
msgstr "Wähle eine WordPress-Exportdatei, um die Analyse zu starten."
|
msgstr "Wähle eine WordPress-Exportdatei, um die Analyse zu starten."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:845
|
#: lib/bds/desktop/shell_live/import_editor.ex:848
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a file to analyze"
|
msgid "Select a file to analyze"
|
||||||
msgstr "Datei zur Analyse auswählen"
|
msgstr "Datei zur Analyse auswählen"
|
||||||
@@ -2345,7 +2345,7 @@ msgstr "Titel anzeigen"
|
|||||||
msgid "Side by Side"
|
msgid "Side by Side"
|
||||||
msgstr "Nebeneinander"
|
msgstr "Nebeneinander"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:866
|
#: lib/bds/desktop/shell_live/import_editor.ex:869
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Website"
|
msgstr "Website"
|
||||||
@@ -2371,8 +2371,8 @@ msgstr "Website-Rendering"
|
|||||||
msgid "Size"
|
msgid "Size"
|
||||||
msgstr "Größe"
|
msgstr "Größe"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1126
|
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
||||||
@@ -2395,14 +2395,14 @@ msgstr "Eigenständige Seiten"
|
|||||||
msgid "Start chat"
|
msgid "Start chat"
|
||||||
msgstr "Chat starten"
|
msgstr "Chat starten"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:921
|
#: lib/bds/desktop/shell_live/import_editor.ex:924
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Starting..."
|
msgid "Starting..."
|
||||||
msgstr "Starte..."
|
msgstr "Starte..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:115
|
#: lib/bds/desktop/shell_data.ex:115
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1178
|
#: lib/bds/desktop/shell_live/import_editor.ex:1181
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1229
|
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
@@ -2462,8 +2462,8 @@ msgstr "Tag-Verwaltung"
|
|||||||
msgid "Tag name"
|
msgid "Tag name"
|
||||||
msgstr "Schlagwortname"
|
msgstr "Schlagwortname"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
#: lib/bds/desktop/shell_live/import_editor.ex:894
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1028
|
#: lib/bds/desktop/shell_live/import_editor.ex:1031
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:297
|
#: lib/bds/desktop/shell_live/index.html.heex:297
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:325
|
#: lib/bds/desktop/shell_live/index.html.heex:325
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
||||||
@@ -2572,7 +2572,7 @@ msgstr "Dieser MCP-Agent wird in der Neufassung noch nicht unterstützt"
|
|||||||
msgid "This item is referenced by:"
|
msgid "This item is referenced by:"
|
||||||
msgstr "Dieses Element wird referenziert von:"
|
msgstr "Dieses Element wird referenziert von:"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1182
|
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
||||||
@@ -2643,14 +2643,14 @@ msgstr "Panel umschalten"
|
|||||||
msgid "Toggle sidebar"
|
msgid "Toggle sidebar"
|
||||||
msgstr "Seitenleiste umschalten"
|
msgstr "Seitenleiste umschalten"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:348
|
#: lib/bds/desktop/shell_live/media_editor.ex:352
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:537
|
#: lib/bds/desktop/shell_live/media_editor.ex:545
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:558
|
#: lib/bds/desktop/shell_live/media_editor.ex:566
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:563
|
#: lib/bds/desktop/shell_live/media_editor.ex:571
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:696
|
#: lib/bds/desktop/shell_live/post_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:725
|
#: lib/bds/desktop/shell_live/post_editor.ex:791
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:730
|
#: lib/bds/desktop/shell_live/post_editor.ex:796
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Translate"
|
msgid "Translate"
|
||||||
@@ -2682,8 +2682,8 @@ msgstr "Übersetzung verweist auf einen fehlenden Quellbeitrag"
|
|||||||
msgid "Translations"
|
msgid "Translations"
|
||||||
msgstr "Übersetzungen"
|
msgstr "Übersetzungen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1180
|
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1231
|
#: lib/bds/desktop/shell_live/import_editor.ex:1234
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr "Typ"
|
msgstr "Typ"
|
||||||
@@ -2703,7 +2703,7 @@ msgstr "Seitentitel oder Untermenü-Bezeichnung eingeben"
|
|||||||
msgid "UI"
|
msgid "UI"
|
||||||
msgstr "UI"
|
msgstr "UI"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
#: lib/bds/desktop/shell_live/import_editor.ex:873
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "URL"
|
msgid "URL"
|
||||||
@@ -2714,26 +2714,26 @@ msgstr "URL"
|
|||||||
msgid "Undo"
|
msgid "Undo"
|
||||||
msgstr "Rückgängig"
|
msgstr "Rückgängig"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1004
|
#: lib/bds/desktop/shell_live/import_editor.ex:1007
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Unbekannt"
|
msgstr "Unbekannt"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:265
|
#: lib/bds/desktop/shell_live/media_editor.ex:269
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unlink from Post"
|
msgid "Unlink from Post"
|
||||||
msgstr "Verknüpfung mit Beitrag aufheben"
|
msgstr "Verknüpfung mit Beitrag aufheben"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:701
|
#: lib/bds/desktop/shell_live/media_editor.ex:709
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:895
|
#: lib/bds/desktop/shell_live/post_editor.ex:961
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unsaved"
|
msgid "Unsaved"
|
||||||
msgstr "Nicht gespeichert"
|
msgstr "Nicht gespeichert"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:867
|
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
||||||
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1116
|
#: lib/bds/ui/sidebar.ex:1116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2741,13 +2741,13 @@ msgid "Untitled"
|
|||||||
msgstr "Ohne Titel"
|
msgstr "Ohne Titel"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:827
|
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled Import"
|
msgid "Untitled Import"
|
||||||
msgstr "Unbenannter Import"
|
msgstr "Unbenannter Import"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:454
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:457
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2765,13 +2765,13 @@ msgid "Upload Site"
|
|||||||
msgstr "Website hochladen"
|
msgstr "Website hochladen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:835
|
#: lib/bds/desktop/shell_live/import_editor.ex:838
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Uploads Folder"
|
msgid "Uploads Folder"
|
||||||
msgstr "Uploads-Ordner"
|
msgstr "Uploads-Ordner"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used in: %{items}%{more}"
|
msgid "Used in: %{items}%{more}"
|
||||||
msgstr "Verwendet in: %{items}%{more}"
|
msgstr "Verwendet in: %{items}%{more}"
|
||||||
@@ -2811,13 +2811,13 @@ msgstr "Ansicht"
|
|||||||
msgid "View on GitHub"
|
msgid "View on GitHub"
|
||||||
msgstr "Auf GitHub ansehen"
|
msgstr "Auf GitHub ansehen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
#: lib/bds/desktop/shell_live/import_editor.ex:1188
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WP Status"
|
msgid "WP Status"
|
||||||
msgstr "WP-Status"
|
msgstr "WP-Status"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:843
|
#: lib/bds/desktop/shell_live/import_editor.ex:846
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WXR File"
|
msgid "WXR File"
|
||||||
@@ -2844,7 +2844,7 @@ msgstr "Arbeitsverzeichnis und Verlauf"
|
|||||||
msgid "Wrap Long Lines"
|
msgid "Wrap Long Lines"
|
||||||
msgstr "Lange Zeilen umbrechen"
|
msgstr "Lange Zeilen umbrechen"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:530
|
#: lib/bds/desktop/shell_live/chat_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You"
|
msgid "You"
|
||||||
@@ -2870,8 +2870,8 @@ msgstr "hinzuzufügen"
|
|||||||
msgid "and %{count} more"
|
msgid "and %{count} more"
|
||||||
msgstr "und %{count} weitere"
|
msgstr "und %{count} weitere"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1265
|
#: lib/bds/desktop/shell_live/import_editor.ex:1268
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1302
|
#: lib/bds/desktop/shell_live/import_editor.ex:1305
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "conflict"
|
msgid "conflict"
|
||||||
msgstr "Konflikt"
|
msgstr "Konflikt"
|
||||||
@@ -2901,8 +2901,8 @@ msgstr "%{count} Bilder"
|
|||||||
msgid "dashboard.stats.published"
|
msgid "dashboard.stats.published"
|
||||||
msgstr "%{count} veröffentlicht"
|
msgstr "%{count} veröffentlicht"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
#: lib/bds/desktop/shell_live/import_editor.ex:1269
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
#: lib/bds/desktop/shell_live/import_editor.ex:1306
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "duplicate"
|
msgid "duplicate"
|
||||||
msgstr "Duplikat"
|
msgstr "Duplikat"
|
||||||
@@ -2912,7 +2912,7 @@ msgstr "Duplikat"
|
|||||||
msgid "edit"
|
msgid "edit"
|
||||||
msgstr "bearbeiten"
|
msgstr "bearbeiten"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1320
|
#: lib/bds/desktop/shell_live/import_editor.ex:1323
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "existing"
|
msgid "existing"
|
||||||
msgstr "vorhanden"
|
msgstr "vorhanden"
|
||||||
@@ -2922,13 +2922,13 @@ msgstr "vorhanden"
|
|||||||
msgid "gitDiff.changedFiles"
|
msgid "gitDiff.changedFiles"
|
||||||
msgstr "Geänderte Dateien"
|
msgstr "Geänderte Dateien"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1321
|
#: lib/bds/desktop/shell_live/import_editor.ex:1324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "mapped"
|
msgid "mapped"
|
||||||
msgstr "zugeordnet"
|
msgstr "zugeordnet"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
#: lib/bds/desktop/shell_live/import_editor.ex:892
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
#: lib/bds/desktop/shell_live/import_editor.ex:942
|
||||||
#: lib/bds/ui/workbench.ex:213
|
#: lib/bds/ui/workbench.ex:213
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "media"
|
msgid "media"
|
||||||
@@ -2986,26 +2986,26 @@ msgstr "Speichern"
|
|||||||
msgid "menuEditor.unindent"
|
msgid "menuEditor.unindent"
|
||||||
msgstr "Ausrücken"
|
msgstr "Ausrücken"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
#: lib/bds/desktop/shell_live/import_editor.ex:1307
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "missing"
|
msgid "missing"
|
||||||
msgstr "fehlend"
|
msgstr "fehlend"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1263
|
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1300
|
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1322
|
#: lib/bds/desktop/shell_live/import_editor.ex:1325
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "new"
|
msgid "new"
|
||||||
msgstr "neu"
|
msgstr "neu"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:888
|
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
#: lib/bds/desktop/shell_live/import_editor.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "pages"
|
msgid "pages"
|
||||||
msgstr "Seiten"
|
msgstr "Seiten"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:884
|
#: lib/bds/desktop/shell_live/import_editor.ex:887
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:938
|
#: lib/bds/desktop/shell_live/import_editor.ex:941
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "posts"
|
msgid "posts"
|
||||||
msgstr "Beiträge"
|
msgstr "Beiträge"
|
||||||
@@ -3022,7 +3022,7 @@ msgstr "Ergebnisse"
|
|||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr "Ergebnisse für"
|
msgstr "Ergebnisse für"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:937
|
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "tags/categories"
|
msgid "tags/categories"
|
||||||
msgstr "Tags/Kategorien"
|
msgstr "Tags/Kategorien"
|
||||||
@@ -3086,8 +3086,8 @@ msgstr "Keine Dateisystemeinträge gefunden"
|
|||||||
msgid "translationValidation.revalidate"
|
msgid "translationValidation.revalidate"
|
||||||
msgstr "Erneut validieren"
|
msgstr "Erneut validieren"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1264
|
#: lib/bds/desktop/shell_live/import_editor.ex:1267
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1301
|
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "update"
|
msgid "update"
|
||||||
msgstr "Aktualisierung"
|
msgstr "Aktualisierung"
|
||||||
@@ -3228,12 +3228,12 @@ msgstr "Archivieren"
|
|||||||
msgid "Move this post to the archive"
|
msgid "Move this post to the archive"
|
||||||
msgstr "Diesen Beitrag ins Archiv verschieben"
|
msgstr "Diesen Beitrag ins Archiv verschieben"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post archived"
|
msgid "Post archived"
|
||||||
msgstr "Beitrag archiviert"
|
msgstr "Beitrag archiviert"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post unarchived"
|
msgid "Post unarchived"
|
||||||
msgstr "Beitrag wiederhergestellt"
|
msgstr "Beitrag wiederhergestellt"
|
||||||
@@ -3411,3 +3411,19 @@ msgstr "Blogmark"
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open a project before importing a blogmark."
|
msgid "Open a project before importing a blogmark."
|
||||||
msgstr "Öffnen Sie ein Projekt, bevor Sie ein Blogmark importieren."
|
msgstr "Öffnen Sie ein Projekt, bevor Sie ein Blogmark importieren."
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:643
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Added %{name}"
|
||||||
|
msgstr "%{name} hinzugefügt"
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:650
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Failed to import %{path}: %{reason}"
|
||||||
|
msgstr "Import von %{path} fehlgeschlagen: %{reason}"
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:642
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:649
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Insert Image"
|
||||||
|
msgstr "Bild einfügen"
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ msgid "%{canonical} = %{translation}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1050
|
#: lib/bds/desktop/shell_live/import_editor.ex:1053
|
||||||
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} mapped"
|
msgid "%{count} mapped"
|
||||||
@@ -17,13 +17,13 @@ msgid_plural "%{count} posts"
|
|||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1051
|
#: lib/bds/desktop/shell_live/import_editor.ex:1054
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} unmapped"
|
msgid "%{count} unmapped"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1061
|
#: lib/bds/desktop/shell_live/import_editor.ex:1064
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
#: lib/bds/desktop/shell_live/import_editor.ex:1079
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} uses"
|
msgid "%{count} uses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -38,22 +38,22 @@ msgstr ""
|
|||||||
msgid "%{minutes}m %{seconds}s"
|
msgid "%{minutes}m %{seconds}s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1073
|
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "(no parameters)"
|
msgid "(no parameters)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid ", +%{count} more"
|
msgid ", +%{count} more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1137
|
#: lib/bds/desktop/shell_live/import_editor.ex:1140
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1199
|
#: lib/bds/desktop/shell_live/import_editor.ex:1202
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1200
|
#: lib/bds/desktop/shell_live/import_editor.ex:1203
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1241
|
#: lib/bds/desktop/shell_live/import_editor.ex:1244
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1243
|
#: lib/bds/desktop/shell_live/import_editor.ex:1246
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1427
|
#: lib/bds/desktop/shell_live/import_editor.ex:1430
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "--"
|
msgid "--"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -79,7 +79,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
||||||
#: 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:781
|
#: lib/bds/desktop/shell_live/post_editor.ex:847
|
||||||
#: 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
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
@@ -94,7 +94,7 @@ msgstr ""
|
|||||||
msgid "AI conversations"
|
msgid "AI conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1015
|
#: lib/bds/desktop/shell_live/import_editor.ex:1018
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -173,14 +173,14 @@ msgstr ""
|
|||||||
msgid "Analysis complete"
|
msgid "Analysis complete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:668
|
#: lib/bds/desktop/shell_live/import_editor.ex:671
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:999
|
#: lib/bds/desktop/shell_live/import_editor.ex:1002
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyze with..."
|
msgid "Analyze with..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:855
|
#: lib/bds/desktop/shell_live/import_editor.ex:858
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyzing WXR file..."
|
msgid "Analyzing WXR file..."
|
||||||
@@ -227,7 +227,7 @@ msgstr ""
|
|||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:594
|
#: lib/bds/desktop/shell_live/chat_editor.ex:599
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -237,7 +237,7 @@ msgstr ""
|
|||||||
msgid "Ask the assistant about the active project or editor."
|
msgid "Ask the assistant about the active project or editor."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:531
|
#: lib/bds/desktop/shell_live/chat_editor.ex:536
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
||||||
@@ -258,13 +258,13 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:98
|
#: lib/bds/desktop/shell_data.ex:98
|
||||||
#: lib/bds/desktop/shell_live.ex:431
|
#: lib/bds/desktop/shell_live.ex:431
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:231
|
#: lib/bds/desktop/shell_live/chat_editor.ex:234
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:156
|
#: lib/bds/desktop/shell_live/media_editor.ex:160
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:349
|
#: lib/bds/desktop/shell_live/media_editor.ex:353
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:538
|
#: lib/bds/desktop/shell_live/media_editor.ex:546
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:648
|
#: lib/bds/desktop/shell_live/post_editor.ex:714
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:697
|
#: lib/bds/desktop/shell_live/post_editor.ex:763
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Automatic AI actions stay gated by airplane mode."
|
msgid "Automatic AI actions stay gated by airplane mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -337,7 +337,7 @@ msgstr ""
|
|||||||
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1362
|
#: lib/bds/desktop/shell_live/import_editor.ex:1365
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
||||||
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
||||||
@@ -361,9 +361,9 @@ msgstr ""
|
|||||||
msgid "Caption"
|
msgid "Caption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:890
|
#: lib/bds/desktop/shell_live/import_editor.ex:893
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1020
|
#: lib/bds/desktop/shell_live/import_editor.ex:1023
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1184
|
#: lib/bds/desktop/shell_live/import_editor.ex:1187
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:336
|
#: lib/bds/desktop/shell_live/index.html.heex:336
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
||||||
@@ -379,7 +379,7 @@ msgstr ""
|
|||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:992
|
#: lib/bds/desktop/shell_live/import_editor.ex:995
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Categories & Tags"
|
msgid "Categories & Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -406,8 +406,8 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:979
|
#: lib/bds/desktop/shell_live.ex:979
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:230
|
#: lib/bds/desktop/shell_live/chat_editor.ex:233
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:318
|
#: lib/bds/desktop/shell_live/chat_editor.ex:323
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:503
|
#: lib/bds/desktop/shell_live/index.html.heex:503
|
||||||
#: lib/bds/ui/registry.ex:104
|
#: lib/bds/ui/registry.ex:104
|
||||||
@@ -444,8 +444,8 @@ msgstr ""
|
|||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
#: lib/bds/desktop/shell_live/import_editor.ex:1367
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1395
|
#: lib/bds/desktop/shell_live/import_editor.ex:1398
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear mapping"
|
msgid "Clear mapping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -488,7 +488,7 @@ msgstr ""
|
|||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:927
|
#: lib/bds/desktop/shell_live/chat_editor.ex:932
|
||||||
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Configure an API key in Settings to enable AI chat."
|
msgid "Configure an API key in Settings to enable AI chat."
|
||||||
@@ -558,7 +558,7 @@ msgstr ""
|
|||||||
msgid "Create tag"
|
msgid "Create tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:453
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -604,7 +604,7 @@ msgstr ""
|
|||||||
msgid "Data Path"
|
msgid "Data Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:896
|
#: lib/bds/desktop/shell_live/import_editor.ex:899
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date Distribution"
|
msgid "Date Distribution"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -660,7 +660,7 @@ msgstr ""
|
|||||||
msgid "Delete Media"
|
msgid "Delete Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:392
|
#: lib/bds/desktop/shell_live/media_editor.ex:396
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete Translation"
|
msgid "Delete Translation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -701,14 +701,14 @@ msgstr ""
|
|||||||
msgid "Detect"
|
msgid "Detect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:155
|
#: lib/bds/desktop/shell_live/media_editor.ex:159
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:194
|
#: lib/bds/desktop/shell_live/media_editor.ex:198
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:199
|
#: lib/bds/desktop/shell_live/media_editor.ex:203
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:205
|
#: lib/bds/desktop/shell_live/media_editor.ex:209
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:647
|
#: lib/bds/desktop/shell_live/post_editor.ex:713
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:676
|
#: lib/bds/desktop/shell_live/post_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:682
|
#: lib/bds/desktop/shell_live/post_editor.ex:748
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Detect Language"
|
msgid "Detect Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -764,7 +764,7 @@ msgstr ""
|
|||||||
msgid "Dismiss Checked"
|
msgid "Dismiss Checked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:618
|
#: lib/bds/desktop/shell_live/chat_editor.ex:623
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Dismiss surface"
|
msgid "Dismiss surface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -902,13 +902,13 @@ msgstr ""
|
|||||||
msgid "Excerpt"
|
msgid "Excerpt"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1128
|
#: lib/bds/desktop/shell_live/import_editor.ex:1131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Entry"
|
msgid "Existing Entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
#: lib/bds/desktop/shell_live/import_editor.ex:1189
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
#: lib/bds/desktop/shell_live/import_editor.ex:1236
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Match"
|
msgid "Existing Match"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -924,7 +924,7 @@ msgid "Extra URLs"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:144
|
#: lib/bds/desktop/menu_bar.ex:144
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
#: lib/bds/desktop/shell_live/import_editor.ex:881
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "File"
|
msgid "File"
|
||||||
@@ -940,7 +940,7 @@ msgstr ""
|
|||||||
msgid "File to DB"
|
msgid "File to DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1230
|
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Filename"
|
msgid "Filename"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1032,13 +1032,13 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:116
|
#: lib/bds/desktop/shell_data.ex:116
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:666
|
#: lib/bds/desktop/shell_live/index.html.heex:666
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:703
|
#: lib/bds/desktop/shell_live/media_editor.ex:711
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:899
|
#: lib/bds/desktop/shell_live/post_editor.ex:965
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Idle"
|
msgid "Idle"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1143
|
#: lib/bds/desktop/shell_live/import_editor.ex:1146
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1055,12 +1055,12 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:700
|
#: lib/bds/desktop/shell_live/import_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:704
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:728
|
#: lib/bds/desktop/shell_live/import_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:742
|
#: lib/bds/desktop/shell_live/import_editor.ex:731
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:755
|
#: lib/bds/desktop/shell_live/import_editor.ex:745
|
||||||
|
#: lib/bds/desktop/shell_live/import_editor.ex:758
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
||||||
@@ -1087,12 +1087,12 @@ msgstr ""
|
|||||||
msgid "Import"
|
msgid "Import"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:947
|
#: lib/bds/desktop/shell_live/import_editor.ex:950
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import %{count} Items"
|
msgid "Import %{count} Items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1145
|
#: lib/bds/desktop/shell_live/import_editor.ex:1148
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import (new slug)"
|
msgid "Import (new slug)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1107,8 +1107,8 @@ msgstr ""
|
|||||||
msgid "Import complete"
|
msgid "Import complete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:729
|
#: lib/bds/desktop/shell_live/import_editor.ex:732
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:955
|
#: lib/bds/desktop/shell_live/import_editor.ex:958
|
||||||
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import completed successfully!"
|
msgid "Import completed successfully!"
|
||||||
@@ -1122,7 +1122,7 @@ msgstr ""
|
|||||||
msgid "Import definitions"
|
msgid "Import definitions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:961
|
#: lib/bds/desktop/shell_live/import_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import failed: %{error}"
|
msgid "Import failed: %{error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1135,7 +1135,7 @@ msgstr ""
|
|||||||
msgid "Import media"
|
msgid "Import media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:828
|
#: lib/bds/desktop/shell_live/import_editor.ex:831
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import name..."
|
msgid "Import name..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1160,7 +1160,7 @@ msgstr ""
|
|||||||
msgid "Importing tags & categories..."
|
msgid "Importing tags & categories..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:915
|
#: lib/bds/desktop/shell_live/import_editor.ex:918
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Importing..."
|
msgid "Importing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1196,15 +1196,15 @@ msgstr ""
|
|||||||
msgid "Kind"
|
msgid "Kind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
#: lib/bds/desktop/shell_live/import_editor.ex:877
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:206
|
#: lib/bds/desktop/shell_live/media_editor.ex:210
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:683
|
#: lib/bds/desktop/shell_live/post_editor.ex:749
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language detection failed."
|
msgid "Language detection failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1214,7 +1214,7 @@ msgstr ""
|
|||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:252
|
#: lib/bds/desktop/shell_live/media_editor.ex:256
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Link to Post"
|
msgid "Link to Post"
|
||||||
@@ -1259,7 +1259,7 @@ msgstr ""
|
|||||||
msgid "MIME Type"
|
msgid "MIME Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1044
|
#: lib/bds/desktop/shell_live/import_editor.ex:1047
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Macros (%{count})"
|
msgid "Macros (%{count})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1277,18 +1277,18 @@ msgstr ""
|
|||||||
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1357
|
#: lib/bds/desktop/shell_live/import_editor.ex:1360
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1361
|
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Map to..."
|
msgid "Map to..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Mapped"
|
msgid "Mapped"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:902
|
#: lib/bds/desktop/shell_live/post_editor.ex:968
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Markdown"
|
msgid "Markdown"
|
||||||
@@ -1300,8 +1300,8 @@ msgid "Max Posts Per Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:168
|
#: lib/bds/desktop/menu_bar.ex:168
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:494
|
#: lib/bds/desktop/shell_live/media_editor.ex:502
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
@@ -1313,12 +1313,12 @@ msgstr ""
|
|||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:986
|
#: lib/bds/desktop/shell_live/import_editor.ex:989
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media (%{count})"
|
msgid "Media (%{count})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media saved"
|
msgid "Media saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1368,8 +1368,8 @@ msgstr ""
|
|||||||
msgid "Mode"
|
msgid "Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:875
|
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "N/A"
|
msgid "N/A"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1380,7 +1380,7 @@ msgstr ""
|
|||||||
msgid "New Chat"
|
msgid "New Chat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1127
|
#: lib/bds/desktop/shell_live/import_editor.ex:1130
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Entry (WXR)"
|
msgid "New Entry (WXR)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1439,7 +1439,7 @@ msgstr ""
|
|||||||
msgid "No commit subject"
|
msgid "No commit subject"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:837
|
#: lib/bds/desktop/shell_live/import_editor.ex:840
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No folder selected"
|
msgid "No folder selected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1571,7 +1571,7 @@ msgstr ""
|
|||||||
msgid "Not supported in the rewrite yet"
|
msgid "Not supported in the rewrite yet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:945
|
#: lib/bds/desktop/shell_live/import_editor.ex:948
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to Import"
|
msgid "Nothing to Import"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1667,7 +1667,7 @@ msgstr ""
|
|||||||
msgid "Online Title Model"
|
msgid "Online Title Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:839
|
#: lib/bds/desktop/shell_live/import_editor.ex:842
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@@ -1711,12 +1711,12 @@ msgstr ""
|
|||||||
msgid "Orphan Files"
|
msgid "Orphan Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:886
|
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:978
|
#: lib/bds/desktop/shell_live/import_editor.ex:981
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other (%{count})"
|
msgid "Other (%{count})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1733,7 +1733,7 @@ msgstr ""
|
|||||||
msgid "Overview of your blog database"
|
msgid "Overview of your blog database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1144
|
#: lib/bds/desktop/shell_live/import_editor.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Overwrite"
|
msgid "Overwrite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1743,7 +1743,7 @@ msgstr ""
|
|||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:970
|
#: lib/bds/desktop/shell_live/import_editor.ex:973
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Page Slug Conflicts"
|
msgid "Page Slug Conflicts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1754,7 +1754,7 @@ msgstr ""
|
|||||||
msgid "Pages"
|
msgid "Pages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:982
|
#: lib/bds/desktop/shell_live/import_editor.ex:985
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pages (%{count})"
|
msgid "Pages (%{count})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1774,7 +1774,7 @@ msgstr ""
|
|||||||
msgid "Paste"
|
msgid "Paste"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
#: lib/bds/desktop/shell_live/import_editor.ex:1235
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
@@ -1786,16 +1786,16 @@ msgid "Persist the detected language for this media item"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:483
|
#: lib/bds/desktop/shell_live/post_editor.ex:492
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:522
|
#: lib/bds/desktop/shell_live/post_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:557
|
#: lib/bds/desktop/shell_live/post_editor.ex:573
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:572
|
#: lib/bds/desktop/shell_live/post_editor.ex:588
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:604
|
#: lib/bds/desktop/shell_live/post_editor.ex:620
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:637
|
#: lib/bds/desktop/shell_live/post_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
||||||
#: lib/bds/ui/registry.ex:99
|
#: lib/bds/ui/registry.ex:99
|
||||||
@@ -1810,7 +1810,7 @@ msgstr ""
|
|||||||
msgid "Post Links"
|
msgid "Post Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:966
|
#: lib/bds/desktop/shell_live/import_editor.ex:969
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post Slug Conflicts"
|
msgid "Post Slug Conflicts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1825,12 +1825,12 @@ msgstr ""
|
|||||||
msgid "Post is marked as do-not-translate but has translations"
|
msgid "Post is marked as do-not-translate but has translations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post published"
|
msgid "Post published"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post saved"
|
msgid "Post saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1844,7 +1844,7 @@ msgstr ""
|
|||||||
msgid "Posts"
|
msgid "Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:974
|
#: lib/bds/desktop/shell_live/import_editor.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Posts (%{count})"
|
msgid "Posts (%{count})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1854,7 +1854,7 @@ msgstr ""
|
|||||||
msgid "Preferences"
|
msgid "Preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:903
|
#: lib/bds/desktop/shell_live/post_editor.ex:969
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
@@ -1923,8 +1923,8 @@ msgid "Publish Selected"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:181
|
#: lib/bds/desktop/shell_data.ex:181
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:897
|
#: lib/bds/desktop/shell_live/post_editor.ex:963
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:459
|
||||||
#: lib/bds/ui/sidebar.ex:324
|
#: lib/bds/ui/sidebar.ex:324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published"
|
msgid "Published"
|
||||||
@@ -1955,7 +1955,7 @@ msgstr ""
|
|||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:936
|
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ready to import:"
|
msgid "Ready to import:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2022,8 +2022,8 @@ msgstr ""
|
|||||||
msgid "Refresh Online Models"
|
msgid "Refresh Online Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:364
|
#: lib/bds/desktop/shell_live/media_editor.ex:368
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:373
|
#: lib/bds/desktop/shell_live/media_editor.ex:377
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Refresh Translation"
|
msgid "Refresh Translation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2079,8 +2079,8 @@ msgstr ""
|
|||||||
msgid "Replace"
|
msgid "Replace"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:138
|
#: lib/bds/desktop/shell_live/media_editor.ex:142
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:146
|
#: lib/bds/desktop/shell_live/media_editor.ex:150
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Replace File"
|
msgid "Replace File"
|
||||||
@@ -2111,17 +2111,17 @@ msgstr ""
|
|||||||
msgid "Reset to Defaults"
|
msgid "Reset to Defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
#: lib/bds/desktop/shell_live/import_editor.ex:1132
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Resolution"
|
msgid "Resolution"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:597
|
#: lib/bds/desktop/shell_live/chat_editor.ex:602
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:898
|
#: lib/bds/desktop/shell_live/post_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reverted"
|
msgid "Reverted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2167,13 +2167,13 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:324
|
#: lib/bds/desktop/shell_live/media_editor.ex:328
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save Translation"
|
msgid "Save Translation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:702
|
#: lib/bds/desktop/shell_live/media_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:896
|
#: lib/bds/desktop/shell_live/post_editor.ex:962
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2264,7 +2264,7 @@ msgstr ""
|
|||||||
msgid "Search settings"
|
msgid "Search settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:847
|
#: lib/bds/desktop/shell_live/import_editor.ex:850
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select & Analyze"
|
msgid "Select & Analyze"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2279,19 +2279,19 @@ msgstr ""
|
|||||||
msgid "Select Page"
|
msgid "Select Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:646
|
#: lib/bds/desktop/shell_live/import_editor.ex:649
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
#: lib/bds/desktop/shell_live/import_editor.ex:833
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1099
|
#: lib/bds/desktop/shell_live/import_editor.ex:1102
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file to begin analysis."
|
msgid "Select a WordPress export file to begin analysis."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:845
|
#: lib/bds/desktop/shell_live/import_editor.ex:848
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a file to analyze"
|
msgid "Select a file to analyze"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2345,7 +2345,7 @@ msgstr ""
|
|||||||
msgid "Side by Side"
|
msgid "Side by Side"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:866
|
#: lib/bds/desktop/shell_live/import_editor.ex:869
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2371,8 +2371,8 @@ msgstr ""
|
|||||||
msgid "Size"
|
msgid "Size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1126
|
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
||||||
@@ -2395,14 +2395,14 @@ msgstr ""
|
|||||||
msgid "Start chat"
|
msgid "Start chat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:921
|
#: lib/bds/desktop/shell_live/import_editor.ex:924
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Starting..."
|
msgid "Starting..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:115
|
#: lib/bds/desktop/shell_data.ex:115
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1178
|
#: lib/bds/desktop/shell_live/import_editor.ex:1181
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1229
|
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2462,8 +2462,8 @@ msgstr ""
|
|||||||
msgid "Tag name"
|
msgid "Tag name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
#: lib/bds/desktop/shell_live/import_editor.ex:894
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1028
|
#: lib/bds/desktop/shell_live/import_editor.ex:1031
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:297
|
#: lib/bds/desktop/shell_live/index.html.heex:297
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:325
|
#: lib/bds/desktop/shell_live/index.html.heex:325
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
||||||
@@ -2572,7 +2572,7 @@ msgstr ""
|
|||||||
msgid "This item is referenced by:"
|
msgid "This item is referenced by:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1182
|
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
||||||
@@ -2643,14 +2643,14 @@ msgstr ""
|
|||||||
msgid "Toggle sidebar"
|
msgid "Toggle sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:348
|
#: lib/bds/desktop/shell_live/media_editor.ex:352
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:537
|
#: lib/bds/desktop/shell_live/media_editor.ex:545
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:558
|
#: lib/bds/desktop/shell_live/media_editor.ex:566
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:563
|
#: lib/bds/desktop/shell_live/media_editor.ex:571
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:696
|
#: lib/bds/desktop/shell_live/post_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:725
|
#: lib/bds/desktop/shell_live/post_editor.ex:791
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:730
|
#: lib/bds/desktop/shell_live/post_editor.ex:796
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Translate"
|
msgid "Translate"
|
||||||
@@ -2682,8 +2682,8 @@ msgstr ""
|
|||||||
msgid "Translations"
|
msgid "Translations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1180
|
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1231
|
#: lib/bds/desktop/shell_live/import_editor.ex:1234
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2703,7 +2703,7 @@ msgstr ""
|
|||||||
msgid "UI"
|
msgid "UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
#: lib/bds/desktop/shell_live/import_editor.ex:873
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "URL"
|
msgid "URL"
|
||||||
@@ -2714,26 +2714,26 @@ msgstr ""
|
|||||||
msgid "Undo"
|
msgid "Undo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1004
|
#: lib/bds/desktop/shell_live/import_editor.ex:1007
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:265
|
#: lib/bds/desktop/shell_live/media_editor.ex:269
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unlink from Post"
|
msgid "Unlink from Post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:701
|
#: lib/bds/desktop/shell_live/media_editor.ex:709
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:895
|
#: lib/bds/desktop/shell_live/post_editor.ex:961
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unsaved"
|
msgid "Unsaved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:867
|
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
||||||
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1116
|
#: lib/bds/ui/sidebar.ex:1116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2741,13 +2741,13 @@ msgid "Untitled"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:827
|
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled Import"
|
msgid "Untitled Import"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:454
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:457
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2765,13 +2765,13 @@ msgid "Upload Site"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:835
|
#: lib/bds/desktop/shell_live/import_editor.ex:838
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Uploads Folder"
|
msgid "Uploads Folder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used in: %{items}%{more}"
|
msgid "Used in: %{items}%{more}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2811,13 +2811,13 @@ msgstr ""
|
|||||||
msgid "View on GitHub"
|
msgid "View on GitHub"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
#: lib/bds/desktop/shell_live/import_editor.ex:1188
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WP Status"
|
msgid "WP Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:843
|
#: lib/bds/desktop/shell_live/import_editor.ex:846
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WXR File"
|
msgid "WXR File"
|
||||||
@@ -2844,7 +2844,7 @@ msgstr ""
|
|||||||
msgid "Wrap Long Lines"
|
msgid "Wrap Long Lines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:530
|
#: lib/bds/desktop/shell_live/chat_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You"
|
msgid "You"
|
||||||
@@ -2870,8 +2870,8 @@ msgstr ""
|
|||||||
msgid "and %{count} more"
|
msgid "and %{count} more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1265
|
#: lib/bds/desktop/shell_live/import_editor.ex:1268
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1302
|
#: lib/bds/desktop/shell_live/import_editor.ex:1305
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "conflict"
|
msgid "conflict"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2901,8 +2901,8 @@ msgstr ""
|
|||||||
msgid "dashboard.stats.published"
|
msgid "dashboard.stats.published"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
#: lib/bds/desktop/shell_live/import_editor.ex:1269
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
#: lib/bds/desktop/shell_live/import_editor.ex:1306
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "duplicate"
|
msgid "duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2912,7 +2912,7 @@ msgstr ""
|
|||||||
msgid "edit"
|
msgid "edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1320
|
#: lib/bds/desktop/shell_live/import_editor.ex:1323
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "existing"
|
msgid "existing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2922,13 +2922,13 @@ msgstr ""
|
|||||||
msgid "gitDiff.changedFiles"
|
msgid "gitDiff.changedFiles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1321
|
#: lib/bds/desktop/shell_live/import_editor.ex:1324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "mapped"
|
msgid "mapped"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
#: lib/bds/desktop/shell_live/import_editor.ex:892
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
#: lib/bds/desktop/shell_live/import_editor.ex:942
|
||||||
#: lib/bds/ui/workbench.ex:213
|
#: lib/bds/ui/workbench.ex:213
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "media"
|
msgid "media"
|
||||||
@@ -2986,26 +2986,26 @@ msgstr ""
|
|||||||
msgid "menuEditor.unindent"
|
msgid "menuEditor.unindent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
#: lib/bds/desktop/shell_live/import_editor.ex:1307
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "missing"
|
msgid "missing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1263
|
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1300
|
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1322
|
#: lib/bds/desktop/shell_live/import_editor.ex:1325
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "new"
|
msgid "new"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:888
|
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
#: lib/bds/desktop/shell_live/import_editor.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "pages"
|
msgid "pages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:884
|
#: lib/bds/desktop/shell_live/import_editor.ex:887
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:938
|
#: lib/bds/desktop/shell_live/import_editor.ex:941
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "posts"
|
msgid "posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3022,7 +3022,7 @@ msgstr ""
|
|||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:937
|
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "tags/categories"
|
msgid "tags/categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3086,8 +3086,8 @@ msgstr ""
|
|||||||
msgid "translationValidation.revalidate"
|
msgid "translationValidation.revalidate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1264
|
#: lib/bds/desktop/shell_live/import_editor.ex:1267
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1301
|
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "update"
|
msgid "update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3228,12 +3228,12 @@ msgstr ""
|
|||||||
msgid "Move this post to the archive"
|
msgid "Move this post to the archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Post archived"
|
msgid "Post archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Post unarchived"
|
msgid "Post unarchived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3411,3 +3411,19 @@ msgstr "Blogmark"
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open a project before importing a blogmark."
|
msgid "Open a project before importing a blogmark."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:643
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Added %{name}"
|
||||||
|
msgstr "Added %{name}"
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:650
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Failed to import %{path}: %{reason}"
|
||||||
|
msgstr "Failed to import %{path}: %{reason}"
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:642
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:649
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Insert Image"
|
||||||
|
msgstr "Insert Image"
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ msgid "%{canonical} = %{translation}"
|
|||||||
msgstr "%{canonical} = %{translation}"
|
msgstr "%{canonical} = %{translation}"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1050
|
#: lib/bds/desktop/shell_live/import_editor.ex:1053
|
||||||
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} mapped"
|
msgid "%{count} mapped"
|
||||||
@@ -17,13 +17,13 @@ msgid_plural "%{count} posts"
|
|||||||
msgstr[0] "%{count} entrada"
|
msgstr[0] "%{count} entrada"
|
||||||
msgstr[1] "%{count} entradas"
|
msgstr[1] "%{count} entradas"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1051
|
#: lib/bds/desktop/shell_live/import_editor.ex:1054
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} unmapped"
|
msgid "%{count} unmapped"
|
||||||
msgstr "%{count} sin mapear"
|
msgstr "%{count} sin mapear"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1061
|
#: lib/bds/desktop/shell_live/import_editor.ex:1064
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
#: lib/bds/desktop/shell_live/import_editor.ex:1079
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} uses"
|
msgid "%{count} uses"
|
||||||
msgstr "%{count} usos"
|
msgstr "%{count} usos"
|
||||||
@@ -38,22 +38,22 @@ msgstr "%{count}s"
|
|||||||
msgid "%{minutes}m %{seconds}s"
|
msgid "%{minutes}m %{seconds}s"
|
||||||
msgstr "%{minutes}m %{seconds}s"
|
msgstr "%{minutes}m %{seconds}s"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1073
|
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "(no parameters)"
|
msgid "(no parameters)"
|
||||||
msgstr "(sin parámetros)"
|
msgstr "(sin parámetros)"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid ", +%{count} more"
|
msgid ", +%{count} more"
|
||||||
msgstr ", +%{count} más"
|
msgstr ", +%{count} más"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1137
|
#: lib/bds/desktop/shell_live/import_editor.ex:1140
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1199
|
#: lib/bds/desktop/shell_live/import_editor.ex:1202
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1200
|
#: lib/bds/desktop/shell_live/import_editor.ex:1203
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1241
|
#: lib/bds/desktop/shell_live/import_editor.ex:1244
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1243
|
#: lib/bds/desktop/shell_live/import_editor.ex:1246
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1427
|
#: lib/bds/desktop/shell_live/import_editor.ex:1430
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "--"
|
msgid "--"
|
||||||
msgstr "--"
|
msgstr "--"
|
||||||
@@ -79,7 +79,7 @@ msgstr "Configuración de IA"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
||||||
#: 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:781
|
#: lib/bds/desktop/shell_live/post_editor.ex:847
|
||||||
#: 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
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
@@ -94,7 +94,7 @@ msgstr "Sugerencias de IA"
|
|||||||
msgid "AI conversations"
|
msgid "AI conversations"
|
||||||
msgstr "Conversaciones de IA"
|
msgstr "Conversaciones de IA"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1015
|
#: lib/bds/desktop/shell_live/import_editor.ex:1018
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
||||||
msgstr "La IA sugerirá mapeos de elementos nuevos a existentes para evitar duplicados"
|
msgstr "La IA sugerirá mapeos de elementos nuevos a existentes para evitar duplicados"
|
||||||
@@ -173,14 +173,14 @@ msgstr "Texto alternativo"
|
|||||||
msgid "Analysis complete"
|
msgid "Analysis complete"
|
||||||
msgstr "Análisis completado"
|
msgstr "Análisis completado"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:668
|
#: lib/bds/desktop/shell_live/import_editor.ex:671
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:999
|
#: lib/bds/desktop/shell_live/import_editor.ex:1002
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyze with..."
|
msgid "Analyze with..."
|
||||||
msgstr "Analizar con..."
|
msgstr "Analizar con..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:855
|
#: lib/bds/desktop/shell_live/import_editor.ex:858
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyzing WXR file..."
|
msgid "Analyzing WXR file..."
|
||||||
@@ -227,7 +227,7 @@ msgstr "Aplicar tema"
|
|||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr "Archivado"
|
msgstr "Archivado"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:594
|
#: lib/bds/desktop/shell_live/chat_editor.ex:599
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Argumentos"
|
msgstr "Argumentos"
|
||||||
@@ -237,7 +237,7 @@ msgstr "Argumentos"
|
|||||||
msgid "Ask the assistant about the active project or editor."
|
msgid "Ask the assistant about the active project or editor."
|
||||||
msgstr "Pregunta al asistente sobre el proyecto o editor activo."
|
msgstr "Pregunta al asistente sobre el proyecto o editor activo."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:531
|
#: lib/bds/desktop/shell_live/chat_editor.ex:536
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
||||||
@@ -258,13 +258,13 @@ msgstr "Automático"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:98
|
#: lib/bds/desktop/shell_data.ex:98
|
||||||
#: lib/bds/desktop/shell_live.ex:431
|
#: lib/bds/desktop/shell_live.ex:431
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:231
|
#: lib/bds/desktop/shell_live/chat_editor.ex:234
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:156
|
#: lib/bds/desktop/shell_live/media_editor.ex:160
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:349
|
#: lib/bds/desktop/shell_live/media_editor.ex:353
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:538
|
#: lib/bds/desktop/shell_live/media_editor.ex:546
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:648
|
#: lib/bds/desktop/shell_live/post_editor.ex:714
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:697
|
#: lib/bds/desktop/shell_live/post_editor.ex:763
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Automatic AI actions stay gated by airplane mode."
|
msgid "Automatic AI actions stay gated by airplane mode."
|
||||||
msgstr "Las acciones automáticas de IA siguen bloqueadas por el modo avión."
|
msgstr "Las acciones automáticas de IA siguen bloqueadas por el modo avión."
|
||||||
@@ -337,7 +337,7 @@ msgstr "Categoría de blogmark"
|
|||||||
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
||||||
msgstr "La copia del bookmarklet está conectada mediante el entorno de escritorio y la URL pública del proyecto."
|
msgstr "La copia del bookmarklet está conectada mediante el entorno de escritorio y la URL pública del proyecto."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1362
|
#: lib/bds/desktop/shell_live/import_editor.ex:1365
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
||||||
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
||||||
@@ -361,9 +361,9 @@ msgstr "Cancelar"
|
|||||||
msgid "Caption"
|
msgid "Caption"
|
||||||
msgstr "Leyenda"
|
msgstr "Leyenda"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:890
|
#: lib/bds/desktop/shell_live/import_editor.ex:893
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1020
|
#: lib/bds/desktop/shell_live/import_editor.ex:1023
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1184
|
#: lib/bds/desktop/shell_live/import_editor.ex:1187
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:336
|
#: lib/bds/desktop/shell_live/index.html.heex:336
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
||||||
@@ -379,7 +379,7 @@ msgstr "Leyenda"
|
|||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "Categorías"
|
msgstr "Categorías"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:992
|
#: lib/bds/desktop/shell_live/import_editor.ex:995
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Categories & Tags"
|
msgid "Categories & Tags"
|
||||||
msgstr "Categorías y Etiquetas"
|
msgstr "Categorías y Etiquetas"
|
||||||
@@ -406,8 +406,8 @@ msgstr "El nombre de la categoría es obligatorio"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:979
|
#: lib/bds/desktop/shell_live.ex:979
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:230
|
#: lib/bds/desktop/shell_live/chat_editor.ex:233
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:318
|
#: lib/bds/desktop/shell_live/chat_editor.ex:323
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:503
|
#: lib/bds/desktop/shell_live/index.html.heex:503
|
||||||
#: lib/bds/ui/registry.ex:104
|
#: lib/bds/ui/registry.ex:104
|
||||||
@@ -444,8 +444,8 @@ msgstr "Limpiar categorías"
|
|||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr "Limpiar filtros"
|
msgstr "Limpiar filtros"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
#: lib/bds/desktop/shell_live/import_editor.ex:1367
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1395
|
#: lib/bds/desktop/shell_live/import_editor.ex:1398
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear mapping"
|
msgid "Clear mapping"
|
||||||
msgstr "Borrar mapeo"
|
msgstr "Borrar mapeo"
|
||||||
@@ -488,7 +488,7 @@ msgstr "Contraer bloques de diff sin cambios"
|
|||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr "Comando completado"
|
msgstr "Comando completado"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:927
|
#: lib/bds/desktop/shell_live/chat_editor.ex:932
|
||||||
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Configure an API key in Settings to enable AI chat."
|
msgid "Configure an API key in Settings to enable AI chat."
|
||||||
@@ -558,7 +558,7 @@ msgstr "Crear categoría"
|
|||||||
msgid "Create tag"
|
msgid "Create tag"
|
||||||
msgstr "Crear etiqueta"
|
msgstr "Crear etiqueta"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:453
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -604,7 +604,7 @@ msgstr "Mantenimiento de datos"
|
|||||||
msgid "Data Path"
|
msgid "Data Path"
|
||||||
msgstr "Ruta de datos"
|
msgstr "Ruta de datos"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:896
|
#: lib/bds/desktop/shell_live/import_editor.ex:899
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date Distribution"
|
msgid "Date Distribution"
|
||||||
msgstr "Distribución por fecha"
|
msgstr "Distribución por fecha"
|
||||||
@@ -660,7 +660,7 @@ msgstr "Eliminar"
|
|||||||
msgid "Delete Media"
|
msgid "Delete Media"
|
||||||
msgstr "Eliminar medio"
|
msgstr "Eliminar medio"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:392
|
#: lib/bds/desktop/shell_live/media_editor.ex:396
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete Translation"
|
msgid "Delete Translation"
|
||||||
msgstr "Eliminar traducción"
|
msgstr "Eliminar traducción"
|
||||||
@@ -701,14 +701,14 @@ msgstr "Entorno de escritorio"
|
|||||||
msgid "Detect"
|
msgid "Detect"
|
||||||
msgstr "Detectar"
|
msgstr "Detectar"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:155
|
#: lib/bds/desktop/shell_live/media_editor.ex:159
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:194
|
#: lib/bds/desktop/shell_live/media_editor.ex:198
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:199
|
#: lib/bds/desktop/shell_live/media_editor.ex:203
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:205
|
#: lib/bds/desktop/shell_live/media_editor.ex:209
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:647
|
#: lib/bds/desktop/shell_live/post_editor.ex:713
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:676
|
#: lib/bds/desktop/shell_live/post_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:682
|
#: lib/bds/desktop/shell_live/post_editor.ex:748
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Detect Language"
|
msgid "Detect Language"
|
||||||
msgstr "Detectar idioma"
|
msgstr "Detectar idioma"
|
||||||
@@ -764,7 +764,7 @@ msgstr "Descartar"
|
|||||||
msgid "Dismiss Checked"
|
msgid "Dismiss Checked"
|
||||||
msgstr "Descartar seleccionados"
|
msgstr "Descartar seleccionados"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:618
|
#: lib/bds/desktop/shell_live/chat_editor.ex:623
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Dismiss surface"
|
msgid "Dismiss surface"
|
||||||
msgstr "Cerrar superficie"
|
msgstr "Cerrar superficie"
|
||||||
@@ -902,13 +902,13 @@ msgstr "Coincidencia exacta"
|
|||||||
msgid "Excerpt"
|
msgid "Excerpt"
|
||||||
msgstr "Extracto"
|
msgstr "Extracto"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1128
|
#: lib/bds/desktop/shell_live/import_editor.ex:1131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Entry"
|
msgid "Existing Entry"
|
||||||
msgstr "Entrada existente"
|
msgstr "Entrada existente"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
#: lib/bds/desktop/shell_live/import_editor.ex:1189
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
#: lib/bds/desktop/shell_live/import_editor.ex:1236
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Match"
|
msgid "Existing Match"
|
||||||
msgstr "Coincidencia existente"
|
msgstr "Coincidencia existente"
|
||||||
@@ -924,7 +924,7 @@ msgid "Extra URLs"
|
|||||||
msgstr "URLs adicionales"
|
msgstr "URLs adicionales"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:144
|
#: lib/bds/desktop/menu_bar.ex:144
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
#: lib/bds/desktop/shell_live/import_editor.ex:881
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "File"
|
msgid "File"
|
||||||
@@ -940,7 +940,7 @@ msgstr "Nombre del archivo"
|
|||||||
msgid "File to DB"
|
msgid "File to DB"
|
||||||
msgstr "Archivo a BD"
|
msgstr "Archivo a BD"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1230
|
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Filename"
|
msgid "Filename"
|
||||||
msgstr "Nombre de archivo"
|
msgstr "Nombre de archivo"
|
||||||
@@ -1032,13 +1032,13 @@ msgstr "Host"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:116
|
#: lib/bds/desktop/shell_data.ex:116
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:666
|
#: lib/bds/desktop/shell_live/index.html.heex:666
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:703
|
#: lib/bds/desktop/shell_live/media_editor.ex:711
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:899
|
#: lib/bds/desktop/shell_live/post_editor.ex:965
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Idle"
|
msgid "Idle"
|
||||||
msgstr "Inactivo"
|
msgstr "Inactivo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1143
|
#: lib/bds/desktop/shell_live/import_editor.ex:1146
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr "Ignorar"
|
msgstr "Ignorar"
|
||||||
@@ -1055,12 +1055,12 @@ msgstr "Imágenes y archivos"
|
|||||||
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:700
|
#: lib/bds/desktop/shell_live/import_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:704
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:728
|
#: lib/bds/desktop/shell_live/import_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:742
|
#: lib/bds/desktop/shell_live/import_editor.ex:731
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:755
|
#: lib/bds/desktop/shell_live/import_editor.ex:745
|
||||||
|
#: lib/bds/desktop/shell_live/import_editor.ex:758
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
||||||
@@ -1087,12 +1087,12 @@ msgstr "Imágenes y archivos"
|
|||||||
msgid "Import"
|
msgid "Import"
|
||||||
msgstr "Importar"
|
msgstr "Importar"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:947
|
#: lib/bds/desktop/shell_live/import_editor.ex:950
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import %{count} Items"
|
msgid "Import %{count} Items"
|
||||||
msgstr "Importar %{count} elementos"
|
msgstr "Importar %{count} elementos"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1145
|
#: lib/bds/desktop/shell_live/import_editor.ex:1148
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import (new slug)"
|
msgid "Import (new slug)"
|
||||||
msgstr "Importar (nuevo slug)"
|
msgstr "Importar (nuevo slug)"
|
||||||
@@ -1107,8 +1107,8 @@ msgstr "Importar medios"
|
|||||||
msgid "Import complete"
|
msgid "Import complete"
|
||||||
msgstr "Importación completada"
|
msgstr "Importación completada"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:729
|
#: lib/bds/desktop/shell_live/import_editor.ex:732
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:955
|
#: lib/bds/desktop/shell_live/import_editor.ex:958
|
||||||
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import completed successfully!"
|
msgid "Import completed successfully!"
|
||||||
@@ -1122,7 +1122,7 @@ msgstr "Importación completada: %{count}"
|
|||||||
msgid "Import definitions"
|
msgid "Import definitions"
|
||||||
msgstr "Definiciones de importación"
|
msgstr "Definiciones de importación"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:961
|
#: lib/bds/desktop/shell_live/import_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import failed: %{error}"
|
msgid "Import failed: %{error}"
|
||||||
msgstr "La importación falló: %{error}"
|
msgstr "La importación falló: %{error}"
|
||||||
@@ -1135,7 +1135,7 @@ msgstr "La importación falló: %{error}"
|
|||||||
msgid "Import media"
|
msgid "Import media"
|
||||||
msgstr "Importar medios"
|
msgstr "Importar medios"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:828
|
#: lib/bds/desktop/shell_live/import_editor.ex:831
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import name..."
|
msgid "Import name..."
|
||||||
msgstr "Nombre de la definición de importación"
|
msgstr "Nombre de la definición de importación"
|
||||||
@@ -1160,7 +1160,7 @@ msgstr "Importando entradas..."
|
|||||||
msgid "Importing tags & categories..."
|
msgid "Importing tags & categories..."
|
||||||
msgstr "Importando etiquetas y categorías..."
|
msgstr "Importando etiquetas y categorías..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:915
|
#: lib/bds/desktop/shell_live/import_editor.ex:918
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Importing..."
|
msgid "Importing..."
|
||||||
msgstr "Importando…"
|
msgstr "Importando…"
|
||||||
@@ -1196,15 +1196,15 @@ msgstr "Interno"
|
|||||||
msgid "Kind"
|
msgid "Kind"
|
||||||
msgstr "Tipo"
|
msgstr "Tipo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
#: lib/bds/desktop/shell_live/import_editor.ex:877
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Idioma"
|
msgstr "Idioma"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:206
|
#: lib/bds/desktop/shell_live/media_editor.ex:210
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:683
|
#: lib/bds/desktop/shell_live/post_editor.ex:749
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language detection failed."
|
msgid "Language detection failed."
|
||||||
msgstr "La detección de idioma falló."
|
msgstr "La detección de idioma falló."
|
||||||
@@ -1214,7 +1214,7 @@ msgstr "La detección de idioma falló."
|
|||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Claro"
|
msgstr "Claro"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:252
|
#: lib/bds/desktop/shell_live/media_editor.ex:256
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Link to Post"
|
msgid "Link to Post"
|
||||||
@@ -1259,7 +1259,7 @@ msgstr "MCP"
|
|||||||
msgid "MIME Type"
|
msgid "MIME Type"
|
||||||
msgstr "Tipo MIME"
|
msgstr "Tipo MIME"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1044
|
#: lib/bds/desktop/shell_live/import_editor.ex:1047
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Macros (%{count})"
|
msgid "Macros (%{count})"
|
||||||
msgstr "Macros (%{count})"
|
msgstr "Macros (%{count})"
|
||||||
@@ -1277,18 +1277,18 @@ msgstr "Idioma principal"
|
|||||||
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
||||||
msgstr "Gestiona la estructura central de navegación del blog y guárdala en meta/menu.opml."
|
msgstr "Gestiona la estructura central de navegación del blog y guárdala en meta/menu.opml."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1357
|
#: lib/bds/desktop/shell_live/import_editor.ex:1360
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1361
|
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Map to..."
|
msgid "Map to..."
|
||||||
msgstr "Mapear a..."
|
msgstr "Mapear a..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Mapped"
|
msgid "Mapped"
|
||||||
msgstr "Mapeado"
|
msgstr "Mapeado"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:902
|
#: lib/bds/desktop/shell_live/post_editor.ex:968
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Markdown"
|
msgid "Markdown"
|
||||||
@@ -1300,8 +1300,8 @@ msgid "Max Posts Per Page"
|
|||||||
msgstr "Máximo de publicaciones por página"
|
msgstr "Máximo de publicaciones por página"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:168
|
#: lib/bds/desktop/menu_bar.ex:168
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:494
|
#: lib/bds/desktop/shell_live/media_editor.ex:502
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
@@ -1313,12 +1313,12 @@ msgstr "Máximo de publicaciones por página"
|
|||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr "Medios"
|
msgstr "Medios"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:986
|
#: lib/bds/desktop/shell_live/import_editor.ex:989
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media (%{count})"
|
msgid "Media (%{count})"
|
||||||
msgstr "Medios (%{count})"
|
msgstr "Medios (%{count})"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media saved"
|
msgid "Media saved"
|
||||||
msgstr "Medio guardado"
|
msgstr "Medio guardado"
|
||||||
@@ -1368,8 +1368,8 @@ msgstr "URLs faltantes"
|
|||||||
msgid "Mode"
|
msgid "Mode"
|
||||||
msgstr "Modo"
|
msgstr "Modo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:875
|
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "N/A"
|
msgid "N/A"
|
||||||
msgstr "N/D"
|
msgstr "N/D"
|
||||||
@@ -1380,7 +1380,7 @@ msgstr "N/D"
|
|||||||
msgid "New Chat"
|
msgid "New Chat"
|
||||||
msgstr "Nuevo chat"
|
msgstr "Nuevo chat"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1127
|
#: lib/bds/desktop/shell_live/import_editor.ex:1130
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Entry (WXR)"
|
msgid "New Entry (WXR)"
|
||||||
msgstr "Nueva entrada (WXR)"
|
msgstr "Nueva entrada (WXR)"
|
||||||
@@ -1439,7 +1439,7 @@ msgstr "No hay tareas en segundo plano en ejecución"
|
|||||||
msgid "No commit subject"
|
msgid "No commit subject"
|
||||||
msgstr "Sin asunto de commit"
|
msgstr "Sin asunto de commit"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:837
|
#: lib/bds/desktop/shell_live/import_editor.ex:840
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No folder selected"
|
msgid "No folder selected"
|
||||||
msgstr "Ninguna carpeta seleccionada"
|
msgstr "Ninguna carpeta seleccionada"
|
||||||
@@ -1571,7 +1571,7 @@ msgstr "No está enlazado a ninguna publicación"
|
|||||||
msgid "Not supported in the rewrite yet"
|
msgid "Not supported in the rewrite yet"
|
||||||
msgstr "Todavía no compatible en la reescritura"
|
msgstr "Todavía no compatible en la reescritura"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:945
|
#: lib/bds/desktop/shell_live/import_editor.ex:948
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to Import"
|
msgid "Nothing to Import"
|
||||||
msgstr "Nada para importar"
|
msgstr "Nada para importar"
|
||||||
@@ -1667,7 +1667,7 @@ msgstr "Soporte de imágenes en línea"
|
|||||||
msgid "Online Title Model"
|
msgid "Online Title Model"
|
||||||
msgstr "Modelo de títulos en línea"
|
msgstr "Modelo de títulos en línea"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:839
|
#: lib/bds/desktop/shell_live/import_editor.ex:842
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@@ -1711,12 +1711,12 @@ msgstr "Orden"
|
|||||||
msgid "Orphan Files"
|
msgid "Orphan Files"
|
||||||
msgstr "Archivos huérfanos"
|
msgstr "Archivos huérfanos"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:886
|
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr "Otros"
|
msgstr "Otros"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:978
|
#: lib/bds/desktop/shell_live/import_editor.ex:981
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other (%{count})"
|
msgid "Other (%{count})"
|
||||||
msgstr "Otros (%{count})"
|
msgstr "Otros (%{count})"
|
||||||
@@ -1733,7 +1733,7 @@ msgstr "Salida"
|
|||||||
msgid "Overview of your blog database"
|
msgid "Overview of your blog database"
|
||||||
msgstr "Resumen de la base de datos de tu blog"
|
msgstr "Resumen de la base de datos de tu blog"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1144
|
#: lib/bds/desktop/shell_live/import_editor.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Overwrite"
|
msgid "Overwrite"
|
||||||
msgstr "Sobrescribir"
|
msgstr "Sobrescribir"
|
||||||
@@ -1743,7 +1743,7 @@ msgstr "Sobrescribir"
|
|||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Página"
|
msgstr "Página"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:970
|
#: lib/bds/desktop/shell_live/import_editor.ex:973
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Page Slug Conflicts"
|
msgid "Page Slug Conflicts"
|
||||||
msgstr "Conflictos de slug de páginas"
|
msgstr "Conflictos de slug de páginas"
|
||||||
@@ -1754,7 +1754,7 @@ msgstr "Conflictos de slug de páginas"
|
|||||||
msgid "Pages"
|
msgid "Pages"
|
||||||
msgstr "Páginas"
|
msgstr "Páginas"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:982
|
#: lib/bds/desktop/shell_live/import_editor.ex:985
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pages (%{count})"
|
msgid "Pages (%{count})"
|
||||||
msgstr "Páginas (%{count})"
|
msgstr "Páginas (%{count})"
|
||||||
@@ -1774,7 +1774,7 @@ msgstr "Analizando archivo WXR..."
|
|||||||
msgid "Paste"
|
msgid "Paste"
|
||||||
msgstr "Pegar"
|
msgstr "Pegar"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
#: lib/bds/desktop/shell_live/import_editor.ex:1235
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
@@ -1786,16 +1786,16 @@ msgid "Persist the detected language for this media item"
|
|||||||
msgstr "Guardar el idioma detectado para este medio"
|
msgstr "Guardar el idioma detectado para este medio"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:483
|
#: lib/bds/desktop/shell_live/post_editor.ex:492
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:522
|
#: lib/bds/desktop/shell_live/post_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:557
|
#: lib/bds/desktop/shell_live/post_editor.ex:573
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:572
|
#: lib/bds/desktop/shell_live/post_editor.ex:588
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:604
|
#: lib/bds/desktop/shell_live/post_editor.ex:620
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:637
|
#: lib/bds/desktop/shell_live/post_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
||||||
#: lib/bds/ui/registry.ex:99
|
#: lib/bds/ui/registry.ex:99
|
||||||
@@ -1810,7 +1810,7 @@ msgstr "Publicación"
|
|||||||
msgid "Post Links"
|
msgid "Post Links"
|
||||||
msgstr "Enlaces de artículos"
|
msgstr "Enlaces de artículos"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:966
|
#: lib/bds/desktop/shell_live/import_editor.ex:969
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post Slug Conflicts"
|
msgid "Post Slug Conflicts"
|
||||||
msgstr "Conflictos de slug de publicaciones"
|
msgstr "Conflictos de slug de publicaciones"
|
||||||
@@ -1825,12 +1825,12 @@ msgstr "Plantilla de publicación"
|
|||||||
msgid "Post is marked as do-not-translate but has translations"
|
msgid "Post is marked as do-not-translate but has translations"
|
||||||
msgstr "La entrada está marcada como no-traducir pero tiene traducciones"
|
msgstr "La entrada está marcada como no-traducir pero tiene traducciones"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post published"
|
msgid "Post published"
|
||||||
msgstr "Artículo publicado"
|
msgstr "Artículo publicado"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post saved"
|
msgid "Post saved"
|
||||||
msgstr "Artículo guardado"
|
msgstr "Artículo guardado"
|
||||||
@@ -1844,7 +1844,7 @@ msgstr "Artículo guardado"
|
|||||||
msgid "Posts"
|
msgid "Posts"
|
||||||
msgstr "Publicaciones"
|
msgstr "Publicaciones"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:974
|
#: lib/bds/desktop/shell_live/import_editor.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Posts (%{count})"
|
msgid "Posts (%{count})"
|
||||||
msgstr "Publicaciones (%{count})"
|
msgstr "Publicaciones (%{count})"
|
||||||
@@ -1854,7 +1854,7 @@ msgstr "Publicaciones (%{count})"
|
|||||||
msgid "Preferences"
|
msgid "Preferences"
|
||||||
msgstr "Preferencias"
|
msgstr "Preferencias"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:903
|
#: lib/bds/desktop/shell_live/post_editor.ex:969
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
@@ -1923,8 +1923,8 @@ msgid "Publish Selected"
|
|||||||
msgstr "Publicar seleccionados"
|
msgstr "Publicar seleccionados"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:181
|
#: lib/bds/desktop/shell_data.ex:181
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:897
|
#: lib/bds/desktop/shell_live/post_editor.ex:963
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:459
|
||||||
#: lib/bds/ui/sidebar.ex:324
|
#: lib/bds/ui/sidebar.ex:324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published"
|
msgid "Published"
|
||||||
@@ -1955,7 +1955,7 @@ msgstr "Acciones rápidas"
|
|||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr "Salir"
|
msgstr "Salir"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:936
|
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ready to import:"
|
msgid "Ready to import:"
|
||||||
msgstr "Listo para importar:"
|
msgstr "Listo para importar:"
|
||||||
@@ -2022,8 +2022,8 @@ msgstr "Actualizar modelos sin conexión"
|
|||||||
msgid "Refresh Online Models"
|
msgid "Refresh Online Models"
|
||||||
msgstr "Actualizar modelos en línea"
|
msgstr "Actualizar modelos en línea"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:364
|
#: lib/bds/desktop/shell_live/media_editor.ex:368
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:373
|
#: lib/bds/desktop/shell_live/media_editor.ex:377
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Refresh Translation"
|
msgid "Refresh Translation"
|
||||||
msgstr "Actualizar traducción"
|
msgstr "Actualizar traducción"
|
||||||
@@ -2079,8 +2079,8 @@ msgstr "Mostrar en listas"
|
|||||||
msgid "Replace"
|
msgid "Replace"
|
||||||
msgstr "Reemplazar"
|
msgstr "Reemplazar"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:138
|
#: lib/bds/desktop/shell_live/media_editor.ex:142
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:146
|
#: lib/bds/desktop/shell_live/media_editor.ex:150
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Replace File"
|
msgid "Replace File"
|
||||||
@@ -2111,17 +2111,17 @@ msgstr "Restablecer al predeterminado"
|
|||||||
msgid "Reset to Defaults"
|
msgid "Reset to Defaults"
|
||||||
msgstr "Restablecer valores predeterminados"
|
msgstr "Restablecer valores predeterminados"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
#: lib/bds/desktop/shell_live/import_editor.ex:1132
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Resolution"
|
msgid "Resolution"
|
||||||
msgstr "Resolución"
|
msgstr "Resolución"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:597
|
#: lib/bds/desktop/shell_live/chat_editor.ex:602
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Resultado"
|
msgstr "Resultado"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:898
|
#: lib/bds/desktop/shell_live/post_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reverted"
|
msgid "Reverted"
|
||||||
msgstr "Revertido"
|
msgstr "Revertido"
|
||||||
@@ -2167,13 +2167,13 @@ msgstr "Modo SSH"
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Guardar"
|
msgstr "Guardar"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:324
|
#: lib/bds/desktop/shell_live/media_editor.ex:328
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save Translation"
|
msgid "Save Translation"
|
||||||
msgstr "Guardar traducción"
|
msgstr "Guardar traducción"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:702
|
#: lib/bds/desktop/shell_live/media_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:896
|
#: lib/bds/desktop/shell_live/post_editor.ex:962
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Guardado"
|
msgstr "Guardado"
|
||||||
@@ -2264,7 +2264,7 @@ msgstr "Buscar entradas..."
|
|||||||
msgid "Search settings"
|
msgid "Search settings"
|
||||||
msgstr "Buscar en la configuración"
|
msgstr "Buscar en la configuración"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:847
|
#: lib/bds/desktop/shell_live/import_editor.ex:850
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select & Analyze"
|
msgid "Select & Analyze"
|
||||||
msgstr "Seleccionar y analizar"
|
msgstr "Seleccionar y analizar"
|
||||||
@@ -2279,19 +2279,19 @@ msgstr "Seleccionar todo"
|
|||||||
msgid "Select Page"
|
msgid "Select Page"
|
||||||
msgstr "Seleccionar página"
|
msgstr "Seleccionar página"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:646
|
#: lib/bds/desktop/shell_live/import_editor.ex:649
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
#: lib/bds/desktop/shell_live/import_editor.ex:833
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
||||||
msgstr "Analiza un archivo WXR antes de importar."
|
msgstr "Analiza un archivo WXR antes de importar."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1099
|
#: lib/bds/desktop/shell_live/import_editor.ex:1102
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file to begin analysis."
|
msgid "Select a WordPress export file to begin analysis."
|
||||||
msgstr "Selecciona un archivo WXR e inicia el análisis."
|
msgstr "Selecciona un archivo WXR e inicia el análisis."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:845
|
#: lib/bds/desktop/shell_live/import_editor.ex:848
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a file to analyze"
|
msgid "Select a file to analyze"
|
||||||
msgstr "Selecciona un archivo para analizar"
|
msgstr "Selecciona un archivo para analizar"
|
||||||
@@ -2345,7 +2345,7 @@ msgstr "Mostrar títulos"
|
|||||||
msgid "Side by Side"
|
msgid "Side by Side"
|
||||||
msgstr "Lado a lado"
|
msgstr "Lado a lado"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:866
|
#: lib/bds/desktop/shell_live/import_editor.ex:869
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Sitio"
|
msgstr "Sitio"
|
||||||
@@ -2371,8 +2371,8 @@ msgstr "Renderizado del sitio"
|
|||||||
msgid "Size"
|
msgid "Size"
|
||||||
msgstr "Tamaño"
|
msgstr "Tamaño"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1126
|
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
||||||
@@ -2395,14 +2395,14 @@ msgstr "Páginas independientes"
|
|||||||
msgid "Start chat"
|
msgid "Start chat"
|
||||||
msgstr "Iniciar chat"
|
msgstr "Iniciar chat"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:921
|
#: lib/bds/desktop/shell_live/import_editor.ex:924
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Starting..."
|
msgid "Starting..."
|
||||||
msgstr "Iniciando..."
|
msgstr "Iniciando..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:115
|
#: lib/bds/desktop/shell_data.ex:115
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1178
|
#: lib/bds/desktop/shell_live/import_editor.ex:1181
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1229
|
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Estado"
|
msgstr "Estado"
|
||||||
@@ -2462,8 +2462,8 @@ msgstr "Gestión de etiquetas"
|
|||||||
msgid "Tag name"
|
msgid "Tag name"
|
||||||
msgstr "Nombre de la etiqueta"
|
msgstr "Nombre de la etiqueta"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
#: lib/bds/desktop/shell_live/import_editor.ex:894
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1028
|
#: lib/bds/desktop/shell_live/import_editor.ex:1031
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:297
|
#: lib/bds/desktop/shell_live/index.html.heex:297
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:325
|
#: lib/bds/desktop/shell_live/index.html.heex:325
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
||||||
@@ -2572,7 +2572,7 @@ msgstr "Este agente MCP aún no es compatible con la reescritura"
|
|||||||
msgid "This item is referenced by:"
|
msgid "This item is referenced by:"
|
||||||
msgstr "Este elemento esta referenciado por:"
|
msgstr "Este elemento esta referenciado por:"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1182
|
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
||||||
@@ -2643,14 +2643,14 @@ msgstr "Alternar panel"
|
|||||||
msgid "Toggle sidebar"
|
msgid "Toggle sidebar"
|
||||||
msgstr "Alternar barra lateral"
|
msgstr "Alternar barra lateral"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:348
|
#: lib/bds/desktop/shell_live/media_editor.ex:352
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:537
|
#: lib/bds/desktop/shell_live/media_editor.ex:545
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:558
|
#: lib/bds/desktop/shell_live/media_editor.ex:566
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:563
|
#: lib/bds/desktop/shell_live/media_editor.ex:571
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:696
|
#: lib/bds/desktop/shell_live/post_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:725
|
#: lib/bds/desktop/shell_live/post_editor.ex:791
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:730
|
#: lib/bds/desktop/shell_live/post_editor.ex:796
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Translate"
|
msgid "Translate"
|
||||||
@@ -2682,8 +2682,8 @@ msgstr "La traducción apunta a una entrada de origen inexistente"
|
|||||||
msgid "Translations"
|
msgid "Translations"
|
||||||
msgstr "Traducciones"
|
msgstr "Traducciones"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1180
|
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1231
|
#: lib/bds/desktop/shell_live/import_editor.ex:1234
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr "Tipo"
|
msgstr "Tipo"
|
||||||
@@ -2703,7 +2703,7 @@ msgstr "Escribe un título de página o una etiqueta de submenú"
|
|||||||
msgid "UI"
|
msgid "UI"
|
||||||
msgstr "UI"
|
msgstr "UI"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
#: lib/bds/desktop/shell_live/import_editor.ex:873
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "URL"
|
msgid "URL"
|
||||||
@@ -2714,26 +2714,26 @@ msgstr "URL"
|
|||||||
msgid "Undo"
|
msgid "Undo"
|
||||||
msgstr "Deshacer"
|
msgstr "Deshacer"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1004
|
#: lib/bds/desktop/shell_live/import_editor.ex:1007
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Desconocido"
|
msgstr "Desconocido"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:265
|
#: lib/bds/desktop/shell_live/media_editor.ex:269
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unlink from Post"
|
msgid "Unlink from Post"
|
||||||
msgstr "Desvincular del artículo"
|
msgstr "Desvincular del artículo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:701
|
#: lib/bds/desktop/shell_live/media_editor.ex:709
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:895
|
#: lib/bds/desktop/shell_live/post_editor.ex:961
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unsaved"
|
msgid "Unsaved"
|
||||||
msgstr "Sin guardar"
|
msgstr "Sin guardar"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:867
|
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
||||||
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1116
|
#: lib/bds/ui/sidebar.ex:1116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2741,13 +2741,13 @@ msgid "Untitled"
|
|||||||
msgstr "Sin título"
|
msgstr "Sin título"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:827
|
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled Import"
|
msgid "Untitled Import"
|
||||||
msgstr "Importación sin título"
|
msgstr "Importación sin título"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:454
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:457
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2765,13 +2765,13 @@ msgid "Upload Site"
|
|||||||
msgstr "Subir sitio"
|
msgstr "Subir sitio"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:835
|
#: lib/bds/desktop/shell_live/import_editor.ex:838
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Uploads Folder"
|
msgid "Uploads Folder"
|
||||||
msgstr "Carpeta uploads"
|
msgstr "Carpeta uploads"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used in: %{items}%{more}"
|
msgid "Used in: %{items}%{more}"
|
||||||
msgstr "Usado en: %{items}%{more}"
|
msgstr "Usado en: %{items}%{more}"
|
||||||
@@ -2811,13 +2811,13 @@ msgstr "Ver"
|
|||||||
msgid "View on GitHub"
|
msgid "View on GitHub"
|
||||||
msgstr "Ver en GitHub"
|
msgstr "Ver en GitHub"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
#: lib/bds/desktop/shell_live/import_editor.ex:1188
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WP Status"
|
msgid "WP Status"
|
||||||
msgstr "Estado WP"
|
msgstr "Estado WP"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:843
|
#: lib/bds/desktop/shell_live/import_editor.ex:846
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WXR File"
|
msgid "WXR File"
|
||||||
@@ -2844,7 +2844,7 @@ msgstr "Árbol de trabajo e historial"
|
|||||||
msgid "Wrap Long Lines"
|
msgid "Wrap Long Lines"
|
||||||
msgstr "Ajustar líneas largas"
|
msgstr "Ajustar líneas largas"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:530
|
#: lib/bds/desktop/shell_live/chat_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You"
|
msgid "You"
|
||||||
@@ -2870,8 +2870,8 @@ msgstr "agregar"
|
|||||||
msgid "and %{count} more"
|
msgid "and %{count} more"
|
||||||
msgstr "y %{count} más"
|
msgstr "y %{count} más"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1265
|
#: lib/bds/desktop/shell_live/import_editor.ex:1268
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1302
|
#: lib/bds/desktop/shell_live/import_editor.ex:1305
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "conflict"
|
msgid "conflict"
|
||||||
msgstr "conflicto"
|
msgstr "conflicto"
|
||||||
@@ -2901,8 +2901,8 @@ msgstr "%{count} imágenes"
|
|||||||
msgid "dashboard.stats.published"
|
msgid "dashboard.stats.published"
|
||||||
msgstr "%{count} publicados"
|
msgstr "%{count} publicados"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
#: lib/bds/desktop/shell_live/import_editor.ex:1269
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
#: lib/bds/desktop/shell_live/import_editor.ex:1306
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "duplicate"
|
msgid "duplicate"
|
||||||
msgstr "duplicado"
|
msgstr "duplicado"
|
||||||
@@ -2912,7 +2912,7 @@ msgstr "duplicado"
|
|||||||
msgid "edit"
|
msgid "edit"
|
||||||
msgstr "editar"
|
msgstr "editar"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1320
|
#: lib/bds/desktop/shell_live/import_editor.ex:1323
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "existing"
|
msgid "existing"
|
||||||
msgstr "existente"
|
msgstr "existente"
|
||||||
@@ -2922,13 +2922,13 @@ msgstr "existente"
|
|||||||
msgid "gitDiff.changedFiles"
|
msgid "gitDiff.changedFiles"
|
||||||
msgstr "Archivos modificados"
|
msgstr "Archivos modificados"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1321
|
#: lib/bds/desktop/shell_live/import_editor.ex:1324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "mapped"
|
msgid "mapped"
|
||||||
msgstr "mapeado"
|
msgstr "mapeado"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
#: lib/bds/desktop/shell_live/import_editor.ex:892
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
#: lib/bds/desktop/shell_live/import_editor.ex:942
|
||||||
#: lib/bds/ui/workbench.ex:213
|
#: lib/bds/ui/workbench.ex:213
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "media"
|
msgid "media"
|
||||||
@@ -2986,26 +2986,26 @@ msgstr "Guardar"
|
|||||||
msgid "menuEditor.unindent"
|
msgid "menuEditor.unindent"
|
||||||
msgstr "Reducir sangría"
|
msgstr "Reducir sangría"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
#: lib/bds/desktop/shell_live/import_editor.ex:1307
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "missing"
|
msgid "missing"
|
||||||
msgstr "faltante"
|
msgstr "faltante"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1263
|
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1300
|
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1322
|
#: lib/bds/desktop/shell_live/import_editor.ex:1325
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "new"
|
msgid "new"
|
||||||
msgstr "nuevo"
|
msgstr "nuevo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:888
|
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
#: lib/bds/desktop/shell_live/import_editor.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "pages"
|
msgid "pages"
|
||||||
msgstr "páginas"
|
msgstr "páginas"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:884
|
#: lib/bds/desktop/shell_live/import_editor.ex:887
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:938
|
#: lib/bds/desktop/shell_live/import_editor.ex:941
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "posts"
|
msgid "posts"
|
||||||
msgstr "publicaciones"
|
msgstr "publicaciones"
|
||||||
@@ -3022,7 +3022,7 @@ msgstr "resultados"
|
|||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr "resultados para"
|
msgstr "resultados para"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:937
|
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "tags/categories"
|
msgid "tags/categories"
|
||||||
msgstr "etiquetas/categorías"
|
msgstr "etiquetas/categorías"
|
||||||
@@ -3086,8 +3086,8 @@ msgstr "No se encontraron registros en el sistema de archivos"
|
|||||||
msgid "translationValidation.revalidate"
|
msgid "translationValidation.revalidate"
|
||||||
msgstr "Revalidar"
|
msgstr "Revalidar"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1264
|
#: lib/bds/desktop/shell_live/import_editor.ex:1267
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1301
|
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "update"
|
msgid "update"
|
||||||
msgstr "actualización"
|
msgstr "actualización"
|
||||||
@@ -3228,12 +3228,12 @@ msgstr "Archivar"
|
|||||||
msgid "Move this post to the archive"
|
msgid "Move this post to the archive"
|
||||||
msgstr "Mover este artículo al archivo"
|
msgstr "Mover este artículo al archivo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post archived"
|
msgid "Post archived"
|
||||||
msgstr "Artículo archivado"
|
msgstr "Artículo archivado"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post unarchived"
|
msgid "Post unarchived"
|
||||||
msgstr "Artículo restaurado"
|
msgstr "Artículo restaurado"
|
||||||
@@ -3411,3 +3411,19 @@ msgstr "Blogmark"
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open a project before importing a blogmark."
|
msgid "Open a project before importing a blogmark."
|
||||||
msgstr "Abre un proyecto antes de importar un blogmark."
|
msgstr "Abre un proyecto antes de importar un blogmark."
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:643
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Added %{name}"
|
||||||
|
msgstr "%{name} añadido"
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:650
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Failed to import %{path}: %{reason}"
|
||||||
|
msgstr "No se pudo importar %{path}: %{reason}"
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:642
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:649
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Insert Image"
|
||||||
|
msgstr "Insertar imagen"
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ msgid "%{canonical} = %{translation}"
|
|||||||
msgstr "%{canonical} = %{translation}"
|
msgstr "%{canonical} = %{translation}"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1050
|
#: lib/bds/desktop/shell_live/import_editor.ex:1053
|
||||||
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} mapped"
|
msgid "%{count} mapped"
|
||||||
@@ -17,13 +17,13 @@ msgid_plural "%{count} posts"
|
|||||||
msgstr[0] "%{count} article"
|
msgstr[0] "%{count} article"
|
||||||
msgstr[1] "%{count} articles"
|
msgstr[1] "%{count} articles"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1051
|
#: lib/bds/desktop/shell_live/import_editor.ex:1054
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} unmapped"
|
msgid "%{count} unmapped"
|
||||||
msgstr "%{count} non mappé(s)"
|
msgstr "%{count} non mappé(s)"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1061
|
#: lib/bds/desktop/shell_live/import_editor.ex:1064
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
#: lib/bds/desktop/shell_live/import_editor.ex:1079
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} uses"
|
msgid "%{count} uses"
|
||||||
msgstr "%{count} utilisations"
|
msgstr "%{count} utilisations"
|
||||||
@@ -38,22 +38,22 @@ msgstr "%{count}s"
|
|||||||
msgid "%{minutes}m %{seconds}s"
|
msgid "%{minutes}m %{seconds}s"
|
||||||
msgstr "%{minutes}m %{seconds}s"
|
msgstr "%{minutes}m %{seconds}s"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1073
|
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "(no parameters)"
|
msgid "(no parameters)"
|
||||||
msgstr "(aucun paramètre)"
|
msgstr "(aucun paramètre)"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid ", +%{count} more"
|
msgid ", +%{count} more"
|
||||||
msgstr ", +%{count} de plus"
|
msgstr ", +%{count} de plus"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1137
|
#: lib/bds/desktop/shell_live/import_editor.ex:1140
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1199
|
#: lib/bds/desktop/shell_live/import_editor.ex:1202
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1200
|
#: lib/bds/desktop/shell_live/import_editor.ex:1203
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1241
|
#: lib/bds/desktop/shell_live/import_editor.ex:1244
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1243
|
#: lib/bds/desktop/shell_live/import_editor.ex:1246
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1427
|
#: lib/bds/desktop/shell_live/import_editor.ex:1430
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "--"
|
msgid "--"
|
||||||
msgstr "--"
|
msgstr "--"
|
||||||
@@ -79,7 +79,7 @@ msgstr "Paramètres IA"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
||||||
#: 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:781
|
#: lib/bds/desktop/shell_live/post_editor.ex:847
|
||||||
#: 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
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
@@ -94,7 +94,7 @@ msgstr "Suggestions IA"
|
|||||||
msgid "AI conversations"
|
msgid "AI conversations"
|
||||||
msgstr "Conversations IA"
|
msgstr "Conversations IA"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1015
|
#: lib/bds/desktop/shell_live/import_editor.ex:1018
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
||||||
msgstr "L’IA suggère des correspondances entre nouveaux éléments et éléments existants pour éviter les doublons"
|
msgstr "L’IA suggère des correspondances entre nouveaux éléments et éléments existants pour éviter les doublons"
|
||||||
@@ -173,14 +173,14 @@ msgstr "Texte alternatif"
|
|||||||
msgid "Analysis complete"
|
msgid "Analysis complete"
|
||||||
msgstr "Analyse terminée"
|
msgstr "Analyse terminée"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:668
|
#: lib/bds/desktop/shell_live/import_editor.ex:671
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:999
|
#: lib/bds/desktop/shell_live/import_editor.ex:1002
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyze with..."
|
msgid "Analyze with..."
|
||||||
msgstr "Analyser avec..."
|
msgstr "Analyser avec..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:855
|
#: lib/bds/desktop/shell_live/import_editor.ex:858
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyzing WXR file..."
|
msgid "Analyzing WXR file..."
|
||||||
@@ -227,7 +227,7 @@ msgstr "Appliquer le thème"
|
|||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr "Archivé"
|
msgstr "Archivé"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:594
|
#: lib/bds/desktop/shell_live/chat_editor.ex:599
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Arguments"
|
msgstr "Arguments"
|
||||||
@@ -237,7 +237,7 @@ msgstr "Arguments"
|
|||||||
msgid "Ask the assistant about the active project or editor."
|
msgid "Ask the assistant about the active project or editor."
|
||||||
msgstr "Interrogez l’assistant sur le projet ou l’éditeur actif."
|
msgstr "Interrogez l’assistant sur le projet ou l’éditeur actif."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:531
|
#: lib/bds/desktop/shell_live/chat_editor.ex:536
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
||||||
@@ -258,13 +258,13 @@ msgstr "Automatique"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:98
|
#: lib/bds/desktop/shell_data.ex:98
|
||||||
#: lib/bds/desktop/shell_live.ex:431
|
#: lib/bds/desktop/shell_live.ex:431
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:231
|
#: lib/bds/desktop/shell_live/chat_editor.ex:234
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:156
|
#: lib/bds/desktop/shell_live/media_editor.ex:160
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:349
|
#: lib/bds/desktop/shell_live/media_editor.ex:353
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:538
|
#: lib/bds/desktop/shell_live/media_editor.ex:546
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:648
|
#: lib/bds/desktop/shell_live/post_editor.ex:714
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:697
|
#: lib/bds/desktop/shell_live/post_editor.ex:763
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Automatic AI actions stay gated by airplane mode."
|
msgid "Automatic AI actions stay gated by airplane mode."
|
||||||
msgstr "Les actions IA automatiques restent bloquées par le mode avion."
|
msgstr "Les actions IA automatiques restent bloquées par le mode avion."
|
||||||
@@ -337,7 +337,7 @@ msgstr "Catégorie de blogmark"
|
|||||||
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
||||||
msgstr "La copie du bookmarklet est reliée via l’environnement desktop et l’URL publique du projet."
|
msgstr "La copie du bookmarklet est reliée via l’environnement desktop et l’URL publique du projet."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1362
|
#: lib/bds/desktop/shell_live/import_editor.ex:1365
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
||||||
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
||||||
@@ -361,9 +361,9 @@ msgstr "Annuler"
|
|||||||
msgid "Caption"
|
msgid "Caption"
|
||||||
msgstr "Legende"
|
msgstr "Legende"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:890
|
#: lib/bds/desktop/shell_live/import_editor.ex:893
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1020
|
#: lib/bds/desktop/shell_live/import_editor.ex:1023
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1184
|
#: lib/bds/desktop/shell_live/import_editor.ex:1187
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:336
|
#: lib/bds/desktop/shell_live/index.html.heex:336
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
||||||
@@ -379,7 +379,7 @@ msgstr "Legende"
|
|||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "Catégories"
|
msgstr "Catégories"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:992
|
#: lib/bds/desktop/shell_live/import_editor.ex:995
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Categories & Tags"
|
msgid "Categories & Tags"
|
||||||
msgstr "Catégories & Tags"
|
msgstr "Catégories & Tags"
|
||||||
@@ -406,8 +406,8 @@ msgstr "Le nom de la catégorie est requis"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:979
|
#: lib/bds/desktop/shell_live.ex:979
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:230
|
#: lib/bds/desktop/shell_live/chat_editor.ex:233
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:318
|
#: lib/bds/desktop/shell_live/chat_editor.ex:323
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:503
|
#: lib/bds/desktop/shell_live/index.html.heex:503
|
||||||
#: lib/bds/ui/registry.ex:104
|
#: lib/bds/ui/registry.ex:104
|
||||||
@@ -444,8 +444,8 @@ msgstr "Effacer les catégories"
|
|||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr "Effacer les filtres"
|
msgstr "Effacer les filtres"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
#: lib/bds/desktop/shell_live/import_editor.ex:1367
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1395
|
#: lib/bds/desktop/shell_live/import_editor.ex:1398
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear mapping"
|
msgid "Clear mapping"
|
||||||
msgstr "Effacer le mapping"
|
msgstr "Effacer le mapping"
|
||||||
@@ -488,7 +488,7 @@ msgstr "Réduire les blocs de diff inchangés"
|
|||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr "Commande terminée"
|
msgstr "Commande terminée"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:927
|
#: lib/bds/desktop/shell_live/chat_editor.ex:932
|
||||||
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Configure an API key in Settings to enable AI chat."
|
msgid "Configure an API key in Settings to enable AI chat."
|
||||||
@@ -558,7 +558,7 @@ msgstr "Créer une catégorie"
|
|||||||
msgid "Create tag"
|
msgid "Create tag"
|
||||||
msgstr "Créer un mot-clé"
|
msgstr "Créer un mot-clé"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:453
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -604,7 +604,7 @@ msgstr "Maintenance des données"
|
|||||||
msgid "Data Path"
|
msgid "Data Path"
|
||||||
msgstr "Chemin des données"
|
msgstr "Chemin des données"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:896
|
#: lib/bds/desktop/shell_live/import_editor.ex:899
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date Distribution"
|
msgid "Date Distribution"
|
||||||
msgstr "Répartition par date"
|
msgstr "Répartition par date"
|
||||||
@@ -660,7 +660,7 @@ msgstr "Supprimer"
|
|||||||
msgid "Delete Media"
|
msgid "Delete Media"
|
||||||
msgstr "Supprimer le media"
|
msgstr "Supprimer le media"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:392
|
#: lib/bds/desktop/shell_live/media_editor.ex:396
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete Translation"
|
msgid "Delete Translation"
|
||||||
msgstr "Supprimer la traduction"
|
msgstr "Supprimer la traduction"
|
||||||
@@ -701,14 +701,14 @@ msgstr "Exécution bureau"
|
|||||||
msgid "Detect"
|
msgid "Detect"
|
||||||
msgstr "Détecter"
|
msgstr "Détecter"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:155
|
#: lib/bds/desktop/shell_live/media_editor.ex:159
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:194
|
#: lib/bds/desktop/shell_live/media_editor.ex:198
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:199
|
#: lib/bds/desktop/shell_live/media_editor.ex:203
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:205
|
#: lib/bds/desktop/shell_live/media_editor.ex:209
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:647
|
#: lib/bds/desktop/shell_live/post_editor.ex:713
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:676
|
#: lib/bds/desktop/shell_live/post_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:682
|
#: lib/bds/desktop/shell_live/post_editor.ex:748
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Detect Language"
|
msgid "Detect Language"
|
||||||
msgstr "Détecter la langue"
|
msgstr "Détecter la langue"
|
||||||
@@ -764,7 +764,7 @@ msgstr "Ignorer"
|
|||||||
msgid "Dismiss Checked"
|
msgid "Dismiss Checked"
|
||||||
msgstr "Ignorer les éléments cochés"
|
msgstr "Ignorer les éléments cochés"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:618
|
#: lib/bds/desktop/shell_live/chat_editor.ex:623
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Dismiss surface"
|
msgid "Dismiss surface"
|
||||||
msgstr "Fermer la surface"
|
msgstr "Fermer la surface"
|
||||||
@@ -902,13 +902,13 @@ msgstr "Correspondance exacte"
|
|||||||
msgid "Excerpt"
|
msgid "Excerpt"
|
||||||
msgstr "Extrait"
|
msgstr "Extrait"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1128
|
#: lib/bds/desktop/shell_live/import_editor.ex:1131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Entry"
|
msgid "Existing Entry"
|
||||||
msgstr "Entrée existante"
|
msgstr "Entrée existante"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
#: lib/bds/desktop/shell_live/import_editor.ex:1189
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
#: lib/bds/desktop/shell_live/import_editor.ex:1236
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Match"
|
msgid "Existing Match"
|
||||||
msgstr "Correspondance existante"
|
msgstr "Correspondance existante"
|
||||||
@@ -924,7 +924,7 @@ msgid "Extra URLs"
|
|||||||
msgstr "URLs supplémentaires"
|
msgstr "URLs supplémentaires"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:144
|
#: lib/bds/desktop/menu_bar.ex:144
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
#: lib/bds/desktop/shell_live/import_editor.ex:881
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "File"
|
msgid "File"
|
||||||
@@ -940,7 +940,7 @@ msgstr "Nom du fichier"
|
|||||||
msgid "File to DB"
|
msgid "File to DB"
|
||||||
msgstr "Fichier vers BD"
|
msgstr "Fichier vers BD"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1230
|
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Filename"
|
msgid "Filename"
|
||||||
msgstr "Nom de fichier"
|
msgstr "Nom de fichier"
|
||||||
@@ -1032,13 +1032,13 @@ msgstr "Hôte"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:116
|
#: lib/bds/desktop/shell_data.ex:116
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:666
|
#: lib/bds/desktop/shell_live/index.html.heex:666
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:703
|
#: lib/bds/desktop/shell_live/media_editor.ex:711
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:899
|
#: lib/bds/desktop/shell_live/post_editor.ex:965
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Idle"
|
msgid "Idle"
|
||||||
msgstr "Inactif"
|
msgstr "Inactif"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1143
|
#: lib/bds/desktop/shell_live/import_editor.ex:1146
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr "Ignorer"
|
msgstr "Ignorer"
|
||||||
@@ -1055,12 +1055,12 @@ msgstr "Images et fichiers"
|
|||||||
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:700
|
#: lib/bds/desktop/shell_live/import_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:704
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:728
|
#: lib/bds/desktop/shell_live/import_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:742
|
#: lib/bds/desktop/shell_live/import_editor.ex:731
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:755
|
#: lib/bds/desktop/shell_live/import_editor.ex:745
|
||||||
|
#: lib/bds/desktop/shell_live/import_editor.ex:758
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
||||||
@@ -1087,12 +1087,12 @@ msgstr "Images et fichiers"
|
|||||||
msgid "Import"
|
msgid "Import"
|
||||||
msgstr "Importer"
|
msgstr "Importer"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:947
|
#: lib/bds/desktop/shell_live/import_editor.ex:950
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import %{count} Items"
|
msgid "Import %{count} Items"
|
||||||
msgstr "Importer %{count} éléments"
|
msgstr "Importer %{count} éléments"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1145
|
#: lib/bds/desktop/shell_live/import_editor.ex:1148
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import (new slug)"
|
msgid "Import (new slug)"
|
||||||
msgstr "Importer (nouveau slug)"
|
msgstr "Importer (nouveau slug)"
|
||||||
@@ -1107,8 +1107,8 @@ msgstr "Importer des médias"
|
|||||||
msgid "Import complete"
|
msgid "Import complete"
|
||||||
msgstr "Importation terminée"
|
msgstr "Importation terminée"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:729
|
#: lib/bds/desktop/shell_live/import_editor.ex:732
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:955
|
#: lib/bds/desktop/shell_live/import_editor.ex:958
|
||||||
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import completed successfully!"
|
msgid "Import completed successfully!"
|
||||||
@@ -1122,7 +1122,7 @@ msgstr "Import terminé : %{count}"
|
|||||||
msgid "Import definitions"
|
msgid "Import definitions"
|
||||||
msgstr "Définitions d’import"
|
msgstr "Définitions d’import"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:961
|
#: lib/bds/desktop/shell_live/import_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import failed: %{error}"
|
msgid "Import failed: %{error}"
|
||||||
msgstr "Échec de l’import : %{error}"
|
msgstr "Échec de l’import : %{error}"
|
||||||
@@ -1135,7 +1135,7 @@ msgstr "Échec de l’import : %{error}"
|
|||||||
msgid "Import media"
|
msgid "Import media"
|
||||||
msgstr "Importer des médias"
|
msgstr "Importer des médias"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:828
|
#: lib/bds/desktop/shell_live/import_editor.ex:831
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import name..."
|
msgid "Import name..."
|
||||||
msgstr "Nom de la définition d’import"
|
msgstr "Nom de la définition d’import"
|
||||||
@@ -1160,7 +1160,7 @@ msgstr "Importation des articles..."
|
|||||||
msgid "Importing tags & categories..."
|
msgid "Importing tags & categories..."
|
||||||
msgstr "Importation des étiquettes et catégories..."
|
msgstr "Importation des étiquettes et catégories..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:915
|
#: lib/bds/desktop/shell_live/import_editor.ex:918
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Importing..."
|
msgid "Importing..."
|
||||||
msgstr "Import en cours…"
|
msgstr "Import en cours…"
|
||||||
@@ -1196,15 +1196,15 @@ msgstr "Interne"
|
|||||||
msgid "Kind"
|
msgid "Kind"
|
||||||
msgstr "Type"
|
msgstr "Type"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
#: lib/bds/desktop/shell_live/import_editor.ex:877
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Langue"
|
msgstr "Langue"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:206
|
#: lib/bds/desktop/shell_live/media_editor.ex:210
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:683
|
#: lib/bds/desktop/shell_live/post_editor.ex:749
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language detection failed."
|
msgid "Language detection failed."
|
||||||
msgstr "La détection de la langue a échoué."
|
msgstr "La détection de la langue a échoué."
|
||||||
@@ -1214,7 +1214,7 @@ msgstr "La détection de la langue a échoué."
|
|||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Clair"
|
msgstr "Clair"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:252
|
#: lib/bds/desktop/shell_live/media_editor.ex:256
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Link to Post"
|
msgid "Link to Post"
|
||||||
@@ -1259,7 +1259,7 @@ msgstr "MCP"
|
|||||||
msgid "MIME Type"
|
msgid "MIME Type"
|
||||||
msgstr "Type MIME"
|
msgstr "Type MIME"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1044
|
#: lib/bds/desktop/shell_live/import_editor.ex:1047
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Macros (%{count})"
|
msgid "Macros (%{count})"
|
||||||
msgstr "Macros (%{count})"
|
msgstr "Macros (%{count})"
|
||||||
@@ -1277,18 +1277,18 @@ msgstr "Langue principale"
|
|||||||
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
||||||
msgstr "Gérez la structure centrale de navigation du blog et enregistrez-la dans meta/menu.opml."
|
msgstr "Gérez la structure centrale de navigation du blog et enregistrez-la dans meta/menu.opml."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1357
|
#: lib/bds/desktop/shell_live/import_editor.ex:1360
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1361
|
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Map to..."
|
msgid "Map to..."
|
||||||
msgstr "Mapper vers..."
|
msgstr "Mapper vers..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Mapped"
|
msgid "Mapped"
|
||||||
msgstr "Mappé"
|
msgstr "Mappé"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:902
|
#: lib/bds/desktop/shell_live/post_editor.ex:968
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Markdown"
|
msgid "Markdown"
|
||||||
@@ -1300,8 +1300,8 @@ msgid "Max Posts Per Page"
|
|||||||
msgstr "Nombre maximal d’articles par page"
|
msgstr "Nombre maximal d’articles par page"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:168
|
#: lib/bds/desktop/menu_bar.ex:168
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:494
|
#: lib/bds/desktop/shell_live/media_editor.ex:502
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
@@ -1313,12 +1313,12 @@ msgstr "Nombre maximal d’articles par page"
|
|||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr "Médias"
|
msgstr "Médias"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:986
|
#: lib/bds/desktop/shell_live/import_editor.ex:989
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media (%{count})"
|
msgid "Media (%{count})"
|
||||||
msgstr "Médias (%{count})"
|
msgstr "Médias (%{count})"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media saved"
|
msgid "Media saved"
|
||||||
msgstr "Média enregistré"
|
msgstr "Média enregistré"
|
||||||
@@ -1368,8 +1368,8 @@ msgstr "URLs manquantes"
|
|||||||
msgid "Mode"
|
msgid "Mode"
|
||||||
msgstr "Mode"
|
msgstr "Mode"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:875
|
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "N/A"
|
msgid "N/A"
|
||||||
msgstr "N/D"
|
msgstr "N/D"
|
||||||
@@ -1380,7 +1380,7 @@ msgstr "N/D"
|
|||||||
msgid "New Chat"
|
msgid "New Chat"
|
||||||
msgstr "Nouveau chat"
|
msgstr "Nouveau chat"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1127
|
#: lib/bds/desktop/shell_live/import_editor.ex:1130
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Entry (WXR)"
|
msgid "New Entry (WXR)"
|
||||||
msgstr "Nouvelle entrée (WXR)"
|
msgstr "Nouvelle entrée (WXR)"
|
||||||
@@ -1439,7 +1439,7 @@ msgstr "Aucune tâche d’arrière-plan en cours"
|
|||||||
msgid "No commit subject"
|
msgid "No commit subject"
|
||||||
msgstr "Pas de sujet de commit"
|
msgstr "Pas de sujet de commit"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:837
|
#: lib/bds/desktop/shell_live/import_editor.ex:840
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No folder selected"
|
msgid "No folder selected"
|
||||||
msgstr "Aucun dossier sélectionné"
|
msgstr "Aucun dossier sélectionné"
|
||||||
@@ -1571,7 +1571,7 @@ msgstr "Lié à aucun article"
|
|||||||
msgid "Not supported in the rewrite yet"
|
msgid "Not supported in the rewrite yet"
|
||||||
msgstr "Pas encore pris en charge dans la réécriture"
|
msgstr "Pas encore pris en charge dans la réécriture"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:945
|
#: lib/bds/desktop/shell_live/import_editor.ex:948
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to Import"
|
msgid "Nothing to Import"
|
||||||
msgstr "Rien à importer"
|
msgstr "Rien à importer"
|
||||||
@@ -1667,7 +1667,7 @@ msgstr "Support d'images en ligne"
|
|||||||
msgid "Online Title Model"
|
msgid "Online Title Model"
|
||||||
msgstr "Modèle de titres en ligne"
|
msgstr "Modèle de titres en ligne"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:839
|
#: lib/bds/desktop/shell_live/import_editor.ex:842
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@@ -1711,12 +1711,12 @@ msgstr "Ordre"
|
|||||||
msgid "Orphan Files"
|
msgid "Orphan Files"
|
||||||
msgstr "Fichiers orphelins"
|
msgstr "Fichiers orphelins"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:886
|
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr "Autre"
|
msgstr "Autre"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:978
|
#: lib/bds/desktop/shell_live/import_editor.ex:981
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other (%{count})"
|
msgid "Other (%{count})"
|
||||||
msgstr "Autres (%{count})"
|
msgstr "Autres (%{count})"
|
||||||
@@ -1733,7 +1733,7 @@ msgstr "Sortie"
|
|||||||
msgid "Overview of your blog database"
|
msgid "Overview of your blog database"
|
||||||
msgstr "Aperçu de la base de données de votre blog"
|
msgstr "Aperçu de la base de données de votre blog"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1144
|
#: lib/bds/desktop/shell_live/import_editor.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Overwrite"
|
msgid "Overwrite"
|
||||||
msgstr "Écraser"
|
msgstr "Écraser"
|
||||||
@@ -1743,7 +1743,7 @@ msgstr "Écraser"
|
|||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Page"
|
msgstr "Page"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:970
|
#: lib/bds/desktop/shell_live/import_editor.ex:973
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Page Slug Conflicts"
|
msgid "Page Slug Conflicts"
|
||||||
msgstr "Conflits de slug de page"
|
msgstr "Conflits de slug de page"
|
||||||
@@ -1754,7 +1754,7 @@ msgstr "Conflits de slug de page"
|
|||||||
msgid "Pages"
|
msgid "Pages"
|
||||||
msgstr "Pages"
|
msgstr "Pages"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:982
|
#: lib/bds/desktop/shell_live/import_editor.ex:985
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pages (%{count})"
|
msgid "Pages (%{count})"
|
||||||
msgstr "Pages (%{count})"
|
msgstr "Pages (%{count})"
|
||||||
@@ -1774,7 +1774,7 @@ msgstr "Analyse du fichier WXR..."
|
|||||||
msgid "Paste"
|
msgid "Paste"
|
||||||
msgstr "Coller"
|
msgstr "Coller"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
#: lib/bds/desktop/shell_live/import_editor.ex:1235
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
@@ -1786,16 +1786,16 @@ msgid "Persist the detected language for this media item"
|
|||||||
msgstr "Enregistrer la langue détectée pour ce média"
|
msgstr "Enregistrer la langue détectée pour ce média"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:483
|
#: lib/bds/desktop/shell_live/post_editor.ex:492
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:522
|
#: lib/bds/desktop/shell_live/post_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:557
|
#: lib/bds/desktop/shell_live/post_editor.ex:573
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:572
|
#: lib/bds/desktop/shell_live/post_editor.ex:588
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:604
|
#: lib/bds/desktop/shell_live/post_editor.ex:620
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:637
|
#: lib/bds/desktop/shell_live/post_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
||||||
#: lib/bds/ui/registry.ex:99
|
#: lib/bds/ui/registry.ex:99
|
||||||
@@ -1810,7 +1810,7 @@ msgstr "Article"
|
|||||||
msgid "Post Links"
|
msgid "Post Links"
|
||||||
msgstr "Liens d'articles"
|
msgstr "Liens d'articles"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:966
|
#: lib/bds/desktop/shell_live/import_editor.ex:969
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post Slug Conflicts"
|
msgid "Post Slug Conflicts"
|
||||||
msgstr "Conflits de slug d’article"
|
msgstr "Conflits de slug d’article"
|
||||||
@@ -1825,12 +1825,12 @@ msgstr "Modèle d’article"
|
|||||||
msgid "Post is marked as do-not-translate but has translations"
|
msgid "Post is marked as do-not-translate but has translations"
|
||||||
msgstr "L'article est marqué ne-pas-traduire mais a des traductions"
|
msgstr "L'article est marqué ne-pas-traduire mais a des traductions"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post published"
|
msgid "Post published"
|
||||||
msgstr "Article publié"
|
msgstr "Article publié"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post saved"
|
msgid "Post saved"
|
||||||
msgstr "Article enregistré"
|
msgstr "Article enregistré"
|
||||||
@@ -1844,7 +1844,7 @@ msgstr "Article enregistré"
|
|||||||
msgid "Posts"
|
msgid "Posts"
|
||||||
msgstr "Articles"
|
msgstr "Articles"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:974
|
#: lib/bds/desktop/shell_live/import_editor.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Posts (%{count})"
|
msgid "Posts (%{count})"
|
||||||
msgstr "Articles (%{count})"
|
msgstr "Articles (%{count})"
|
||||||
@@ -1854,7 +1854,7 @@ msgstr "Articles (%{count})"
|
|||||||
msgid "Preferences"
|
msgid "Preferences"
|
||||||
msgstr "Préférences"
|
msgstr "Préférences"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:903
|
#: lib/bds/desktop/shell_live/post_editor.ex:969
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
@@ -1923,8 +1923,8 @@ msgid "Publish Selected"
|
|||||||
msgstr "Publier la sélection"
|
msgstr "Publier la sélection"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:181
|
#: lib/bds/desktop/shell_data.ex:181
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:897
|
#: lib/bds/desktop/shell_live/post_editor.ex:963
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:459
|
||||||
#: lib/bds/ui/sidebar.ex:324
|
#: lib/bds/ui/sidebar.ex:324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published"
|
msgid "Published"
|
||||||
@@ -1955,7 +1955,7 @@ msgstr "Actions rapides"
|
|||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr "Quitter"
|
msgstr "Quitter"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:936
|
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ready to import:"
|
msgid "Ready to import:"
|
||||||
msgstr "Prêt à importer :"
|
msgstr "Prêt à importer :"
|
||||||
@@ -2022,8 +2022,8 @@ msgstr "Actualiser les modèles hors ligne"
|
|||||||
msgid "Refresh Online Models"
|
msgid "Refresh Online Models"
|
||||||
msgstr "Actualiser les modèles en ligne"
|
msgstr "Actualiser les modèles en ligne"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:364
|
#: lib/bds/desktop/shell_live/media_editor.ex:368
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:373
|
#: lib/bds/desktop/shell_live/media_editor.ex:377
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Refresh Translation"
|
msgid "Refresh Translation"
|
||||||
msgstr "Actualiser la traduction"
|
msgstr "Actualiser la traduction"
|
||||||
@@ -2079,8 +2079,8 @@ msgstr "Afficher dans les listes"
|
|||||||
msgid "Replace"
|
msgid "Replace"
|
||||||
msgstr "Remplacer"
|
msgstr "Remplacer"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:138
|
#: lib/bds/desktop/shell_live/media_editor.ex:142
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:146
|
#: lib/bds/desktop/shell_live/media_editor.ex:150
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Replace File"
|
msgid "Replace File"
|
||||||
@@ -2111,17 +2111,17 @@ msgstr "Réinitialiser par défaut"
|
|||||||
msgid "Reset to Defaults"
|
msgid "Reset to Defaults"
|
||||||
msgstr "Réinitialiser par défaut"
|
msgstr "Réinitialiser par défaut"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
#: lib/bds/desktop/shell_live/import_editor.ex:1132
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Resolution"
|
msgid "Resolution"
|
||||||
msgstr "Résolution"
|
msgstr "Résolution"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:597
|
#: lib/bds/desktop/shell_live/chat_editor.ex:602
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Résultat"
|
msgstr "Résultat"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:898
|
#: lib/bds/desktop/shell_live/post_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reverted"
|
msgid "Reverted"
|
||||||
msgstr "Restauré"
|
msgstr "Restauré"
|
||||||
@@ -2167,13 +2167,13 @@ msgstr "Mode SSH"
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Enregistrer"
|
msgstr "Enregistrer"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:324
|
#: lib/bds/desktop/shell_live/media_editor.ex:328
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save Translation"
|
msgid "Save Translation"
|
||||||
msgstr "Enregistrer la traduction"
|
msgstr "Enregistrer la traduction"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:702
|
#: lib/bds/desktop/shell_live/media_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:896
|
#: lib/bds/desktop/shell_live/post_editor.ex:962
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Enregistré"
|
msgstr "Enregistré"
|
||||||
@@ -2264,7 +2264,7 @@ msgstr "Rechercher des articles..."
|
|||||||
msgid "Search settings"
|
msgid "Search settings"
|
||||||
msgstr "Rechercher dans les paramètres"
|
msgstr "Rechercher dans les paramètres"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:847
|
#: lib/bds/desktop/shell_live/import_editor.ex:850
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select & Analyze"
|
msgid "Select & Analyze"
|
||||||
msgstr "Sélectionner et analyser"
|
msgstr "Sélectionner et analyser"
|
||||||
@@ -2279,19 +2279,19 @@ msgstr "Tout sélectionner"
|
|||||||
msgid "Select Page"
|
msgid "Select Page"
|
||||||
msgstr "Sélectionner une page"
|
msgstr "Sélectionner une page"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:646
|
#: lib/bds/desktop/shell_live/import_editor.ex:649
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
#: lib/bds/desktop/shell_live/import_editor.ex:833
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
||||||
msgstr "Analysez un fichier WXR avant import."
|
msgstr "Analysez un fichier WXR avant import."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1099
|
#: lib/bds/desktop/shell_live/import_editor.ex:1102
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file to begin analysis."
|
msgid "Select a WordPress export file to begin analysis."
|
||||||
msgstr "Sélectionnez un fichier WXR et lancez l’analyse."
|
msgstr "Sélectionnez un fichier WXR et lancez l’analyse."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:845
|
#: lib/bds/desktop/shell_live/import_editor.ex:848
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a file to analyze"
|
msgid "Select a file to analyze"
|
||||||
msgstr "Sélectionnez un fichier à analyser"
|
msgstr "Sélectionnez un fichier à analyser"
|
||||||
@@ -2345,7 +2345,7 @@ msgstr "Afficher les titres"
|
|||||||
msgid "Side by Side"
|
msgid "Side by Side"
|
||||||
msgstr "Côte à côte"
|
msgstr "Côte à côte"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:866
|
#: lib/bds/desktop/shell_live/import_editor.ex:869
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Site"
|
msgstr "Site"
|
||||||
@@ -2371,8 +2371,8 @@ msgstr "Rendu du site"
|
|||||||
msgid "Size"
|
msgid "Size"
|
||||||
msgstr "Taille"
|
msgstr "Taille"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1126
|
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
||||||
@@ -2395,14 +2395,14 @@ msgstr "Pages autonomes"
|
|||||||
msgid "Start chat"
|
msgid "Start chat"
|
||||||
msgstr "Démarrer la conversation"
|
msgstr "Démarrer la conversation"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:921
|
#: lib/bds/desktop/shell_live/import_editor.ex:924
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Starting..."
|
msgid "Starting..."
|
||||||
msgstr "Démarrage..."
|
msgstr "Démarrage..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:115
|
#: lib/bds/desktop/shell_data.ex:115
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1178
|
#: lib/bds/desktop/shell_live/import_editor.ex:1181
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1229
|
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Statut"
|
msgstr "Statut"
|
||||||
@@ -2462,8 +2462,8 @@ msgstr "Gestion des tags"
|
|||||||
msgid "Tag name"
|
msgid "Tag name"
|
||||||
msgstr "Nom du mot-clé"
|
msgstr "Nom du mot-clé"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
#: lib/bds/desktop/shell_live/import_editor.ex:894
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1028
|
#: lib/bds/desktop/shell_live/import_editor.ex:1031
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:297
|
#: lib/bds/desktop/shell_live/index.html.heex:297
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:325
|
#: lib/bds/desktop/shell_live/index.html.heex:325
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
||||||
@@ -2572,7 +2572,7 @@ msgstr "Cet agent MCP n'est pas encore pris en charge dans la réécriture"
|
|||||||
msgid "This item is referenced by:"
|
msgid "This item is referenced by:"
|
||||||
msgstr "Cet element est reference par :"
|
msgstr "Cet element est reference par :"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1182
|
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
||||||
@@ -2643,14 +2643,14 @@ msgstr "Afficher ou masquer le panneau"
|
|||||||
msgid "Toggle sidebar"
|
msgid "Toggle sidebar"
|
||||||
msgstr "Afficher ou masquer la barre latérale"
|
msgstr "Afficher ou masquer la barre latérale"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:348
|
#: lib/bds/desktop/shell_live/media_editor.ex:352
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:537
|
#: lib/bds/desktop/shell_live/media_editor.ex:545
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:558
|
#: lib/bds/desktop/shell_live/media_editor.ex:566
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:563
|
#: lib/bds/desktop/shell_live/media_editor.ex:571
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:696
|
#: lib/bds/desktop/shell_live/post_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:725
|
#: lib/bds/desktop/shell_live/post_editor.ex:791
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:730
|
#: lib/bds/desktop/shell_live/post_editor.ex:796
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Translate"
|
msgid "Translate"
|
||||||
@@ -2682,8 +2682,8 @@ msgstr "La traduction pointe vers un article source manquant"
|
|||||||
msgid "Translations"
|
msgid "Translations"
|
||||||
msgstr "Traductions"
|
msgstr "Traductions"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1180
|
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1231
|
#: lib/bds/desktop/shell_live/import_editor.ex:1234
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr "Type"
|
msgstr "Type"
|
||||||
@@ -2703,7 +2703,7 @@ msgstr "Saisissez un titre de page ou un libellé de sous-menu"
|
|||||||
msgid "UI"
|
msgid "UI"
|
||||||
msgstr "UI"
|
msgstr "UI"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
#: lib/bds/desktop/shell_live/import_editor.ex:873
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "URL"
|
msgid "URL"
|
||||||
@@ -2714,26 +2714,26 @@ msgstr "URL"
|
|||||||
msgid "Undo"
|
msgid "Undo"
|
||||||
msgstr "Annuler"
|
msgstr "Annuler"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1004
|
#: lib/bds/desktop/shell_live/import_editor.ex:1007
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Inconnu"
|
msgstr "Inconnu"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:265
|
#: lib/bds/desktop/shell_live/media_editor.ex:269
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unlink from Post"
|
msgid "Unlink from Post"
|
||||||
msgstr "Dissocier de l'article"
|
msgstr "Dissocier de l'article"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:701
|
#: lib/bds/desktop/shell_live/media_editor.ex:709
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:895
|
#: lib/bds/desktop/shell_live/post_editor.ex:961
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unsaved"
|
msgid "Unsaved"
|
||||||
msgstr "Non enregistré"
|
msgstr "Non enregistré"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:867
|
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
||||||
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1116
|
#: lib/bds/ui/sidebar.ex:1116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2741,13 +2741,13 @@ msgid "Untitled"
|
|||||||
msgstr "Sans titre"
|
msgstr "Sans titre"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:827
|
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled Import"
|
msgid "Untitled Import"
|
||||||
msgstr "Import sans titre"
|
msgstr "Import sans titre"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:454
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:457
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2765,13 +2765,13 @@ msgid "Upload Site"
|
|||||||
msgstr "Téléverser le site"
|
msgstr "Téléverser le site"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:835
|
#: lib/bds/desktop/shell_live/import_editor.ex:838
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Uploads Folder"
|
msgid "Uploads Folder"
|
||||||
msgstr "Dossier d’uploads"
|
msgstr "Dossier d’uploads"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used in: %{items}%{more}"
|
msgid "Used in: %{items}%{more}"
|
||||||
msgstr "Utilisé dans : %{items}%{more}"
|
msgstr "Utilisé dans : %{items}%{more}"
|
||||||
@@ -2811,13 +2811,13 @@ msgstr "Affichage"
|
|||||||
msgid "View on GitHub"
|
msgid "View on GitHub"
|
||||||
msgstr "Voir sur GitHub"
|
msgstr "Voir sur GitHub"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
#: lib/bds/desktop/shell_live/import_editor.ex:1188
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WP Status"
|
msgid "WP Status"
|
||||||
msgstr "Statut WP"
|
msgstr "Statut WP"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:843
|
#: lib/bds/desktop/shell_live/import_editor.ex:846
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WXR File"
|
msgid "WXR File"
|
||||||
@@ -2844,7 +2844,7 @@ msgstr "Arbre de travail et historique"
|
|||||||
msgid "Wrap Long Lines"
|
msgid "Wrap Long Lines"
|
||||||
msgstr "Renvoyer les longues lignes"
|
msgstr "Renvoyer les longues lignes"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:530
|
#: lib/bds/desktop/shell_live/chat_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You"
|
msgid "You"
|
||||||
@@ -2870,8 +2870,8 @@ msgstr "ajouter"
|
|||||||
msgid "and %{count} more"
|
msgid "and %{count} more"
|
||||||
msgstr "et %{count} de plus"
|
msgstr "et %{count} de plus"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1265
|
#: lib/bds/desktop/shell_live/import_editor.ex:1268
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1302
|
#: lib/bds/desktop/shell_live/import_editor.ex:1305
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "conflict"
|
msgid "conflict"
|
||||||
msgstr "conflit"
|
msgstr "conflit"
|
||||||
@@ -2901,8 +2901,8 @@ msgstr "%{count} images"
|
|||||||
msgid "dashboard.stats.published"
|
msgid "dashboard.stats.published"
|
||||||
msgstr "%{count} publiés"
|
msgstr "%{count} publiés"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
#: lib/bds/desktop/shell_live/import_editor.ex:1269
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
#: lib/bds/desktop/shell_live/import_editor.ex:1306
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "duplicate"
|
msgid "duplicate"
|
||||||
msgstr "doublon"
|
msgstr "doublon"
|
||||||
@@ -2912,7 +2912,7 @@ msgstr "doublon"
|
|||||||
msgid "edit"
|
msgid "edit"
|
||||||
msgstr "modifier"
|
msgstr "modifier"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1320
|
#: lib/bds/desktop/shell_live/import_editor.ex:1323
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "existing"
|
msgid "existing"
|
||||||
msgstr "existant"
|
msgstr "existant"
|
||||||
@@ -2922,13 +2922,13 @@ msgstr "existant"
|
|||||||
msgid "gitDiff.changedFiles"
|
msgid "gitDiff.changedFiles"
|
||||||
msgstr "Fichiers modifiés"
|
msgstr "Fichiers modifiés"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1321
|
#: lib/bds/desktop/shell_live/import_editor.ex:1324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "mapped"
|
msgid "mapped"
|
||||||
msgstr "mappé"
|
msgstr "mappé"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
#: lib/bds/desktop/shell_live/import_editor.ex:892
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
#: lib/bds/desktop/shell_live/import_editor.ex:942
|
||||||
#: lib/bds/ui/workbench.ex:213
|
#: lib/bds/ui/workbench.ex:213
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "media"
|
msgid "media"
|
||||||
@@ -2986,26 +2986,26 @@ msgstr "Enregistrer"
|
|||||||
msgid "menuEditor.unindent"
|
msgid "menuEditor.unindent"
|
||||||
msgstr "Désindenter"
|
msgstr "Désindenter"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
#: lib/bds/desktop/shell_live/import_editor.ex:1307
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "missing"
|
msgid "missing"
|
||||||
msgstr "manquant"
|
msgstr "manquant"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1263
|
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1300
|
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1322
|
#: lib/bds/desktop/shell_live/import_editor.ex:1325
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "new"
|
msgid "new"
|
||||||
msgstr "nouveau"
|
msgstr "nouveau"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:888
|
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
#: lib/bds/desktop/shell_live/import_editor.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "pages"
|
msgid "pages"
|
||||||
msgstr "pages"
|
msgstr "pages"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:884
|
#: lib/bds/desktop/shell_live/import_editor.ex:887
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:938
|
#: lib/bds/desktop/shell_live/import_editor.ex:941
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "posts"
|
msgid "posts"
|
||||||
msgstr "articles"
|
msgstr "articles"
|
||||||
@@ -3022,7 +3022,7 @@ msgstr "résultats"
|
|||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr "résultats pour"
|
msgstr "résultats pour"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:937
|
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "tags/categories"
|
msgid "tags/categories"
|
||||||
msgstr "tags/catégories"
|
msgstr "tags/catégories"
|
||||||
@@ -3086,8 +3086,8 @@ msgstr "Aucune entrée trouvée dans le système de fichiers"
|
|||||||
msgid "translationValidation.revalidate"
|
msgid "translationValidation.revalidate"
|
||||||
msgstr "Revalider"
|
msgstr "Revalider"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1264
|
#: lib/bds/desktop/shell_live/import_editor.ex:1267
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1301
|
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "update"
|
msgid "update"
|
||||||
msgstr "mise à jour"
|
msgstr "mise à jour"
|
||||||
@@ -3228,12 +3228,12 @@ msgstr "Archiver"
|
|||||||
msgid "Move this post to the archive"
|
msgid "Move this post to the archive"
|
||||||
msgstr "Déplacer cet article dans les archives"
|
msgstr "Déplacer cet article dans les archives"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post archived"
|
msgid "Post archived"
|
||||||
msgstr "Article archivé"
|
msgstr "Article archivé"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post unarchived"
|
msgid "Post unarchived"
|
||||||
msgstr "Article désarchivé"
|
msgstr "Article désarchivé"
|
||||||
@@ -3411,3 +3411,19 @@ msgstr "Blogmark"
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open a project before importing a blogmark."
|
msgid "Open a project before importing a blogmark."
|
||||||
msgstr "Ouvrez un projet avant d’importer un blogmark."
|
msgstr "Ouvrez un projet avant d’importer un blogmark."
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:643
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Added %{name}"
|
||||||
|
msgstr "%{name} ajouté"
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:650
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Failed to import %{path}: %{reason}"
|
||||||
|
msgstr "Échec de l'import de %{path} : %{reason}"
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:642
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:649
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Insert Image"
|
||||||
|
msgstr "Insérer une image"
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ msgid "%{canonical} = %{translation}"
|
|||||||
msgstr "%{canonical} = %{translation}"
|
msgstr "%{canonical} = %{translation}"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1050
|
#: lib/bds/desktop/shell_live/import_editor.ex:1053
|
||||||
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} mapped"
|
msgid "%{count} mapped"
|
||||||
@@ -17,13 +17,13 @@ msgid_plural "%{count} posts"
|
|||||||
msgstr[0] "%{count} post"
|
msgstr[0] "%{count} post"
|
||||||
msgstr[1] "%{count} post"
|
msgstr[1] "%{count} post"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1051
|
#: lib/bds/desktop/shell_live/import_editor.ex:1054
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} unmapped"
|
msgid "%{count} unmapped"
|
||||||
msgstr "%{count} non mappati"
|
msgstr "%{count} non mappati"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1061
|
#: lib/bds/desktop/shell_live/import_editor.ex:1064
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
#: lib/bds/desktop/shell_live/import_editor.ex:1079
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} uses"
|
msgid "%{count} uses"
|
||||||
msgstr "%{count} utilizzi"
|
msgstr "%{count} utilizzi"
|
||||||
@@ -38,22 +38,22 @@ msgstr "%{count}s"
|
|||||||
msgid "%{minutes}m %{seconds}s"
|
msgid "%{minutes}m %{seconds}s"
|
||||||
msgstr "%{minutes}m %{seconds}s"
|
msgstr "%{minutes}m %{seconds}s"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1073
|
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "(no parameters)"
|
msgid "(no parameters)"
|
||||||
msgstr "(nessun parametro)"
|
msgstr "(nessun parametro)"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid ", +%{count} more"
|
msgid ", +%{count} more"
|
||||||
msgstr ", +%{count} altri"
|
msgstr ", +%{count} altri"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1137
|
#: lib/bds/desktop/shell_live/import_editor.ex:1140
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1199
|
#: lib/bds/desktop/shell_live/import_editor.ex:1202
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1200
|
#: lib/bds/desktop/shell_live/import_editor.ex:1203
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1241
|
#: lib/bds/desktop/shell_live/import_editor.ex:1244
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1243
|
#: lib/bds/desktop/shell_live/import_editor.ex:1246
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1427
|
#: lib/bds/desktop/shell_live/import_editor.ex:1430
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "--"
|
msgid "--"
|
||||||
msgstr "--"
|
msgstr "--"
|
||||||
@@ -79,7 +79,7 @@ msgstr "Impostazioni IA"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
||||||
#: 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:781
|
#: lib/bds/desktop/shell_live/post_editor.ex:847
|
||||||
#: 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
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
@@ -94,7 +94,7 @@ msgstr "Suggerimenti IA"
|
|||||||
msgid "AI conversations"
|
msgid "AI conversations"
|
||||||
msgstr "Conversazioni IA"
|
msgstr "Conversazioni IA"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1015
|
#: lib/bds/desktop/shell_live/import_editor.ex:1018
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
||||||
msgstr "L’IA suggerirà mappature da elementi nuovi a quelli esistenti per evitare duplicati"
|
msgstr "L’IA suggerirà mappature da elementi nuovi a quelli esistenti per evitare duplicati"
|
||||||
@@ -173,14 +173,14 @@ msgstr "Testo alternativo"
|
|||||||
msgid "Analysis complete"
|
msgid "Analysis complete"
|
||||||
msgstr "Analisi completata"
|
msgstr "Analisi completata"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:668
|
#: lib/bds/desktop/shell_live/import_editor.ex:671
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:999
|
#: lib/bds/desktop/shell_live/import_editor.ex:1002
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyze with..."
|
msgid "Analyze with..."
|
||||||
msgstr "Analizza con..."
|
msgstr "Analizza con..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:855
|
#: lib/bds/desktop/shell_live/import_editor.ex:858
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyzing WXR file..."
|
msgid "Analyzing WXR file..."
|
||||||
@@ -227,7 +227,7 @@ msgstr "Applica tema"
|
|||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr "Archiviato"
|
msgstr "Archiviato"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:594
|
#: lib/bds/desktop/shell_live/chat_editor.ex:599
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr "Argomenti"
|
msgstr "Argomenti"
|
||||||
@@ -237,7 +237,7 @@ msgstr "Argomenti"
|
|||||||
msgid "Ask the assistant about the active project or editor."
|
msgid "Ask the assistant about the active project or editor."
|
||||||
msgstr "Chiedi all’assistente del progetto o editor attivo."
|
msgstr "Chiedi all’assistente del progetto o editor attivo."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:531
|
#: lib/bds/desktop/shell_live/chat_editor.ex:536
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
||||||
@@ -258,13 +258,13 @@ msgstr "Automatico"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:98
|
#: lib/bds/desktop/shell_data.ex:98
|
||||||
#: lib/bds/desktop/shell_live.ex:431
|
#: lib/bds/desktop/shell_live.ex:431
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:231
|
#: lib/bds/desktop/shell_live/chat_editor.ex:234
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:156
|
#: lib/bds/desktop/shell_live/media_editor.ex:160
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:349
|
#: lib/bds/desktop/shell_live/media_editor.ex:353
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:538
|
#: lib/bds/desktop/shell_live/media_editor.ex:546
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:648
|
#: lib/bds/desktop/shell_live/post_editor.ex:714
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:697
|
#: lib/bds/desktop/shell_live/post_editor.ex:763
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Automatic AI actions stay gated by airplane mode."
|
msgid "Automatic AI actions stay gated by airplane mode."
|
||||||
msgstr "Le azioni IA automatiche restano bloccate dalla modalità aereo."
|
msgstr "Le azioni IA automatiche restano bloccate dalla modalità aereo."
|
||||||
@@ -337,7 +337,7 @@ msgstr "Categoria blogmark"
|
|||||||
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
||||||
msgstr "La copia del bookmarklet è collegata tramite il runtime desktop e l’URL pubblica del progetto."
|
msgstr "La copia del bookmarklet è collegata tramite il runtime desktop e l’URL pubblica del progetto."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1362
|
#: lib/bds/desktop/shell_live/import_editor.ex:1365
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
||||||
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
||||||
@@ -361,9 +361,9 @@ msgstr "Annulla"
|
|||||||
msgid "Caption"
|
msgid "Caption"
|
||||||
msgstr "Didascalia"
|
msgstr "Didascalia"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:890
|
#: lib/bds/desktop/shell_live/import_editor.ex:893
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1020
|
#: lib/bds/desktop/shell_live/import_editor.ex:1023
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1184
|
#: lib/bds/desktop/shell_live/import_editor.ex:1187
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:336
|
#: lib/bds/desktop/shell_live/index.html.heex:336
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
||||||
@@ -379,7 +379,7 @@ msgstr "Didascalia"
|
|||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr "Categorie"
|
msgstr "Categorie"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:992
|
#: lib/bds/desktop/shell_live/import_editor.ex:995
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Categories & Tags"
|
msgid "Categories & Tags"
|
||||||
msgstr "Categorie & Tag"
|
msgstr "Categorie & Tag"
|
||||||
@@ -406,8 +406,8 @@ msgstr "Il nome della categoria è obbligatorio"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:979
|
#: lib/bds/desktop/shell_live.ex:979
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:230
|
#: lib/bds/desktop/shell_live/chat_editor.ex:233
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:318
|
#: lib/bds/desktop/shell_live/chat_editor.ex:323
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:503
|
#: lib/bds/desktop/shell_live/index.html.heex:503
|
||||||
#: lib/bds/ui/registry.ex:104
|
#: lib/bds/ui/registry.ex:104
|
||||||
@@ -444,8 +444,8 @@ msgstr "Cancella categorie"
|
|||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr "Cancella filtri"
|
msgstr "Cancella filtri"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
#: lib/bds/desktop/shell_live/import_editor.ex:1367
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1395
|
#: lib/bds/desktop/shell_live/import_editor.ex:1398
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear mapping"
|
msgid "Clear mapping"
|
||||||
msgstr "Cancella mappatura"
|
msgstr "Cancella mappatura"
|
||||||
@@ -488,7 +488,7 @@ msgstr "Comprimi i blocchi diff invariati"
|
|||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr "Comando completato"
|
msgstr "Comando completato"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:927
|
#: lib/bds/desktop/shell_live/chat_editor.ex:932
|
||||||
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Configure an API key in Settings to enable AI chat."
|
msgid "Configure an API key in Settings to enable AI chat."
|
||||||
@@ -558,7 +558,7 @@ msgstr "Crea categoria"
|
|||||||
msgid "Create tag"
|
msgid "Create tag"
|
||||||
msgstr "Crea tag"
|
msgstr "Crea tag"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:453
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -604,7 +604,7 @@ msgstr "Manutenzione dati"
|
|||||||
msgid "Data Path"
|
msgid "Data Path"
|
||||||
msgstr "Percorso dati"
|
msgstr "Percorso dati"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:896
|
#: lib/bds/desktop/shell_live/import_editor.ex:899
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date Distribution"
|
msgid "Date Distribution"
|
||||||
msgstr "Distribuzione per data"
|
msgstr "Distribuzione per data"
|
||||||
@@ -660,7 +660,7 @@ msgstr "Elimina"
|
|||||||
msgid "Delete Media"
|
msgid "Delete Media"
|
||||||
msgstr "Elimina media"
|
msgstr "Elimina media"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:392
|
#: lib/bds/desktop/shell_live/media_editor.ex:396
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete Translation"
|
msgid "Delete Translation"
|
||||||
msgstr "Elimina traduzione"
|
msgstr "Elimina traduzione"
|
||||||
@@ -701,14 +701,14 @@ msgstr "Runtime desktop"
|
|||||||
msgid "Detect"
|
msgid "Detect"
|
||||||
msgstr "Rileva"
|
msgstr "Rileva"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:155
|
#: lib/bds/desktop/shell_live/media_editor.ex:159
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:194
|
#: lib/bds/desktop/shell_live/media_editor.ex:198
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:199
|
#: lib/bds/desktop/shell_live/media_editor.ex:203
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:205
|
#: lib/bds/desktop/shell_live/media_editor.ex:209
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:647
|
#: lib/bds/desktop/shell_live/post_editor.ex:713
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:676
|
#: lib/bds/desktop/shell_live/post_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:682
|
#: lib/bds/desktop/shell_live/post_editor.ex:748
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Detect Language"
|
msgid "Detect Language"
|
||||||
msgstr "Rileva lingua"
|
msgstr "Rileva lingua"
|
||||||
@@ -764,7 +764,7 @@ msgstr "Ignora"
|
|||||||
msgid "Dismiss Checked"
|
msgid "Dismiss Checked"
|
||||||
msgstr "Ignora selezionati"
|
msgstr "Ignora selezionati"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:618
|
#: lib/bds/desktop/shell_live/chat_editor.ex:623
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Dismiss surface"
|
msgid "Dismiss surface"
|
||||||
msgstr "Chiudi superficie"
|
msgstr "Chiudi superficie"
|
||||||
@@ -902,13 +902,13 @@ msgstr "Corrispondenza esatta"
|
|||||||
msgid "Excerpt"
|
msgid "Excerpt"
|
||||||
msgstr "Estratto"
|
msgstr "Estratto"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1128
|
#: lib/bds/desktop/shell_live/import_editor.ex:1131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Entry"
|
msgid "Existing Entry"
|
||||||
msgstr "Voce esistente"
|
msgstr "Voce esistente"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
#: lib/bds/desktop/shell_live/import_editor.ex:1189
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
#: lib/bds/desktop/shell_live/import_editor.ex:1236
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Match"
|
msgid "Existing Match"
|
||||||
msgstr "Corrispondenza esistente"
|
msgstr "Corrispondenza esistente"
|
||||||
@@ -924,7 +924,7 @@ msgid "Extra URLs"
|
|||||||
msgstr "URL aggiuntivi"
|
msgstr "URL aggiuntivi"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:144
|
#: lib/bds/desktop/menu_bar.ex:144
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
#: lib/bds/desktop/shell_live/import_editor.ex:881
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "File"
|
msgid "File"
|
||||||
@@ -940,7 +940,7 @@ msgstr "Nome file"
|
|||||||
msgid "File to DB"
|
msgid "File to DB"
|
||||||
msgstr "File su DB"
|
msgstr "File su DB"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1230
|
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Filename"
|
msgid "Filename"
|
||||||
msgstr "Nome file"
|
msgstr "Nome file"
|
||||||
@@ -1032,13 +1032,13 @@ msgstr "Host"
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:116
|
#: lib/bds/desktop/shell_data.ex:116
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:666
|
#: lib/bds/desktop/shell_live/index.html.heex:666
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:703
|
#: lib/bds/desktop/shell_live/media_editor.ex:711
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:899
|
#: lib/bds/desktop/shell_live/post_editor.ex:965
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Idle"
|
msgid "Idle"
|
||||||
msgstr "Inattivo"
|
msgstr "Inattivo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1143
|
#: lib/bds/desktop/shell_live/import_editor.ex:1146
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr "Ignora"
|
msgstr "Ignora"
|
||||||
@@ -1055,12 +1055,12 @@ msgstr "Immagini e file"
|
|||||||
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:700
|
#: lib/bds/desktop/shell_live/import_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:704
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:728
|
#: lib/bds/desktop/shell_live/import_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:742
|
#: lib/bds/desktop/shell_live/import_editor.ex:731
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:755
|
#: lib/bds/desktop/shell_live/import_editor.ex:745
|
||||||
|
#: lib/bds/desktop/shell_live/import_editor.ex:758
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
||||||
@@ -1087,12 +1087,12 @@ msgstr "Immagini e file"
|
|||||||
msgid "Import"
|
msgid "Import"
|
||||||
msgstr "Importa"
|
msgstr "Importa"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:947
|
#: lib/bds/desktop/shell_live/import_editor.ex:950
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import %{count} Items"
|
msgid "Import %{count} Items"
|
||||||
msgstr "Importa %{count} elementi"
|
msgstr "Importa %{count} elementi"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1145
|
#: lib/bds/desktop/shell_live/import_editor.ex:1148
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import (new slug)"
|
msgid "Import (new slug)"
|
||||||
msgstr "Importa (nuovo slug)"
|
msgstr "Importa (nuovo slug)"
|
||||||
@@ -1107,8 +1107,8 @@ msgstr "Importa media"
|
|||||||
msgid "Import complete"
|
msgid "Import complete"
|
||||||
msgstr "Importazione completata"
|
msgstr "Importazione completata"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:729
|
#: lib/bds/desktop/shell_live/import_editor.ex:732
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:955
|
#: lib/bds/desktop/shell_live/import_editor.ex:958
|
||||||
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import completed successfully!"
|
msgid "Import completed successfully!"
|
||||||
@@ -1122,7 +1122,7 @@ msgstr "Importazione completata: %{count}"
|
|||||||
msgid "Import definitions"
|
msgid "Import definitions"
|
||||||
msgstr "Definizioni di importazione"
|
msgstr "Definizioni di importazione"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:961
|
#: lib/bds/desktop/shell_live/import_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import failed: %{error}"
|
msgid "Import failed: %{error}"
|
||||||
msgstr "Importazione non riuscita: %{error}"
|
msgstr "Importazione non riuscita: %{error}"
|
||||||
@@ -1135,7 +1135,7 @@ msgstr "Importazione non riuscita: %{error}"
|
|||||||
msgid "Import media"
|
msgid "Import media"
|
||||||
msgstr "Importa media"
|
msgstr "Importa media"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:828
|
#: lib/bds/desktop/shell_live/import_editor.ex:831
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import name..."
|
msgid "Import name..."
|
||||||
msgstr "Nome definizione di importazione"
|
msgstr "Nome definizione di importazione"
|
||||||
@@ -1160,7 +1160,7 @@ msgstr "Importazione degli articoli..."
|
|||||||
msgid "Importing tags & categories..."
|
msgid "Importing tags & categories..."
|
||||||
msgstr "Importazione di tag e categorie..."
|
msgstr "Importazione di tag e categorie..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:915
|
#: lib/bds/desktop/shell_live/import_editor.ex:918
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Importing..."
|
msgid "Importing..."
|
||||||
msgstr "Importazione in corso…"
|
msgstr "Importazione in corso…"
|
||||||
@@ -1196,15 +1196,15 @@ msgstr "Interno"
|
|||||||
msgid "Kind"
|
msgid "Kind"
|
||||||
msgstr "Tipo"
|
msgstr "Tipo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
#: lib/bds/desktop/shell_live/import_editor.ex:877
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Lingua"
|
msgstr "Lingua"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:206
|
#: lib/bds/desktop/shell_live/media_editor.ex:210
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:683
|
#: lib/bds/desktop/shell_live/post_editor.ex:749
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language detection failed."
|
msgid "Language detection failed."
|
||||||
msgstr "Rilevamento della lingua non riuscito."
|
msgstr "Rilevamento della lingua non riuscito."
|
||||||
@@ -1214,7 +1214,7 @@ msgstr "Rilevamento della lingua non riuscito."
|
|||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Chiaro"
|
msgstr "Chiaro"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:252
|
#: lib/bds/desktop/shell_live/media_editor.ex:256
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Link to Post"
|
msgid "Link to Post"
|
||||||
@@ -1259,7 +1259,7 @@ msgstr "MCP"
|
|||||||
msgid "MIME Type"
|
msgid "MIME Type"
|
||||||
msgstr "Tipo MIME"
|
msgstr "Tipo MIME"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1044
|
#: lib/bds/desktop/shell_live/import_editor.ex:1047
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Macros (%{count})"
|
msgid "Macros (%{count})"
|
||||||
msgstr "Macro (%{count})"
|
msgstr "Macro (%{count})"
|
||||||
@@ -1277,18 +1277,18 @@ msgstr "Lingua principale"
|
|||||||
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
||||||
msgstr "Gestisci la struttura centrale di navigazione del blog e salvala in meta/menu.opml."
|
msgstr "Gestisci la struttura centrale di navigazione del blog e salvala in meta/menu.opml."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1357
|
#: lib/bds/desktop/shell_live/import_editor.ex:1360
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1361
|
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Map to..."
|
msgid "Map to..."
|
||||||
msgstr "Mappa a..."
|
msgstr "Mappa a..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Mapped"
|
msgid "Mapped"
|
||||||
msgstr "Mappato"
|
msgstr "Mappato"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:902
|
#: lib/bds/desktop/shell_live/post_editor.ex:968
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Markdown"
|
msgid "Markdown"
|
||||||
@@ -1300,8 +1300,8 @@ msgid "Max Posts Per Page"
|
|||||||
msgstr "Numero massimo di post per pagina"
|
msgstr "Numero massimo di post per pagina"
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:168
|
#: lib/bds/desktop/menu_bar.ex:168
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:494
|
#: lib/bds/desktop/shell_live/media_editor.ex:502
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
@@ -1313,12 +1313,12 @@ msgstr "Numero massimo di post per pagina"
|
|||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr "Media"
|
msgstr "Media"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:986
|
#: lib/bds/desktop/shell_live/import_editor.ex:989
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media (%{count})"
|
msgid "Media (%{count})"
|
||||||
msgstr "Media (%{count})"
|
msgstr "Media (%{count})"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media saved"
|
msgid "Media saved"
|
||||||
msgstr "Media salvato"
|
msgstr "Media salvato"
|
||||||
@@ -1368,8 +1368,8 @@ msgstr "URL mancanti"
|
|||||||
msgid "Mode"
|
msgid "Mode"
|
||||||
msgstr "Modalità"
|
msgstr "Modalità"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:875
|
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "N/A"
|
msgid "N/A"
|
||||||
msgstr "N/D"
|
msgstr "N/D"
|
||||||
@@ -1380,7 +1380,7 @@ msgstr "N/D"
|
|||||||
msgid "New Chat"
|
msgid "New Chat"
|
||||||
msgstr "Nuova chat"
|
msgstr "Nuova chat"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1127
|
#: lib/bds/desktop/shell_live/import_editor.ex:1130
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Entry (WXR)"
|
msgid "New Entry (WXR)"
|
||||||
msgstr "Nuova voce (WXR)"
|
msgstr "Nuova voce (WXR)"
|
||||||
@@ -1439,7 +1439,7 @@ msgstr "Nessuna attività in background in esecuzione"
|
|||||||
msgid "No commit subject"
|
msgid "No commit subject"
|
||||||
msgstr "Nessun oggetto del commit"
|
msgstr "Nessun oggetto del commit"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:837
|
#: lib/bds/desktop/shell_live/import_editor.ex:840
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No folder selected"
|
msgid "No folder selected"
|
||||||
msgstr "Nessuna cartella selezionata"
|
msgstr "Nessuna cartella selezionata"
|
||||||
@@ -1571,7 +1571,7 @@ msgstr "Non collegato ad alcun post"
|
|||||||
msgid "Not supported in the rewrite yet"
|
msgid "Not supported in the rewrite yet"
|
||||||
msgstr "Non ancora supportato nella riscrittura"
|
msgstr "Non ancora supportato nella riscrittura"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:945
|
#: lib/bds/desktop/shell_live/import_editor.ex:948
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to Import"
|
msgid "Nothing to Import"
|
||||||
msgstr "Niente da importare"
|
msgstr "Niente da importare"
|
||||||
@@ -1667,7 +1667,7 @@ msgstr "Supporto immagini online"
|
|||||||
msgid "Online Title Model"
|
msgid "Online Title Model"
|
||||||
msgstr "Modello titoli online"
|
msgstr "Modello titoli online"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:839
|
#: lib/bds/desktop/shell_live/import_editor.ex:842
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@@ -1711,12 +1711,12 @@ msgstr "Ordine"
|
|||||||
msgid "Orphan Files"
|
msgid "Orphan Files"
|
||||||
msgstr "File orfani"
|
msgstr "File orfani"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:886
|
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr "Altro"
|
msgstr "Altro"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:978
|
#: lib/bds/desktop/shell_live/import_editor.ex:981
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other (%{count})"
|
msgid "Other (%{count})"
|
||||||
msgstr "Altro (%{count})"
|
msgstr "Altro (%{count})"
|
||||||
@@ -1733,7 +1733,7 @@ msgstr "Output"
|
|||||||
msgid "Overview of your blog database"
|
msgid "Overview of your blog database"
|
||||||
msgstr "Panoramica del database del tuo blog"
|
msgstr "Panoramica del database del tuo blog"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1144
|
#: lib/bds/desktop/shell_live/import_editor.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Overwrite"
|
msgid "Overwrite"
|
||||||
msgstr "Sovrascrivi"
|
msgstr "Sovrascrivi"
|
||||||
@@ -1743,7 +1743,7 @@ msgstr "Sovrascrivi"
|
|||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr "Pagina"
|
msgstr "Pagina"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:970
|
#: lib/bds/desktop/shell_live/import_editor.ex:973
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Page Slug Conflicts"
|
msgid "Page Slug Conflicts"
|
||||||
msgstr "Conflitti slug pagine"
|
msgstr "Conflitti slug pagine"
|
||||||
@@ -1754,7 +1754,7 @@ msgstr "Conflitti slug pagine"
|
|||||||
msgid "Pages"
|
msgid "Pages"
|
||||||
msgstr "Pagine"
|
msgstr "Pagine"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:982
|
#: lib/bds/desktop/shell_live/import_editor.ex:985
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pages (%{count})"
|
msgid "Pages (%{count})"
|
||||||
msgstr "Pagine (%{count})"
|
msgstr "Pagine (%{count})"
|
||||||
@@ -1774,7 +1774,7 @@ msgstr "Analisi del file WXR..."
|
|||||||
msgid "Paste"
|
msgid "Paste"
|
||||||
msgstr "Incolla"
|
msgstr "Incolla"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
#: lib/bds/desktop/shell_live/import_editor.ex:1235
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
@@ -1786,16 +1786,16 @@ msgid "Persist the detected language for this media item"
|
|||||||
msgstr "Salva la lingua rilevata per questo media"
|
msgstr "Salva la lingua rilevata per questo media"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:483
|
#: lib/bds/desktop/shell_live/post_editor.ex:492
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:522
|
#: lib/bds/desktop/shell_live/post_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:557
|
#: lib/bds/desktop/shell_live/post_editor.ex:573
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:572
|
#: lib/bds/desktop/shell_live/post_editor.ex:588
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:604
|
#: lib/bds/desktop/shell_live/post_editor.ex:620
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:637
|
#: lib/bds/desktop/shell_live/post_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
||||||
#: lib/bds/ui/registry.ex:99
|
#: lib/bds/ui/registry.ex:99
|
||||||
@@ -1810,7 +1810,7 @@ msgstr "Post"
|
|||||||
msgid "Post Links"
|
msgid "Post Links"
|
||||||
msgstr "Collegamenti articoli"
|
msgstr "Collegamenti articoli"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:966
|
#: lib/bds/desktop/shell_live/import_editor.ex:969
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post Slug Conflicts"
|
msgid "Post Slug Conflicts"
|
||||||
msgstr "Conflitti slug articoli"
|
msgstr "Conflitti slug articoli"
|
||||||
@@ -1825,12 +1825,12 @@ msgstr "Template del post"
|
|||||||
msgid "Post is marked as do-not-translate but has translations"
|
msgid "Post is marked as do-not-translate but has translations"
|
||||||
msgstr "Il post è contrassegnato come non-tradurre ma ha traduzioni"
|
msgstr "Il post è contrassegnato come non-tradurre ma ha traduzioni"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post published"
|
msgid "Post published"
|
||||||
msgstr "Articolo pubblicato"
|
msgstr "Articolo pubblicato"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post saved"
|
msgid "Post saved"
|
||||||
msgstr "Articolo salvato"
|
msgstr "Articolo salvato"
|
||||||
@@ -1844,7 +1844,7 @@ msgstr "Articolo salvato"
|
|||||||
msgid "Posts"
|
msgid "Posts"
|
||||||
msgstr "Post"
|
msgstr "Post"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:974
|
#: lib/bds/desktop/shell_live/import_editor.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Posts (%{count})"
|
msgid "Posts (%{count})"
|
||||||
msgstr "Articoli (%{count})"
|
msgstr "Articoli (%{count})"
|
||||||
@@ -1854,7 +1854,7 @@ msgstr "Articoli (%{count})"
|
|||||||
msgid "Preferences"
|
msgid "Preferences"
|
||||||
msgstr "Preferenze"
|
msgstr "Preferenze"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:903
|
#: lib/bds/desktop/shell_live/post_editor.ex:969
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
@@ -1923,8 +1923,8 @@ msgid "Publish Selected"
|
|||||||
msgstr "Pubblica selezionati"
|
msgstr "Pubblica selezionati"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:181
|
#: lib/bds/desktop/shell_data.ex:181
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:897
|
#: lib/bds/desktop/shell_live/post_editor.ex:963
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:459
|
||||||
#: lib/bds/ui/sidebar.ex:324
|
#: lib/bds/ui/sidebar.ex:324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published"
|
msgid "Published"
|
||||||
@@ -1955,7 +1955,7 @@ msgstr "Azioni rapide"
|
|||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr "Esci"
|
msgstr "Esci"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:936
|
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ready to import:"
|
msgid "Ready to import:"
|
||||||
msgstr "Pronto per importare:"
|
msgstr "Pronto per importare:"
|
||||||
@@ -2022,8 +2022,8 @@ msgstr "Aggiorna modelli offline"
|
|||||||
msgid "Refresh Online Models"
|
msgid "Refresh Online Models"
|
||||||
msgstr "Aggiorna modelli online"
|
msgstr "Aggiorna modelli online"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:364
|
#: lib/bds/desktop/shell_live/media_editor.ex:368
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:373
|
#: lib/bds/desktop/shell_live/media_editor.ex:377
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Refresh Translation"
|
msgid "Refresh Translation"
|
||||||
msgstr "Aggiorna traduzione"
|
msgstr "Aggiorna traduzione"
|
||||||
@@ -2079,8 +2079,8 @@ msgstr "Mostra nelle liste"
|
|||||||
msgid "Replace"
|
msgid "Replace"
|
||||||
msgstr "Sostituisci"
|
msgstr "Sostituisci"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:138
|
#: lib/bds/desktop/shell_live/media_editor.ex:142
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:146
|
#: lib/bds/desktop/shell_live/media_editor.ex:150
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Replace File"
|
msgid "Replace File"
|
||||||
@@ -2111,17 +2111,17 @@ msgstr "Ripristina predefinito"
|
|||||||
msgid "Reset to Defaults"
|
msgid "Reset to Defaults"
|
||||||
msgstr "Ripristina valori predefiniti"
|
msgstr "Ripristina valori predefiniti"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
#: lib/bds/desktop/shell_live/import_editor.ex:1132
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Resolution"
|
msgid "Resolution"
|
||||||
msgstr "Risoluzione"
|
msgstr "Risoluzione"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:597
|
#: lib/bds/desktop/shell_live/chat_editor.ex:602
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr "Risultato"
|
msgstr "Risultato"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:898
|
#: lib/bds/desktop/shell_live/post_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reverted"
|
msgid "Reverted"
|
||||||
msgstr "Ripristinato"
|
msgstr "Ripristinato"
|
||||||
@@ -2167,13 +2167,13 @@ msgstr "Modalità SSH"
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Salva"
|
msgstr "Salva"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:324
|
#: lib/bds/desktop/shell_live/media_editor.ex:328
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save Translation"
|
msgid "Save Translation"
|
||||||
msgstr "Salva traduzione"
|
msgstr "Salva traduzione"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:702
|
#: lib/bds/desktop/shell_live/media_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:896
|
#: lib/bds/desktop/shell_live/post_editor.ex:962
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr "Salvato"
|
msgstr "Salvato"
|
||||||
@@ -2264,7 +2264,7 @@ msgstr "Cerca post..."
|
|||||||
msgid "Search settings"
|
msgid "Search settings"
|
||||||
msgstr "Cerca nelle impostazioni"
|
msgstr "Cerca nelle impostazioni"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:847
|
#: lib/bds/desktop/shell_live/import_editor.ex:850
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select & Analyze"
|
msgid "Select & Analyze"
|
||||||
msgstr "Seleziona e analizza"
|
msgstr "Seleziona e analizza"
|
||||||
@@ -2279,19 +2279,19 @@ msgstr "Seleziona tutto"
|
|||||||
msgid "Select Page"
|
msgid "Select Page"
|
||||||
msgstr "Seleziona pagina"
|
msgstr "Seleziona pagina"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:646
|
#: lib/bds/desktop/shell_live/import_editor.ex:649
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
#: lib/bds/desktop/shell_live/import_editor.ex:833
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
||||||
msgstr "Analizza un file WXR prima dell’importazione."
|
msgstr "Analizza un file WXR prima dell’importazione."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1099
|
#: lib/bds/desktop/shell_live/import_editor.ex:1102
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file to begin analysis."
|
msgid "Select a WordPress export file to begin analysis."
|
||||||
msgstr "Seleziona un file WXR e avvia l’analisi."
|
msgstr "Seleziona un file WXR e avvia l’analisi."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:845
|
#: lib/bds/desktop/shell_live/import_editor.ex:848
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a file to analyze"
|
msgid "Select a file to analyze"
|
||||||
msgstr "Seleziona un file da analizzare"
|
msgstr "Seleziona un file da analizzare"
|
||||||
@@ -2345,7 +2345,7 @@ msgstr "Mostra titoli"
|
|||||||
msgid "Side by Side"
|
msgid "Side by Side"
|
||||||
msgstr "Affiancato"
|
msgstr "Affiancato"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:866
|
#: lib/bds/desktop/shell_live/import_editor.ex:869
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr "Sito"
|
msgstr "Sito"
|
||||||
@@ -2371,8 +2371,8 @@ msgstr "Rendering del sito"
|
|||||||
msgid "Size"
|
msgid "Size"
|
||||||
msgstr "Dimensione"
|
msgstr "Dimensione"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1126
|
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
||||||
@@ -2395,14 +2395,14 @@ msgstr "Pagine autonome"
|
|||||||
msgid "Start chat"
|
msgid "Start chat"
|
||||||
msgstr "Avvia chat"
|
msgstr "Avvia chat"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:921
|
#: lib/bds/desktop/shell_live/import_editor.ex:924
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Starting..."
|
msgid "Starting..."
|
||||||
msgstr "Avvio..."
|
msgstr "Avvio..."
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:115
|
#: lib/bds/desktop/shell_data.ex:115
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1178
|
#: lib/bds/desktop/shell_live/import_editor.ex:1181
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1229
|
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Stato"
|
msgstr "Stato"
|
||||||
@@ -2462,8 +2462,8 @@ msgstr "Gestione tag"
|
|||||||
msgid "Tag name"
|
msgid "Tag name"
|
||||||
msgstr "Nome del tag"
|
msgstr "Nome del tag"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
#: lib/bds/desktop/shell_live/import_editor.ex:894
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1028
|
#: lib/bds/desktop/shell_live/import_editor.ex:1031
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:297
|
#: lib/bds/desktop/shell_live/index.html.heex:297
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:325
|
#: lib/bds/desktop/shell_live/index.html.heex:325
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
||||||
@@ -2572,7 +2572,7 @@ msgstr "Questo agente MCP non è ancora supportato nella riscrittura"
|
|||||||
msgid "This item is referenced by:"
|
msgid "This item is referenced by:"
|
||||||
msgstr "Questo elemento e referenziato da:"
|
msgstr "Questo elemento e referenziato da:"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1182
|
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
||||||
@@ -2643,14 +2643,14 @@ msgstr "Attiva/disattiva pannello"
|
|||||||
msgid "Toggle sidebar"
|
msgid "Toggle sidebar"
|
||||||
msgstr "Attiva/disattiva barra laterale"
|
msgstr "Attiva/disattiva barra laterale"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:348
|
#: lib/bds/desktop/shell_live/media_editor.ex:352
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:537
|
#: lib/bds/desktop/shell_live/media_editor.ex:545
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:558
|
#: lib/bds/desktop/shell_live/media_editor.ex:566
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:563
|
#: lib/bds/desktop/shell_live/media_editor.ex:571
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:696
|
#: lib/bds/desktop/shell_live/post_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:725
|
#: lib/bds/desktop/shell_live/post_editor.ex:791
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:730
|
#: lib/bds/desktop/shell_live/post_editor.ex:796
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Translate"
|
msgid "Translate"
|
||||||
@@ -2682,8 +2682,8 @@ msgstr "La traduzione punta a un post sorgente mancante"
|
|||||||
msgid "Translations"
|
msgid "Translations"
|
||||||
msgstr "Traduzioni"
|
msgstr "Traduzioni"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1180
|
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1231
|
#: lib/bds/desktop/shell_live/import_editor.ex:1234
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr "Tipo"
|
msgstr "Tipo"
|
||||||
@@ -2703,7 +2703,7 @@ msgstr "Digita un titolo pagina o un'etichetta del sottomenu"
|
|||||||
msgid "UI"
|
msgid "UI"
|
||||||
msgstr "UI"
|
msgstr "UI"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
#: lib/bds/desktop/shell_live/import_editor.ex:873
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "URL"
|
msgid "URL"
|
||||||
@@ -2714,26 +2714,26 @@ msgstr "URL"
|
|||||||
msgid "Undo"
|
msgid "Undo"
|
||||||
msgstr "Annulla"
|
msgstr "Annulla"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1004
|
#: lib/bds/desktop/shell_live/import_editor.ex:1007
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr "Sconosciuto"
|
msgstr "Sconosciuto"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:265
|
#: lib/bds/desktop/shell_live/media_editor.ex:269
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unlink from Post"
|
msgid "Unlink from Post"
|
||||||
msgstr "Scollega dall'articolo"
|
msgstr "Scollega dall'articolo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:701
|
#: lib/bds/desktop/shell_live/media_editor.ex:709
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:895
|
#: lib/bds/desktop/shell_live/post_editor.ex:961
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unsaved"
|
msgid "Unsaved"
|
||||||
msgstr "Non salvato"
|
msgstr "Non salvato"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:867
|
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
||||||
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1116
|
#: lib/bds/ui/sidebar.ex:1116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2741,13 +2741,13 @@ msgid "Untitled"
|
|||||||
msgstr "Senza titolo"
|
msgstr "Senza titolo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:827
|
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled Import"
|
msgid "Untitled Import"
|
||||||
msgstr "Importazione senza titolo"
|
msgstr "Importazione senza titolo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:454
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:457
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2765,13 +2765,13 @@ msgid "Upload Site"
|
|||||||
msgstr "Carica sito"
|
msgstr "Carica sito"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:835
|
#: lib/bds/desktop/shell_live/import_editor.ex:838
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Uploads Folder"
|
msgid "Uploads Folder"
|
||||||
msgstr "Cartella uploads"
|
msgstr "Cartella uploads"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used in: %{items}%{more}"
|
msgid "Used in: %{items}%{more}"
|
||||||
msgstr "Usato in: %{items}%{more}"
|
msgstr "Usato in: %{items}%{more}"
|
||||||
@@ -2811,13 +2811,13 @@ msgstr "Vista"
|
|||||||
msgid "View on GitHub"
|
msgid "View on GitHub"
|
||||||
msgstr "Visualizza su GitHub"
|
msgstr "Visualizza su GitHub"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
#: lib/bds/desktop/shell_live/import_editor.ex:1188
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WP Status"
|
msgid "WP Status"
|
||||||
msgstr "Stato WP"
|
msgstr "Stato WP"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:843
|
#: lib/bds/desktop/shell_live/import_editor.ex:846
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WXR File"
|
msgid "WXR File"
|
||||||
@@ -2844,7 +2844,7 @@ msgstr "Working tree e cronologia"
|
|||||||
msgid "Wrap Long Lines"
|
msgid "Wrap Long Lines"
|
||||||
msgstr "A capo per linee lunghe"
|
msgstr "A capo per linee lunghe"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:530
|
#: lib/bds/desktop/shell_live/chat_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You"
|
msgid "You"
|
||||||
@@ -2870,8 +2870,8 @@ msgstr "aggiungere"
|
|||||||
msgid "and %{count} more"
|
msgid "and %{count} more"
|
||||||
msgstr "e altri %{count}"
|
msgstr "e altri %{count}"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1265
|
#: lib/bds/desktop/shell_live/import_editor.ex:1268
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1302
|
#: lib/bds/desktop/shell_live/import_editor.ex:1305
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "conflict"
|
msgid "conflict"
|
||||||
msgstr "conflitto"
|
msgstr "conflitto"
|
||||||
@@ -2901,8 +2901,8 @@ msgstr "%{count} immagini"
|
|||||||
msgid "dashboard.stats.published"
|
msgid "dashboard.stats.published"
|
||||||
msgstr "%{count} pubblicati"
|
msgstr "%{count} pubblicati"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
#: lib/bds/desktop/shell_live/import_editor.ex:1269
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
#: lib/bds/desktop/shell_live/import_editor.ex:1306
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "duplicate"
|
msgid "duplicate"
|
||||||
msgstr "duplicato"
|
msgstr "duplicato"
|
||||||
@@ -2912,7 +2912,7 @@ msgstr "duplicato"
|
|||||||
msgid "edit"
|
msgid "edit"
|
||||||
msgstr "modificare"
|
msgstr "modificare"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1320
|
#: lib/bds/desktop/shell_live/import_editor.ex:1323
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "existing"
|
msgid "existing"
|
||||||
msgstr "esistente"
|
msgstr "esistente"
|
||||||
@@ -2922,13 +2922,13 @@ msgstr "esistente"
|
|||||||
msgid "gitDiff.changedFiles"
|
msgid "gitDiff.changedFiles"
|
||||||
msgstr "File modificati"
|
msgstr "File modificati"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1321
|
#: lib/bds/desktop/shell_live/import_editor.ex:1324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "mapped"
|
msgid "mapped"
|
||||||
msgstr "mappato"
|
msgstr "mappato"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
#: lib/bds/desktop/shell_live/import_editor.ex:892
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
#: lib/bds/desktop/shell_live/import_editor.ex:942
|
||||||
#: lib/bds/ui/workbench.ex:213
|
#: lib/bds/ui/workbench.ex:213
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "media"
|
msgid "media"
|
||||||
@@ -2986,26 +2986,26 @@ msgstr "Salva"
|
|||||||
msgid "menuEditor.unindent"
|
msgid "menuEditor.unindent"
|
||||||
msgstr "Riduci rientro"
|
msgstr "Riduci rientro"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
#: lib/bds/desktop/shell_live/import_editor.ex:1307
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "missing"
|
msgid "missing"
|
||||||
msgstr "mancante"
|
msgstr "mancante"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1263
|
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1300
|
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1322
|
#: lib/bds/desktop/shell_live/import_editor.ex:1325
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "new"
|
msgid "new"
|
||||||
msgstr "nuovo"
|
msgstr "nuovo"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:888
|
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
#: lib/bds/desktop/shell_live/import_editor.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "pages"
|
msgid "pages"
|
||||||
msgstr "pagine"
|
msgstr "pagine"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:884
|
#: lib/bds/desktop/shell_live/import_editor.ex:887
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:938
|
#: lib/bds/desktop/shell_live/import_editor.ex:941
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "posts"
|
msgid "posts"
|
||||||
msgstr "articoli"
|
msgstr "articoli"
|
||||||
@@ -3022,7 +3022,7 @@ msgstr "risultati"
|
|||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr "risultati per"
|
msgstr "risultati per"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:937
|
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "tags/categories"
|
msgid "tags/categories"
|
||||||
msgstr "tag/categorie"
|
msgstr "tag/categorie"
|
||||||
@@ -3086,8 +3086,8 @@ msgstr "Nessun record trovato nel file system"
|
|||||||
msgid "translationValidation.revalidate"
|
msgid "translationValidation.revalidate"
|
||||||
msgstr "Riconvalida"
|
msgstr "Riconvalida"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1264
|
#: lib/bds/desktop/shell_live/import_editor.ex:1267
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1301
|
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "update"
|
msgid "update"
|
||||||
msgstr "aggiornamento"
|
msgstr "aggiornamento"
|
||||||
@@ -3228,12 +3228,12 @@ msgstr "Archivia"
|
|||||||
msgid "Move this post to the archive"
|
msgid "Move this post to the archive"
|
||||||
msgstr "Sposta questo articolo nell'archivio"
|
msgstr "Sposta questo articolo nell'archivio"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post archived"
|
msgid "Post archived"
|
||||||
msgstr "Articolo archiviato"
|
msgstr "Articolo archiviato"
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post unarchived"
|
msgid "Post unarchived"
|
||||||
msgstr "Articolo ripristinato"
|
msgstr "Articolo ripristinato"
|
||||||
@@ -3411,3 +3411,19 @@ msgstr "Blogmark"
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open a project before importing a blogmark."
|
msgid "Open a project before importing a blogmark."
|
||||||
msgstr "Apri un progetto prima di importare un blogmark."
|
msgstr "Apri un progetto prima di importare un blogmark."
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:643
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Added %{name}"
|
||||||
|
msgstr "%{name} aggiunto"
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:650
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Failed to import %{path}: %{reason}"
|
||||||
|
msgstr "Impossibile importare %{path}: %{reason}"
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:642
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:649
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Insert Image"
|
||||||
|
msgstr "Inserisci immagine"
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ msgid "%{canonical} = %{translation}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
#: lib/bds/desktop/shell_live/import_editor.ex:477
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1050
|
#: lib/bds/desktop/shell_live/import_editor.ex:1053
|
||||||
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
#: lib/bds/desktop/shell_live/import_editor/taxonomy_editing.ex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} mapped"
|
msgid "%{count} mapped"
|
||||||
@@ -30,13 +30,13 @@ msgid_plural "%{count} posts"
|
|||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1051
|
#: lib/bds/desktop/shell_live/import_editor.ex:1054
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} unmapped"
|
msgid "%{count} unmapped"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1061
|
#: lib/bds/desktop/shell_live/import_editor.ex:1064
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
#: lib/bds/desktop/shell_live/import_editor.ex:1079
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{count} uses"
|
msgid "%{count} uses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -51,22 +51,22 @@ msgstr ""
|
|||||||
msgid "%{minutes}m %{seconds}s"
|
msgid "%{minutes}m %{seconds}s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1073
|
#: lib/bds/desktop/shell_live/import_editor.ex:1076
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "(no parameters)"
|
msgid "(no parameters)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid ", +%{count} more"
|
msgid ", +%{count} more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1137
|
#: lib/bds/desktop/shell_live/import_editor.ex:1140
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1199
|
#: lib/bds/desktop/shell_live/import_editor.ex:1202
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1200
|
#: lib/bds/desktop/shell_live/import_editor.ex:1203
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1241
|
#: lib/bds/desktop/shell_live/import_editor.ex:1244
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1243
|
#: lib/bds/desktop/shell_live/import_editor.ex:1246
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1427
|
#: lib/bds/desktop/shell_live/import_editor.ex:1430
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "--"
|
msgid "--"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -92,7 +92,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:42
|
||||||
#: 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:781
|
#: lib/bds/desktop/shell_live/post_editor.ex:847
|
||||||
#: 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
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI Suggestions"
|
msgid "AI Suggestions"
|
||||||
@@ -107,7 +107,7 @@ msgstr ""
|
|||||||
msgid "AI conversations"
|
msgid "AI conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1015
|
#: lib/bds/desktop/shell_live/import_editor.ex:1018
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
msgid "AI will suggest mappings from new to existing items to avoid duplicates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -186,14 +186,14 @@ msgstr ""
|
|||||||
msgid "Analysis complete"
|
msgid "Analysis complete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:668
|
#: lib/bds/desktop/shell_live/import_editor.ex:671
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:999
|
#: lib/bds/desktop/shell_live/import_editor.ex:1002
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyze with..."
|
msgid "Analyze with..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
#: lib/bds/desktop/shell_live/import_editor.ex:220
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:855
|
#: lib/bds/desktop/shell_live/import_editor.ex:858
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Analyzing WXR file..."
|
msgid "Analyzing WXR file..."
|
||||||
@@ -240,7 +240,7 @@ msgstr ""
|
|||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:594
|
#: lib/bds/desktop/shell_live/chat_editor.ex:599
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Arguments"
|
msgid "Arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -250,7 +250,7 @@ msgstr ""
|
|||||||
msgid "Ask the assistant about the active project or editor."
|
msgid "Ask the assistant about the active project or editor."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:531
|
#: lib/bds/desktop/shell_live/chat_editor.ex:536
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
#: lib/bds/desktop/shell_live/chat_editor/tool_surfaces.ex:88
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
#: lib/bds/desktop/shell_live/chat_surface.ex:18
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
#: lib/bds/desktop/shell_live/chat_surface.ex:20
|
||||||
@@ -271,13 +271,13 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:98
|
#: lib/bds/desktop/shell_data.ex:98
|
||||||
#: lib/bds/desktop/shell_live.ex:431
|
#: lib/bds/desktop/shell_live.ex:431
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:231
|
#: lib/bds/desktop/shell_live/chat_editor.ex:234
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:156
|
#: lib/bds/desktop/shell_live/media_editor.ex:160
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:349
|
#: lib/bds/desktop/shell_live/media_editor.ex:353
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:538
|
#: lib/bds/desktop/shell_live/media_editor.ex:546
|
||||||
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
#: lib/bds/desktop/shell_live/overlay_manager.ex:73
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:648
|
#: lib/bds/desktop/shell_live/post_editor.ex:714
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:697
|
#: lib/bds/desktop/shell_live/post_editor.ex:763
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Automatic AI actions stay gated by airplane mode."
|
msgid "Automatic AI actions stay gated by airplane mode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -350,7 +350,7 @@ msgstr ""
|
|||||||
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
msgid "Bookmarklet copy support is wired through the desktop runtime and project public URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1362
|
#: lib/bds/desktop/shell_live/import_editor.ex:1365
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:298
|
||||||
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
#: lib/bds/desktop/shell_live/menu_editor.ex:335
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:5
|
||||||
@@ -374,9 +374,9 @@ msgstr ""
|
|||||||
msgid "Caption"
|
msgid "Caption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:890
|
#: lib/bds/desktop/shell_live/import_editor.ex:893
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1020
|
#: lib/bds/desktop/shell_live/import_editor.ex:1023
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1184
|
#: lib/bds/desktop/shell_live/import_editor.ex:1187
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:336
|
#: lib/bds/desktop/shell_live/index.html.heex:336
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
#: lib/bds/desktop/shell_live/misc_editor.ex:750
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
#: lib/bds/desktop/shell_live/misc_editor.ex:751
|
||||||
@@ -392,7 +392,7 @@ msgstr ""
|
|||||||
msgid "Categories"
|
msgid "Categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:992
|
#: lib/bds/desktop/shell_live/import_editor.ex:995
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Categories & Tags"
|
msgid "Categories & Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -419,8 +419,8 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_live.ex:979
|
#: lib/bds/desktop/shell_live.ex:979
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
#: lib/bds/desktop/shell_live/chat_editor.ex:87
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:230
|
#: lib/bds/desktop/shell_live/chat_editor.ex:233
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:318
|
#: lib/bds/desktop/shell_live/chat_editor.ex:323
|
||||||
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
#: lib/bds/desktop/shell_live/chat_editor/model_selection.ex:37
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:503
|
#: lib/bds/desktop/shell_live/index.html.heex:503
|
||||||
#: lib/bds/ui/registry.ex:104
|
#: lib/bds/ui/registry.ex:104
|
||||||
@@ -457,8 +457,8 @@ msgstr ""
|
|||||||
msgid "Clear filters"
|
msgid "Clear filters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
#: lib/bds/desktop/shell_live/import_editor.ex:1367
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1395
|
#: lib/bds/desktop/shell_live/import_editor.ex:1398
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clear mapping"
|
msgid "Clear mapping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -501,7 +501,7 @@ msgstr ""
|
|||||||
msgid "Command completed"
|
msgid "Command completed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:927
|
#: lib/bds/desktop/shell_live/chat_editor.ex:932
|
||||||
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
#: lib/bds/desktop/shell_live/chat_editor_html/chat_editor.html.heex:63
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Configure an API key in Settings to enable AI chat."
|
msgid "Configure an API key in Settings to enable AI chat."
|
||||||
@@ -571,7 +571,7 @@ msgstr ""
|
|||||||
msgid "Create tag"
|
msgid "Create tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:453
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -617,7 +617,7 @@ msgstr ""
|
|||||||
msgid "Data Path"
|
msgid "Data Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:896
|
#: lib/bds/desktop/shell_live/import_editor.ex:899
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date Distribution"
|
msgid "Date Distribution"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -673,7 +673,7 @@ msgstr ""
|
|||||||
msgid "Delete Media"
|
msgid "Delete Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:392
|
#: lib/bds/desktop/shell_live/media_editor.ex:396
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete Translation"
|
msgid "Delete Translation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -714,14 +714,14 @@ msgstr ""
|
|||||||
msgid "Detect"
|
msgid "Detect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:155
|
#: lib/bds/desktop/shell_live/media_editor.ex:159
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:194
|
#: lib/bds/desktop/shell_live/media_editor.ex:198
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:199
|
#: lib/bds/desktop/shell_live/media_editor.ex:203
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:205
|
#: lib/bds/desktop/shell_live/media_editor.ex:209
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:59
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:647
|
#: lib/bds/desktop/shell_live/post_editor.ex:713
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:676
|
#: lib/bds/desktop/shell_live/post_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:682
|
#: lib/bds/desktop/shell_live/post_editor.ex:748
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Detect Language"
|
msgid "Detect Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -777,7 +777,7 @@ msgstr ""
|
|||||||
msgid "Dismiss Checked"
|
msgid "Dismiss Checked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:618
|
#: lib/bds/desktop/shell_live/chat_editor.ex:623
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Dismiss surface"
|
msgid "Dismiss surface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -915,13 +915,13 @@ msgstr ""
|
|||||||
msgid "Excerpt"
|
msgid "Excerpt"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1128
|
#: lib/bds/desktop/shell_live/import_editor.ex:1131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Entry"
|
msgid "Existing Entry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
#: lib/bds/desktop/shell_live/import_editor.ex:1189
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
#: lib/bds/desktop/shell_live/import_editor.ex:1236
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Existing Match"
|
msgid "Existing Match"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -937,7 +937,7 @@ msgid "Extra URLs"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:144
|
#: lib/bds/desktop/menu_bar.ex:144
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
#: lib/bds/desktop/shell_live/import_editor.ex:881
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:157
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "File"
|
msgid "File"
|
||||||
@@ -953,7 +953,7 @@ msgstr ""
|
|||||||
msgid "File to DB"
|
msgid "File to DB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1230
|
#: lib/bds/desktop/shell_live/import_editor.ex:1233
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Filename"
|
msgid "Filename"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1045,13 +1045,13 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:116
|
#: lib/bds/desktop/shell_data.ex:116
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:666
|
#: lib/bds/desktop/shell_live/index.html.heex:666
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:703
|
#: lib/bds/desktop/shell_live/media_editor.ex:711
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:899
|
#: lib/bds/desktop/shell_live/post_editor.ex:965
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Idle"
|
msgid "Idle"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1143
|
#: lib/bds/desktop/shell_live/import_editor.ex:1146
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1068,12 +1068,12 @@ msgstr ""
|
|||||||
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
#: lib/bds/desktop/shell_live/import_editor.ex:484
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
#: lib/bds/desktop/shell_live/import_editor.ex:564
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
#: lib/bds/desktop/shell_live/import_editor.ex:580
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:700
|
#: lib/bds/desktop/shell_live/import_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:704
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
#: lib/bds/desktop/shell_live/import_editor.ex:707
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:728
|
#: lib/bds/desktop/shell_live/import_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:742
|
#: lib/bds/desktop/shell_live/import_editor.ex:731
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:755
|
#: lib/bds/desktop/shell_live/import_editor.ex:745
|
||||||
|
#: lib/bds/desktop/shell_live/import_editor.ex:758
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:36
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:103
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:171
|
||||||
@@ -1100,12 +1100,12 @@ msgstr ""
|
|||||||
msgid "Import"
|
msgid "Import"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:947
|
#: lib/bds/desktop/shell_live/import_editor.ex:950
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import %{count} Items"
|
msgid "Import %{count} Items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1145
|
#: lib/bds/desktop/shell_live/import_editor.ex:1148
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import (new slug)"
|
msgid "Import (new slug)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1120,8 +1120,8 @@ msgstr ""
|
|||||||
msgid "Import complete"
|
msgid "Import complete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:729
|
#: lib/bds/desktop/shell_live/import_editor.ex:732
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:955
|
#: lib/bds/desktop/shell_live/import_editor.ex:958
|
||||||
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
#: lib/bds/desktop/shell_live/import_editor/progress_tracking.ex:133
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import completed successfully!"
|
msgid "Import completed successfully!"
|
||||||
@@ -1135,7 +1135,7 @@ msgstr ""
|
|||||||
msgid "Import definitions"
|
msgid "Import definitions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:961
|
#: lib/bds/desktop/shell_live/import_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import failed: %{error}"
|
msgid "Import failed: %{error}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1148,7 +1148,7 @@ msgstr ""
|
|||||||
msgid "Import media"
|
msgid "Import media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:828
|
#: lib/bds/desktop/shell_live/import_editor.ex:831
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Import name..."
|
msgid "Import name..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1173,7 +1173,7 @@ msgstr ""
|
|||||||
msgid "Importing tags & categories..."
|
msgid "Importing tags & categories..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:915
|
#: lib/bds/desktop/shell_live/import_editor.ex:918
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Importing..."
|
msgid "Importing..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1209,15 +1209,15 @@ msgstr ""
|
|||||||
msgid "Kind"
|
msgid "Kind"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
#: lib/bds/desktop/shell_live/import_editor.ex:877
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:171
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:207
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:206
|
#: lib/bds/desktop/shell_live/media_editor.ex:210
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:683
|
#: lib/bds/desktop/shell_live/post_editor.ex:749
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language detection failed."
|
msgid "Language detection failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1227,7 +1227,7 @@ msgstr ""
|
|||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:252
|
#: lib/bds/desktop/shell_live/media_editor.ex:256
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:215
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Link to Post"
|
msgid "Link to Post"
|
||||||
@@ -1272,7 +1272,7 @@ msgstr ""
|
|||||||
msgid "MIME Type"
|
msgid "MIME Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1044
|
#: lib/bds/desktop/shell_live/import_editor.ex:1047
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Macros (%{count})"
|
msgid "Macros (%{count})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1290,18 +1290,18 @@ msgstr ""
|
|||||||
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
msgid "Manage the central blog navigation outline and save it to meta/menu.opml."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1357
|
#: lib/bds/desktop/shell_live/import_editor.ex:1360
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1361
|
#: lib/bds/desktop/shell_live/import_editor.ex:1364
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Map to..."
|
msgid "Map to..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Mapped"
|
msgid "Mapped"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:902
|
#: lib/bds/desktop/shell_live/post_editor.ex:968
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:120
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Markdown"
|
msgid "Markdown"
|
||||||
@@ -1313,8 +1313,8 @@ msgid "Max Posts Per Page"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/menu_bar.ex:168
|
#: lib/bds/desktop/menu_bar.ex:168
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:494
|
#: lib/bds/desktop/shell_live/media_editor.ex:502
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
#: lib/bds/desktop/shell_live/misc_editor.ex:744
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
#: lib/bds/desktop/shell_live/misc_editor.ex:771
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:654
|
||||||
@@ -1326,12 +1326,12 @@ msgstr ""
|
|||||||
msgid "Media"
|
msgid "Media"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:986
|
#: lib/bds/desktop/shell_live/import_editor.ex:989
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media (%{count})"
|
msgid "Media (%{count})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:490
|
#: lib/bds/desktop/shell_live/media_editor.ex:498
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Media saved"
|
msgid "Media saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1381,8 +1381,8 @@ msgstr ""
|
|||||||
msgid "Mode"
|
msgid "Mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:871
|
#: lib/bds/desktop/shell_live/import_editor.ex:874
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:875
|
#: lib/bds/desktop/shell_live/import_editor.ex:878
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "N/A"
|
msgid "N/A"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1393,7 +1393,7 @@ msgstr ""
|
|||||||
msgid "New Chat"
|
msgid "New Chat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1127
|
#: lib/bds/desktop/shell_live/import_editor.ex:1130
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Entry (WXR)"
|
msgid "New Entry (WXR)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1452,7 +1452,7 @@ msgstr ""
|
|||||||
msgid "No commit subject"
|
msgid "No commit subject"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:837
|
#: lib/bds/desktop/shell_live/import_editor.ex:840
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No folder selected"
|
msgid "No folder selected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1584,7 +1584,7 @@ msgstr ""
|
|||||||
msgid "Not supported in the rewrite yet"
|
msgid "Not supported in the rewrite yet"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:945
|
#: lib/bds/desktop/shell_live/import_editor.ex:948
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Nothing to Import"
|
msgid "Nothing to Import"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1680,7 +1680,7 @@ msgstr ""
|
|||||||
msgid "Online Title Model"
|
msgid "Online Title Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:839
|
#: lib/bds/desktop/shell_live/import_editor.ex:842
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
@@ -1724,12 +1724,12 @@ msgstr ""
|
|||||||
msgid "Orphan Files"
|
msgid "Orphan Files"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:886
|
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other"
|
msgid "Other"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:978
|
#: lib/bds/desktop/shell_live/import_editor.ex:981
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Other (%{count})"
|
msgid "Other (%{count})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1746,7 +1746,7 @@ msgstr ""
|
|||||||
msgid "Overview of your blog database"
|
msgid "Overview of your blog database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1144
|
#: lib/bds/desktop/shell_live/import_editor.ex:1147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Overwrite"
|
msgid "Overwrite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1756,7 +1756,7 @@ msgstr ""
|
|||||||
msgid "Page"
|
msgid "Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:970
|
#: lib/bds/desktop/shell_live/import_editor.ex:973
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Page Slug Conflicts"
|
msgid "Page Slug Conflicts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1767,7 +1767,7 @@ msgstr ""
|
|||||||
msgid "Pages"
|
msgid "Pages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:982
|
#: lib/bds/desktop/shell_live/import_editor.ex:985
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pages (%{count})"
|
msgid "Pages (%{count})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1787,7 +1787,7 @@ msgstr ""
|
|||||||
msgid "Paste"
|
msgid "Paste"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
#: lib/bds/desktop/shell_live/import_editor.ex:1235
|
||||||
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
#: lib/bds/desktop/shell_live/misc_editor_html/misc_editor.html.heex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Path"
|
msgid "Path"
|
||||||
@@ -1799,16 +1799,16 @@ msgid "Persist the detected language for this media item"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
#: lib/bds/desktop/shell_live/misc_editor.ex:742
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:483
|
#: lib/bds/desktop/shell_live/post_editor.ex:492
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:522
|
#: lib/bds/desktop/shell_live/post_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:557
|
#: lib/bds/desktop/shell_live/post_editor.ex:573
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:572
|
#: lib/bds/desktop/shell_live/post_editor.ex:588
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:604
|
#: lib/bds/desktop/shell_live/post_editor.ex:620
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:637
|
#: lib/bds/desktop/shell_live/post_editor.ex:703
|
||||||
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
#: lib/bds/desktop/shell_live/sidebar_components.ex:651
|
||||||
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
#: lib/bds/desktop/shell_live/sidebar_delete.ex:174
|
||||||
#: lib/bds/ui/registry.ex:99
|
#: lib/bds/ui/registry.ex:99
|
||||||
@@ -1823,7 +1823,7 @@ msgstr ""
|
|||||||
msgid "Post Links"
|
msgid "Post Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:966
|
#: lib/bds/desktop/shell_live/import_editor.ex:969
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post Slug Conflicts"
|
msgid "Post Slug Conflicts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1838,12 +1838,12 @@ msgstr ""
|
|||||||
msgid "Post is marked as do-not-translate but has translations"
|
msgid "Post is marked as do-not-translate but has translations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:518
|
#: lib/bds/desktop/shell_live/post_editor.ex:531
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post published"
|
msgid "Post published"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:479
|
#: lib/bds/desktop/shell_live/post_editor.ex:488
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post saved"
|
msgid "Post saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1857,7 +1857,7 @@ msgstr ""
|
|||||||
msgid "Posts"
|
msgid "Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:974
|
#: lib/bds/desktop/shell_live/import_editor.ex:977
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Posts (%{count})"
|
msgid "Posts (%{count})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -1867,7 +1867,7 @@ msgstr ""
|
|||||||
msgid "Preferences"
|
msgid "Preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:903
|
#: lib/bds/desktop/shell_live/post_editor.ex:969
|
||||||
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
#: lib/bds/desktop/shell_live/settings_editor_html/settings_editor.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
@@ -1936,8 +1936,8 @@ msgid "Publish Selected"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:181
|
#: lib/bds/desktop/shell_data.ex:181
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:897
|
#: lib/bds/desktop/shell_live/post_editor.ex:963
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:456
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:459
|
||||||
#: lib/bds/ui/sidebar.ex:324
|
#: lib/bds/ui/sidebar.ex:324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Published"
|
msgid "Published"
|
||||||
@@ -1968,7 +1968,7 @@ msgstr ""
|
|||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:936
|
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ready to import:"
|
msgid "Ready to import:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2035,8 +2035,8 @@ msgstr ""
|
|||||||
msgid "Refresh Online Models"
|
msgid "Refresh Online Models"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:364
|
#: lib/bds/desktop/shell_live/media_editor.ex:368
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:373
|
#: lib/bds/desktop/shell_live/media_editor.ex:377
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Refresh Translation"
|
msgid "Refresh Translation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2092,8 +2092,8 @@ msgstr ""
|
|||||||
msgid "Replace"
|
msgid "Replace"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:138
|
#: lib/bds/desktop/shell_live/media_editor.ex:142
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:146
|
#: lib/bds/desktop/shell_live/media_editor.ex:150
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:86
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Replace File"
|
msgid "Replace File"
|
||||||
@@ -2124,17 +2124,17 @@ msgstr ""
|
|||||||
msgid "Reset to Defaults"
|
msgid "Reset to Defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
#: lib/bds/desktop/shell_live/import_editor.ex:1132
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Resolution"
|
msgid "Resolution"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:597
|
#: lib/bds/desktop/shell_live/chat_editor.ex:602
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Result"
|
msgid "Result"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:898
|
#: lib/bds/desktop/shell_live/post_editor.ex:964
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Reverted"
|
msgid "Reverted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2180,13 +2180,13 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:324
|
#: lib/bds/desktop/shell_live/media_editor.ex:328
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save Translation"
|
msgid "Save Translation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:702
|
#: lib/bds/desktop/shell_live/media_editor.ex:710
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:896
|
#: lib/bds/desktop/shell_live/post_editor.ex:962
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saved"
|
msgid "Saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2277,7 +2277,7 @@ msgstr ""
|
|||||||
msgid "Search settings"
|
msgid "Search settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:847
|
#: lib/bds/desktop/shell_live/import_editor.ex:850
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select & Analyze"
|
msgid "Select & Analyze"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2292,19 +2292,19 @@ msgstr ""
|
|||||||
msgid "Select Page"
|
msgid "Select Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:646
|
#: lib/bds/desktop/shell_live/import_editor.ex:649
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
#: lib/bds/desktop/shell_live/import_editor.ex:833
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:179
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
msgid "Select a WordPress export file (WXR) and an uploads folder to analyze what would be imported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1099
|
#: lib/bds/desktop/shell_live/import_editor.ex:1102
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a WordPress export file to begin analysis."
|
msgid "Select a WordPress export file to begin analysis."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:845
|
#: lib/bds/desktop/shell_live/import_editor.ex:848
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Select a file to analyze"
|
msgid "Select a file to analyze"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2358,7 +2358,7 @@ msgstr ""
|
|||||||
msgid "Side by Side"
|
msgid "Side by Side"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:866
|
#: lib/bds/desktop/shell_live/import_editor.ex:869
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2384,8 +2384,8 @@ msgstr ""
|
|||||||
msgid "Size"
|
msgid "Size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1126
|
#: lib/bds/desktop/shell_live/import_editor.ex:1129
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
#: lib/bds/desktop/shell_live/import_editor.ex:1186
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:238
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:24
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:23
|
||||||
@@ -2408,14 +2408,14 @@ msgstr ""
|
|||||||
msgid "Start chat"
|
msgid "Start chat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:921
|
#: lib/bds/desktop/shell_live/import_editor.ex:924
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Starting..."
|
msgid "Starting..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_data.ex:115
|
#: lib/bds/desktop/shell_data.ex:115
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1178
|
#: lib/bds/desktop/shell_live/import_editor.ex:1181
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1229
|
#: lib/bds/desktop/shell_live/import_editor.ex:1232
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2475,8 +2475,8 @@ msgstr ""
|
|||||||
msgid "Tag name"
|
msgid "Tag name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
#: lib/bds/desktop/shell_live/import_editor.ex:894
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1028
|
#: lib/bds/desktop/shell_live/import_editor.ex:1031
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:297
|
#: lib/bds/desktop/shell_live/index.html.heex:297
|
||||||
#: lib/bds/desktop/shell_live/index.html.heex:325
|
#: lib/bds/desktop/shell_live/index.html.heex:325
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:161
|
||||||
@@ -2585,7 +2585,7 @@ msgstr ""
|
|||||||
msgid "This item is referenced by:"
|
msgid "This item is referenced by:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1182
|
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:146
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:285
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:153
|
||||||
@@ -2656,14 +2656,14 @@ msgstr ""
|
|||||||
msgid "Toggle sidebar"
|
msgid "Toggle sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:348
|
#: lib/bds/desktop/shell_live/media_editor.ex:352
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:537
|
#: lib/bds/desktop/shell_live/media_editor.ex:545
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:558
|
#: lib/bds/desktop/shell_live/media_editor.ex:566
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:563
|
#: lib/bds/desktop/shell_live/media_editor.ex:571
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:76
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:696
|
#: lib/bds/desktop/shell_live/post_editor.ex:762
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:725
|
#: lib/bds/desktop/shell_live/post_editor.ex:791
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:730
|
#: lib/bds/desktop/shell_live/post_editor.ex:796
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:60
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Translate"
|
msgid "Translate"
|
||||||
@@ -2695,8 +2695,8 @@ msgstr ""
|
|||||||
msgid "Translations"
|
msgid "Translations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1180
|
#: lib/bds/desktop/shell_live/import_editor.ex:1183
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1231
|
#: lib/bds/desktop/shell_live/import_editor.ex:1234
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2716,7 +2716,7 @@ msgstr ""
|
|||||||
msgid "UI"
|
msgid "UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
#: lib/bds/desktop/shell_live/import_editor.ex:873
|
||||||
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
#: lib/bds/desktop/shell_live/overlay_html/shell_overlay.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "URL"
|
msgid "URL"
|
||||||
@@ -2727,26 +2727,26 @@ msgstr ""
|
|||||||
msgid "Undo"
|
msgid "Undo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1004
|
#: lib/bds/desktop/shell_live/import_editor.ex:1007
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1059
|
#: lib/bds/desktop/shell_live/import_editor.ex:1062
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:265
|
#: lib/bds/desktop/shell_live/media_editor.ex:269
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unlink from Post"
|
msgid "Unlink from Post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/media_editor.ex:701
|
#: lib/bds/desktop/shell_live/media_editor.ex:709
|
||||||
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
#: lib/bds/desktop/shell_live/media_editor_html/media_editor.html.heex:10
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:895
|
#: lib/bds/desktop/shell_live/post_editor.ex:961
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:7
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unsaved"
|
msgid "Unsaved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:867
|
#: lib/bds/desktop/shell_live/import_editor.ex:870
|
||||||
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
#: lib/bds/desktop/shell_live/post_editor/post_metadata.ex:166
|
||||||
#: lib/bds/ui/sidebar.ex:1116
|
#: lib/bds/ui/sidebar.ex:1116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2754,13 +2754,13 @@ msgid "Untitled"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
#: lib/bds/desktop/shell_live/import_editor.ex:643
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:827
|
#: lib/bds/desktop/shell_live/import_editor.ex:830
|
||||||
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
#: lib/bds/desktop/shell_live/tab_helpers.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Untitled Import"
|
msgid "Untitled Import"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:454
|
#: lib/bds/desktop/shell_live/post_editor_html/post_editor.html.heex:457
|
||||||
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
#: lib/bds/desktop/shell_live/script_editor_html/script_editor.html.heex:48
|
||||||
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
#: lib/bds/desktop/shell_live/template_editor_html/template_editor.html.heex:46
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@@ -2778,13 +2778,13 @@ msgid "Upload Site"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
#: lib/bds/desktop/shell_live/import_editor.ex:168
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:835
|
#: lib/bds/desktop/shell_live/import_editor.ex:838
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Uploads Folder"
|
msgid "Uploads Folder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1083
|
#: lib/bds/desktop/shell_live/import_editor.ex:1086
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used in: %{items}%{more}"
|
msgid "Used in: %{items}%{more}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2824,13 +2824,13 @@ msgstr ""
|
|||||||
msgid "View on GitHub"
|
msgid "View on GitHub"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1185
|
#: lib/bds/desktop/shell_live/import_editor.ex:1188
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WP Status"
|
msgid "WP Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
#: lib/bds/desktop/shell_live/import_editor.ex:193
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:843
|
#: lib/bds/desktop/shell_live/import_editor.ex:846
|
||||||
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
#: lib/bds/desktop/shell_live/import_editor/analysis_state.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "WXR File"
|
msgid "WXR File"
|
||||||
@@ -2857,7 +2857,7 @@ msgstr ""
|
|||||||
msgid "Wrap Long Lines"
|
msgid "Wrap Long Lines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/chat_editor.ex:530
|
#: lib/bds/desktop/shell_live/chat_editor.ex:535
|
||||||
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
#: lib/bds/desktop/shell_live/chat_surface.ex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You"
|
msgid "You"
|
||||||
@@ -2883,8 +2883,8 @@ msgstr ""
|
|||||||
msgid "and %{count} more"
|
msgid "and %{count} more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1265
|
#: lib/bds/desktop/shell_live/import_editor.ex:1268
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1302
|
#: lib/bds/desktop/shell_live/import_editor.ex:1305
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "conflict"
|
msgid "conflict"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2914,8 +2914,8 @@ msgstr ""
|
|||||||
msgid "dashboard.stats.published"
|
msgid "dashboard.stats.published"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
#: lib/bds/desktop/shell_live/import_editor.ex:1269
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
#: lib/bds/desktop/shell_live/import_editor.ex:1306
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "duplicate"
|
msgid "duplicate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2925,7 +2925,7 @@ msgstr ""
|
|||||||
msgid "edit"
|
msgid "edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1320
|
#: lib/bds/desktop/shell_live/import_editor.ex:1323
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "existing"
|
msgid "existing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -2935,13 +2935,13 @@ msgstr ""
|
|||||||
msgid "gitDiff.changedFiles"
|
msgid "gitDiff.changedFiles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1321
|
#: lib/bds/desktop/shell_live/import_editor.ex:1324
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "mapped"
|
msgid "mapped"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:889
|
#: lib/bds/desktop/shell_live/import_editor.ex:892
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:939
|
#: lib/bds/desktop/shell_live/import_editor.ex:942
|
||||||
#: lib/bds/ui/workbench.ex:213
|
#: lib/bds/ui/workbench.ex:213
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "media"
|
msgid "media"
|
||||||
@@ -2999,26 +2999,26 @@ msgstr ""
|
|||||||
msgid "menuEditor.unindent"
|
msgid "menuEditor.unindent"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
#: lib/bds/desktop/shell_live/import_editor.ex:1307
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "missing"
|
msgid "missing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1263
|
#: lib/bds/desktop/shell_live/import_editor.ex:1266
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1300
|
#: lib/bds/desktop/shell_live/import_editor.ex:1303
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1322
|
#: lib/bds/desktop/shell_live/import_editor.ex:1325
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "new"
|
msgid "new"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:888
|
#: lib/bds/desktop/shell_live/import_editor.ex:891
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
#: lib/bds/desktop/shell_live/import_editor.ex:943
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "pages"
|
msgid "pages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:884
|
#: lib/bds/desktop/shell_live/import_editor.ex:887
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:938
|
#: lib/bds/desktop/shell_live/import_editor.ex:941
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "posts"
|
msgid "posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3035,7 +3035,7 @@ msgstr ""
|
|||||||
msgid "results for"
|
msgid "results for"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:937
|
#: lib/bds/desktop/shell_live/import_editor.ex:940
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "tags/categories"
|
msgid "tags/categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3099,8 +3099,8 @@ msgstr ""
|
|||||||
msgid "translationValidation.revalidate"
|
msgid "translationValidation.revalidate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1264
|
#: lib/bds/desktop/shell_live/import_editor.ex:1267
|
||||||
#: lib/bds/desktop/shell_live/import_editor.ex:1301
|
#: lib/bds/desktop/shell_live/import_editor.ex:1304
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "update"
|
msgid "update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3241,12 +3241,12 @@ msgstr ""
|
|||||||
msgid "Move this post to the archive"
|
msgid "Move this post to the archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:601
|
#: lib/bds/desktop/shell_live/post_editor.ex:617
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post archived"
|
msgid "Post archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/bds/desktop/shell_live/post_editor.ex:634
|
#: lib/bds/desktop/shell_live/post_editor.ex:700
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Post unarchived"
|
msgid "Post unarchived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -3424,3 +3424,19 @@ msgstr ""
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Open a project before importing a blogmark."
|
msgid "Open a project before importing a blogmark."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:643
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Added %{name}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:650
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Failed to import %{path}: %{reason}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:642
|
||||||
|
#: lib/bds/desktop/shell_live/post_editor.ex:649
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Insert Image"
|
||||||
|
msgstr ""
|
||||||
|
|||||||
147
test/bds/editor_image_drop_test.exs
Normal file
147
test/bds/editor_image_drop_test.exs
Normal file
@@ -0,0 +1,147 @@
|
|||||||
|
defmodule BDS.EditorImageDropTest do
|
||||||
|
@moduledoc """
|
||||||
|
Covers the drag-and-drop image chain (action_patterns.allium
|
||||||
|
DragDropImageChain / editor_post.allium PostDragDropImage):
|
||||||
|
|
||||||
|
1. import media (file copy + base sidecar)
|
||||||
|
2. generate thumbnails synchronously
|
||||||
|
3. link media to the post
|
||||||
|
4. insert `` at the cursor
|
||||||
|
|
||||||
|
Steps 5-6 (AI analysis + auto-translate) are background AI activities gated
|
||||||
|
behind airplane mode and are not exercised here.
|
||||||
|
"""
|
||||||
|
use ExUnit.Case, async: false
|
||||||
|
|
||||||
|
import Phoenix.ConnTest
|
||||||
|
import Phoenix.LiveViewTest
|
||||||
|
|
||||||
|
alias BDS.Desktop.ShellLive.EditorImageDrop
|
||||||
|
alias BDS.{AI, Media, Repo}
|
||||||
|
|
||||||
|
@endpoint BDS.Desktop.Endpoint
|
||||||
|
|
||||||
|
setup do
|
||||||
|
:ok = Ecto.Adapters.SQL.Sandbox.checkout(Repo)
|
||||||
|
Ecto.Adapters.SQL.Sandbox.mode(Repo, {:shared, self()})
|
||||||
|
|
||||||
|
temp_dir =
|
||||||
|
Path.join(System.tmp_dir!(), "bds-editor-drop-#{System.unique_integer([:positive])}")
|
||||||
|
|
||||||
|
File.mkdir_p!(temp_dir)
|
||||||
|
on_exit(fn -> File.rm_rf(temp_dir) end)
|
||||||
|
|
||||||
|
{:ok, project} = BDS.Projects.create_project(%{name: "Drop Test", data_path: temp_dir})
|
||||||
|
{:ok, _project} = BDS.Projects.set_active_project(project.id)
|
||||||
|
|
||||||
|
{:ok, post} =
|
||||||
|
BDS.Posts.create_post(%{project_id: project.id, title: "Drop Post", content: "Body"})
|
||||||
|
|
||||||
|
%{project: project, post: post, temp_dir: temp_dir}
|
||||||
|
end
|
||||||
|
|
||||||
|
defp write_image!(path) do
|
||||||
|
File.write!(path, Image.new!(4, 4, color: [255, 0, 0]) |> Image.write!(:memory, suffix: ".jpg"))
|
||||||
|
path
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "EditorImageDrop.import_and_link/3" do
|
||||||
|
test "imports, generates thumbnails, links the post, and returns image markdown", %{
|
||||||
|
project: project,
|
||||||
|
post: post,
|
||||||
|
temp_dir: temp_dir
|
||||||
|
} do
|
||||||
|
source = write_image!(Path.join(temp_dir, "dropped.jpg"))
|
||||||
|
|
||||||
|
assert {:ok, media, markdown} =
|
||||||
|
EditorImageDrop.import_and_link(project.id, post.id, source)
|
||||||
|
|
||||||
|
# Step 1: media row + file copy.
|
||||||
|
assert Repo.get(Media.Media, media.id)
|
||||||
|
assert File.exists?(Path.join(temp_dir, media.file_path))
|
||||||
|
|
||||||
|
# Step 2: thumbnails generated synchronously.
|
||||||
|
thumbnails = Media.thumbnail_paths(media)
|
||||||
|
assert thumbnails != %{}
|
||||||
|
|
||||||
|
Enum.each(Map.values(thumbnails), fn path ->
|
||||||
|
assert File.exists?(Path.join(temp_dir, path)), "missing thumbnail #{path}"
|
||||||
|
end)
|
||||||
|
|
||||||
|
# Step 3: linked to the post.
|
||||||
|
assert [linked] = Media.list_linked_posts(media.id)
|
||||||
|
assert linked.post_id == post.id
|
||||||
|
|
||||||
|
# Step 4: markdown reference inserted at the cursor.
|
||||||
|
assert markdown == ""
|
||||||
|
end
|
||||||
|
|
||||||
|
test "non-image files yield a plain link reference", %{
|
||||||
|
project: project,
|
||||||
|
post: post,
|
||||||
|
temp_dir: temp_dir
|
||||||
|
} do
|
||||||
|
source = Path.join(temp_dir, "notes.txt")
|
||||||
|
File.write!(source, "plain text")
|
||||||
|
|
||||||
|
assert {:ok, media, markdown} =
|
||||||
|
EditorImageDrop.import_and_link(project.id, post.id, source)
|
||||||
|
|
||||||
|
assert markdown == "[#{media.original_name}](bds-media://#{media.id})"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "drag-drop event in the post editor" do
|
||||||
|
setup do
|
||||||
|
prev = System.get_env("BDS_DESKTOP_AUTOMATION")
|
||||||
|
System.put_env("BDS_DESKTOP_AUTOMATION", "1")
|
||||||
|
|
||||||
|
on_exit(fn ->
|
||||||
|
if prev,
|
||||||
|
do: System.put_env("BDS_DESKTOP_AUTOMATION", prev),
|
||||||
|
else: System.delete_env("BDS_DESKTOP_AUTOMATION")
|
||||||
|
end)
|
||||||
|
|
||||||
|
:ok
|
||||||
|
end
|
||||||
|
|
||||||
|
test "dropping an image imports, links, and inserts markdown at the cursor", %{
|
||||||
|
post: post,
|
||||||
|
temp_dir: temp_dir
|
||||||
|
} do
|
||||||
|
source = write_image!(Path.join(temp_dir, "editor-drop.jpg"))
|
||||||
|
|
||||||
|
# Airplane mode keeps the background AI steps (5-6) out of the test while
|
||||||
|
# the synchronous chain (1-4) must still complete.
|
||||||
|
:ok = AI.set_airplane_mode(true)
|
||||||
|
|
||||||
|
{:ok, view, _html} = live_isolated(build_conn(), BDS.Desktop.ShellLive)
|
||||||
|
|
||||||
|
render_click(view, "pin_sidebar_item", %{
|
||||||
|
"route" => "post",
|
||||||
|
"id" => post.id,
|
||||||
|
"title" => post.title,
|
||||||
|
"subtitle" => "draft"
|
||||||
|
})
|
||||||
|
|
||||||
|
view
|
||||||
|
|> element("[data-monaco-drop-event='editor_image_dropped']")
|
||||||
|
|> render_hook("editor_image_dropped", %{"path" => source})
|
||||||
|
|
||||||
|
assert_push_event(view, "post-editor-insert-content", %{content: content})
|
||||||
|
assert content =~ ~r{^!\[\]\(bds-media://[0-9a-f-]+\)$}
|
||||||
|
|
||||||
|
[media] = Repo.all(Media.Media)
|
||||||
|
assert media.project_id == post.project_id
|
||||||
|
assert content == ""
|
||||||
|
|
||||||
|
assert [linked] = Media.list_linked_posts(media.id)
|
||||||
|
assert linked.post_id == post.id
|
||||||
|
|
||||||
|
# Synchronous steps ran despite airplane mode; no AI metadata applied.
|
||||||
|
assert is_nil(media.title)
|
||||||
|
|
||||||
|
:ok = AI.set_airplane_mode(false)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user