969 strings, an instance default and a per-person choice, and no half-done corner: the admin prose is translated too. Design and reasoning: LLeMbas.wiki/Translations. KEYED BY THE ENGLISH SENTENCE A missing entry renders the key, which is the English -- so an untranslated string looks as it always did, an English instance is byte-for-byte 1.6.0, and a half-finished catalogue is a half-translated page rather than a page of dotted key names. The cost is that editing an English sentence orphans its translation silently, which is what tests/test_translations.py asserts in both directions. No gettext: .po -> .mo is a build step and this project does not have one. A JINJA GLOBAL, AND THEREFORE A CONTEXTVAR `t()` is a global for the reason `brand` already documents -- render() is bypassed by 25 TemplateResponse calls and 8 get_template().render() calls, the latter being the SSE frames, which have no Request at all. A global is bound once at import and the language is per person, so the active language is a ContextVar set per request. 🚨 `get_current_user` had to become `async def`. FastAPI runs a sync dependency in a threadpool, and anyio copies the context in and discards it on the way out -- so the language was set where nothing could see it and every page rendered in the instance's language whatever anybody had chosen, with no error anywhere. NOT TRANSLATED, ON PURPOSE Everything a model reads: the 60 prompt fragments, and the dates in harness.py, schedule/runner.py and schedule/compile.py. Only `i18n.stamp` is localised, and only where a person reads it -- with the *format* translatable as well as the words, because "26. septembra 2026" is a different pattern rather than the same one with different words in it. A process locale is not an option: global, not thread-safe, two people's pages at once. A second fragment telling models to answer in the reader's language was written during this work and removed: `core.style` has said it since long before, and test_an_empty_override_turns_a_fragment_off caught the duplicate. THE BULK PASS 1213 sites wrapped by a one-off script that only touched patterns it could not misread. It got three wrong in a way that mattered -- `t('…')` inside `attr="…"` where the sentence held an apostrophe, closing the Jinja string and 500ing two pages whose partials no test renders. tests/test_translations.py now compiles all 110 templates. It also wrapped the product's own name, an SSH key header, a keystroke hint and an example URL, all taken back out: a string is not translatable just because it is a string. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
61 lines
2.5 KiB
HTML
61 lines
2.5 KiB
HTML
{% extends "library/_layout.html" %}
|
|
{% from "_macros.html" import icon %}
|
|
{% set section = "skills" %}
|
|
|
|
{% block title %}Skills - {{ brand.name }}{% endblock %}
|
|
{% block heading %}Skills{% endblock %}
|
|
{% block actions %}
|
|
<a class="btn btn--primary btn--sm" href="/library/skills/new">{{ icon("plus", "icon--sm") }} New skill</a>
|
|
{% endblock %}
|
|
|
|
{% block library_content %}
|
|
<p class="admin-lede">{{ t("Saved procedures. Every enabled skill's name and description are shown to the model on each turn; it reads the instructions only when it decides one applies. A model may write and revise its own — every version is kept, so any change can be read and undone.") }}</p>
|
|
|
|
{#
|
|
Two views, as links, so a filtered list is a real URL you can keep -- the same
|
|
shape the admin lists use. Same as the notes list.
|
|
#}
|
|
<div class="filter-tabs" style="margin-bottom: var(--sp-4)">
|
|
<a class="filter-tab {{ 'is-active' if not shared }}" href="/library/skills">All skills</a>
|
|
<a class="filter-tab {{ 'is-active' if shared }}" href="/library/skills?shared=1">Shared with me</a>
|
|
</div>
|
|
<form method="get" action="/library/skills" class="btn-row" style="margin-bottom: var(--sp-5)">
|
|
<input class="input" type="search" name="q" value="{{ q }}" style="flex: 1"
|
|
placeholder="{{ t('Search skills…') }}">
|
|
<button class="btn" type="submit">{{ icon("search", "icon--sm") }} Search</button>
|
|
{% if q %}<a class="btn btn--sm" href="/library/skills">Clear</a>{% endif %}
|
|
</form>
|
|
|
|
{% if not skills %}
|
|
<div class="empty">
|
|
{{ icon("sparkle", "empty__mark") }}
|
|
<h2 class="empty__title">{{ "Nothing found" if q else "No skills yet" }}</h2>
|
|
<p class="empty__text">
|
|
{% if q %}
|
|
No skill matches “{{ q }}”.
|
|
{% else %}
|
|
Write one for a task you explain often, or let a model save one after it
|
|
has worked the task out.
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
{% else %}
|
|
<ul class="model-list">
|
|
{% for skill in skills %}
|
|
<li class="model-list__item">
|
|
<div style="min-width: 0">
|
|
<a href="/library/skills/{{ skill.id }}"><strong class="mono">{{ skill.name }}</strong></a>
|
|
<div class="text-xs faint">{{ skill.description }}</div>
|
|
</div>
|
|
<div class="btn-row">
|
|
{% if not skill.enabled %}<span class="badge">{{ t("off") }}</span>{% endif %}
|
|
{% if skill.author == "model" %}<span class="badge badge--leaf">{{ t("written by a model") }}</span>{% endif %}
|
|
{% if skill.owner_id != user.id %}<span class="badge">{{ t("shared") }}</span>{% endif %}
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% include "library/_pager.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|