This commit is contained in:
		| @@ -28,14 +28,13 @@ import { LiveSocket } from 'phoenix_live_view' | |||||||
| import topbar from 'topbar' | import topbar from 'topbar' | ||||||
| import Date from './date' | import Date from './date' | ||||||
| import DateTime from './datetime' | import DateTime from './datetime' | ||||||
| import MaintainAttrs from './maintain_attrs' |  | ||||||
|  |  | ||||||
| const csrfTokenElement = document.querySelector("meta[name='csrf-token']") | const csrfTokenElement = document.querySelector("meta[name='csrf-token']") | ||||||
| let csrfToken | let csrfToken | ||||||
| if (csrfTokenElement) { csrfToken = csrfTokenElement.getAttribute('content') } | if (csrfTokenElement) { csrfToken = csrfTokenElement.getAttribute('content') } | ||||||
| const liveSocket = new LiveSocket('/live', Socket, { | const liveSocket = new LiveSocket('/live', Socket, { | ||||||
|   params: { _csrf_token: csrfToken }, |   params: { _csrf_token: csrfToken }, | ||||||
|   hooks: { Date, DateTime, MaintainAttrs } |   hooks: { Date, DateTime } | ||||||
| }) | }) | ||||||
|  |  | ||||||
| // Show progress bar on live navigation and form submits | // Show progress bar on live navigation and form submits | ||||||
|   | |||||||
| @@ -1,22 +0,0 @@ | |||||||
| // maintain user adjusted attributes, like textbox length on phoenix liveview |  | ||||||
| // update. https://github.com/phoenixframework/phoenix_live_view/issues/1011 |  | ||||||
|  |  | ||||||
| export default { |  | ||||||
|   attrs () { |  | ||||||
|     if (this.el && this.el.getAttribute('data-attrs')) { |  | ||||||
|       return this.el.getAttribute('data-attrs').split(', ') |  | ||||||
|     } else { |  | ||||||
|       return [] |  | ||||||
|     } |  | ||||||
|   }, |  | ||||||
|   beforeUpdate () { |  | ||||||
|     if (this.el) { |  | ||||||
|       this.prevAttrs = this.attrs().map(name => [name, this.el.getAttribute(name)]) |  | ||||||
|     } |  | ||||||
|   }, |  | ||||||
|   updated () { |  | ||||||
|     if (this.el) { |  | ||||||
|       this.prevAttrs.forEach(([name, val]) => this.el.setAttribute(name, val)) |  | ||||||
|     } |  | ||||||
|   } |  | ||||||
| } |  | ||||||
| @@ -1,7 +1,6 @@ | |||||||
| <div | <div | ||||||
|   id={"show-context-content-#{@context.id}"} |   id={"show-context-content-#{@context.id}"} | ||||||
|   class="input input-primary h-128 min-h-128 inline-block whitespace-pre-wrap overflow-x-hidden overflow-y-auto" |   class="input input-primary h-128 min-h-128 inline-block whitespace-pre-wrap overflow-x-hidden overflow-y-auto" | ||||||
|   phx-hook="MaintainAttrs" |  | ||||||
|   phx-update="ignore" |   phx-update="ignore" | ||||||
|   readonly |   readonly | ||||||
|   phx-no-format |   phx-no-format | ||||||
|   | |||||||
| @@ -1,7 +1,6 @@ | |||||||
| <div | <div | ||||||
|   id={"show-note-content-#{@note.id}"} |   id={"show-note-content-#{@note.id}"} | ||||||
|   class="input input-primary h-128 min-h-128 inline-block whitespace-pre-wrap overflow-x-hidden overflow-y-auto" |   class="input input-primary h-128 min-h-128 inline-block whitespace-pre-wrap overflow-x-hidden overflow-y-auto" | ||||||
|   phx-hook="MaintainAttrs" |  | ||||||
|   phx-update="ignore" |   phx-update="ignore" | ||||||
|   readonly |   readonly | ||||||
|   phx-no-format |   phx-no-format | ||||||
|   | |||||||
| @@ -1,7 +1,6 @@ | |||||||
| <div | <div | ||||||
|   id={"show-step-content-#{@step.id}"} |   id={"show-step-content-#{@step.id}"} | ||||||
|   class="input input-primary h-32 min-h-32 inline-block whitespace-pre-wrap overflow-x-hidden overflow-y-auto" |   class="input input-primary h-32 min-h-32 inline-block whitespace-pre-wrap overflow-x-hidden overflow-y-auto" | ||||||
|   phx-hook="MaintainAttrs" |  | ||||||
|   phx-update="ignore" |   phx-update="ignore" | ||||||
|   readonly |   readonly | ||||||
|   phx-no-format |   phx-no-format | ||||||
|   | |||||||
| @@ -19,7 +19,6 @@ | |||||||
|     <%= textarea(f, :content, |     <%= textarea(f, :content, | ||||||
|       id: "context-form-content", |       id: "context-form-content", | ||||||
|       class: "input input-primary h-64 min-h-64", |       class: "input input-primary h-64 min-h-64", | ||||||
|       phx_hook: "MaintainAttrs", |  | ||||||
|       phx_update: "ignore", |       phx_update: "ignore", | ||||||
|       placeholder: gettext("use [[note-slug]] to link to a note"), |       placeholder: gettext("use [[note-slug]] to link to a note"), | ||||||
|       aria_label: gettext("use [[note-slug]] to link to a note") |       aria_label: gettext("use [[note-slug]] to link to a note") | ||||||
|   | |||||||
| @@ -19,7 +19,6 @@ | |||||||
|     <%= textarea(f, :content, |     <%= textarea(f, :content, | ||||||
|       id: "note-form-content", |       id: "note-form-content", | ||||||
|       class: "input input-primary h-64 min-h-64", |       class: "input input-primary h-64 min-h-64", | ||||||
|       phx_hook: "MaintainAttrs", |  | ||||||
|       phx_update: "ignore", |       phx_update: "ignore", | ||||||
|       placeholder: gettext("content"), |       placeholder: gettext("content"), | ||||||
|       aria_label: gettext("content") |       aria_label: gettext("content") | ||||||
|   | |||||||
| @@ -19,7 +19,6 @@ | |||||||
|     <%= textarea(f, :description, |     <%= textarea(f, :description, | ||||||
|       id: "pipeline-form-description", |       id: "pipeline-form-description", | ||||||
|       class: "input input-primary h-64 min-h-64", |       class: "input input-primary h-64 min-h-64", | ||||||
|       phx_hook: "MaintainAttrs", |  | ||||||
|       phx_update: "ignore", |       phx_update: "ignore", | ||||||
|       placeholder: gettext("description"), |       placeholder: gettext("description"), | ||||||
|       aria_label: gettext("description") |       aria_label: gettext("description") | ||||||
|   | |||||||
| @@ -13,7 +13,6 @@ | |||||||
|     :if={@pipeline.description} |     :if={@pipeline.description} | ||||||
|     id="show-pipeline-description" |     id="show-pipeline-description" | ||||||
|     class="input input-primary h-32 min-h-32" |     class="input input-primary h-32 min-h-32" | ||||||
|     phx-hook="MaintainAttrs" |  | ||||||
|     phx-update="ignore" |     phx-update="ignore" | ||||||
|     readonly |     readonly | ||||||
|     phx-no-format |     phx-no-format | ||||||
|   | |||||||
| @@ -19,7 +19,6 @@ | |||||||
|     <%= textarea(f, :content, |     <%= textarea(f, :content, | ||||||
|       id: "step-form-content", |       id: "step-form-content", | ||||||
|       class: "input input-primary h-64 min-h-64", |       class: "input input-primary h-64 min-h-64", | ||||||
|       phx_hook: "MaintainAttrs", |  | ||||||
|       phx_update: "ignore", |       phx_update: "ignore", | ||||||
|       placeholder: gettext("use [[context-slug]] to link to a context"), |       placeholder: gettext("use [[context-slug]] to link to a context"), | ||||||
|       aria_label: gettext("use [[context-slug]] to link to a context") |       aria_label: gettext("use [[context-slug]] to link to a context") | ||||||
|   | |||||||
| @@ -44,8 +44,8 @@ msgstr "" | |||||||
| #: lib/memex_web/live/note_live/index.html.heex:50 | #: lib/memex_web/live/note_live/index.html.heex:50 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:34 | #: lib/memex_web/live/note_live/show.html.heex:34 | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:52 | #: lib/memex_web/live/pipeline_live/index.html.heex:52 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:42 | #: lib/memex_web/live/pipeline_live/show.html.heex:41 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:113 | #: lib/memex_web/live/pipeline_live/show.html.heex:112 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "delete" | msgid "delete" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -60,8 +60,8 @@ msgstr "" | |||||||
| #: lib/memex_web/live/note_live/index.html.heex:40 | #: lib/memex_web/live/note_live/index.html.heex:40 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:24 | #: lib/memex_web/live/note_live/show.html.heex:24 | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:40 | #: lib/memex_web/live/pipeline_live/index.html.heex:40 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:32 | #: lib/memex_web/live/pipeline_live/show.html.heex:31 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:102 | #: lib/memex_web/live/pipeline_live/show.html.heex:101 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "edit" | msgid "edit" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -108,16 +108,16 @@ msgstr "" | |||||||
| msgid "register" | msgid "register" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:44 | #: lib/memex_web/live/context_live/form_component.html.heex:43 | ||||||
| #: lib/memex_web/live/invite_live/form_component.html.heex:32 | #: lib/memex_web/live/invite_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:44 | #: lib/memex_web/live/note_live/form_component.html.heex:43 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:44 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:43 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:30 | #: lib/memex_web/live/step_live/form_component.html.heex:29 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "save" | msgid "save" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:128 | #: lib/memex_web/live/pipeline_live/show.html.heex:127 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "add step" | msgid "add step" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -162,12 +162,12 @@ msgid "delete %{note_slug}" | |||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:49 | #: lib/memex_web/live/pipeline_live/index.html.heex:49 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:40 | #: lib/memex_web/live/pipeline_live/show.html.heex:39 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "delete %{pipeline_slug}" | msgid "delete %{pipeline_slug}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:111 | #: lib/memex_web/live/pipeline_live/show.html.heex:110 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "delete %{step_title}" | msgid "delete %{step_title}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -192,7 +192,7 @@ msgstr "" | |||||||
| msgid "edit %{pipeline_slug}" | msgid "edit %{pipeline_slug}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:100 | #: lib/memex_web/live/pipeline_live/show.html.heex:99 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "edit %{step_title}" | msgid "edit %{step_title}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -202,12 +202,12 @@ msgstr "" | |||||||
| msgid "edit invite for %{invite_name}" | msgid "edit invite for %{invite_name}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:90 | #: lib/memex_web/live/pipeline_live/show.html.heex:89 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "move %{step_title} down" | msgid "move %{step_title} down" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:74 | #: lib/memex_web/live/pipeline_live/show.html.heex:73 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "move %{step_title} up" | msgid "move %{step_title} up" | ||||||
| msgstr "" | msgstr "" | ||||||
|   | |||||||
| @@ -44,8 +44,8 @@ msgstr "" | |||||||
| #: lib/memex_web/live/note_live/index.html.heex:50 | #: lib/memex_web/live/note_live/index.html.heex:50 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:34 | #: lib/memex_web/live/note_live/show.html.heex:34 | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:52 | #: lib/memex_web/live/pipeline_live/index.html.heex:52 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:42 | #: lib/memex_web/live/pipeline_live/show.html.heex:41 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:113 | #: lib/memex_web/live/pipeline_live/show.html.heex:112 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "delete" | msgid "delete" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -60,8 +60,8 @@ msgstr "" | |||||||
| #: lib/memex_web/live/note_live/index.html.heex:40 | #: lib/memex_web/live/note_live/index.html.heex:40 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:24 | #: lib/memex_web/live/note_live/show.html.heex:24 | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:40 | #: lib/memex_web/live/pipeline_live/index.html.heex:40 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:32 | #: lib/memex_web/live/pipeline_live/show.html.heex:31 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:102 | #: lib/memex_web/live/pipeline_live/show.html.heex:101 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "edit" | msgid "edit" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -108,16 +108,16 @@ msgstr "" | |||||||
| msgid "register" | msgid "register" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:44 | #: lib/memex_web/live/context_live/form_component.html.heex:43 | ||||||
| #: lib/memex_web/live/invite_live/form_component.html.heex:32 | #: lib/memex_web/live/invite_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:44 | #: lib/memex_web/live/note_live/form_component.html.heex:43 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:44 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:43 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:30 | #: lib/memex_web/live/step_live/form_component.html.heex:29 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "save" | msgid "save" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:128 | #: lib/memex_web/live/pipeline_live/show.html.heex:127 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "add step" | msgid "add step" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -162,12 +162,12 @@ msgid "delete %{note_slug}" | |||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:49 | #: lib/memex_web/live/pipeline_live/index.html.heex:49 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:40 | #: lib/memex_web/live/pipeline_live/show.html.heex:39 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "delete %{pipeline_slug}" | msgid "delete %{pipeline_slug}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:111 | #: lib/memex_web/live/pipeline_live/show.html.heex:110 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "delete %{step_title}" | msgid "delete %{step_title}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -192,7 +192,7 @@ msgstr "" | |||||||
| msgid "edit %{pipeline_slug}" | msgid "edit %{pipeline_slug}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:100 | #: lib/memex_web/live/pipeline_live/show.html.heex:99 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "edit %{step_title}" | msgid "edit %{step_title}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -202,12 +202,12 @@ msgstr "" | |||||||
| msgid "edit invite for %{invite_name}" | msgid "edit invite for %{invite_name}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:90 | #: lib/memex_web/live/pipeline_live/show.html.heex:89 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "move %{step_title} down" | msgid "move %{step_title} down" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:74 | #: lib/memex_web/live/pipeline_live/show.html.heex:73 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "move %{step_title} up" | msgid "move %{step_title} up" | ||||||
| msgstr "" | msgstr "" | ||||||
|   | |||||||
| @@ -19,7 +19,7 @@ msgstr "" | |||||||
|  |  | ||||||
| #: lib/memex_web/live/context_live/show.html.heex:15 | #: lib/memex_web/live/context_live/show.html.heex:15 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:15 | #: lib/memex_web/live/note_live/show.html.heex:15 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:23 | #: lib/memex_web/live/pipeline_live/show.html.heex:22 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "Visibility: %{visibility}" | msgid "Visibility: %{visibility}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -45,8 +45,8 @@ msgstr "" | |||||||
| msgid "confirm new password" | msgid "confirm new password" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/note_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:24 | #: lib/memex_web/live/note_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "content" | msgid "content" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -243,20 +243,20 @@ msgstr "" | |||||||
| msgid "report bugs or request features" | msgid "report bugs or request features" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:45 | #: lib/memex_web/live/context_live/form_component.html.heex:44 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:45 | #: lib/memex_web/live/note_live/form_component.html.heex:44 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:45 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:44 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:31 | #: lib/memex_web/live/step_live/form_component.html.heex:30 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "saving..." | msgid "saving..." | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/context_live/form_component.html.heex:39 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:40 | #: lib/memex_web/live/context_live/form_component.html.heex:40 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:41 | #: lib/memex_web/live/note_live/form_component.html.heex:39 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:40 | #: lib/memex_web/live/note_live/form_component.html.heex:40 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:41 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:39 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:40 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:40 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:41 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "select privacy" | msgid "select privacy" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -272,12 +272,12 @@ msgstr "" | |||||||
| msgid "settings" | msgid "settings" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/context_live/form_component.html.heex:31 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:32 | #: lib/memex_web/live/context_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:33 | #: lib/memex_web/live/note_live/form_component.html.heex:31 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:32 | #: lib/memex_web/live/note_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:33 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:31 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:32 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:33 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "tag1,tag2" | msgid "tag1,tag2" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -334,8 +334,8 @@ msgid "no contexts found" | |||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/components/pipelines_table_component.ex:48 | #: lib/memex_web/components/pipelines_table_component.ex:48 | ||||||
|  | #: lib/memex_web/live/pipeline_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:24 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "description" | msgid "description" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -409,8 +409,8 @@ msgstr "" | |||||||
| msgid "home" | msgid "home" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/context_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:24 | #: lib/memex_web/live/context_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "use [[note-slug]] to link to a note" | msgid "use [[note-slug]] to link to a note" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -436,7 +436,7 @@ msgstr "" | |||||||
| msgid "what is this?" | msgid "what is this?" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:60 | #: lib/memex_web/live/pipeline_live/show.html.heex:59 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "%{position}. %{title}" | msgid "%{position}. %{title}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -461,12 +461,12 @@ msgstr "" | |||||||
| msgid "add step to %{slug}" | msgid "add step to %{slug}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:54 | #: lib/memex_web/live/pipeline_live/show.html.heex:53 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "no steps" | msgid "no steps" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:49 | #: lib/memex_web/live/pipeline_live/show.html.heex:48 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "steps:" | msgid "steps:" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -477,8 +477,8 @@ msgstr "" | |||||||
| msgid "title" | msgid "title" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/step_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:24 | #: lib/memex_web/live/step_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "use [[context-slug]] to link to a context" | msgid "use [[context-slug]] to link to a context" | ||||||
| msgstr "" | msgstr "" | ||||||
|   | |||||||
| @@ -70,8 +70,8 @@ msgstr "" | |||||||
| #: lib/memex_web/live/note_live/index.html.heex:47 | #: lib/memex_web/live/note_live/index.html.heex:47 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:31 | #: lib/memex_web/live/note_live/show.html.heex:31 | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:47 | #: lib/memex_web/live/pipeline_live/index.html.heex:47 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:39 | #: lib/memex_web/live/pipeline_live/show.html.heex:38 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:110 | #: lib/memex_web/live/pipeline_live/show.html.heex:109 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "are you sure?" | msgid "are you sure?" | ||||||
| msgstr "" | msgstr "" | ||||||
|   | |||||||
| @@ -17,7 +17,7 @@ msgstr "" | |||||||
|  |  | ||||||
| #: lib/memex_web/live/context_live/show.html.heex:15 | #: lib/memex_web/live/context_live/show.html.heex:15 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:15 | #: lib/memex_web/live/note_live/show.html.heex:15 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:23 | #: lib/memex_web/live/pipeline_live/show.html.heex:22 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "Visibility: %{visibility}" | msgid "Visibility: %{visibility}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -43,8 +43,8 @@ msgstr "" | |||||||
| msgid "confirm new password" | msgid "confirm new password" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/note_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:24 | #: lib/memex_web/live/note_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "content" | msgid "content" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -241,20 +241,20 @@ msgstr "" | |||||||
| msgid "report bugs or request features" | msgid "report bugs or request features" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:45 | #: lib/memex_web/live/context_live/form_component.html.heex:44 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:45 | #: lib/memex_web/live/note_live/form_component.html.heex:44 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:45 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:44 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:31 | #: lib/memex_web/live/step_live/form_component.html.heex:30 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "saving..." | msgid "saving..." | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/context_live/form_component.html.heex:39 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:40 | #: lib/memex_web/live/context_live/form_component.html.heex:40 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:41 | #: lib/memex_web/live/note_live/form_component.html.heex:39 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:40 | #: lib/memex_web/live/note_live/form_component.html.heex:40 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:41 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:39 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:40 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:40 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:41 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "select privacy" | msgid "select privacy" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -270,12 +270,12 @@ msgstr "" | |||||||
| msgid "settings" | msgid "settings" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/context_live/form_component.html.heex:31 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:32 | #: lib/memex_web/live/context_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:33 | #: lib/memex_web/live/note_live/form_component.html.heex:31 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:32 | #: lib/memex_web/live/note_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:33 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:31 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:32 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:33 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "tag1,tag2" | msgid "tag1,tag2" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -332,8 +332,8 @@ msgid "no contexts found" | |||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/components/pipelines_table_component.ex:48 | #: lib/memex_web/components/pipelines_table_component.ex:48 | ||||||
|  | #: lib/memex_web/live/pipeline_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:24 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "description" | msgid "description" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -407,8 +407,8 @@ msgstr "" | |||||||
| msgid "home" | msgid "home" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/context_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:24 | #: lib/memex_web/live/context_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "use [[note-slug]] to link to a note" | msgid "use [[note-slug]] to link to a note" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -434,7 +434,7 @@ msgstr "" | |||||||
| msgid "what is this?" | msgid "what is this?" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:60 | #: lib/memex_web/live/pipeline_live/show.html.heex:59 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "%{position}. %{title}" | msgid "%{position}. %{title}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -459,12 +459,12 @@ msgstr "" | |||||||
| msgid "add step to %{slug}" | msgid "add step to %{slug}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:54 | #: lib/memex_web/live/pipeline_live/show.html.heex:53 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "no steps" | msgid "no steps" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:49 | #: lib/memex_web/live/pipeline_live/show.html.heex:48 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "steps:" | msgid "steps:" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -475,8 +475,8 @@ msgstr "" | |||||||
| msgid "title" | msgid "title" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/step_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:24 | #: lib/memex_web/live/step_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "use [[context-slug]] to link to a context" | msgid "use [[context-slug]] to link to a context" | ||||||
| msgstr "" | msgstr "" | ||||||
|   | |||||||
| @@ -45,8 +45,8 @@ msgstr "" | |||||||
| #: lib/memex_web/live/note_live/index.html.heex:50 | #: lib/memex_web/live/note_live/index.html.heex:50 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:34 | #: lib/memex_web/live/note_live/show.html.heex:34 | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:52 | #: lib/memex_web/live/pipeline_live/index.html.heex:52 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:42 | #: lib/memex_web/live/pipeline_live/show.html.heex:41 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:113 | #: lib/memex_web/live/pipeline_live/show.html.heex:112 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "delete" | msgid "delete" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -61,8 +61,8 @@ msgstr "" | |||||||
| #: lib/memex_web/live/note_live/index.html.heex:40 | #: lib/memex_web/live/note_live/index.html.heex:40 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:24 | #: lib/memex_web/live/note_live/show.html.heex:24 | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:40 | #: lib/memex_web/live/pipeline_live/index.html.heex:40 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:32 | #: lib/memex_web/live/pipeline_live/show.html.heex:31 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:102 | #: lib/memex_web/live/pipeline_live/show.html.heex:101 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "edit" | msgid "edit" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -109,16 +109,16 @@ msgstr "" | |||||||
| msgid "register" | msgid "register" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:44 | #: lib/memex_web/live/context_live/form_component.html.heex:43 | ||||||
| #: lib/memex_web/live/invite_live/form_component.html.heex:32 | #: lib/memex_web/live/invite_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:44 | #: lib/memex_web/live/note_live/form_component.html.heex:43 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:44 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:43 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:30 | #: lib/memex_web/live/step_live/form_component.html.heex:29 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "save" | msgid "save" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:128 | #: lib/memex_web/live/pipeline_live/show.html.heex:127 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "add step" | msgid "add step" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -163,12 +163,12 @@ msgid "delete %{note_slug}" | |||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:49 | #: lib/memex_web/live/pipeline_live/index.html.heex:49 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:40 | #: lib/memex_web/live/pipeline_live/show.html.heex:39 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "delete %{pipeline_slug}" | msgid "delete %{pipeline_slug}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:111 | #: lib/memex_web/live/pipeline_live/show.html.heex:110 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "delete %{step_title}" | msgid "delete %{step_title}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -193,7 +193,7 @@ msgstr "" | |||||||
| msgid "edit %{pipeline_slug}" | msgid "edit %{pipeline_slug}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:100 | #: lib/memex_web/live/pipeline_live/show.html.heex:99 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "edit %{step_title}" | msgid "edit %{step_title}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -203,12 +203,12 @@ msgstr "" | |||||||
| msgid "edit invite for %{invite_name}" | msgid "edit invite for %{invite_name}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:90 | #: lib/memex_web/live/pipeline_live/show.html.heex:89 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "move %{step_title} down" | msgid "move %{step_title} down" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:74 | #: lib/memex_web/live/pipeline_live/show.html.heex:73 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "move %{step_title} up" | msgid "move %{step_title} up" | ||||||
| msgstr "" | msgstr "" | ||||||
|   | |||||||
| @@ -18,7 +18,7 @@ msgstr "" | |||||||
|  |  | ||||||
| #: lib/memex_web/live/context_live/show.html.heex:15 | #: lib/memex_web/live/context_live/show.html.heex:15 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:15 | #: lib/memex_web/live/note_live/show.html.heex:15 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:23 | #: lib/memex_web/live/pipeline_live/show.html.heex:22 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "Visibility: %{visibility}" | msgid "Visibility: %{visibility}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -44,8 +44,8 @@ msgstr "" | |||||||
| msgid "confirm new password" | msgid "confirm new password" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/note_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:24 | #: lib/memex_web/live/note_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "content" | msgid "content" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -242,20 +242,20 @@ msgstr "" | |||||||
| msgid "report bugs or request features" | msgid "report bugs or request features" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:45 | #: lib/memex_web/live/context_live/form_component.html.heex:44 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:45 | #: lib/memex_web/live/note_live/form_component.html.heex:44 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:45 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:44 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:31 | #: lib/memex_web/live/step_live/form_component.html.heex:30 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "saving..." | msgid "saving..." | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/context_live/form_component.html.heex:39 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:40 | #: lib/memex_web/live/context_live/form_component.html.heex:40 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:41 | #: lib/memex_web/live/note_live/form_component.html.heex:39 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:40 | #: lib/memex_web/live/note_live/form_component.html.heex:40 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:41 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:39 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:40 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:40 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:41 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "select privacy" | msgid "select privacy" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -271,12 +271,12 @@ msgstr "" | |||||||
| msgid "settings" | msgid "settings" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/context_live/form_component.html.heex:31 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:32 | #: lib/memex_web/live/context_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:33 | #: lib/memex_web/live/note_live/form_component.html.heex:31 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:32 | #: lib/memex_web/live/note_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/note_live/form_component.html.heex:33 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:31 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:32 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:32 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:33 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "tag1,tag2" | msgid "tag1,tag2" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -333,8 +333,8 @@ msgid "no contexts found" | |||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/components/pipelines_table_component.ex:48 | #: lib/memex_web/components/pipelines_table_component.ex:48 | ||||||
|  | #: lib/memex_web/live/pipeline_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:24 | #: lib/memex_web/live/pipeline_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/pipeline_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "description" | msgid "description" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -408,8 +408,8 @@ msgstr "" | |||||||
| msgid "home" | msgid "home" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/context_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:24 | #: lib/memex_web/live/context_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/context_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "use [[note-slug]] to link to a note" | msgid "use [[note-slug]] to link to a note" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -435,7 +435,7 @@ msgstr "" | |||||||
| msgid "what is this?" | msgid "what is this?" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:60 | #: lib/memex_web/live/pipeline_live/show.html.heex:59 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "%{position}. %{title}" | msgid "%{position}. %{title}" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -460,12 +460,12 @@ msgstr "" | |||||||
| msgid "add step to %{slug}" | msgid "add step to %{slug}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:54 | #: lib/memex_web/live/pipeline_live/show.html.heex:53 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "no steps" | msgid "no steps" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:49 | #: lib/memex_web/live/pipeline_live/show.html.heex:48 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "steps:" | msgid "steps:" | ||||||
| msgstr "" | msgstr "" | ||||||
| @@ -476,8 +476,8 @@ msgstr "" | |||||||
| msgid "title" | msgid "title" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/memex_web/live/step_live/form_component.html.heex:23 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:24 | #: lib/memex_web/live/step_live/form_component.html.heex:24 | ||||||
| #: lib/memex_web/live/step_live/form_component.html.heex:25 |  | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "use [[context-slug]] to link to a context" | msgid "use [[context-slug]] to link to a context" | ||||||
| msgstr "" | msgstr "" | ||||||
|   | |||||||
| @@ -71,8 +71,8 @@ msgstr "" | |||||||
| #: lib/memex_web/live/note_live/index.html.heex:47 | #: lib/memex_web/live/note_live/index.html.heex:47 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:31 | #: lib/memex_web/live/note_live/show.html.heex:31 | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:47 | #: lib/memex_web/live/pipeline_live/index.html.heex:47 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:39 | #: lib/memex_web/live/pipeline_live/show.html.heex:38 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:110 | #: lib/memex_web/live/pipeline_live/show.html.heex:109 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "are you sure?" | msgid "are you sure?" | ||||||
| msgstr "" | msgstr "" | ||||||
|   | |||||||
| @@ -70,8 +70,8 @@ msgstr "" | |||||||
| #: lib/memex_web/live/note_live/index.html.heex:47 | #: lib/memex_web/live/note_live/index.html.heex:47 | ||||||
| #: lib/memex_web/live/note_live/show.html.heex:31 | #: lib/memex_web/live/note_live/show.html.heex:31 | ||||||
| #: lib/memex_web/live/pipeline_live/index.html.heex:47 | #: lib/memex_web/live/pipeline_live/index.html.heex:47 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:39 | #: lib/memex_web/live/pipeline_live/show.html.heex:38 | ||||||
| #: lib/memex_web/live/pipeline_live/show.html.heex:110 | #: lib/memex_web/live/pipeline_live/show.html.heex:109 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "are you sure?" | msgid "are you sure?" | ||||||
| msgstr "" | msgstr "" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user