summaryrefslogtreecommitdiff
path: root/config/locales/en.yml
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-07-16 13:50:15 +0200
committererdgeist <erdgeist@erdgeist.org>2026-07-16 13:50:15 +0200
commit603ccfbd5fe96f0b83aaf3d5118aded2a39992fb (patch)
tree0e88ec41af6ce1a03e65bedb3f68a5a9881d96bb /config/locales/en.yml
parentbb7ef80d084f474bb4c3be0ae0d033aff3de0272 (diff)
Condense the action log into a scannable table
Several minor improvements to the action log presentation: * Now a table with date and human readable presentation as rows is displayed * If no changes in a title were detected, the old version is omitted * The "inferred" flag is demoted to the end of the line * You can zoom in on the node's history directly from a log line * byline for the first publish action is preserved * Revisions are directly linked to when a new one i published
Diffstat (limited to 'config/locales/en.yml')
-rw-r--r--config/locales/en.yml44
1 files changed, 26 insertions, 18 deletions
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 8470778c..f1856c17 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -36,21 +36,29 @@ en:
36 page_aria_label: "Page %{page}" 36 page_aria_label: "Page %{page}"
37 37
38 node_actions: 38 node_actions:
39 heading: "Action log" 39 heading: "Action log"
40 show_all: "Show all entries" 40 show_all: "Show all entries"
41 backfilled: "backfilled" 41 backfilled: "backfilled"
42 show_changes: "translation changes" 42 show_changes: "translation changes"
43 view_revision: "view this revision" 43 view_revision: "view this revision"
44 actor_self: "you" 44 unknown: "%{actor} did %{action} on %{subject}"
45 unknown: "%{actor} did %{action} on %{subject}" 45 publish: "%{actor} published %{revision} of %{subject}"
46 publish: "%{actor} published %{subject} (was: %{from})" 46 publish_rollback: "%{actor} rolled %{subject} back to %{revision}"
47 publish_first: "%{actor} published %{subject} for the first time" 47 publish_first: "%{actor} published %{subject} for the first time"
48 publish_rollback: "%{actor} rolled %{subject} back to an earlier revision (was: %{from})" 48 publish_first_with_author: "%{actor} published %{subject} for the first time (author: %{author})"
49 create: "%{actor} created %{subject} at %{path}" 49 create: "%{actor} created %{subject} at %{path}"
50 move: "%{actor} moved %{subject} from %{from} to %{to}" 50 move: "%{actor} moved %{subject} from %{from} to %{to}"
51 discard_autosave: "%{actor} discarded unsaved changes on %{subject}" 51 discard_autosave: "%{actor} discarded unsaved changes on %{subject}"
52 destroy_draft: "%{actor} discarded the draft of %{subject}" 52 destroy_draft: "%{actor} discarded the draft of %{subject}"
53 locale_added: "translation added, titled \"%{title}\"" 53 locale_added: "translation added, titled \"%{title}\""
54 locale_removed: "translation removed, last titled \"%{title}\"" 54 locale_removed: "translation removed, last titled \"%{title}\""
55 abstract_changed: "abstract changed" 55 abstract_changed: "abstract changed"
56 body_changed: "body changed" 56 body_changed: "body changed"
57 revision_new: "a new revision"
58 revision_earlier: "an earlier revision"
59 node_history: "node history"
60 detail_title: "title \"%{from}\" → \"%{to}\""
61 detail_author: "author %{from} → %{to}"
62 detail_tags: "tags %{from} → %{to}"
63 template_changed: "template changed"
64 assets_changed: "attached images changed"