Initial import
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@5 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
parent
75e32b1e8f
commit
b0b66fcae9
252 changed files with 49000 additions and 0 deletions
32
source/oxt/writer2xhtml/META-INF/manifest.xml
Normal file
32
source/oxt/writer2xhtml/META-INF/manifest.xml
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE manifest:manifest PUBLIC "-//OpenOffice.org//DTD Manifest 1.0//EN" "Manifest.dtd">
|
||||
<manifest:manifest>
|
||||
<manifest:file-entry
|
||||
manifest:full-path="writer2xhtml-filter.jar"
|
||||
manifest:media-type="application/vnd.sun.star.uno-component;type=Java"/>
|
||||
|
||||
<manifest:file-entry
|
||||
manifest:full-path="w2x_types.xcu"
|
||||
manifest:media-type="application/vnd.sun.star.configuration-data"/>
|
||||
|
||||
<manifest:file-entry
|
||||
manifest:full-path="w2x_filters.xcu"
|
||||
manifest:media-type="application/vnd.sun.star.configuration-data"/>
|
||||
|
||||
<manifest:file-entry
|
||||
manifest:full-path="Options.xcs"
|
||||
manifest:media-type="application/vnd.sun.star.configuration-schema"/>
|
||||
|
||||
<manifest:file-entry
|
||||
manifest:full-path="Options.xcu"
|
||||
manifest:media-type="application/vnd.sun.star.configuration-data"/>
|
||||
|
||||
<manifest:file-entry
|
||||
manifest:full-path="W2XDialogs/"
|
||||
manifest:media-type="application/vnd.sun.star.basic-library"/>
|
||||
|
||||
<manifest:file-entry
|
||||
manifest:full-path="writer2xhtml.rdb"
|
||||
manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=RDB"/>
|
||||
|
||||
</manifest:manifest>
|
72
source/oxt/writer2xhtml/Options.xcs
Normal file
72
source/oxt/writer2xhtml/Options.xcs
Normal file
|
@ -0,0 +1,72 @@
|
|||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<oor:component-schema oor:name="Options"
|
||||
oor:package="org.openoffice.da.Writer2xhtml"
|
||||
xml:lang="en-US"
|
||||
xmlns:oor="http://openoffice.org/2001/registry"
|
||||
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<templates>
|
||||
<group oor:name="Configuration">
|
||||
<prop oor:name="DisplayName" oor:type="xs:string" oor:localized="true" />
|
||||
<prop oor:name="LockedOptions" oor:type="xs:string" />
|
||||
<prop oor:name="ConfigURL" oor:type="xs:string" />
|
||||
<prop oor:name="TargetTemplateURL" oor:type="xs:string" />
|
||||
</group>
|
||||
<group oor:name="Template">
|
||||
<prop oor:name="TemplateName" oor:type="xs:string" />
|
||||
<prop oor:name="ConfigName" oor:type="xs:string" />
|
||||
</group>
|
||||
</templates>
|
||||
<component>
|
||||
<group oor:name="XhtmlOptions">
|
||||
<!-- Style -->
|
||||
<prop oor:name="Config" oor:type="xs:short" />
|
||||
<prop oor:name="ConfigName" oor:type="xs:string" />
|
||||
<prop oor:name="ConvertToPx" oor:type="xs:boolean" />
|
||||
<prop oor:name="Scaling" oor:type="xs:int" />
|
||||
<prop oor:name="ColumnScaling" oor:type="xs:int" />
|
||||
<prop oor:name="OriginalImageSize" oor:type="xs:boolean"/>
|
||||
<!-- Special content -->
|
||||
<prop oor:name="Notes" oor:type="xs:boolean" />
|
||||
<prop oor:name="UseDublinCore" oor:type="xs:boolean" />
|
||||
<!-- AutoCorrect -->
|
||||
<prop oor:name="IgnoreEmptyParagraphs" oor:type="xs:boolean" />
|
||||
<prop oor:name="IgnoreHardLineBreaks" oor:type="xs:boolean" />
|
||||
<prop oor:name="IgnoreDoubleSpaces" oor:type="xs:boolean" />
|
||||
<!-- Files -->
|
||||
<prop oor:name="Split" oor:type="xs:boolean" />
|
||||
<prop oor:name="SplitLevel" oor:type="xs:short" />
|
||||
<prop oor:name="RepeatLevels" oor:type="xs:short" />
|
||||
<prop oor:name="SaveImagesInSubdir" oor:type="xs:boolean" />
|
||||
<prop oor:name="XsltPath" oor:type="xs:string" />
|
||||
<!-- Configurations -->
|
||||
<set oor:name="Configurations" oor:node-type="Configuration" />
|
||||
<set oor:name="Templates" oor:node-type="Template" />
|
||||
</group>
|
||||
<group oor:name="XhtmlOptionsCalc" >
|
||||
<!-- Style -->
|
||||
<prop oor:name="Config" oor:type="xs:short" />
|
||||
<prop oor:name="ConfigName" oor:type="xs:string" />
|
||||
<prop oor:name="ConvertToPx" oor:type="xs:boolean" />
|
||||
<prop oor:name="Scaling" oor:type="xs:int" />
|
||||
<prop oor:name="ColumnScaling" oor:type="xs:int" />
|
||||
<prop oor:name="OriginalImageSize" oor:type="xs:boolean"/>
|
||||
<!-- Content -->
|
||||
<prop oor:name="Notes" oor:type="xs:boolean" />
|
||||
<prop oor:name="UseDublinCore" oor:type="xs:boolean" />
|
||||
<!-- Sheets -->
|
||||
<prop oor:name="DisplayHiddenSheets" oor:type="xs:boolean" />
|
||||
<prop oor:name="DisplayHiddenRowsCols" oor:type="xs:boolean" />
|
||||
<prop oor:name="DisplayFilteredRowsCols" oor:type="xs:boolean" />
|
||||
<prop oor:name="ApplyPrintRanges" oor:type="xs:boolean" />
|
||||
<prop oor:name="UseTitleAsHeading" oor:type="xs:boolean" />
|
||||
<prop oor:name="UseSheetNamesAsHeadings" oor:type="xs:boolean" />
|
||||
<!-- Files -->
|
||||
<prop oor:name="CalcSplit" oor:type="xs:boolean" />
|
||||
<prop oor:name="SaveImagesInSubdir" oor:type="xs:boolean" />
|
||||
<!-- Configurations -->
|
||||
<set oor:name="Configurations" oor:node-type="Configuration" />
|
||||
<set oor:name="Templates" oor:node-type="Template" />
|
||||
</group>
|
||||
</component>
|
||||
</oor:component-schema>
|
110
source/oxt/writer2xhtml/Options.xcu
Normal file
110
source/oxt/writer2xhtml/Options.xcu
Normal file
|
@ -0,0 +1,110 @@
|
|||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<oor:component-data oor:name="Options"
|
||||
oor:package="org.openoffice.da.Writer2xhtml"
|
||||
xml:lang="en-US"
|
||||
xmlns:oor="http://openoffice.org/2001/registry"
|
||||
xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<node oor:name="XhtmlOptions">
|
||||
<prop oor:name="Config" oor:type="xs:short">
|
||||
<value>0</value>
|
||||
</prop>
|
||||
<prop oor:name="ConfigName" oor:type="xs:string">
|
||||
<value></value>
|
||||
</prop>
|
||||
<prop oor:name="ConvertToPx" oor:type="xs:boolean">
|
||||
<value>true</value>
|
||||
</prop>
|
||||
<prop oor:name="Scaling" oor:type="xs:int">
|
||||
<value>100</value>
|
||||
</prop>
|
||||
<prop oor:name="ColumnScaling" oor:type="xs:int">
|
||||
<value>100</value>
|
||||
</prop>
|
||||
<prop oor:name="OriginalImageSize" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="Notes" oor:type="xs:boolean">
|
||||
<value>true</value>
|
||||
</prop>
|
||||
<prop oor:name="UseDublinCore" oor:type="xs:boolean">
|
||||
<value>true</value>
|
||||
</prop>
|
||||
<prop oor:name="IgnoreEmptyParagraphs" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="IgnoreHardLineBreaks" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="IgnoreDoubleSpaces" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="Split" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="SplitLevel" oor:type="xs:short">
|
||||
<value>1</value>
|
||||
</prop>
|
||||
<prop oor:name="RepeatLevels" oor:type="xs:short">
|
||||
<value>5</value>
|
||||
</prop>
|
||||
<prop oor:name="SaveImagesInSubdir" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="XsltPath" oor:type="xs:string">
|
||||
<value></value>
|
||||
</prop>
|
||||
</node>
|
||||
<node oor:name="XhtmlOptionsCalc">
|
||||
<prop oor:name="Config" oor:type="xs:short">
|
||||
<value>0</value>
|
||||
</prop>
|
||||
<prop oor:name="ConfigName" oor:type="xs:string">
|
||||
<value></value>
|
||||
</prop>
|
||||
<prop oor:name="ConvertToPx" oor:type="xs:boolean">
|
||||
<value>true</value>
|
||||
</prop>
|
||||
<prop oor:name="Scaling" oor:type="xs:int">
|
||||
<value>100</value>
|
||||
</prop>
|
||||
<prop oor:name="ColumnScaling" oor:type="xs:int">
|
||||
<value>100</value>
|
||||
</prop>
|
||||
<prop oor:name="OriginalImageSize" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="Notes" oor:type="xs:boolean">
|
||||
<value>true</value>
|
||||
</prop>
|
||||
<prop oor:name="UseDublinCore" oor:type="xs:boolean">
|
||||
<value>true</value>
|
||||
</prop>
|
||||
<prop oor:name="DisplayHiddenSheets" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="DisplayHiddenRowsCols" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="DisplayFilteredRowsCols" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="ApplyPrintRanges" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="UseTitleAsHeading" oor:type="xs:boolean">
|
||||
<value>true</value>
|
||||
</prop>
|
||||
<prop oor:name="UseSheetNamesAsHeadings" oor:type="xs:boolean">
|
||||
<value>true</value>
|
||||
</prop>
|
||||
<prop oor:name="CalcSplit" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
<prop oor:name="SaveImagesInSubdir" oor:type="xs:boolean">
|
||||
<value>false</value>
|
||||
</prop>
|
||||
</node>
|
||||
</oor:component-data>
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,131 @@
|
|||
# Strings for Dialog Library W2XDialogs
|
||||
0.XhtmlOptions.HelpText=
|
||||
1.XhtmlOptions.Title=XHTML-indstillinger (Writer2xhtml)
|
||||
2.XhtmlOptions.StyleLabel.HelpText=
|
||||
3.XhtmlOptions.StyleLabel.Label=Typografi
|
||||
4.XhtmlOptions.ConfigLabel.HelpText=
|
||||
5.XhtmlOptions.ConfigLabel.Label=Anvend typografi
|
||||
6.XhtmlOptions.Config.HelpText=
|
||||
17.XhtmlOptions.ScalingLabel.HelpText=
|
||||
18.XhtmlOptions.ScalingLabel.Label=Skalering
|
||||
19.XhtmlOptions.Scaling.HelpText=
|
||||
20.XhtmlOptions.ScalingPercentLabel.HelpText=
|
||||
21.XhtmlOptions.ScalingPercentLabel.Label=%
|
||||
22.XhtmlOptions.ColumnScalingLabel.HelpText=
|
||||
23.XhtmlOptions.ColumnScalingLabel.Label=Kolonneskalering
|
||||
24.XhtmlOptions.ColumnScaling.HelpText=
|
||||
25.XhtmlOptions.ColumnScalingPercentLabel.HelpText=
|
||||
26.XhtmlOptions.ColumnScalingPercentLabel.Label=%
|
||||
27.XhtmlOptions.ConvertToPx.HelpText=
|
||||
28.XhtmlOptions.ConvertToPx.Label=Omregn enheder til px (pixels)
|
||||
29.XhtmlOptions.OriginalImageSize.HelpText=
|
||||
30.XhtmlOptions.OriginalImageSize.Label=Brug oprindelig billedst\u00f8rrelse
|
||||
31.XhtmlOptions.SpecialContentLabel.HelpText=
|
||||
32.XhtmlOptions.SpecialContentLabel.Label=Specielt indhold
|
||||
33.XhtmlOptions.Notes.HelpText=
|
||||
34.XhtmlOptions.Notes.Label=Eksporter noter
|
||||
35.XhtmlOptions.UseDublinCore.HelpText=
|
||||
36.XhtmlOptions.UseDublinCore.Label=Eksporter dokumentegenskaber (Dublin Core Metadata)
|
||||
37.XhtmlOptions.AutoCorrectLabel.HelpText=
|
||||
38.XhtmlOptions.AutoCorrectLabel.Label=Autokorrektur
|
||||
39.XhtmlOptions.IgnoreHardLineBreaks.HelpText=
|
||||
40.XhtmlOptions.IgnoreHardLineBreaks.Label=Ignorer manuelle linjeskift
|
||||
41.XhtmlOptions.IgnoreEmptyParagraphs.HelpText=
|
||||
42.XhtmlOptions.IgnoreEmptyParagraphs.Label=Ignorer tomme afsnit
|
||||
43.XhtmlOptions.IgnoreDoubleSpaces.HelpText=
|
||||
44.XhtmlOptions.IgnoreDoubleSpaces.Label=Ignorer dobbelte mellemrum
|
||||
45.XhtmlOptions.FilesLabel.HelpText=
|
||||
46.XhtmlOptions.FilesLabel.Label=Filer
|
||||
47.XhtmlOptions.Split.HelpText=
|
||||
48.XhtmlOptions.Split.Label=Del dokumentet ved overskrifter
|
||||
49.XhtmlOptions.SplitLevelLabel.HelpText=
|
||||
50.XhtmlOptions.SplitLevelLabel.Label=Overskriftsniveau
|
||||
51.XhtmlOptions.SplitLevel.HelpText=
|
||||
52.SplitLevel.StringItemList=1
|
||||
53.SplitLevel.StringItemList=2
|
||||
54.SplitLevel.StringItemList=3
|
||||
55.SplitLevel.StringItemList=4
|
||||
56.SplitLevel.StringItemList=5
|
||||
57.SplitLevel.StringItemList=6
|
||||
58.XhtmlOptions.RepeatLevelsLabel.HelpText=
|
||||
59.XhtmlOptions.RepeatLevelsLabel.Label=Gentag overskriftsniveauer
|
||||
60.XhtmlOptions.RepeatLevels.HelpText=
|
||||
61.RepeatLevels.StringItemList=0
|
||||
62.RepeatLevels.StringItemList=1
|
||||
63.RepeatLevels.StringItemList=2
|
||||
64.RepeatLevels.StringItemList=3
|
||||
65.RepeatLevels.StringItemList=4
|
||||
66.RepeatLevels.StringItemList=5
|
||||
67.XhtmlOptions.SaveImagesInSubdir.HelpText=
|
||||
68.XhtmlOptions.SaveImagesInSubdir.Label=Gem billeder i undermappe
|
||||
69.XhtmlOptions.XsltPathLabel.HelpText=
|
||||
70.XhtmlOptions.XsltPathLabel.Label=XSLT-sti
|
||||
71.XhtmlOptions.XsltPath.HelpText=
|
||||
72.XhtmlOptions.XsltPath.Text=
|
||||
73.XhtmlOptions.ExportButton.HelpText=
|
||||
74.XhtmlOptions.ExportButton.Label=Eksporter
|
||||
75.XhtmlOptions.CancelButton.HelpText=
|
||||
76.XhtmlOptions.CancelButton.Label=Afbryd
|
||||
77.XhtmlOptionsCalc.HelpText=
|
||||
78.XhtmlOptionsCalc.Title=XHTML-indstillinger (Calc2xhtml)
|
||||
79.XhtmlOptionsCalc.StyleLabel.HelpText=
|
||||
80.XhtmlOptionsCalc.StyleLabel.Label=Typografi
|
||||
81.XhtmlOptionsCalc.ConfigLabel.HelpText=
|
||||
82.XhtmlOptionsCalc.ConfigLabel.Label=Anvend typografi
|
||||
83.XhtmlOptionsCalc.Config.HelpText=
|
||||
86.XhtmlOptionsCalc.ScalingLabel.HelpText=
|
||||
87.XhtmlOptionsCalc.ScalingLabel.Label=Skalering
|
||||
88.XhtmlOptionsCalc.Scaling.HelpText=
|
||||
89.XhtmlOptionsCalc.ScalingPercentLabel.HelpText=
|
||||
90.XhtmlOptionsCalc.ScalingPercentLabel.Label=%
|
||||
91.XhtmlOptionsCalc.ColumnScalingLabel.HelpText=
|
||||
92.XhtmlOptionsCalc.ColumnScalingLabel.Label=Kolonneskalering
|
||||
93.XhtmlOptionsCalc.ColumnScaling.HelpText=
|
||||
94.XhtmlOptionsCalc.ColumnScalingPercentLabel.HelpText=
|
||||
95.XhtmlOptionsCalc.ColumnScalingPercentLabel.Label=%
|
||||
96.XhtmlOptionsCalc.ConvertToPx.HelpText=
|
||||
97.XhtmlOptionsCalc.ConvertToPx.Label=Omregn enheder til px (pixels)
|
||||
98.XhtmlOptionsCalc.OriginalImageSize.HelpText=
|
||||
99.XhtmlOptionsCalc.OriginalImageSize.Label=Brug oprindelig billedst\u00f8rrelse
|
||||
100.XhtmlOptionsCalc.SpecialContentLabel.HelpText=
|
||||
101.XhtmlOptionsCalc.SpecialContentLabel.Label=Specielt indhold
|
||||
102.XhtmlOptionsCalc.Notes.HelpText=
|
||||
103.XhtmlOptionsCalc.Notes.Label=Eksporter noter
|
||||
104.XhtmlOptionsCalc.UseDublinCore.HelpText=
|
||||
105.XhtmlOptionsCalc.UseDublinCore.Label=Eksporter dokumentegenskaber (Dublin Core Metadata)
|
||||
106.XhtmlOptionsCalc.SheetsLabel.HelpText=
|
||||
107.XhtmlOptionsCalc.SheetsLabel.Label=Ark
|
||||
108.XhtmlOptionsCalc.DisplayHiddenSheets.HelpText=
|
||||
109.XhtmlOptionsCalc.DisplayHiddenSheets.Label=Vis skjulte ark
|
||||
110.XhtmlOptionsCalc.DisplayHiddenRowsCols.HelpText=
|
||||
111.XhtmlOptionsCalc.DisplayHiddenRowsCols.Label=Vis skjulte r\u00e6kker og kolonner
|
||||
112.XhtmlOptionsCalc.DisplayFilteredRowsCols.HelpText=
|
||||
113.XhtmlOptionsCalc.DisplayFilteredRowsCols.Label=Vis filtrerede r\u00e6kker og kolonner
|
||||
114.XhtmlOptionsCalc.ApplyPrintRanges.HelpText=
|
||||
115.XhtmlOptionsCalc.ApplyPrintRanges.Label=Anvend udskriftsomr\u00e5der
|
||||
116.XhtmlOptionsCalc.UseTitleAsHeading.HelpText=
|
||||
117.XhtmlOptionsCalc.UseTitleAsHeading.Label=Brug titel som overskrift
|
||||
118.XhtmlOptionsCalc.UseSheetNamesAsHeadings.HelpText=
|
||||
119.XhtmlOptionsCalc.UseSheetNamesAsHeadings.Label=Brug arknavne som overskrifter
|
||||
120.XhtmlOptionsCalc.FilesLabel.HelpText=
|
||||
121.XhtmlOptionsCalc.FilesLabel.Label=Filer
|
||||
122.XhtmlOptionsCalc.CalcSplit.HelpText=
|
||||
123.XhtmlOptionsCalc.CalcSplit.Label=Gem ark i separate filer
|
||||
124.XhtmlOptionsCalc.SaveImagesInSubdir.HelpText=
|
||||
125.XhtmlOptionsCalc.SaveImagesInSubdir.Label=Gem billeder i undermappe
|
||||
126.XhtmlOptionsCalc.ExportButton.HelpText=
|
||||
127.XhtmlOptionsCalc.ExportButton.Label=Eksporter
|
||||
128.XhtmlOptionsCalc.CancelButton.HelpText=
|
||||
129.XhtmlOptionsCalc.CancelButton.Label=Afbryd
|
||||
130.Config.StringItemList=Oprindelig formatering
|
||||
131.Config.StringItemList=Chocolade
|
||||
132.Config.StringItemList=Midnat
|
||||
133.Config.StringItemList=Modernistisk
|
||||
134.Config.StringItemList=Gammeldags
|
||||
135.Config.StringItemList=St\u00e5l
|
||||
136.Config.StringItemList=Schweizisk
|
||||
137.Config.StringItemList=Traditionelt
|
||||
138.Config.StringItemList=Ultramarine
|
||||
139.Config.StringItemList=Brugerdefineret
|
||||
140.Config.StringItemList=Oprindelig formatering
|
||||
141.Config.StringItemList=Brugerdefineret
|
|
@ -0,0 +1,131 @@
|
|||
# Strings for Dialog Library W2XDialogs (untranslated)
|
||||
0.XhtmlOptions.HelpText=
|
||||
1.XhtmlOptions.Title=XHTML Options (Writer2xhtml)
|
||||
2.XhtmlOptions.StyleLabel.HelpText=
|
||||
3.XhtmlOptions.StyleLabel.Label=Style
|
||||
4.XhtmlOptions.ConfigLabel.HelpText=
|
||||
5.XhtmlOptions.ConfigLabel.Label=Use style
|
||||
6.XhtmlOptions.Config.HelpText=
|
||||
17.XhtmlOptions.ScalingLabel.HelpText=
|
||||
18.XhtmlOptions.ScalingLabel.Label=Scaling
|
||||
19.XhtmlOptions.Scaling.HelpText=
|
||||
20.XhtmlOptions.ScalingPercentLabel.HelpText=
|
||||
21.XhtmlOptions.ScalingPercentLabel.Label=%
|
||||
22.XhtmlOptions.ColumnScalingLabel.HelpText=
|
||||
23.XhtmlOptions.ColumnScalingLabel.Label=Column scaling
|
||||
24.XhtmlOptions.ColumnScaling.HelpText=
|
||||
25.XhtmlOptions.ColumnScalingPercentLabel.HelpText=
|
||||
26.XhtmlOptions.ColumnScalingPercentLabel.Label=%
|
||||
27.XhtmlOptions.ConvertToPx.HelpText=
|
||||
28.XhtmlOptions.ConvertToPx.Label=Convert units to px (pixels)
|
||||
29.XhtmlOptions.OriginalImageSize.HelpText=
|
||||
30.XhtmlOptions.OriginalImageSize.Label=Use original image size
|
||||
31.XhtmlOptions.SpecialContentLabel.HelpText=
|
||||
32.XhtmlOptions.SpecialContentLabel.Label=Special content
|
||||
33.XhtmlOptions.Notes.HelpText=
|
||||
34.XhtmlOptions.Notes.Label=Export notes
|
||||
35.XhtmlOptions.UseDublinCore.HelpText=
|
||||
36.XhtmlOptions.UseDublinCore.Label=Export document properties (Dublin Core Metadata)
|
||||
37.XhtmlOptions.AutoCorrectLabel.HelpText=
|
||||
38.XhtmlOptions.AutoCorrectLabel.Label=AutoCorrect
|
||||
39.XhtmlOptions.IgnoreHardLineBreaks.HelpText=
|
||||
40.XhtmlOptions.IgnoreHardLineBreaks.Label=Ignore hard line breaks
|
||||
41.XhtmlOptions.IgnoreEmptyParagraphs.HelpText=
|
||||
42.XhtmlOptions.IgnoreEmptyParagraphs.Label=Ignore empty paragraphs
|
||||
43.XhtmlOptions.IgnoreDoubleSpaces.HelpText=
|
||||
44.XhtmlOptions.IgnoreDoubleSpaces.Label=Ignore double spaces
|
||||
45.XhtmlOptions.FilesLabel.HelpText=
|
||||
46.XhtmlOptions.FilesLabel.Label=Files
|
||||
47.XhtmlOptions.Split.HelpText=
|
||||
48.XhtmlOptions.Split.Label=Split document at headings
|
||||
49.XhtmlOptions.SplitLevelLabel.HelpText=
|
||||
50.XhtmlOptions.SplitLevelLabel.Label=Heading level
|
||||
51.XhtmlOptions.SplitLevel.HelpText=
|
||||
52.SplitLevel.StringItemList=1
|
||||
53.SplitLevel.StringItemList=2
|
||||
54.SplitLevel.StringItemList=3
|
||||
55.SplitLevel.StringItemList=4
|
||||
56.SplitLevel.StringItemList=5
|
||||
57.SplitLevel.StringItemList=6
|
||||
58.XhtmlOptions.RepeatLevelsLabel.HelpText=
|
||||
59.XhtmlOptions.RepeatLevelsLabel.Label=Repeat heading levels
|
||||
60.XhtmlOptions.RepeatLevels.HelpText=
|
||||
61.RepeatLevels.StringItemList=0
|
||||
62.RepeatLevels.StringItemList=1
|
||||
63.RepeatLevels.StringItemList=2
|
||||
64.RepeatLevels.StringItemList=3
|
||||
65.RepeatLevels.StringItemList=4
|
||||
66.RepeatLevels.StringItemList=5
|
||||
67.XhtmlOptions.SaveImagesInSubdir.HelpText=
|
||||
68.XhtmlOptions.SaveImagesInSubdir.Label=Save images in subdirectory
|
||||
69.XhtmlOptions.XsltPathLabel.HelpText=
|
||||
70.XhtmlOptions.XsltPathLabel.Label=XSLT path
|
||||
71.XhtmlOptions.XsltPath.HelpText=
|
||||
72.XhtmlOptions.XsltPath.Text=
|
||||
73.XhtmlOptions.ExportButton.HelpText=
|
||||
74.XhtmlOptions.ExportButton.Label=Export
|
||||
75.XhtmlOptions.CancelButton.HelpText=
|
||||
76.XhtmlOptions.CancelButton.Label=Cancel
|
||||
77.XhtmlOptionsCalc.HelpText=
|
||||
78.XhtmlOptionsCalc.Title=XHTML Options (Calc2xhtml)
|
||||
79.XhtmlOptionsCalc.StyleLabel.HelpText=
|
||||
80.XhtmlOptionsCalc.StyleLabel.Label=Style
|
||||
81.XhtmlOptionsCalc.ConfigLabel.HelpText=
|
||||
82.XhtmlOptionsCalc.ConfigLabel.Label=Use style
|
||||
83.XhtmlOptionsCalc.Config.HelpText=
|
||||
86.XhtmlOptionsCalc.ScalingLabel.HelpText=
|
||||
87.XhtmlOptionsCalc.ScalingLabel.Label=Scaling
|
||||
88.XhtmlOptionsCalc.Scaling.HelpText=
|
||||
89.XhtmlOptionsCalc.ScalingPercentLabel.HelpText=
|
||||
90.XhtmlOptionsCalc.ScalingPercentLabel.Label=%
|
||||
91.XhtmlOptionsCalc.ColumnScalingLabel.HelpText=
|
||||
92.XhtmlOptionsCalc.ColumnScalingLabel.Label=Column scaling
|
||||
93.XhtmlOptionsCalc.ColumnScaling.HelpText=
|
||||
94.XhtmlOptionsCalc.ColumnScalingPercentLabel.HelpText=
|
||||
95.XhtmlOptionsCalc.ColumnScalingPercentLabel.Label=%
|
||||
96.XhtmlOptionsCalc.ConvertToPx.HelpText=
|
||||
97.XhtmlOptionsCalc.ConvertToPx.Label=Convert units to px (pixels)
|
||||
98.XhtmlOptionsCalc.OriginalImageSize.HelpText=
|
||||
99.XhtmlOptionsCalc.OriginalImageSize.Label=Use original image size
|
||||
100.XhtmlOptionsCalc.SpecialContentLabel.HelpText=
|
||||
101.XhtmlOptionsCalc.SpecialContentLabel.Label=Special content
|
||||
102.XhtmlOptionsCalc.Notes.HelpText=
|
||||
103.XhtmlOptionsCalc.Notes.Label=Export notes
|
||||
104.XhtmlOptionsCalc.UseDublinCore.HelpText=
|
||||
105.XhtmlOptionsCalc.UseDublinCore.Label=Export document properties (Dublin Core Metadata)
|
||||
106.XhtmlOptionsCalc.SheetsLabel.HelpText=
|
||||
107.XhtmlOptionsCalc.SheetsLabel.Label=Sheets
|
||||
108.XhtmlOptionsCalc.DisplayHiddenSheets.HelpText=
|
||||
109.XhtmlOptionsCalc.DisplayHiddenSheets.Label=Display hidden sheets
|
||||
110.XhtmlOptionsCalc.DisplayHiddenRowsCols.HelpText=
|
||||
111.XhtmlOptionsCalc.DisplayHiddenRowsCols.Label=Display hidden rows and columns
|
||||
112.XhtmlOptionsCalc.DisplayFilteredRowsCols.HelpText=
|
||||
113.XhtmlOptionsCalc.DisplayFilteredRowsCols.Label=Display filtered rows and columns
|
||||
114.XhtmlOptionsCalc.ApplyPrintRanges.HelpText=
|
||||
115.XhtmlOptionsCalc.ApplyPrintRanges.Label=Apply print ranges
|
||||
116.XhtmlOptionsCalc.UseTitleAsHeading.HelpText=
|
||||
117.XhtmlOptionsCalc.UseTitleAsHeading.Label=Use title as heading
|
||||
118.XhtmlOptionsCalc.UseSheetNamesAsHeadings.HelpText=
|
||||
119.XhtmlOptionsCalc.UseSheetNamesAsHeadings.Label=Use sheet names as headings
|
||||
120.XhtmlOptionsCalc.FilesLabel.HelpText=
|
||||
121.XhtmlOptionsCalc.FilesLabel.Label=Files
|
||||
122.XhtmlOptionsCalc.CalcSplit.HelpText=
|
||||
123.XhtmlOptionsCalc.CalcSplit.Label=Save sheets in separate files
|
||||
124.XhtmlOptionsCalc.SaveImagesInSubdir.HelpText=
|
||||
125.XhtmlOptionsCalc.SaveImagesInSubdir.Label=Save images in subdirectory
|
||||
126.XhtmlOptionsCalc.ExportButton.HelpText=
|
||||
127.XhtmlOptionsCalc.ExportButton.Label=Export
|
||||
128.XhtmlOptionsCalc.CancelButton.HelpText=
|
||||
129.XhtmlOptionsCalc.CancelButton.Label=Cancel
|
||||
130.Config.StringItemList=Original formatting
|
||||
131.Config.StringItemList=Chocolate
|
||||
132.Config.StringItemList=Midnight
|
||||
133.Config.StringItemList=Modernist
|
||||
134.Config.StringItemList=Oldstyle
|
||||
135.Config.StringItemList=Steely
|
||||
136.Config.StringItemList=Swiss
|
||||
137.Config.StringItemList=Traditional
|
||||
138.Config.StringItemList=Ultramarine
|
||||
139.Config.StringItemList=Custom
|
||||
140.Config.StringItemList=Original formatting
|
||||
141.Config.StringItemList=Custom
|
|
@ -0,0 +1,131 @@
|
|||
# Strings for Dialog Library W2XDialogs
|
||||
0.XhtmlOptions.HelpText=
|
||||
1.XhtmlOptions.Title=XHTML Options (Writer2xhtml)
|
||||
2.XhtmlOptions.StyleLabel.HelpText=
|
||||
3.XhtmlOptions.StyleLabel.Label=Style
|
||||
4.XhtmlOptions.ConfigLabel.HelpText=
|
||||
5.XhtmlOptions.ConfigLabel.Label=Use style
|
||||
6.XhtmlOptions.Config.HelpText=
|
||||
17.XhtmlOptions.ScalingLabel.HelpText=
|
||||
18.XhtmlOptions.ScalingLabel.Label=Scaling
|
||||
19.XhtmlOptions.Scaling.HelpText=
|
||||
20.XhtmlOptions.ScalingPercentLabel.HelpText=
|
||||
21.XhtmlOptions.ScalingPercentLabel.Label=%
|
||||
22.XhtmlOptions.ColumnScalingLabel.HelpText=
|
||||
23.XhtmlOptions.ColumnScalingLabel.Label=Column scaling
|
||||
24.XhtmlOptions.ColumnScaling.HelpText=
|
||||
25.XhtmlOptions.ColumnScalingPercentLabel.HelpText=
|
||||
26.XhtmlOptions.ColumnScalingPercentLabel.Label=%
|
||||
27.XhtmlOptions.ConvertToPx.HelpText=
|
||||
28.XhtmlOptions.ConvertToPx.Label=Convert units to px (pixels)
|
||||
29.XhtmlOptions.OriginalImageSize.HelpText=
|
||||
30.XhtmlOptions.OriginalImageSize.Label=Use original image size
|
||||
31.XhtmlOptions.SpecialContentLabel.HelpText=
|
||||
32.XhtmlOptions.SpecialContentLabel.Label=Special content
|
||||
33.XhtmlOptions.Notes.HelpText=
|
||||
34.XhtmlOptions.Notes.Label=Export notes
|
||||
35.XhtmlOptions.UseDublinCore.HelpText=
|
||||
36.XhtmlOptions.UseDublinCore.Label=Export document properties (Dublin Core Metadata)
|
||||
37.XhtmlOptions.AutoCorrectLabel.HelpText=
|
||||
38.XhtmlOptions.AutoCorrectLabel.Label=AutoCorrect
|
||||
39.XhtmlOptions.IgnoreHardLineBreaks.HelpText=
|
||||
40.XhtmlOptions.IgnoreHardLineBreaks.Label=Ignore hard line breaks
|
||||
41.XhtmlOptions.IgnoreEmptyParagraphs.HelpText=
|
||||
42.XhtmlOptions.IgnoreEmptyParagraphs.Label=Ignore empty paragraphs
|
||||
43.XhtmlOptions.IgnoreDoubleSpaces.HelpText=
|
||||
44.XhtmlOptions.IgnoreDoubleSpaces.Label=Ignore double spaces
|
||||
45.XhtmlOptions.FilesLabel.HelpText=
|
||||
46.XhtmlOptions.FilesLabel.Label=Files
|
||||
47.XhtmlOptions.Split.HelpText=
|
||||
48.XhtmlOptions.Split.Label=Split document at headings
|
||||
49.XhtmlOptions.SplitLevelLabel.HelpText=
|
||||
50.XhtmlOptions.SplitLevelLabel.Label=Heading level
|
||||
51.XhtmlOptions.SplitLevel.HelpText=
|
||||
52.SplitLevel.StringItemList=1
|
||||
53.SplitLevel.StringItemList=2
|
||||
54.SplitLevel.StringItemList=3
|
||||
55.SplitLevel.StringItemList=4
|
||||
56.SplitLevel.StringItemList=5
|
||||
57.SplitLevel.StringItemList=6
|
||||
58.XhtmlOptions.RepeatLevelsLabel.HelpText=
|
||||
59.XhtmlOptions.RepeatLevelsLabel.Label=Repeat heading levels
|
||||
60.XhtmlOptions.RepeatLevels.HelpText=
|
||||
61.RepeatLevels.StringItemList=0
|
||||
62.RepeatLevels.StringItemList=1
|
||||
63.RepeatLevels.StringItemList=2
|
||||
64.RepeatLevels.StringItemList=3
|
||||
65.RepeatLevels.StringItemList=4
|
||||
66.RepeatLevels.StringItemList=5
|
||||
67.XhtmlOptions.SaveImagesInSubdir.HelpText=
|
||||
68.XhtmlOptions.SaveImagesInSubdir.Label=Save images in subdirectory
|
||||
69.XhtmlOptions.XsltPathLabel.HelpText=
|
||||
70.XhtmlOptions.XsltPathLabel.Label=XSLT path
|
||||
71.XhtmlOptions.XsltPath.HelpText=
|
||||
72.XhtmlOptions.XsltPath.Text=
|
||||
73.XhtmlOptions.ExportButton.HelpText=
|
||||
74.XhtmlOptions.ExportButton.Label=Export
|
||||
75.XhtmlOptions.CancelButton.HelpText=
|
||||
76.XhtmlOptions.CancelButton.Label=Cancel
|
||||
77.XhtmlOptionsCalc.HelpText=
|
||||
78.XhtmlOptionsCalc.Title=XHTML Options (Calc2xhtml)
|
||||
79.XhtmlOptionsCalc.StyleLabel.HelpText=
|
||||
80.XhtmlOptionsCalc.StyleLabel.Label=Style
|
||||
81.XhtmlOptionsCalc.ConfigLabel.HelpText=
|
||||
82.XhtmlOptionsCalc.ConfigLabel.Label=Use style
|
||||
83.XhtmlOptionsCalc.Config.HelpText=
|
||||
86.XhtmlOptionsCalc.ScalingLabel.HelpText=
|
||||
87.XhtmlOptionsCalc.ScalingLabel.Label=Scaling
|
||||
88.XhtmlOptionsCalc.Scaling.HelpText=
|
||||
89.XhtmlOptionsCalc.ScalingPercentLabel.HelpText=
|
||||
90.XhtmlOptionsCalc.ScalingPercentLabel.Label=%
|
||||
91.XhtmlOptionsCalc.ColumnScalingLabel.HelpText=
|
||||
92.XhtmlOptionsCalc.ColumnScalingLabel.Label=Column scaling
|
||||
93.XhtmlOptionsCalc.ColumnScaling.HelpText=
|
||||
94.XhtmlOptionsCalc.ColumnScalingPercentLabel.HelpText=
|
||||
95.XhtmlOptionsCalc.ColumnScalingPercentLabel.Label=%
|
||||
96.XhtmlOptionsCalc.ConvertToPx.HelpText=
|
||||
97.XhtmlOptionsCalc.ConvertToPx.Label=Convert units to px (pixels)
|
||||
98.XhtmlOptionsCalc.OriginalImageSize.HelpText=
|
||||
99.XhtmlOptionsCalc.OriginalImageSize.Label=Use original image size
|
||||
100.XhtmlOptionsCalc.SpecialContentLabel.HelpText=
|
||||
101.XhtmlOptionsCalc.SpecialContentLabel.Label=Special content
|
||||
102.XhtmlOptionsCalc.Notes.HelpText=
|
||||
103.XhtmlOptionsCalc.Notes.Label=Export notes
|
||||
104.XhtmlOptionsCalc.UseDublinCore.HelpText=
|
||||
105.XhtmlOptionsCalc.UseDublinCore.Label=Export document properties (Dublin Core Metadata)
|
||||
106.XhtmlOptionsCalc.SheetsLabel.HelpText=
|
||||
107.XhtmlOptionsCalc.SheetsLabel.Label=Sheets
|
||||
108.XhtmlOptionsCalc.DisplayHiddenSheets.HelpText=
|
||||
109.XhtmlOptionsCalc.DisplayHiddenSheets.Label=Display hidden sheets
|
||||
110.XhtmlOptionsCalc.DisplayHiddenRowsCols.HelpText=
|
||||
111.XhtmlOptionsCalc.DisplayHiddenRowsCols.Label=Display hidden rows and columns
|
||||
112.XhtmlOptionsCalc.DisplayFilteredRowsCols.HelpText=
|
||||
113.XhtmlOptionsCalc.DisplayFilteredRowsCols.Label=Display filtered rows and columns
|
||||
114.XhtmlOptionsCalc.ApplyPrintRanges.HelpText=
|
||||
115.XhtmlOptionsCalc.ApplyPrintRanges.Label=Apply print ranges
|
||||
116.XhtmlOptionsCalc.UseTitleAsHeading.HelpText=
|
||||
117.XhtmlOptionsCalc.UseTitleAsHeading.Label=Use title as heading
|
||||
118.XhtmlOptionsCalc.UseSheetNamesAsHeadings.HelpText=
|
||||
119.XhtmlOptionsCalc.UseSheetNamesAsHeadings.Label=Use sheet names as headings
|
||||
120.XhtmlOptionsCalc.FilesLabel.HelpText=
|
||||
121.XhtmlOptionsCalc.FilesLabel.Label=Files
|
||||
122.XhtmlOptionsCalc.CalcSplit.HelpText=
|
||||
123.XhtmlOptionsCalc.CalcSplit.Label=Save sheets in separate files
|
||||
124.XhtmlOptionsCalc.SaveImagesInSubdir.HelpText=
|
||||
125.XhtmlOptionsCalc.SaveImagesInSubdir.Label=Save images in subdirectory
|
||||
126.XhtmlOptionsCalc.ExportButton.HelpText=
|
||||
127.XhtmlOptionsCalc.ExportButton.Label=Export
|
||||
128.XhtmlOptionsCalc.CancelButton.HelpText=
|
||||
129.XhtmlOptionsCalc.CancelButton.Label=Cancel
|
||||
130.Config.StringItemList=Original formatting
|
||||
131.Config.StringItemList=Chocolate
|
||||
132.Config.StringItemList=Midnight
|
||||
133.Config.StringItemList=Modernist
|
||||
134.Config.StringItemList=Oldstyle
|
||||
135.Config.StringItemList=Steely
|
||||
136.Config.StringItemList=Swiss
|
||||
137.Config.StringItemList=Traditional
|
||||
138.Config.StringItemList=Ultramarine
|
||||
139.Config.StringItemList=Custom
|
||||
140.Config.StringItemList=Original formatting
|
||||
141.Config.StringItemList=Custom
|
|
@ -0,0 +1,131 @@
|
|||
# Strings for Dialog Library W2XDialogs=
|
||||
0.XhtmlOptions.HelpText=
|
||||
1.XhtmlOptions.Title=Options XHTML (Writer2xhtml)
|
||||
2.XhtmlOptions.StyleLabel.HelpText=
|
||||
3.XhtmlOptions.StyleLabel.Label=Style
|
||||
4.XhtmlOptions.ConfigLabel.HelpText=
|
||||
5.XhtmlOptions.ConfigLabel.Label=Utiliser style
|
||||
6.XhtmlOptions.Config.HelpText=
|
||||
17.XhtmlOptions.ScalingLabel.HelpText=
|
||||
18.XhtmlOptions.ScalingLabel.Label=Dimensions
|
||||
19.XhtmlOptions.Scaling.HelpText=
|
||||
20.XhtmlOptions.ScalingPercentLabel.HelpText=
|
||||
21.XhtmlOptions.ScalingPercentLabel.Label=%
|
||||
22.XhtmlOptions.ColumnScalingLabel.HelpText=
|
||||
23.XhtmlOptions.ColumnScalingLabel.Label=Dimension des colonnes
|
||||
24.XhtmlOptions.ColumnScaling.HelpText=
|
||||
25.XhtmlOptions.ColumnScalingPercentLabel.HelpText=
|
||||
26.XhtmlOptions.ColumnScalingPercentLabel.Label=%
|
||||
27.XhtmlOptions.ConvertToPx.HelpText=
|
||||
28.XhtmlOptions.ConvertToPx.Label=Convertir unit\u00e9s en pixels
|
||||
29.XhtmlOptions.OriginalImageSize.HelpText=
|
||||
30.XhtmlOptions.OriginalImageSize.Label=Utiliser la taille d'origine des images
|
||||
31.XhtmlOptions.SpecialContentLabel.HelpText=
|
||||
32.XhtmlOptions.SpecialContentLabel.Label=Contenu sp\u00e9cifique
|
||||
33.XhtmlOptions.Notes.HelpText=
|
||||
34.XhtmlOptions.Notes.Label=Exporter les notes
|
||||
35.XhtmlOptions.UseDublinCore.HelpText=
|
||||
36.XhtmlOptions.UseDublinCore.Label=Exporter les propri\u00e9t\u00e9s du document (Metadonn\u00e9es Dublin Core)
|
||||
37.XhtmlOptions.AutoCorrectLabel.HelpText=
|
||||
38.XhtmlOptions.AutoCorrectLabel.Label=Correction automatique
|
||||
39.XhtmlOptions.IgnoreHardLineBreaks.HelpText=
|
||||
40.XhtmlOptions.IgnoreHardLineBreaks.Label=Ignorer les sauts de ligne
|
||||
41.XhtmlOptions.IgnoreEmptyParagraphs.HelpText=
|
||||
42.XhtmlOptions.IgnoreEmptyParagraphs.Label=Ignorer les paragraphes vides
|
||||
43.XhtmlOptions.IgnoreDoubleSpaces.HelpText=
|
||||
44.XhtmlOptions.IgnoreDoubleSpaces.Label=Ignoerer les doubles espaces
|
||||
45.XhtmlOptions.FilesLabel.HelpText=
|
||||
46.XhtmlOptions.FilesLabel.Label=Fichiers
|
||||
47.XhtmlOptions.Split.HelpText=
|
||||
48.XhtmlOptions.Split.Label=S\u00e9parer le document au niveau des titres
|
||||
49.XhtmlOptions.SplitLevelLabel.HelpText=
|
||||
50.XhtmlOptions.SplitLevelLabel.Label=Niveau des titres
|
||||
51.XhtmlOptions.SplitLevel.HelpText=
|
||||
52.SplitLevel.StringItemList=1
|
||||
53.SplitLevel.StringItemList=2
|
||||
54.SplitLevel.StringItemList=3
|
||||
55.SplitLevel.StringItemList=4
|
||||
56.SplitLevel.StringItemList=5
|
||||
57.SplitLevel.StringItemList=6
|
||||
58.XhtmlOptions.RepeatLevelsLabel.HelpText=
|
||||
59.XhtmlOptions.RepeatLevelsLabel.Label=R\u00e9p\u00e9ter le niveau des titres
|
||||
60.XhtmlOptions.RepeatLevels.HelpText=
|
||||
61.RepeatLevels.StringItemList=0
|
||||
62.RepeatLevels.StringItemList=1
|
||||
63.RepeatLevels.StringItemList=2
|
||||
64.RepeatLevels.StringItemList=3
|
||||
65.RepeatLevels.StringItemList=4
|
||||
66.RepeatLevels.StringItemList=5
|
||||
67.XhtmlOptions.SaveImagesInSubdir.HelpText=
|
||||
68.XhtmlOptions.SaveImagesInSubdir.Label=Sauver les images dans un sous-r\u00e9pertoire
|
||||
69.XhtmlOptions.XsltPathLabel.HelpText=
|
||||
70.XhtmlOptions.XsltPathLabel.Label=Chemin XSLT
|
||||
71.XhtmlOptions.XsltPath.HelpText=
|
||||
72.XhtmlOptions.XsltPath.Text=
|
||||
73.XhtmlOptions.ExportButton.HelpText=
|
||||
74.XhtmlOptions.ExportButton.Label=Exporter
|
||||
75.XhtmlOptions.CancelButton.HelpText=
|
||||
76.XhtmlOptions.CancelButton.Label=Annuler
|
||||
77.XhtmlOptionsCalc.HelpText=
|
||||
78.XhtmlOptionsCalc.Title=Options XHTML(Calc2xhtml)
|
||||
79.XhtmlOptionsCalc.StyleLabel.HelpText=
|
||||
80.XhtmlOptionsCalc.StyleLabel.Label=Style
|
||||
81.XhtmlOptionsCalc.ConfigLabel.HelpText=
|
||||
82.XhtmlOptionsCalc.ConfigLabel.Label=Utiliser style
|
||||
83.XhtmlOptionsCalc.Config.HelpText=
|
||||
86.XhtmlOptionsCalc.ScalingLabel.HelpText=
|
||||
87.XhtmlOptionsCalc.ScalingLabel.Label=Dimensions
|
||||
88.XhtmlOptionsCalc.Scaling.HelpText=
|
||||
89.XhtmlOptionsCalc.ScalingPercentLabel.HelpText=
|
||||
90.XhtmlOptionsCalc.ScalingPercentLabel.Label=%
|
||||
91.XhtmlOptionsCalc.ColumnScalingLabel.HelpText=
|
||||
92.XhtmlOptionsCalc.ColumnScalingLabel.Label=Dimension des colonnes
|
||||
93.XhtmlOptionsCalc.ColumnScaling.HelpText=
|
||||
94.XhtmlOptionsCalc.ColumnScalingPercentLabel.HelpText=
|
||||
95.XhtmlOptionsCalc.ColumnScalingPercentLabel.Label=%
|
||||
96.XhtmlOptionsCalc.ConvertToPx.HelpText=
|
||||
97.XhtmlOptionsCalc.ConvertToPx.Label=Convertir unit\u00e9s en pixels
|
||||
98.XhtmlOptionsCalc.OriginalImageSize.HelpText=
|
||||
99.XhtmlOptionsCalc.OriginalImageSize.Label=Utiliser la taille d'origine des images
|
||||
100.XhtmlOptionsCalc.SpecialContentLabel.HelpText=
|
||||
101.XhtmlOptionsCalc.SpecialContentLabel.Label=Contenu specifique
|
||||
102.XhtmlOptionsCalc.Notes.HelpText=
|
||||
103.XhtmlOptionsCalc.Notes.Label=Exporter les notes
|
||||
104.XhtmlOptionsCalc.UseDublinCore.HelpText=
|
||||
105.XhtmlOptionsCalc.UseDublinCore.Label=Exporter les propri\u00e9t\u00e9s du document (Metadonn\u00e9es Dublin Core)
|
||||
106.XhtmlOptionsCalc.SheetsLabel.HelpText=
|
||||
107.XhtmlOptionsCalc.SheetsLabel.Label=Feuilles
|
||||
108.XhtmlOptionsCalc.DisplayHiddenSheets.HelpText=
|
||||
109.XhtmlOptionsCalc.DisplayHiddenSheets.Label=Afficher les feuilles cach\u00e9es
|
||||
110.XhtmlOptionsCalc.DisplayHiddenRowsCols.HelpText=
|
||||
111.XhtmlOptionsCalc.DisplayHiddenRowsCols.Label=Afficher les lignes et colonnes cach\u00e9es
|
||||
112.XhtmlOptionsCalc.DisplayFilteredRowsCols.HelpText=
|
||||
113.XhtmlOptionsCalc.DisplayFilteredRowsCols.Label=Afficher les lignes et colonnes filtr\u00e9es
|
||||
114.XhtmlOptionsCalc.ApplyPrintRanges.HelpText=
|
||||
115.XhtmlOptionsCalc.ApplyPrintRanges.Label=Appliquer les zones d'impression
|
||||
116.XhtmlOptionsCalc.UseTitleAsHeading.HelpText=
|
||||
117.XhtmlOptionsCalc.UseTitleAsHeading.Label=Utiliser le titre comme en-t\u00eate
|
||||
118.XhtmlOptionsCalc.UseSheetNamesAsHeadings.HelpText=
|
||||
119.XhtmlOptionsCalc.UseSheetNamesAsHeadings.Label=Utiliser le nom des feuilles comme en-t\u00eate
|
||||
120.XhtmlOptionsCalc.FilesLabel.HelpText=
|
||||
121.XhtmlOptionsCalc.FilesLabel.Label=Fichiers
|
||||
122.XhtmlOptionsCalc.CalcSplit.HelpText=
|
||||
123.XhtmlOptionsCalc.CalcSplit.Label=Sauver les feuilles dans des fichiers s\u00e9par\u00e9s
|
||||
124.XhtmlOptionsCalc.SaveImagesInSubdir.HelpText=
|
||||
125.XhtmlOptionsCalc.SaveImagesInSubdir.Label=Sauver les images dans un sous-r\u00e9pertoire
|
||||
126.XhtmlOptionsCalc.ExportButton.HelpText=
|
||||
127.XhtmlOptionsCalc.ExportButton.Label=Exporter
|
||||
128.XhtmlOptionsCalc.CancelButton.HelpText=
|
||||
129.XhtmlOptionsCalc.CancelButton.Label=Annuler
|
||||
130.Config.StringItemList=Format d'origine
|
||||
131.Config.StringItemList=Chocolat
|
||||
132.Config.StringItemList=Minuit
|
||||
133.Config.StringItemList=Contemporain
|
||||
134.Config.StringItemList=Vieux style
|
||||
135.Config.StringItemList=M\u00e9tallis\u00e9
|
||||
136.Config.StringItemList=Suisse
|
||||
137.Config.StringItemList=Traditionnel
|
||||
138.Config.StringItemList=Ultramarine
|
||||
139.Config.StringItemList=Personnalis\u00e9
|
||||
140.Config.StringItemList=Format d'origine
|
||||
141.Config.StringItemList=Personnalis\u00e9
|
|
@ -0,0 +1,131 @@
|
|||
# Strings for Dialog Library W2XDialogs=(Russian)
|
||||
0.XhtmlOptions.HelpText=
|
||||
1.XhtmlOptions.Title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b XHTML (Writer2xhtml)
|
||||
2.XhtmlOptions.StyleLabel.HelpText=
|
||||
3.XhtmlOptions.StyleLabel.Label=\u0421\u0442\u0438\u043b\u044c
|
||||
4.XhtmlOptions.ConfigLabel.HelpText=
|
||||
5.XhtmlOptions.ConfigLabel.Label=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0438\u043b\u044c
|
||||
6.XhtmlOptions.Config.HelpText=
|
||||
17.XhtmlOptions.ScalingLabel.HelpText=
|
||||
18.XhtmlOptions.ScalingLabel.Label=\u041c\u0430\u0441\u0448\u0442\u0430\u0431
|
||||
19.XhtmlOptions.Scaling.HelpText=
|
||||
20.XhtmlOptions.ScalingPercentLabel.HelpText=
|
||||
21.XhtmlOptions.ScalingPercentLabel.Label=%
|
||||
22.XhtmlOptions.ColumnScalingLabel.HelpText=
|
||||
23.XhtmlOptions.ColumnScalingLabel.Label=\u0420\u0430\u0437\u043c\u0435\u0440 \u043a\u043e\u043b\u043e\u043d\u043e\u043a
|
||||
24.XhtmlOptions.ColumnScaling.HelpText=
|
||||
25.XhtmlOptions.ColumnScalingPercentLabel.HelpText=
|
||||
26.XhtmlOptions.ColumnScalingPercentLabel.Label=%
|
||||
27.XhtmlOptions.ConvertToPx.HelpText=
|
||||
28.XhtmlOptions.ConvertToPx.Label=\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u0438 (px)
|
||||
29.XhtmlOptions.OriginalImageSize.HelpText=
|
||||
30.XhtmlOptions.OriginalImageSize.Label=\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432
|
||||
31.XhtmlOptions.SpecialContentLabel.HelpText=
|
||||
32.XhtmlOptions.SpecialContentLabel.Label=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435
|
||||
33.XhtmlOptions.Notes.HelpText=
|
||||
34.XhtmlOptions.Notes.Label=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u043c\u0435\u0442\u043a\u0438
|
||||
35.XhtmlOptions.UseDublinCore.HelpText=
|
||||
36.XhtmlOptions.UseDublinCore.Label=\u042d\u043a\u0441\u043f\u043e\u0440\u0442. \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 (Dublin Core Metadata)
|
||||
37.XhtmlOptions.AutoCorrectLabel.HelpText=
|
||||
38.XhtmlOptions.AutoCorrectLabel.Label=\u0410\u0432\u0442\u043e\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u043a\u0430
|
||||
39.XhtmlOptions.IgnoreHardLineBreaks.HelpText=
|
||||
40.XhtmlOptions.IgnoreHardLineBreaks.Label=\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0440\u0430\u0437\u0440\u044b\u0432\u044b \u0441\u0442\u0440\u043e\u043a
|
||||
41.XhtmlOptions.IgnoreEmptyParagraphs.HelpText=
|
||||
42.XhtmlOptions.IgnoreEmptyParagraphs.Label=\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0443\u0441\u0442\u044b\u0435 \u043f\u0430\u0440\u0430\u0433\u0440\u0430\u0444\u044b
|
||||
43.XhtmlOptions.IgnoreDoubleSpaces.HelpText=
|
||||
44.XhtmlOptions.IgnoreDoubleSpaces.Label=\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0432\u043e\u0439\u043d\u044b\u0435 \u043f\u0440\u043e\u0431\u0435\u043b\u044b
|
||||
45.XhtmlOptions.FilesLabel.HelpText=
|
||||
46.XhtmlOptions.FilesLabel.Label=\u0424\u0430\u0439\u043b\u044b
|
||||
47.XhtmlOptions.Split.HelpText=
|
||||
48.XhtmlOptions.Split.Label=\u0420\u0430\u0437\u0431\u0438\u0432\u0430\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043f\u043e \u0437\u0430\u043a\u043e\u043b\u043e\u0432\u043a\u0430\u043c
|
||||
49.XhtmlOptions.SplitLevelLabel.HelpText=
|
||||
50.XhtmlOptions.SplitLevelLabel.Label=\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u043e\u0432
|
||||
51.XhtmlOptions.SplitLevel.HelpText=
|
||||
52.SplitLevel.StringItemList=1
|
||||
53.SplitLevel.StringItemList=2
|
||||
54.SplitLevel.StringItemList=3
|
||||
55.SplitLevel.StringItemList=4
|
||||
56.SplitLevel.StringItemList=5
|
||||
57.SplitLevel.StringItemList=6
|
||||
58.XhtmlOptions.RepeatLevelsLabel.HelpText=
|
||||
59.XhtmlOptions.RepeatLevelsLabel.Label=\u041f\u043e\u0432\u0442\u043e\u0440\u044f\u0442\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438 \u043d\u0430 \u0443\u0440\u043e\u0432\u043d\u0435
|
||||
60.XhtmlOptions.RepeatLevels.HelpText=
|
||||
61.RepeatLevels.StringItemList=0
|
||||
62.RepeatLevels.StringItemList=1
|
||||
63.RepeatLevels.StringItemList=2
|
||||
64.RepeatLevels.StringItemList=3
|
||||
65.RepeatLevels.StringItemList=4
|
||||
66.RepeatLevels.StringItemList=5
|
||||
67.XhtmlOptions.SaveImagesInSubdir.HelpText=
|
||||
68.XhtmlOptions.SaveImagesInSubdir.Label=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0432 \u043f\u043e\u0434\u043a\u0430\u0442\u0430\u043b\u043e\u0433
|
||||
69.XhtmlOptions.XsltPathLabel.HelpText=
|
||||
70.XhtmlOptions.XsltPathLabel.Label=\u041f\u0443\u0442\u044c \u043a XSLT
|
||||
71.XhtmlOptions.XsltPath.HelpText=
|
||||
72.XhtmlOptions.XsltPath.Text=
|
||||
73.XhtmlOptions.ExportButton.HelpText=
|
||||
74.XhtmlOptions.ExportButton.Label=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
|
||||
75.XhtmlOptions.CancelButton.HelpText=
|
||||
76.XhtmlOptions.CancelButton.Label=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c
|
||||
77.XhtmlOptionsCalc.HelpText=
|
||||
78.XhtmlOptionsCalc.Title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b XHTML (Calc2xhtml)
|
||||
79.XhtmlOptionsCalc.StyleLabel.HelpText=
|
||||
80.XhtmlOptionsCalc.StyleLabel.Label=\u0421\u0442\u0438\u043b\u044c
|
||||
81.XhtmlOptionsCalc.ConfigLabel.HelpText=
|
||||
82.XhtmlOptionsCalc.ConfigLabel.Label=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0438\u043b\u044c
|
||||
83.XhtmlOptionsCalc.Config.HelpText=
|
||||
86.XhtmlOptionsCalc.ScalingLabel.HelpText=
|
||||
87.XhtmlOptionsCalc.ScalingLabel.Label=\u041c\u0430\u0441\u0448\u0442\u0430\u0431
|
||||
88.XhtmlOptionsCalc.Scaling.HelpText=
|
||||
89.XhtmlOptionsCalc.ScalingPercentLabel.HelpText=
|
||||
90.XhtmlOptionsCalc.ScalingPercentLabel.Label=%
|
||||
91.XhtmlOptionsCalc.ColumnScalingLabel.HelpText=
|
||||
92.XhtmlOptionsCalc.ColumnScalingLabel.Label=\u0420\u0430\u0437\u043c\u0435\u0440 \u043a\u043e\u043b\u043e\u043d\u043e\u043a
|
||||
93.XhtmlOptionsCalc.ColumnScaling.HelpText=
|
||||
94.XhtmlOptionsCalc.ColumnScalingPercentLabel.HelpText=
|
||||
95.XhtmlOptionsCalc.ColumnScalingPercentLabel.Label=%
|
||||
96.XhtmlOptionsCalc.ConvertToPx.HelpText=
|
||||
97.XhtmlOptionsCalc.ConvertToPx.Label=\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u0438 (px)
|
||||
98.XhtmlOptionsCalc.OriginalImageSize.HelpText=
|
||||
99.XhtmlOptionsCalc.OriginalImageSize.Label=\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432
|
||||
100.XhtmlOptionsCalc.SpecialContentLabel.HelpText=
|
||||
101.XhtmlOptionsCalc.SpecialContentLabel.Label=\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435
|
||||
102.XhtmlOptionsCalc.Notes.HelpText=
|
||||
103.XhtmlOptionsCalc.Notes.Label=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u043c\u0435\u0442\u043a\u0438
|
||||
104.XhtmlOptionsCalc.UseDublinCore.HelpText=
|
||||
105.XhtmlOptionsCalc.UseDublinCore.Label=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 (Dublin Core Metadata)
|
||||
106.XhtmlOptionsCalc.SheetsLabel.HelpText=
|
||||
107.XhtmlOptionsCalc.SheetsLabel.Label=\u041b\u0438\u0441\u0442\u044b
|
||||
108.XhtmlOptionsCalc.DisplayHiddenSheets.HelpText=
|
||||
109.XhtmlOptionsCalc.DisplayHiddenSheets.Label=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0441\u043f\u0440\u044f\u0442\u0430\u043d\u044b\u0435 \u043b\u0438\u0441\u0442\u044b
|
||||
110.XhtmlOptionsCalc.DisplayHiddenRowsCols.HelpText=
|
||||
111.XhtmlOptionsCalc.DisplayHiddenRowsCols.Label=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0441\u043f\u0440\u044f\u0442\u0430\u043d\u044b\u0435 \u0441\u0442\u0440\u043e\u043a\u0438 \u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0438
|
||||
112.XhtmlOptionsCalc.DisplayFilteredRowsCols.HelpText=
|
||||
113.XhtmlOptionsCalc.DisplayFilteredRowsCols.Label=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043e\u0442\u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u0442\u0440\u043e\u043a\u0438 \u0438 \u043a\u043e\u043b\u043e\u043d\u043a\u0438
|
||||
114.XhtmlOptionsCalc.ApplyPrintRanges.HelpText=
|
||||
115.XhtmlOptionsCalc.ApplyPrintRanges.Label=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043f\u0435\u0447\u0430\u0442\u0438
|
||||
116.XhtmlOptionsCalc.UseTitleAsHeading.HelpText=
|
||||
117.XhtmlOptionsCalc.UseTitleAsHeading.Label=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
|
||||
118.XhtmlOptionsCalc.UseSheetNamesAsHeadings.HelpText=
|
||||
119.XhtmlOptionsCalc.UseSheetNamesAsHeadings.Label=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u043b\u0438\u0441\u0442\u043e\u0432 \u0438 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438
|
||||
120.XhtmlOptionsCalc.FilesLabel.HelpText=
|
||||
121.XhtmlOptionsCalc.FilesLabel.Label=\u0424\u0430\u0439\u043b\u044b
|
||||
122.XhtmlOptionsCalc.CalcSplit.HelpText=
|
||||
123.XhtmlOptionsCalc.CalcSplit.Label=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043b\u0438\u0441\u0442\u044b \u0432 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b
|
||||
124.XhtmlOptionsCalc.SaveImagesInSubdir.HelpText=
|
||||
125.XhtmlOptionsCalc.SaveImagesInSubdir.Label=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0432 \u043f\u043e\u0434\u043a\u0430\u0442\u0430\u043b\u043e\u0433
|
||||
126.XhtmlOptionsCalc.ExportButton.HelpText=
|
||||
127.XhtmlOptionsCalc.ExportButton.Label=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
|
||||
128.XhtmlOptionsCalc.CancelButton.HelpText=
|
||||
129.XhtmlOptionsCalc.CancelButton.Label=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c
|
||||
130.Config.StringItemList=\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435
|
||||
131.Config.StringItemList=\u0428\u043e\u043a\u043e\u043b\u0430\u0434
|
||||
132.Config.StringItemList=\u041f\u043e\u043b\u0443\u043d\u043e\u0447\u044c
|
||||
133.Config.StringItemList=\u041c\u043e\u0434\u0435\u0440\u043d
|
||||
134.Config.StringItemList=\u0420\u0435\u0442\u0440\u043e
|
||||
135.Config.StringItemList=\u0421\u0442\u0430\u043b\u044c
|
||||
136.Config.StringItemList=\u0428\u0432\u0435\u0446\u0438\u044f
|
||||
137.Config.StringItemList=\u0422\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u043d\u044b\u0439
|
||||
138.Config.StringItemList=\u0423\u043b\u044c\u0442\u0440\u0430\u043c\u0430\u0440\u0438\u043d
|
||||
139.Config.StringItemList=\u0412\u044b\u0431\u043e\u0440\u043e\u0447\u043d\u044b\u0439
|
||||
140.Config.StringItemList=\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435
|
||||
141.Config.StringItemList=\u0412\u044b\u0431\u043e\u0440\u043e\u0447\u043d\u044b\u0439
|
|
@ -0,0 +1,131 @@
|
|||
# Strings for Dialog Library W2XDialogs (Ukrainian)
|
||||
0.XhtmlOptions.HelpText=
|
||||
1.XhtmlOptions.Title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b XHTML (Writer2xhtml)
|
||||
2.XhtmlOptions.StyleLabel.HelpText=
|
||||
3.XhtmlOptions.StyleLabel.Label=\u0421\u0442\u0438\u043b\u044c
|
||||
4.XhtmlOptions.ConfigLabel.HelpText=
|
||||
5.XhtmlOptions.ConfigLabel.Label=\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0441\u0442\u0438\u043b\u044c
|
||||
6.XhtmlOptions.Config.HelpText=
|
||||
17.XhtmlOptions.ScalingLabel.HelpText=
|
||||
18.XhtmlOptions.ScalingLabel.Label=\u041c\u0456\u0440\u0438\u043b\u043e
|
||||
19.XhtmlOptions.Scaling.HelpText=
|
||||
20.XhtmlOptions.ScalingPercentLabel.HelpText=
|
||||
21.XhtmlOptions.ScalingPercentLabel.Label=%
|
||||
22.XhtmlOptions.ColumnScalingLabel.HelpText=
|
||||
23.XhtmlOptions.ColumnScalingLabel.Label=\u0420\u043e\u0437\u043c\u0456\u0440 \u0441\u0442\u043e\u0432\u0431\u0446\u0456\u0432
|
||||
24.XhtmlOptions.ColumnScaling.HelpText=
|
||||
25.XhtmlOptions.ColumnScalingPercentLabel.HelpText=
|
||||
26.XhtmlOptions.ColumnScalingPercentLabel.Label=%
|
||||
27.XhtmlOptions.ConvertToPx.HelpText=
|
||||
28.XhtmlOptions.ConvertToPx.Label=\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0443 \u043f\u0456\u043a\u0441\u0435\u043b\u0456 (px)
|
||||
29.XhtmlOptions.OriginalImageSize.HelpText=
|
||||
30.XhtmlOptions.OriginalImageSize.Label=\u0410\u0432\u0442\u0435\u043d\u0442\u0438\u0447\u043d\u0438\u0439 \u0440\u043e\u0437\u043c\u0456\u0440 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u044c
|
||||
31.XhtmlOptions.SpecialContentLabel.HelpText=
|
||||
32.XhtmlOptions.SpecialContentLabel.Label=\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0439 \u0432\u043c\u0456\u0441\u0442
|
||||
33.XhtmlOptions.Notes.HelpText=
|
||||
34.XhtmlOptions.Notes.Label=\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437\u0430\u043c\u0456\u0442\u043a\u0438
|
||||
35.XhtmlOptions.UseDublinCore.HelpText=
|
||||
36.XhtmlOptions.UseDublinCore.Label=\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0432\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443 (Dublin Core Metadata)
|
||||
37.XhtmlOptions.AutoCorrectLabel.HelpText=
|
||||
38.XhtmlOptions.AutoCorrectLabel.Label=\u0410\u0432\u0442\u043e\u043a\u043e\u0440\u0435\u0433\u0443\u0432\u0430\u043d\u043d\u044f
|
||||
39.XhtmlOptions.IgnoreHardLineBreaks.HelpText=
|
||||
40.XhtmlOptions.IgnoreHardLineBreaks.Label=\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u0440\u043e\u043e\u0437\u0440\u0438\u0432\u0438 \u0440\u044f\u0434\u043a\u0456\u0432
|
||||
41.XhtmlOptions.IgnoreEmptyParagraphs.HelpText=
|
||||
42.XhtmlOptions.IgnoreEmptyParagraphs.Label=\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0440\u043e\u0436\u043d\u0456 \u043f\u0430\u0440\u0430\u0433\u0440\u0430\u0444\u0438
|
||||
43.XhtmlOptions.IgnoreDoubleSpaces.HelpText=
|
||||
44.XhtmlOptions.IgnoreDoubleSpaces.Label=\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0434\u0432\u0456\u0439\u043d\u0456 \u043f\u0440\u043e\u0431\u0456\u043b\u0438
|
||||
45.XhtmlOptions.FilesLabel.HelpText=
|
||||
46.XhtmlOptions.FilesLabel.Label=\u0424\u0430\u0439\u043b\u0438
|
||||
47.XhtmlOptions.Split.HelpText=
|
||||
48.XhtmlOptions.Split.Label=\u0420\u043e\u0437\u0431\u0438\u0432\u0430\u0442\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043f\u043e \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430\u0445
|
||||
49.XhtmlOptions.SplitLevelLabel.HelpText=
|
||||
50.XhtmlOptions.SplitLevelLabel.Label=\u0420\u0456\u0432\u043d\u0435\u044c \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0443
|
||||
51.XhtmlOptions.SplitLevel.HelpText=
|
||||
52.SplitLevel.StringItemList=1
|
||||
53.SplitLevel.StringItemList=2
|
||||
54.SplitLevel.StringItemList=3
|
||||
55.SplitLevel.StringItemList=4
|
||||
56.SplitLevel.StringItemList=5
|
||||
57.SplitLevel.StringItemList=6
|
||||
58.XhtmlOptions.RepeatLevelsLabel.HelpText=
|
||||
59.XhtmlOptions.RepeatLevelsLabel.Label=\u041f\u043e\u0432\u0442\u043e\u0440\u044e\u0432\u0430\u0442\u0438 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438 \u043d\u0430 \u0440\u0456\u0432\u043d\u0456
|
||||
60.XhtmlOptions.RepeatLevels.HelpText=
|
||||
61.RepeatLevels.StringItemList=0
|
||||
62.RepeatLevels.StringItemList=1
|
||||
63.RepeatLevels.StringItemList=2
|
||||
64.RepeatLevels.StringItemList=3
|
||||
65.RepeatLevels.StringItemList=4
|
||||
66.RepeatLevels.StringItemList=5
|
||||
67.XhtmlOptions.SaveImagesInSubdir.HelpText=
|
||||
68.XhtmlOptions.SaveImagesInSubdir.Label=\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0443 \u043f\u0456\u0434\u0442\u0435\u043a\u0443
|
||||
69.XhtmlOptions.XsltPathLabel.HelpText=
|
||||
70.XhtmlOptions.XsltPathLabel.Label=\u0428\u043b\u044f\u0445 \u0434\u043e XSLT
|
||||
71.XhtmlOptions.XsltPath.HelpText=
|
||||
72.XhtmlOptions.XsltPath.Text=
|
||||
73.XhtmlOptions.ExportButton.HelpText=
|
||||
74.XhtmlOptions.ExportButton.Label=\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438
|
||||
75.XhtmlOptions.CancelButton.HelpText=
|
||||
76.XhtmlOptions.CancelButton.Label=\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438
|
||||
77.XhtmlOptionsCalc.HelpText=
|
||||
78.XhtmlOptionsCalc.Title=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b XHTML (Calc2xhtml)
|
||||
79.XhtmlOptionsCalc.StyleLabel.HelpText=
|
||||
80.XhtmlOptionsCalc.StyleLabel.Label=\u0421\u0442\u0438\u043b\u044c
|
||||
81.XhtmlOptionsCalc.ConfigLabel.HelpText=
|
||||
82.XhtmlOptionsCalc.ConfigLabel.Label=\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0441\u0442\u0438\u043b\u044c
|
||||
83.XhtmlOptionsCalc.Config.HelpText=
|
||||
86.XhtmlOptionsCalc.ScalingLabel.HelpText=
|
||||
87.XhtmlOptionsCalc.ScalingLabel.Label=\u041c\u0456\u0440\u0438\u043b\u043e
|
||||
88.XhtmlOptionsCalc.Scaling.HelpText=
|
||||
89.XhtmlOptionsCalc.ScalingPercentLabel.HelpText=
|
||||
90.XhtmlOptionsCalc.ScalingPercentLabel.Label=%
|
||||
91.XhtmlOptionsCalc.ColumnScalingLabel.HelpText=
|
||||
92.XhtmlOptionsCalc.ColumnScalingLabel.Label=\u0420\u043e\u0437\u043c\u0456\u0440 \u0441\u0442\u043e\u0432\u0431\u0446\u0456\u0432
|
||||
93.XhtmlOptionsCalc.ColumnScaling.HelpText=
|
||||
94.XhtmlOptionsCalc.ColumnScalingPercentLabel.HelpText=
|
||||
95.XhtmlOptionsCalc.ColumnScalingPercentLabel.Label=%
|
||||
96.XhtmlOptionsCalc.ConvertToPx.HelpText=
|
||||
97.XhtmlOptionsCalc.ConvertToPx.Label=\u041f\u0435\u0440\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0443 \u043f\u0456\u043a\u0441\u0435\u043b\u0456 (px)
|
||||
98.XhtmlOptionsCalc.OriginalImageSize.HelpText=
|
||||
99.XhtmlOptionsCalc.OriginalImageSize.Label=\u041e\u0440\u0438\u0433\u0456\u043d\u0430\u043b\u044c\u043d\u0438\u0439 \u0440\u043e\u0437\u043c\u0456\u0440 \u043c\u0430\u043b\u044e\u043d\u043a\u0456\u0432
|
||||
100.XhtmlOptionsCalc.SpecialContentLabel.HelpText=
|
||||
101.XhtmlOptionsCalc.SpecialContentLabel.Label=\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0439 \u0432\u043c\u0456\u0441\u0442
|
||||
102.XhtmlOptionsCalc.Notes.HelpText=
|
||||
103.XhtmlOptionsCalc.Notes.Label=\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0437\u0430\u043c\u0456\u0442\u043a\u0438
|
||||
104.XhtmlOptionsCalc.UseDublinCore.HelpText=
|
||||
105.XhtmlOptionsCalc.UseDublinCore.Label=\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438 \u0432\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443 (Dublin Core Metadata)
|
||||
106.XhtmlOptionsCalc.SheetsLabel.HelpText=
|
||||
107.XhtmlOptionsCalc.SheetsLabel.Label=\u0410\u0440\u043a\u0443\u0448\u0456
|
||||
108.XhtmlOptionsCalc.DisplayHiddenSheets.HelpText=
|
||||
109.XhtmlOptionsCalc.DisplayHiddenSheets.Label=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0437\u0430\u0445\u043e\u0432\u0430\u043d\u0456 \u0430\u0440\u043a\u0443\u0448\u0456
|
||||
110.XhtmlOptionsCalc.DisplayHiddenRowsCols.HelpText=
|
||||
111.XhtmlOptionsCalc.DisplayHiddenRowsCols.Label=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0437\u0430\u0445\u043e\u0432\u0430\u043d\u0456 \u0440\u044f\u0434\u043a\u0438 \u0442\u0430 \u0441\u0442\u043e\u0432\u0431\u0446\u0456
|
||||
112.XhtmlOptionsCalc.DisplayFilteredRowsCols.HelpText=
|
||||
113.XhtmlOptionsCalc.DisplayFilteredRowsCols.Label=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0432\u0456\u0434\u0444\u0456\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u043d\u0456 \u0440\u044f\u0434\u043a\u0438 \u0442\u0430 \u0441\u0442\u043e\u0432\u0431\u0446\u0456
|
||||
114.XhtmlOptionsCalc.ApplyPrintRanges.HelpText=
|
||||
115.XhtmlOptionsCalc.ApplyPrintRanges.Label=\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438 \u043e\u0431\u043c\u0435\u0436\u0435\u043d\u043d\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u0456 \u0434\u0440\u0443\u043a\u0443
|
||||
116.XhtmlOptionsCalc.UseTitleAsHeading.HelpText=
|
||||
117.XhtmlOptionsCalc.UseTitleAsHeading.Label=\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u043d\u0430\u0437\u0432\u0443 \u0442\u0430 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a
|
||||
118.XhtmlOptionsCalc.UseSheetNamesAsHeadings.HelpText=
|
||||
119.XhtmlOptionsCalc.UseSheetNamesAsHeadings.Label=\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u043d\u0430\u0437\u0432\u0443 \u0430\u0440\u043a\u0443\u0448\u0456\u0432 \u0442\u0430 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438
|
||||
120.XhtmlOptionsCalc.FilesLabel.HelpText=
|
||||
121.XhtmlOptionsCalc.FilesLabel.Label=\u0424\u0430\u0439\u043b\u0438
|
||||
122.XhtmlOptionsCalc.CalcSplit.HelpText=
|
||||
123.XhtmlOptionsCalc.CalcSplit.Label=\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0430\u0440\u043a\u0443\u0448\u0456 \u0432 \u043e\u043a\u0440\u0435\u043c\u0456 \u0444\u0430\u0439\u043b\u0438
|
||||
124.XhtmlOptionsCalc.SaveImagesInSubdir.HelpText=
|
||||
125.XhtmlOptionsCalc.SaveImagesInSubdir.Label=\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f \u0443 \u043f\u0456\u0434\u0442\u0435\u043a\u0443
|
||||
126.XhtmlOptionsCalc.ExportButton.HelpText=
|
||||
127.XhtmlOptionsCalc.ExportButton.Label=\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0443\u0432\u0430\u0442\u0438
|
||||
128.XhtmlOptionsCalc.CancelButton.HelpText=
|
||||
129.XhtmlOptionsCalc.CancelButton.Label=\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438
|
||||
130.Config.StringItemList=\u0410\u0432\u0442\u0435\u043d\u0442\u0438\u0447\u043d\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f
|
||||
131.Config.StringItemList=\u0428\u043e\u043a\u043e\u043b\u0430\u0434
|
||||
132.Config.StringItemList=\u041f\u0456\u0432\u043d\u0456\u0447
|
||||
133.Config.StringItemList=\u041c\u043e\u0434\u0435\u0440\u043d
|
||||
134.Config.StringItemList=\u0420\u0435\u0442\u0440\u043e
|
||||
135.Config.StringItemList=\u0421\u0442\u0430\u043b\u044c
|
||||
136.Config.StringItemList=\u0428\u0432\u0435\u0446\u0456\u044f
|
||||
137.Config.StringItemList=\u0422\u0440\u0430\u0434\u0438\u0446\u0456\u0439\u043d\u0438\u0439
|
||||
138.Config.StringItemList=\u0423\u043b\u044c\u0442\u0440\u0430\u043c\u0430\u0440\u0438\u043d
|
||||
139.Config.StringItemList=\u0412\u0438\u0431\u0456\u0440\u043a\u043e\u0432\u0438\u0439
|
||||
140.Config.StringItemList=\u0410\u0432\u0442\u0435\u043d\u0442\u0438\u0447\u043d\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f
|
||||
141.Config.StringItemList=\u0412\u0438\u0431\u0456\u0440\u043a\u043e\u0432\u0438\u0439
|
7
source/oxt/writer2xhtml/W2XDialogs/Module1.xba
Normal file
7
source/oxt/writer2xhtml/W2XDialogs/Module1.xba
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
|
||||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Module1" script:language="StarBasic">REM ***** BASIC *****
|
||||
|
||||
Sub Main
|
||||
|
||||
End Sub</script:module>
|
69
source/oxt/writer2xhtml/W2XDialogs/XhtmlOptions.xdl
Normal file
69
source/oxt/writer2xhtml/W2XDialogs/XhtmlOptions.xdl
Normal file
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd">
|
||||
<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="XhtmlOptions" dlg:left="139" dlg:top="84" dlg:width="203" dlg:height="306" dlg:help-text="&0.XhtmlOptions.HelpText" dlg:closeable="true" dlg:moveable="true" dlg:title="&1.XhtmlOptions.Title">
|
||||
<dlg:bulletinboard>
|
||||
<dlg:text dlg:id="StyleLabel" dlg:tab-index="0" dlg:left="5" dlg:top="8" dlg:width="183" dlg:height="12" dlg:help-text="&2.XhtmlOptions.StyleLabel.HelpText" dlg:value="&3.XhtmlOptions.StyleLabel.Label"/>
|
||||
<dlg:text dlg:id="ConfigLabel" dlg:tab-index="1" dlg:left="10" dlg:top="22" dlg:width="76" dlg:height="12" dlg:help-text="&4.XhtmlOptions.ConfigLabel.HelpText" dlg:value="&5.XhtmlOptions.ConfigLabel.Label"/>
|
||||
<dlg:menulist dlg:id="Config" dlg:tab-index="2" dlg:left="97" dlg:top="20" dlg:width="92" dlg:height="12" dlg:help-text="&6.XhtmlOptions.Config.HelpText" dlg:spin="true" dlg:linecount="10">
|
||||
<dlg:menupopup>
|
||||
<dlg:menuitem dlg:value="&130.Config.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&131.Config.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&132.Config.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&133.Config.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&134.Config.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&135.Config.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&136.Config.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&137.Config.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&138.Config.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&139.Config.StringItemList"/>
|
||||
</dlg:menupopup>
|
||||
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:ConfigChange" script:language="UNO"/>
|
||||
</dlg:menulist>
|
||||
<dlg:text dlg:id="ScalingLabel" dlg:tab-index="3" dlg:left="10" dlg:top="36" dlg:width="76" dlg:height="12" dlg:help-text="&17.XhtmlOptions.ScalingLabel.HelpText" dlg:value="&18.XhtmlOptions.ScalingLabel.Label"/>
|
||||
<dlg:numericfield dlg:id="Scaling" dlg:tab-index="4" dlg:left="144" dlg:top="34" dlg:width="30" dlg:height="12" dlg:help-text="&19.XhtmlOptions.Scaling.HelpText" dlg:strict-format="true" dlg:decimal-accuracy="0" dlg:value="100" dlg:value-min="1" dlg:value-max="1000" dlg:value-step="10" dlg:spin="true"/>
|
||||
<dlg:text dlg:id="ScalingPercentLabel" dlg:tab-index="5" dlg:left="179" dlg:top="36" dlg:width="10" dlg:height="12" dlg:help-text="&20.XhtmlOptions.ScalingPercentLabel.HelpText" dlg:value="&21.XhtmlOptions.ScalingPercentLabel.Label"/>
|
||||
<dlg:text dlg:id="ColumnScalingLabel" dlg:tab-index="6" dlg:left="10" dlg:top="50" dlg:width="76" dlg:height="12" dlg:help-text="&22.XhtmlOptions.ColumnScalingLabel.HelpText" dlg:value="&23.XhtmlOptions.ColumnScalingLabel.Label"/>
|
||||
<dlg:numericfield dlg:id="ColumnScaling" dlg:tab-index="7" dlg:left="144" dlg:top="48" dlg:width="30" dlg:height="12" dlg:help-text="&24.XhtmlOptions.ColumnScaling.HelpText" dlg:strict-format="true" dlg:decimal-accuracy="0" dlg:value="100" dlg:value-min="1" dlg:value-max="1000" dlg:value-step="10" dlg:spin="true"/>
|
||||
<dlg:text dlg:id="ColumnScalingPercentLabel" dlg:tab-index="8" dlg:left="179" dlg:top="50" dlg:width="10" dlg:height="12" dlg:help-text="&25.XhtmlOptions.ColumnScalingPercentLabel.HelpText" dlg:value="&26.XhtmlOptions.ColumnScalingPercentLabel.Label"/>
|
||||
<dlg:checkbox dlg:id="ConvertToPx" dlg:tab-index="9" dlg:left="10" dlg:top="64" dlg:width="177" dlg:height="12" dlg:help-text="&27.XhtmlOptions.ConvertToPx.HelpText" dlg:value="&28.XhtmlOptions.ConvertToPx.Label" dlg:checked="true"/>
|
||||
<dlg:checkbox dlg:id="OriginalImageSize" dlg:tab-index="10" dlg:left="10" dlg:top="78" dlg:width="177" dlg:height="12" dlg:help-text="&29.XhtmlOptions.OriginalImageSize.HelpText" dlg:value="&30.XhtmlOptions.OriginalImageSize.Label" dlg:checked="false"/>
|
||||
<dlg:text dlg:id="SpecialContentLabel" dlg:tab-index="11" dlg:left="5" dlg:top="92" dlg:width="184" dlg:height="12" dlg:help-text="&31.XhtmlOptions.SpecialContentLabel.HelpText" dlg:value="&32.XhtmlOptions.SpecialContentLabel.Label"/>
|
||||
<dlg:checkbox dlg:id="Notes" dlg:tab-index="12" dlg:left="10" dlg:top="106" dlg:width="179" dlg:height="12" dlg:help-text="&33.XhtmlOptions.Notes.HelpText" dlg:value="&34.XhtmlOptions.Notes.Label" dlg:checked="true"/>
|
||||
<dlg:checkbox dlg:id="UseDublinCore" dlg:tab-index="13" dlg:left="10" dlg:top="120" dlg:width="179" dlg:height="12" dlg:help-text="&35.XhtmlOptions.UseDublinCore.HelpText" dlg:value="&36.XhtmlOptions.UseDublinCore.Label" dlg:checked="true"/>
|
||||
<dlg:text dlg:id="AutoCorrectLabel" dlg:tab-index="14" dlg:left="5" dlg:top="134" dlg:width="184" dlg:height="12" dlg:help-text="&37.XhtmlOptions.AutoCorrectLabel.HelpText" dlg:value="&38.XhtmlOptions.AutoCorrectLabel.Label"/>
|
||||
<dlg:checkbox dlg:id="IgnoreHardLineBreaks" dlg:tab-index="15" dlg:left="10" dlg:top="148" dlg:width="175" dlg:height="12" dlg:help-text="&39.XhtmlOptions.IgnoreHardLineBreaks.HelpText" dlg:value="&40.XhtmlOptions.IgnoreHardLineBreaks.Label" dlg:checked="false"/>
|
||||
<dlg:checkbox dlg:id="IgnoreEmptyParagraphs" dlg:tab-index="16" dlg:left="10" dlg:top="162" dlg:width="175" dlg:height="12" dlg:help-text="&41.XhtmlOptions.IgnoreEmptyParagraphs.HelpText" dlg:value="&42.XhtmlOptions.IgnoreEmptyParagraphs.Label" dlg:checked="false"/>
|
||||
<dlg:checkbox dlg:id="IgnoreDoubleSpaces" dlg:tab-index="17" dlg:left="10" dlg:top="176" dlg:width="175" dlg:height="12" dlg:help-text="&43.XhtmlOptions.IgnoreDoubleSpaces.HelpText" dlg:value="&44.XhtmlOptions.IgnoreDoubleSpaces.Label" dlg:checked="false"/>
|
||||
<dlg:text dlg:id="FilesLabel" dlg:tab-index="18" dlg:left="5" dlg:top="190" dlg:width="184" dlg:height="12" dlg:help-text="&45.XhtmlOptions.FilesLabel.HelpText" dlg:value="&46.XhtmlOptions.FilesLabel.Label"/>
|
||||
<dlg:checkbox dlg:id="Split" dlg:tab-index="19" dlg:left="10" dlg:top="204" dlg:width="180" dlg:height="12" dlg:help-text="&47.XhtmlOptions.Split.HelpText" dlg:value="&48.XhtmlOptions.Split.Label" dlg:checked="false">
|
||||
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:SplitChange" script:language="UNO"/>
|
||||
</dlg:checkbox>
|
||||
<dlg:text dlg:id="SplitLevelLabel" dlg:tab-index="20" dlg:left="20" dlg:top="218" dlg:width="76" dlg:height="12" dlg:help-text="&49.XhtmlOptions.SplitLevelLabel.HelpText" dlg:value="&50.XhtmlOptions.SplitLevelLabel.Label"/>
|
||||
<dlg:menulist dlg:id="SplitLevel" dlg:tab-index="21" dlg:left="152" dlg:top="216" dlg:width="37" dlg:height="12" dlg:help-text="&51.XhtmlOptions.SplitLevel.HelpText" dlg:spin="true" dlg:linecount="6">
|
||||
<dlg:menupopup>
|
||||
<dlg:menuitem dlg:value="&52.SplitLevel.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&53.SplitLevel.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&54.SplitLevel.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&55.SplitLevel.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&56.SplitLevel.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&57.SplitLevel.StringItemList"/>
|
||||
</dlg:menupopup>
|
||||
</dlg:menulist>
|
||||
<dlg:text dlg:id="RepeatLevelsLabel" dlg:tab-index="22" dlg:left="20" dlg:top="232" dlg:width="122" dlg:height="12" dlg:help-text="&58.XhtmlOptions.RepeatLevelsLabel.HelpText" dlg:value="&59.XhtmlOptions.RepeatLevelsLabel.Label"/>
|
||||
<dlg:menulist dlg:id="RepeatLevels" dlg:tab-index="23" dlg:left="152" dlg:top="230" dlg:width="37" dlg:height="12" dlg:help-text="&60.XhtmlOptions.RepeatLevels.HelpText" dlg:spin="true" dlg:linecount="6">
|
||||
<dlg:menupopup>
|
||||
<dlg:menuitem dlg:value="&61.RepeatLevels.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&62.RepeatLevels.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&63.RepeatLevels.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&64.RepeatLevels.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&65.RepeatLevels.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&66.RepeatLevels.StringItemList"/>
|
||||
</dlg:menupopup>
|
||||
</dlg:menulist>
|
||||
<dlg:checkbox dlg:id="SaveImagesInSubdir" dlg:tab-index="24" dlg:left="10" dlg:top="246" dlg:width="177" dlg:height="12" dlg:help-text="&67.XhtmlOptions.SaveImagesInSubdir.HelpText" dlg:value="&68.XhtmlOptions.SaveImagesInSubdir.Label" dlg:checked="false"/>
|
||||
<dlg:text dlg:id="XsltPathLabel" dlg:tab-index="25" dlg:left="10" dlg:top="260" dlg:width="36" dlg:height="12" dlg:help-text="&69.XhtmlOptions.XsltPathLabel.HelpText" dlg:value="&70.XhtmlOptions.XsltPathLabel.Label"/>
|
||||
<dlg:textfield dlg:id="XsltPath" dlg:tab-index="26" dlg:left="57" dlg:top="258" dlg:width="132" dlg:height="12" dlg:help-text="&71.XhtmlOptions.XsltPath.HelpText" dlg:value="&72.XhtmlOptions.XsltPath.Text"/>
|
||||
<dlg:button dlg:id="ExportButton" dlg:tab-index="27" dlg:left="5" dlg:top="286" dlg:width="55" dlg:height="12" dlg:help-text="&73.XhtmlOptions.ExportButton.HelpText" dlg:value="&74.XhtmlOptions.ExportButton.Label" dlg:button-type="ok"/>
|
||||
<dlg:button dlg:id="CancelButton" dlg:tab-index="28" dlg:left="70" dlg:top="286" dlg:width="55" dlg:height="12" dlg:help-text="&75.XhtmlOptions.CancelButton.HelpText" dlg:value="&76.XhtmlOptions.CancelButton.Label" dlg:button-type="cancel"/>
|
||||
</dlg:bulletinboard>
|
||||
</dlg:window>
|
38
source/oxt/writer2xhtml/W2XDialogs/XhtmlOptionsCalc.xdl
Normal file
38
source/oxt/writer2xhtml/W2XDialogs/XhtmlOptionsCalc.xdl
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd">
|
||||
<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="XhtmlOptionsCalc" dlg:left="139" dlg:top="84" dlg:width="203" dlg:height="306" dlg:help-text="&77.XhtmlOptionsCalc.HelpText" dlg:closeable="true" dlg:moveable="true" dlg:title="&78.XhtmlOptionsCalc.Title">
|
||||
<dlg:bulletinboard>
|
||||
<dlg:text dlg:id="StyleLabel" dlg:tab-index="0" dlg:left="5" dlg:top="8" dlg:width="183" dlg:height="12" dlg:help-text="&79.XhtmlOptionsCalc.StyleLabel.HelpText" dlg:value="&80.XhtmlOptionsCalc.StyleLabel.Label"/>
|
||||
<dlg:text dlg:id="ConfigLabel" dlg:tab-index="1" dlg:left="10" dlg:top="22" dlg:width="76" dlg:height="12" dlg:help-text="&81.XhtmlOptionsCalc.ConfigLabel.HelpText" dlg:value="&82.XhtmlOptionsCalc.ConfigLabel.Label"/>
|
||||
<dlg:menulist dlg:id="Config" dlg:tab-index="2" dlg:left="97" dlg:top="20" dlg:width="92" dlg:height="12" dlg:help-text="&83.XhtmlOptionsCalc.Config.HelpText" dlg:spin="true" dlg:linecount="2">
|
||||
<dlg:menupopup>
|
||||
<dlg:menuitem dlg:value="&140.Config.StringItemList"/>
|
||||
<dlg:menuitem dlg:value="&141.Config.StringItemList"/>
|
||||
</dlg:menupopup>
|
||||
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:ConfigChange" script:language="UNO"/>
|
||||
</dlg:menulist>
|
||||
<dlg:text dlg:id="ScalingLabel" dlg:tab-index="3" dlg:left="10" dlg:top="36" dlg:width="76" dlg:height="12" dlg:help-text="&86.XhtmlOptionsCalc.ScalingLabel.HelpText" dlg:value="&87.XhtmlOptionsCalc.ScalingLabel.Label"/>
|
||||
<dlg:numericfield dlg:id="Scaling" dlg:tab-index="4" dlg:left="144" dlg:top="34" dlg:width="30" dlg:height="12" dlg:help-text="&88.XhtmlOptionsCalc.Scaling.HelpText" dlg:strict-format="true" dlg:decimal-accuracy="0" dlg:value="100" dlg:value-min="1" dlg:value-max="1000" dlg:value-step="10" dlg:spin="true"/>
|
||||
<dlg:text dlg:id="ScalingPercentLabel" dlg:tab-index="5" dlg:left="179" dlg:top="36" dlg:width="10" dlg:height="12" dlg:help-text="&89.XhtmlOptionsCalc.ScalingPercentLabel.HelpText" dlg:value="&90.XhtmlOptionsCalc.ScalingPercentLabel.Label"/>
|
||||
<dlg:text dlg:id="ColumnScalingLabel" dlg:tab-index="6" dlg:left="10" dlg:top="50" dlg:width="76" dlg:height="12" dlg:help-text="&91.XhtmlOptionsCalc.ColumnScalingLabel.HelpText" dlg:value="&92.XhtmlOptionsCalc.ColumnScalingLabel.Label"/>
|
||||
<dlg:numericfield dlg:id="ColumnScaling" dlg:tab-index="7" dlg:left="144" dlg:top="48" dlg:width="30" dlg:height="12" dlg:help-text="&93.XhtmlOptionsCalc.ColumnScaling.HelpText" dlg:strict-format="true" dlg:decimal-accuracy="0" dlg:value="100" dlg:value-min="1" dlg:value-max="1000" dlg:value-step="10" dlg:spin="true"/>
|
||||
<dlg:text dlg:id="ColumnScalingPercentLabel" dlg:tab-index="8" dlg:left="179" dlg:top="50" dlg:width="10" dlg:height="12" dlg:help-text="&94.XhtmlOptionsCalc.ColumnScalingPercentLabel.HelpText" dlg:value="&95.XhtmlOptionsCalc.ColumnScalingPercentLabel.Label"/>
|
||||
<dlg:checkbox dlg:id="ConvertToPx" dlg:tab-index="9" dlg:left="10" dlg:top="64" dlg:width="177" dlg:height="12" dlg:help-text="&96.XhtmlOptionsCalc.ConvertToPx.HelpText" dlg:value="&97.XhtmlOptionsCalc.ConvertToPx.Label" dlg:checked="true"/>
|
||||
<dlg:checkbox dlg:id="OriginalImageSize" dlg:tab-index="10" dlg:left="10" dlg:top="78" dlg:width="177" dlg:height="12" dlg:help-text="&98.XhtmlOptionsCalc.OriginalImageSize.HelpText" dlg:value="&99.XhtmlOptionsCalc.OriginalImageSize.Label" dlg:checked="false"/>
|
||||
<dlg:text dlg:id="SpecialContentLabel" dlg:tab-index="11" dlg:left="5" dlg:top="92" dlg:width="184" dlg:height="12" dlg:help-text="&100.XhtmlOptionsCalc.SpecialContentLabel.HelpText" dlg:value="&101.XhtmlOptionsCalc.SpecialContentLabel.Label"/>
|
||||
<dlg:checkbox dlg:id="Notes" dlg:tab-index="12" dlg:left="10" dlg:top="106" dlg:width="179" dlg:height="12" dlg:help-text="&102.XhtmlOptionsCalc.Notes.HelpText" dlg:value="&103.XhtmlOptionsCalc.Notes.Label" dlg:checked="true"/>
|
||||
<dlg:checkbox dlg:id="UseDublinCore" dlg:tab-index="13" dlg:left="10" dlg:top="120" dlg:width="179" dlg:height="12" dlg:help-text="&104.XhtmlOptionsCalc.UseDublinCore.HelpText" dlg:value="&105.XhtmlOptionsCalc.UseDublinCore.Label" dlg:checked="true"/>
|
||||
<dlg:text dlg:id="SheetsLabel" dlg:tab-index="14" dlg:left="5" dlg:top="134" dlg:width="184" dlg:height="12" dlg:help-text="&106.XhtmlOptionsCalc.SheetsLabel.HelpText" dlg:value="&107.XhtmlOptionsCalc.SheetsLabel.Label"/>
|
||||
<dlg:checkbox dlg:id="DisplayHiddenSheets" dlg:tab-index="15" dlg:left="10" dlg:top="148" dlg:width="175" dlg:height="12" dlg:help-text="&108.XhtmlOptionsCalc.DisplayHiddenSheets.HelpText" dlg:value="&109.XhtmlOptionsCalc.DisplayHiddenSheets.Label" dlg:checked="false"/>
|
||||
<dlg:checkbox dlg:id="DisplayHiddenRowsCols" dlg:tab-index="16" dlg:left="10" dlg:top="162" dlg:width="175" dlg:height="12" dlg:help-text="&110.XhtmlOptionsCalc.DisplayHiddenRowsCols.HelpText" dlg:value="&111.XhtmlOptionsCalc.DisplayHiddenRowsCols.Label" dlg:checked="false"/>
|
||||
<dlg:checkbox dlg:id="DisplayFilteredRowsCols" dlg:tab-index="17" dlg:left="10" dlg:top="176" dlg:width="175" dlg:height="12" dlg:help-text="&112.XhtmlOptionsCalc.DisplayFilteredRowsCols.HelpText" dlg:value="&113.XhtmlOptionsCalc.DisplayFilteredRowsCols.Label" dlg:checked="false"/>
|
||||
<dlg:checkbox dlg:id="ApplyPrintRanges" dlg:tab-index="18" dlg:left="10" dlg:top="190" dlg:width="175" dlg:height="12" dlg:help-text="&114.XhtmlOptionsCalc.ApplyPrintRanges.HelpText" dlg:value="&115.XhtmlOptionsCalc.ApplyPrintRanges.Label" dlg:checked="false"/>
|
||||
<dlg:checkbox dlg:id="UseTitleAsHeading" dlg:tab-index="19" dlg:left="10" dlg:top="204" dlg:width="175" dlg:height="12" dlg:help-text="&116.XhtmlOptionsCalc.UseTitleAsHeading.HelpText" dlg:value="&117.XhtmlOptionsCalc.UseTitleAsHeading.Label" dlg:checked="false"/>
|
||||
<dlg:checkbox dlg:id="UseSheetNamesAsHeadings" dlg:tab-index="20" dlg:left="10" dlg:top="218" dlg:width="175" dlg:height="12" dlg:help-text="&118.XhtmlOptionsCalc.UseSheetNamesAsHeadings.HelpText" dlg:value="&119.XhtmlOptionsCalc.UseSheetNamesAsHeadings.Label" dlg:checked="false"/>
|
||||
<dlg:text dlg:id="FilesLabel" dlg:tab-index="21" dlg:left="5" dlg:top="232" dlg:width="175" dlg:height="12" dlg:help-text="&120.XhtmlOptionsCalc.FilesLabel.HelpText" dlg:value="&121.XhtmlOptionsCalc.FilesLabel.Label"/>
|
||||
<dlg:checkbox dlg:id="CalcSplit" dlg:tab-index="22" dlg:left="10" dlg:top="246" dlg:width="175" dlg:height="12" dlg:help-text="&122.XhtmlOptionsCalc.CalcSplit.HelpText" dlg:value="&123.XhtmlOptionsCalc.CalcSplit.Label" dlg:checked="false"/>
|
||||
<dlg:checkbox dlg:id="SaveImagesInSubdir" dlg:tab-index="23" dlg:left="10" dlg:top="260" dlg:width="175" dlg:height="12" dlg:help-text="&124.XhtmlOptionsCalc.SaveImagesInSubdir.HelpText" dlg:value="&125.XhtmlOptionsCalc.SaveImagesInSubdir.Label" dlg:checked="false"/>
|
||||
<dlg:button dlg:id="ExportButton" dlg:tab-index="24" dlg:left="5" dlg:top="286" dlg:width="55" dlg:height="12" dlg:help-text="&126.XhtmlOptionsCalc.ExportButton.HelpText" dlg:value="&127.XhtmlOptionsCalc.ExportButton.Label" dlg:button-type="ok"/>
|
||||
<dlg:button dlg:id="CancelButton" dlg:tab-index="25" dlg:left="70" dlg:top="286" dlg:width="55" dlg:height="12" dlg:help-text="&128.XhtmlOptionsCalc.CancelButton.HelpText" dlg:value="&129.XhtmlOptionsCalc.CancelButton.Label" dlg:button-type="cancel"/>
|
||||
</dlg:bulletinboard>
|
||||
</dlg:window>
|
6
source/oxt/writer2xhtml/W2XDialogs/dialog.xlb
Normal file
6
source/oxt/writer2xhtml/W2XDialogs/dialog.xlb
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
|
||||
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="W2XDialogs" library:readonly="false" library:passwordprotected="false">
|
||||
<library:element library:name="XhtmlOptions"/>
|
||||
<library:element library:name="XhtmlOptionsCalc"/>
|
||||
</library:library>
|
5
source/oxt/writer2xhtml/W2XDialogs/script.xlb
Normal file
5
source/oxt/writer2xhtml/W2XDialogs/script.xlb
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
|
||||
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="W2XDialogs" library:readonly="false" library:passwordprotected="false">
|
||||
<library:element library:name="Module1"/>
|
||||
</library:library>
|
1
source/oxt/writer2xhtml/desc_da.txt
Normal file
1
source/oxt/writer2xhtml/desc_da.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Writer2xhtml installerer eksportfiltre til XHTML og XHTML+MathML i Writer og Calc
|
1
source/oxt/writer2xhtml/desc_en.txt
Normal file
1
source/oxt/writer2xhtml/desc_en.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Writer2xhtml provides Writer and Calc export filters for XHTML and XHTML+MathML
|
1
source/oxt/writer2xhtml/desc_fr.txt
Normal file
1
source/oxt/writer2xhtml/desc_fr.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Writer2xhtml permet d'exporter les documents Writer et Calc vers XHTML et XHTML+MathML
|
1
source/oxt/writer2xhtml/desc_ru.txt
Normal file
1
source/oxt/writer2xhtml/desc_ru.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Writer2xhtml обеспечивает для Writer и Calc фильтрами экспорта в XHTML и XHTML+MathML
|
1
source/oxt/writer2xhtml/desc_uk.txt
Normal file
1
source/oxt/writer2xhtml/desc_uk.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Writer2xhtml забезпечує Writer та Calc фільтрами експорту до XHTML та XHTML+MathML
|
29
source/oxt/writer2xhtml/description.xml
Normal file
29
source/oxt/writer2xhtml/description.xml
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<description xmlns="http://openoffice.org/extensions/description/2006"
|
||||
xmlns:d="http://openoffice.org/extensions/description/2006">
|
||||
|
||||
<identifier value="org.openoffice.da.writer2xhtml.oxt" />
|
||||
|
||||
<version value="0.9.4" />
|
||||
|
||||
<dependencies>
|
||||
<OpenOffice.org-minimal-version value="2.2" d:name="OpenOffice.org 2.2"/>
|
||||
</dependencies>
|
||||
|
||||
<display-name>
|
||||
<name lang="da">Writer2xhtml eksportfiltre</name>
|
||||
<name lang="en">Writer2xhtml export filters</name>
|
||||
<name lang="fr">Filtres d'exportation Writer2xhtml</name>
|
||||
<name lang="ru">Фильтры экспорта Writer2xhtml</name>
|
||||
<name lang="uk">Фільтри експорту Writer2xhtml</name>
|
||||
</display-name>
|
||||
|
||||
<extension-description>
|
||||
<src xlink:href="description/desc_da.txt" lang="da" />
|
||||
<src xlink:href="description/desc_en.txt" lang="en" />
|
||||
<src xlink:href="description/desc_fr.txt" lang="fr" />
|
||||
<src xlink:href="description/desc_ru.txt" lang="ru" />
|
||||
<src xlink:href="description/desc_uk.txt" lang="uk" />
|
||||
</extension-description>
|
||||
|
||||
</description>
|
64
source/oxt/writer2xhtml/w2x_filters.xcu
Normal file
64
source/oxt/writer2xhtml/w2x_filters.xcu
Normal file
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<oor:component-data xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:package="org.openoffice.TypeDetection" oor:name="Filter">
|
||||
|
||||
<node oor:name="Filters">
|
||||
|
||||
<node oor:name="org.openoffice.da.writer2xhtml" oor:op="replace" oor:finalized="true" oor:mandatory="true">
|
||||
<prop oor:name="FileFormatVersion"><value>0</value></prop>
|
||||
<prop oor:name="Type"><value>writer_xhtml10_File</value></prop>
|
||||
<prop oor:name="DocumentService"><value>com.sun.star.text.TextDocument</value></prop>
|
||||
<prop oor:name="UIComponent"><value>org.openoffice.da.comp.writer2xhtml.XhtmlOptionsDialog</value></prop>
|
||||
<prop oor:name="UserData"><value>org.openoffice.da.comp.writer2xhtml.W2XExportFilter unused com.sun.star.comp.Writer.XMLOasisImporter com.sun.star.comp.Writer.XMLOasisExporter staroffice/sxw text/html</value></prop>
|
||||
<prop oor:name="FilterService"><value>com.sun.star.comp.Writer.XmlFilterAdaptor</value></prop>
|
||||
<prop oor:name="TemplateName"/>
|
||||
<prop oor:name="UIName">
|
||||
<value>XHTML 1.0 strict</value>
|
||||
</prop>
|
||||
<prop oor:name="Flags"><value>EXPORT ALIEN 3RDPARTYFILTER</value></prop>
|
||||
</node>
|
||||
|
||||
<node oor:name="org.openoffice.da.calc2xhtml" oor:op="replace" oor:finalized="true" oor:mandatory="true">
|
||||
<prop oor:name="FileFormatVersion"><value>0</value></prop>
|
||||
<prop oor:name="Type"><value>writer_xhtml10_File</value></prop>
|
||||
<prop oor:name="DocumentService"><value>com.sun.star.sheet.SpreadsheetDocument</value></prop>
|
||||
<prop oor:name="UIComponent"><value>org.openoffice.da.comp.writer2xhtml.XhtmlOptionsDialogCalc</value></prop>
|
||||
<prop oor:name="UserData"><value>org.openoffice.da.comp.writer2xhtml.W2XExportFilter unused com.sun.star.comp.Calc.XMLOasisImporter com.sun.star.comp.Calc.XMLOasisExporter staroffice/sxc text/html</value></prop>
|
||||
<prop oor:name="FilterService"><value>com.sun.star.comp.Writer.XmlFilterAdaptor</value></prop><!-- sic! -->
|
||||
<prop oor:name="TemplateName"/>
|
||||
<prop oor:name="UIName">
|
||||
<value>XHTML 1.0 strict</value>
|
||||
</prop>
|
||||
<prop oor:name="Flags"><value>EXPORT ALIEN 3RDPARTYFILTER</value></prop>
|
||||
</node>
|
||||
|
||||
<node oor:name="org.openoffice.da.writer2xhtml.mathml" oor:op="replace" oor:finalized="true" oor:mandatory="true">
|
||||
<prop oor:name="FileFormatVersion"><value>0</value></prop>
|
||||
<prop oor:name="Type"><value>writer_xhtml_mathml_File</value></prop>
|
||||
<prop oor:name="DocumentService"><value>com.sun.star.text.TextDocument</value></prop>
|
||||
<prop oor:name="UIComponent"><value>org.openoffice.da.comp.writer2xhtml.XhtmlOptionsDialog</value></prop>
|
||||
<prop oor:name="UserData"><value>org.openoffice.da.comp.writer2xhtml.W2XExportFilter unused com.sun.star.comp.Writer.XMLOasisImporter com.sun.star.comp.Writer.XMLOasisExporter staroffice/sxw application/xhtml+xml</value></prop>
|
||||
<prop oor:name="FilterService"><value>com.sun.star.comp.Writer.XmlFilterAdaptor</value></prop>
|
||||
<prop oor:name="TemplateName"/>
|
||||
<prop oor:name="UIName">
|
||||
<value>XHTML 1.1 + MathML 2.0</value>
|
||||
</prop>
|
||||
<prop oor:name="Flags"><value>EXPORT ALIEN 3RDPARTYFILTER</value></prop>
|
||||
</node>
|
||||
|
||||
<node oor:name="org.openoffice.da.writer2xhtml.mathml.xsl" oor:op="replace" oor:finalized="true" oor:mandatory="true">
|
||||
<prop oor:name="FileFormatVersion"><value>0</value></prop>
|
||||
<prop oor:name="Type"><value>writer_xhtml_mathml_xsl_File</value></prop>
|
||||
<prop oor:name="DocumentService"><value>com.sun.star.text.TextDocument</value></prop>
|
||||
<prop oor:name="UIComponent"><value>org.openoffice.da.comp.writer2xhtml.XhtmlOptionsDialogXsl</value></prop>
|
||||
<prop oor:name="UserData"><value>org.openoffice.da.comp.writer2xhtml.W2XExportFilter unused com.sun.star.comp.Writer.XMLOasisImporter com.sun.star.comp.Writer.XMLOasisExporter staroffice/sxw application/xml</value></prop>
|
||||
<prop oor:name="FilterService"><value>com.sun.star.comp.Writer.XmlFilterAdaptor</value></prop>
|
||||
<prop oor:name="TemplateName"/>
|
||||
<prop oor:name="UIName">
|
||||
<value>XHTML 1.1 + MathML 2.0 (xsl)</value>
|
||||
</prop>
|
||||
<prop oor:name="Flags"><value>EXPORT ALIEN 3RDPARTYFILTER</value></prop>
|
||||
</node>
|
||||
|
||||
</node>
|
||||
|
||||
</oor:component-data>
|
44
source/oxt/writer2xhtml/w2x_types.xcu
Normal file
44
source/oxt/writer2xhtml/w2x_types.xcu
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<oor:component-data xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:package="org.openoffice.TypeDetection" oor:name="Types">
|
||||
|
||||
<node oor:name="Types">
|
||||
|
||||
<node oor:name="writer_xhtml10_File" oor:op="replace" oor:finalized="true" oor:mandatory="true">
|
||||
<prop oor:name="DetectService"/>
|
||||
<prop oor:name="URLPattern"/>
|
||||
<prop oor:name="Extensions"><value>html</value></prop>
|
||||
<prop oor:name="MediaType"/>
|
||||
<prop oor:name="Preferred"><value>false</value></prop>
|
||||
<prop oor:name="UIName">
|
||||
<value>XHTML 1.0 strict</value>
|
||||
</prop>
|
||||
<prop oor:name="ClipboardFormat"/>
|
||||
</node>
|
||||
|
||||
<node oor:name="writer_xhtml_mathml_File" oor:op="replace" oor:finalized="true" oor:mandatory="true">
|
||||
<prop oor:name="DetectService"/>
|
||||
<prop oor:name="URLPattern"/>
|
||||
<prop oor:name="Extensions"><value>xhtml</value></prop>
|
||||
<prop oor:name="MediaType"/>
|
||||
<prop oor:name="Preferred"><value>false</value></prop>
|
||||
<prop oor:name="UIName">
|
||||
<value>XHTML 1.1 + MathML 2.0</value>
|
||||
</prop>
|
||||
<prop oor:name="ClipboardFormat"/>
|
||||
</node>
|
||||
|
||||
<node oor:name="writer_xhtml_mathml_xsl_File" oor:op="replace" oor:finalized="true" oor:mandatory="true">
|
||||
<prop oor:name="DetectService"/>
|
||||
<prop oor:name="URLPattern"/>
|
||||
<prop oor:name="Extensions"><value>xml</value></prop>
|
||||
<prop oor:name="MediaType"/>
|
||||
<prop oor:name="Preferred"><value>false</value></prop>
|
||||
<prop oor:name="UIName">
|
||||
<value>XHTML 1.1 + MathML 2.0 (xsl)</value>
|
||||
</prop>
|
||||
<prop oor:name="ClipboardFormat"/>
|
||||
</node>
|
||||
|
||||
</node>
|
||||
|
||||
</oor:component-data>
|
Loading…
Add table
Add a link
Reference in a new issue