colour -> color, behaviour -> behavior, centre -> center, favourite -> favorite, and about twenty other pairs, applied consistently across comments, docs, error/UI copy, and a handful of QML identifiers that used the British spelling as their actual name: SystemSettings' serialiseValue/serialiseTable/normaliseGradient, Displays' normaliseModes, Wallpaper's normalisePolicy, SettingsBackup's serialiseHomeState, DateTime's ntpSynchronised property, Clipboard's _normalise helper, and ShortcutCapture's cancelled signal (with its onCancelled handler in ShortcutsPage.qml). Every call site and the two tests that assert on the literal source text (settings-ownership and settings-backup-live contracts) were updated in lockstep. Left untouched: config/dot/espanso/match/packages/misspell-en/ is a vendored third-party autocorrect dictionary -- its entries are typo corrections, not our prose, and rewriting them would fight the package's own purpose (and any future re-sync from upstream). The already-American `favorites` property (Home page pinned accessories) was never actually misspelled -- only nearby comments and error strings said "favourites" -- so no data migration was needed there. Claude-Session: https://claude.ai/code/session_01E6TJUAh41HaP25MVHWkhRZ
60 lines
2.5 KiB
XML
60 lines
2.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Panama Settings.
|
|
|
|
A gear, because a settings icon has to be recognizable at 48px in a dock
|
|
before it is clever — but rendered in the Prism identity rather than the flat
|
|
monochrome of the symbolic icon this replaces. Blue leads into orchid across
|
|
the gradient, the same pair that marks the focused window, the active
|
|
workspace and the hairline on every glass surface.
|
|
|
|
Drawn on the dark tile (#222436) so it reads as an application icon among
|
|
full-color ones, rather than as a UI glyph that wandered out of a toolbar.
|
|
-->
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" width="128" height="128">
|
|
<defs>
|
|
<linearGradient id="prism" x1="0" y1="0" x2="1" y2="1">
|
|
<stop offset="0%" stop-color="#82aaff"/>
|
|
<stop offset="55%" stop-color="#9b8ed8"/>
|
|
<stop offset="100%" stop-color="#b172b0"/>
|
|
</linearGradient>
|
|
<linearGradient id="tile" x1="0" y1="0" x2="0" y2="1">
|
|
<stop offset="0%" stop-color="#2b2e45"/>
|
|
<stop offset="100%" stop-color="#1e2030"/>
|
|
</linearGradient>
|
|
<linearGradient id="edge" x1="0" y1="0" x2="1" y2="0">
|
|
<stop offset="0%" stop-color="#82aaff" stop-opacity="0"/>
|
|
<stop offset="22%" stop-color="#82aaff" stop-opacity="0.85"/>
|
|
<stop offset="78%" stop-color="#b172b0" stop-opacity="0.85"/>
|
|
<stop offset="100%" stop-color="#b172b0" stop-opacity="0"/>
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<rect x="4" y="4" width="120" height="120" rx="28" fill="url(#tile)"/>
|
|
<rect x="4.5" y="4.5" width="119" height="119" rx="27.5" fill="none"
|
|
stroke="#c8d3f5" stroke-opacity="0.10" stroke-width="1"/>
|
|
|
|
<!-- The prism hairline, as it appears along the top edge of every glass
|
|
surface in the shell. -->
|
|
<path d="M32 6.5 H96" stroke="url(#edge)" stroke-width="1.5" stroke-linecap="round"/>
|
|
|
|
<!-- Gear: eight teeth, drawn as a ring with radial spokes so it stays legible
|
|
when the icon is scaled down to a dock tile. -->
|
|
<g transform="translate(64 66)">
|
|
<g fill="none" stroke="url(#prism)" stroke-width="9" stroke-linecap="round">
|
|
<circle r="24"/>
|
|
<g>
|
|
<path d="M0 -38 V-30"/>
|
|
<path d="M0 38 V30"/>
|
|
<path d="M-38 0 H-30"/>
|
|
<path d="M38 0 H30"/>
|
|
<path d="M-26.9 -26.9 L-21.2 -21.2"/>
|
|
<path d="M26.9 26.9 L21.2 21.2"/>
|
|
<path d="M-26.9 26.9 L-21.2 21.2"/>
|
|
<path d="M26.9 -26.9 L21.2 -21.2"/>
|
|
</g>
|
|
</g>
|
|
<circle r="7.5" fill="#c8d3f5" fill-opacity="0.92"/>
|
|
</g>
|
|
</svg>
|