Add Dutch day names to event dates#702
Draft
Copilot wants to merge 2 commits into
Draft
Conversation
Agent-Logs-Url: https://github.com/DispuutHamers/webapp/sessions/576f6db3-f211-4e2c-a38e-133968bba72c Co-authored-by: koenjdejong <74268574+koenjdejong@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add day name on events page
Add Dutch day names to event dates
May 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Event dates were displayed without the day name, making it harder to quickly parse when an event falls. The requested format:
zaterdag 13-05-2026 19:30 tot zondag 14-05-2026 21:30.Changes
config/locales/nl.yml— Two new named time formats using%A(localized day name):with_day_name: "%A %d-%m-%Y %H:%M"— standalone datetimewith_day_name_prefixed: "Op %A %d-%m-%Y om %H:%M"— list view with Dutch prepositionsevents/show.html.erb— Start/end time usel(date, format: :with_day_name)events/_list.html.erb— Usesl(date, format: :with_day_name_prefixed)external_signups/— Public signup pages get the same treatmentAll changes use Rails'
l()helper so%Aresolves via the existingdate.day_namesinnl.yml— no hardcoded Dutch strings in views.