Changeset 834bcc3 in Klonkt for src/views/pages/hub-home.ejs


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/views/pages/hub-home.ejs

    rbb42dfb r834bcc3  
    11<div class="hub<%= hub.heroImage ? ' hub--img' : '' %>">
    22
    3   <%# ── HERO (label) — de mini topnav-balk staat erboven (chrome.ejs);
    4         de hero zelf is de "grote" header van de hub-home ──────────────── %>
     3  <%# ── HERO (label) — the mini topnav bar sits above it (chrome.ejs);
     4        the hero itself is the "large" header of the hub home ──────────────── %>
    55  <header class="hub-hero<%= hub.heroImage ? ' has-img' : '' %>"<% if (hub.heroImage) { %> style="--hero-img:url('<%= hub.heroImage %>'); --hero-ov:<%= ((hub.heroOverlay == null ? 45 : hub.heroOverlay)/100).toFixed(2) %>"<% } %>>
    66    <div class="hub-hero-inner container">
     
    1717  <div class="container hub-body">
    1818
    19     <%# ── HOOFDPAGINA (label-/hoofdaccount — geen artiest) ──────────── %>
     19    <%# ── MAIN PAGE (label-/primary account — not an artist) ──────────── %>
    2020    <% if (mainSite) { %>
    2121    <section class="hub-sec hub-sec-main">
     
    3737    <% } %>
    3838
    39     <%# ── ARTIESTEN-ROSTER ─────────────────────────────────────────── %>
     39    <%# ── ARTIST ROSTER ─────────────────────────────────────────── %>
    4040    <% if (artists && artists.length) { %>
    4141    <% var _total = (typeof totalArtists !== 'undefined') ? totalArtists : artists.length; %>
     
    6969    <% } %>
    7070
    71     <%# ── LAATSTE POSTS ────────────────────────────────────────────── %>
     71    <%# ── LATEST POSTS ────────────────────────────────────────────── %>
    7272    <% if (posts && posts.length) { %>
    7373    <section class="hub-sec">
     
    9999.hub { width: 100%; position: relative; }
    100100
    101 /* Hero sluit direct aan op de mini topnav-balk — geen tussenruimte boven de
    102    hub-home (override van de globale main-padding-top). */
     101/* Hero connects directly to the mini topnav bar — no gap above the
     102   hub home (overrides the global main-padding-top). */
    103103.pcms-main { padding-top: 0; }
    104104.hub-hero { margin-top: 0; }
     
    160160.hub-more-link:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 7%, var(--paper-2)); }
    161161
    162 /* ── Hoofdpagina-kaart (label-/hoofdaccount, apart van de artiesten) ── */
     162/* ── Main page card (label-/primary account, separate from the artists) ── */
    163163.hub-sec-main { margin-top: 2.25rem; }
    164164.hub-main-card {
     
    199199}
    200200
    201 /* ── Roster (artiesten) ───────────────────────────────────────────── */
     201/* ── Roster (artists) ───────────────────────────────────────────── */
    202202.roster {
    203203  display: grid;
     
    231231}
    232232
    233 /* ── Feed (laatste posts) ─────────────────────────────────────────── */
     233/* ── Feed (latest posts) ─────────────────────────────────────────── */
    234234.hub-feed { display: flex; flex-direction: column; gap: 0.6rem; }
    235235.feed-item {
Note: See TracChangeset for help on using the changeset viewer.