CSS was not being imported! Fixed: ✅ Added 'import ../styles/global.css' to BaseLayout.astro ✅ Rewrote CSS with plain CSS (not @apply which wasn't working) ✅ Cookie banner has inline styles as backup ✅ Font size: 16px base ✅ Solid colors: green-600 (#16a34a), gray-900 (#111827) ✅ Footer has policy links Build: 12 pages ✅
44 lines
720 B
JavaScript
44 lines
720 B
JavaScript
Prism.languages.gettext = {
|
|
'comment': [
|
|
{
|
|
pattern: /# .*/,
|
|
greedy: true,
|
|
alias: 'translator-comment'
|
|
},
|
|
{
|
|
pattern: /#\..*/,
|
|
greedy: true,
|
|
alias: 'extracted-comment'
|
|
},
|
|
{
|
|
pattern: /#:.*/,
|
|
greedy: true,
|
|
alias: 'reference-comment'
|
|
},
|
|
{
|
|
pattern: /#,.*/,
|
|
greedy: true,
|
|
alias: 'flag-comment'
|
|
},
|
|
{
|
|
pattern: /#\|.*/,
|
|
greedy: true,
|
|
alias: 'previously-untranslated-comment'
|
|
},
|
|
{
|
|
pattern: /#.*/,
|
|
greedy: true
|
|
},
|
|
],
|
|
'string': {
|
|
pattern: /(^|[^\\])"(?:[^"\\]|\\.)*"/,
|
|
lookbehind: true,
|
|
greedy: true
|
|
},
|
|
'keyword': /^msg(?:ctxt|id|id_plural|str)\b/m,
|
|
'number': /\b\d+\b/,
|
|
'punctuation': /[\[\]]/
|
|
};
|
|
|
|
Prism.languages.po = Prism.languages.gettext;
|