Changeset 4885eab in Klonkt for src/views/pages/tag.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/tag.ejs

    rbbf9d1a r4885eab  
    11<div class="container tag-page">
    22  <header class="tag-page-header">
    3     <p class="tag-eyebrow">Tag</p>
     3    <p class="tag-eyebrow"><%= t('ptag.eyebrow') %></p>
    44    <h1>#<%= tag %></h1>
    55    <p class="tag-meta">
    6       <%= posts.length %> post<%= posts.length === 1 ? '' : 's' %>
     6      <%= posts.length === 1 ? t('ptag.count_one', { n: posts.length }) : t('ptag.count_many', { n: posts.length }) %>
    77    </p>
    88  </header>
    99
    1010  <% if (!posts.length) { %>
    11     <p class="tag-empty">No posts with this tag yet.</p>
     11    <p class="tag-empty"><%= t('ptag.empty') %></p>
    1212  <% } else { %>
    1313    <ol class="tag-results">
     
    2626                 hx-get="/<%= p.slug %>?partial=1" hx-target="#pcms-main" hx-swap="innerHTML"
    2727                 hx-push-url="/<%= p.slug %>" hx-indicator="#pcms-loading">
    28                 <%= p.title || '(untitled)' %>
     28                <%= p.title || t('ptag.untitled') %>
    2929              </a>
    3030            </h2>
Note: See TracChangeset for help on using the changeset viewer.