Skip to content

Conversation

@soulteary
Copy link

@soulteary soulteary commented Feb 5, 2026

image

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: f9e207502b

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +10 to +12
card_deleted: "Card deleted"
card_added: "Card added"
display:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P0 Badge Fix malformed YAML in cards locale file

config/locales/en/cards.yml is syntactically invalid because card_deleted/card_added are outdented and display is over-indented, so YAML parsing fails (expected <block end> around line 12). Rails loads locale files at boot, so this breaks i18n loading and can prevent the app/test environment from starting.

Useful? React with 👍 / 👎.

Comment on lines +63 to +65
I18n.t("events.descriptions.card_published", creator: creator, card_title: card_title)
when "card_closed"
%(#{creator} moved #{card_title} to "Done")
I18n.t("events.descriptions.card_closed", creator: creator, card_title: card_title, column: I18n.t("columns.done"))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Add missing events description translation keys

This now calls I18n.t("events.descriptions.*") (and related events.creator_* keys), but config/locales/en/events.yml only defines events.empty_days. In runtime these descriptions render as translation missing, and in test env (with raise_on_missing_translations = true) any covered path will raise, so event timeline text generation regresses.

Useful? React with 👍 / 👎.

I18n.t("events.descriptions.card_published", creator: creator, card_title: card_title)
when "card_closed"
%(#{creator} moved #{card_title} to "Done")
I18n.t("events.descriptions.card_closed", creator: creator, card_title: card_title, column: I18n.t("columns.done"))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Provide translations for core column names

The code now translates columns.done/columns.not_now/columns.maybe, but config/locales/en/columns.yml only contains choose, add_card, no_cards_here, maximize_column, and expand_column. As a result, core board/card labels and event text show missing-translation strings (or raise in strict i18n contexts).

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant