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; www.armandphilippot.com
The frontend of my personal website.Armand Philippot
aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cypress/support/e2e.ts
blob: 88361ec0641c1e684eeffeb2f661cf2ef016d0c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16