Changeset 4885eab in Klonkt for src/views/pages/hub-home.ejs


Ignore:
Timestamp:
06/21/2026 03:05:14 PM (3 months ago)
Author:
roboburr <roboburr@…>
Branches:
main
Children:
5e61b17
Parents:
bbf9d1a
Message:

feat(i18n phase 6): remaining public + other pages translated (NL/EN/DE)

post-edit, account, newsletter, download, press kit /pers, fan-gate, link-in-bio,
my-site, password-reset (2), artists directory, auth-login Google error map,
user/hub-home/circle-feed+post/viewer-blocked/home/favourites/changelog/404/
type/tag/archive/prutter (inbox+conversation). embed-player skipped (no t
in that standalone route). 1026 view-keys cross-checked → 0 missing.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/views/pages/hub-home.ejs

    rbbf9d1a r4885eab  
    2828        </span>
    2929        <span class="hub-main-info">
    30           <span class="hub-main-badge">Hoofdpagina</span>
     30          <span class="hub-main-badge"><%= t('phub.main_badge') %></span>
    3131          <span class="hub-main-name"><%= mainSite.title %></span>
    3232          <% if (mainSite.tagline) { %><span class="hub-main-tag"><%= mainSite.tagline %></span><% } %>
    3333        </span>
    34         <span class="hub-main-cta">Bekijk de pagina <span aria-hidden="true">→</span></span>
     34        <span class="hub-main-cta"><%= t('phub.view_page') %> <span aria-hidden="true">→</span></span>
    3535      </a>
    3636    </section>
     
    4343    <section class="hub-sec">
    4444      <h2 class="hub-sec-title">
    45         Leden
     45        <%= t('phub.members') %>
    4646        <% if (_hasMore) { %><span class="hub-sec-count"><%= _total %></span><% } %>
    4747      </h2>
     
    5757            <span class="roster-name"><%= a.title %></span>
    5858            <% if (a.tagline) { %><span class="roster-tag"><%= a.tagline %></span><% } %>
    59             <span class="roster-count"><%= a.post_count %> post<%= a.post_count === 1 ? '' : 's' %></span>
     59            <span class="roster-count"><%= a.post_count %> <%= a.post_count === 1 ? t('phub.post_one') : t('phub.post_many') %></span>
    6060          </a>
    6161        <% }); %>
     
    6363      <% if (_hasMore) { %>
    6464        <div class="hub-more">
    65           <a class="hub-more-link" href="/leden">Alle <%= _total %> leden <span aria-hidden="true">→</span></a>
     65          <a class="hub-more-link" href="/leden"><%= t('phub.all_members', { n: _total }) %> <span aria-hidden="true">→</span></a>
    6666        </div>
    6767      <% } %>
     
    7272    <% if (posts && posts.length) { %>
    7373    <section class="hub-sec">
    74       <h2 class="hub-sec-title">Laatste posts van onze leden.</h2>
     74      <h2 class="hub-sec-title"><%= t('phub.latest_posts') %></h2>
    7575      <div class="hub-feed">
    7676        <% posts.forEach(function(p){ %>
Note: See TracChangeset for help on using the changeset viewer.