Code

Translations. French translation minor update.
[inkscape.git] / share / extensions / replace_font.inx
1 <?xml version="1.0" encoding="UTF-8"?>
2 <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
3     <_name>Replace font</_name>
4     <id>org.inkscape.replace_font</id>
6     <dependency type="extension">org.inkscape.output.svg.inkscape</dependency>
7     <dependency type="executable" location="extensions">replace_font.py</dependency>
8     <dependency type="executable" location="extensions">inkex.py</dependency>
10      <param name="action" type="notebook">
11         <page name="find_replace" _gui-text="Find and Replace font">
12             <param name="fr_find" type="string" _gui-text="Find this font: "></param>
13             <param name="fr_replace" type="string" _gui-text="And replace with: "></param>
14         </page>
15         <page name="replace_all" _gui-text="Replace font">
16             <param name="r_replace" type="string" _gui-text="Replace all fonts with: "></param>
17         </page>
18         <page name="list_only" _gui-text="List all fonts">
19             <_param name="d" type="description">Choose this tab if you would like to see a list of the fonts used/found.</_param>
20         </page>
21     </param>
23     <param name="scope" type="enum" _gui-text="Work on:">
24         <_item value="entire_document">Entire drawing</_item>
25         <_item value="selection_only">Selected objects only</_item>
26     </param>
28     <effect needs-live-preview="false">
29                 <object-type>all</object-type>
30                 <effects-menu>
31                       <submenu _name="Text"/>
32                 </effects-menu>
33     </effect>
35     <script>
36         <command reldir="extensions" interpreter="python">replace_font.py</command>
37     </script>
38 </inkscape-extension>