blob: 9589dde235abbc5cd1eecad9253be7f500bfa763 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?xml version="1.0"?>
<its:rules xmlns:its="http://www.w3.org/2005/11/its"
xmlns:gt="https://www.gnu.org/s/gettext/ns/its/extensions/1.0"
version="2.0">
<its:translateRule selector="/gweather" translate="no"/>
<its:translateRule selector="//_name" translate="yes"/>
<!-- The 'msgctxt' attribute should be extracted as msgctxt. -->
<gt:contextRule selector="/gweather//*[@msgctxt]" contextPointer="@msgctxt"/>
<!-- Extracted strings are consumed by the library and are never
merged back; we don't want to escape special characters. -->
<gt:escapeRule selector="/interface" escape="no"/>
</its:rules>
|