Changeset 834bcc3 in Klonkt for src/routes/shows.js


Ignore:
Timestamp:
06/23/2026 06:14:27 PM (3 months ago)
Author:
Robin Genis <roboburr@…>
Branches:
main
Children:
d774679
Parents:
bb42dfb
Message:

i18n: translate Dutch code comments to English across src/

Comments in routes/services/views/config/middleware/assets translated to
English for the public repo. A few dev-facing throw/console message strings
were Englished too. No user-facing UI strings or i18n dictionary values changed
(src/services/i18n.js untouched). Logic unchanged.

Co-Authored-By: Claude <noreply@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/routes/shows.js

    rbb42dfb r834bcc3  
    11/**
    2  * Show-agenda + notify-me (premium feature #8) — publieke kant.
     2 * Show agenda + notify-me (premium feature #8) — public side.
    33 *
    4  *   GET  /shows         -> komende optredens + "houd me op de hoogte"-formulier
    5  *   POST /shows/notify  -> aanmelden voor show-aankondigingen (subscribers, source
    6  *                          'notify'; double opt-in als SMTP er is)
     4 *   GET  /shows         -> upcoming gigs + "keep me posted" form
     5 *   POST /shows/notify  -> subscribe to show announcements (subscribers, source
     6 *                          'notify'; double opt-in if SMTP configured)
    77 *
    8  * De notify-bevestiging/uitschrijving hergebruikt de generieke subscriber-links
     8 * The notify confirm/unsubscribe reuses the generic subscriber links
    99 * (/nieuwsbrief/bevestigen|uitschrijven/:token). Hub: /user/:slug/shows.
    1010 */
     
    2020const router = express.Router();
    2121
    22 // Agenda is opt-in: pas bereikbaar als de beheerder 'm heeft ingeschakeld.
     22// Agenda is opt-in: only accessible once the admin has enabled it.
    2323function agendaOn() { return getSetting('agenda_enabled') === '1'; }
    2424
Note: See TracChangeset for help on using the changeset viewer.