diff --git a/src/main/java/org/openoffice/da/comp/writer2xhtml/ConfigurationDialog.java b/src/main/java/org/openoffice/da/comp/writer2xhtml/ConfigurationDialog.java
index 0a8e689..98f72da 100644
--- a/src/main/java/org/openoffice/da/comp/writer2xhtml/ConfigurationDialog.java
+++ b/src/main/java/org/openoffice/da/comp/writer2xhtml/ConfigurationDialog.java
@@ -69,7 +69,7 @@ public class ConfigurationDialog extends ConfigurationDialogBase implements XSer
// Configure the base class
@Override protected String getMIMEType() { return "text/html"; }
- @Override protected String getDialogLibraryName() { return "W2XDialogs2"; }
+ @Override protected String getDialogLibraryName() { return "W2PaginatedHTMLDialogs2"; }
@Override protected String getConfigFileName() { return "writer2xhtml.xml"; }
diff --git a/src/main/java/org/openoffice/da/comp/writer2xhtml/EpubMetadataDialog.java b/src/main/java/org/openoffice/da/comp/writer2xhtml/EpubMetadataDialog.java
index 2d59ab4..a672101 100644
--- a/src/main/java/org/openoffice/da/comp/writer2xhtml/EpubMetadataDialog.java
+++ b/src/main/java/org/openoffice/da/comp/writer2xhtml/EpubMetadataDialog.java
@@ -133,7 +133,7 @@ public class EpubMetadataDialog extends DialogBase {
// --------------------------------------------------
// Ensure that the super can find us :-)
@Override public String getDialogLibraryName() {
- return "W2XDialogs2";
+ return "W2PaginatedHTMLDialogs2";
}
@Override public String getDialogName() {
@@ -196,7 +196,7 @@ public class EpubMetadataDialog extends DialogBase {
}
private boolean authorAddclick() {
- SimpleDialog dialog = new SimpleDialog(xContext,"W2XDialogs2.AuthorDialog");
+ SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.AuthorDialog");
if (dialog.getDialog()!=null) {
dialog.getControls().setListBoxSelectedItem("Type", (short) 0);
dialog.getControls().setListBoxSelectedItem("Role", (short) 0);
@@ -216,7 +216,7 @@ public class EpubMetadataDialog extends DialogBase {
private boolean authorModifyclick() {
short nIndex = getListBoxSelectedItem("Authors");
AuthorInfo author = authors.get(nIndex);
- SimpleDialog dialog = new SimpleDialog(xContext,"W2XDialogs2.AuthorDialog");
+ SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.AuthorDialog");
if (dialog.getDialog()!=null) {
dialog.getControls().setTextFieldText("Author", author.sName);
dialog.getControls().setListBoxSelectedItem("Type", author.isCreator ? (short)0 : (short) 1);
@@ -234,7 +234,7 @@ public class EpubMetadataDialog extends DialogBase {
private boolean authorDeleteclick() {
if (authors.size()>0) {
- SimpleDialog dialog = new SimpleDialog(xContext,"W2XDialogs2.DeleteDialog");
+ SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.DeleteDialog");
if (dialog.getDialog()!=null) {
short nIndex = getListBoxSelectedItem("Authors");
String sLabel = dialog.getControls().getLabelText("DeleteLabel");
@@ -272,7 +272,7 @@ public class EpubMetadataDialog extends DialogBase {
}
private boolean dateAddClick() {
- SimpleDialog dialog = new SimpleDialog(xContext,"W2XDialogs2.DateDialog");
+ SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.DateDialog");
if (dialog.getDialog()!=null) {
dialog.getControls().setDateFieldValue("Date", datetime2int(xDocumentProperties.getModificationDate()));
if (dialog.getDialog().execute()==ExecutableDialogResults.OK) {
@@ -290,7 +290,7 @@ public class EpubMetadataDialog extends DialogBase {
private boolean dateModifyClick() {
short nIndex = getListBoxSelectedItem("Dates");
DateInfo date = dates.get(nIndex);
- SimpleDialog dialog = new SimpleDialog(xContext,"W2XDialogs2.DateDialog");
+ SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.DateDialog");
if (dialog.getDialog()!=null) {
dialog.getControls().setDateFieldValue("Date", date.nDate);
dialog.getControls().setTextFieldText("Event", date.sEvent);
@@ -306,7 +306,7 @@ public class EpubMetadataDialog extends DialogBase {
private boolean dateDeleteClick() {
if (dates.size()>0) {
- SimpleDialog dialog = new SimpleDialog(xContext,"W2XDialogs2.DeleteDialog");
+ SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.DeleteDialog");
if (dialog.getDialog()!=null) {
short nIndex = getListBoxSelectedItem("Dates");
String sLabel = dialog.getControls().getLabelText("DeleteLabel");
diff --git a/src/main/java/org/openoffice/da/comp/writer2xhtml/EpubOptionsDialog.java b/src/main/java/org/openoffice/da/comp/writer2xhtml/EpubOptionsDialog.java
index 5e2fac4..e71f7fa 100644
--- a/src/main/java/org/openoffice/da/comp/writer2xhtml/EpubOptionsDialog.java
+++ b/src/main/java/org/openoffice/da/comp/writer2xhtml/EpubOptionsDialog.java
@@ -51,7 +51,7 @@ public class EpubOptionsDialog extends OptionsDialogBase {
*/
public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.EpubOptionsDialog";
- @Override public String getDialogLibraryName() { return "W2XDialogs2"; }
+ @Override public String getDialogLibraryName() { return "W2PaginatedHTMLDialogs2"; }
/** Return the name of the dialog within the library
*/
diff --git a/src/main/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialog.java b/src/main/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialog.java
index bceb349..e06b5c0 100644
--- a/src/main/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialog.java
+++ b/src/main/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialog.java
@@ -45,7 +45,7 @@ public class XhtmlOptionsDialog extends OptionsDialogBase {
*/
public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.XhtmlOptionsDialog";
- public String getDialogLibraryName() { return "W2XDialogs"; }
+ public String getDialogLibraryName() { return "W2PaginatedHTMLDialogs"; }
/** Return the name of the dialog within the library
*/
diff --git a/src/main/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialogCalc.java b/src/main/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialogCalc.java
index d308944..2c71c93 100644
--- a/src/main/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialogCalc.java
+++ b/src/main/java/org/openoffice/da/comp/writer2xhtml/XhtmlOptionsDialogCalc.java
@@ -45,7 +45,7 @@ public class XhtmlOptionsDialogCalc extends OptionsDialogBase {
*/
public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.XhtmlOptionsDialogCalc";
- public String getDialogLibraryName() { return "W2XDialogs"; }
+ public String getDialogLibraryName() { return "W2PaginatedHTMLDialogs"; }
/** Return the name of the dialog within the library
*/
diff --git a/src/main/oxt/writer2xhtml/Addons.xcu b/src/main/oxt/writer2xhtml/Addons.xcu
index 038aa2c..410f2da 100644
--- a/src/main/oxt/writer2xhtml/Addons.xcu
+++ b/src/main/oxt/writer2xhtml/Addons.xcu
@@ -72,7 +72,7 @@
_self
- .uno:OptionsTreeDialog?OptionsPageURL:string=%origin%/W2XDialogs2/General.xdl
+ .uno:OptionsTreeDialog?OptionsPageURL:string=%origin%/W2PaginatedHTMLDialogs2/General.xdl
%origin%/icons/customh
@@ -82,4 +82,4 @@
-
\ No newline at end of file
+
diff --git a/src/main/oxt/writer2xhtml/AddonsAOO4.xcu b/src/main/oxt/writer2xhtml/AddonsAOO4.xcu
index 8b81418..9c9ffc1 100644
--- a/src/main/oxt/writer2xhtml/AddonsAOO4.xcu
+++ b/src/main/oxt/writer2xhtml/AddonsAOO4.xcu
@@ -74,7 +74,7 @@
_self
- .uno:OptionsTreeDialog?OptionsPageURL:string=%origin%/W2XDialogs2/General.xdl
+ .uno:OptionsTreeDialog?OptionsPageURL:string=%origin%/W2PaginatedHTMLDialogs2/General.xdl
%origin%/icons/customh
@@ -85,4 +85,4 @@
-
\ No newline at end of file
+
diff --git a/src/main/oxt/writer2xhtml/META-INF/manifest.xml b/src/main/oxt/writer2xhtml/META-INF/manifest.xml
index 9f566e2..19d6f84 100644
--- a/src/main/oxt/writer2xhtml/META-INF/manifest.xml
+++ b/src/main/oxt/writer2xhtml/META-INF/manifest.xml
@@ -58,11 +58,11 @@
manifest:media-type="application/vnd.sun.star.configuration-data"/>
Writer2xhtml
- %origin%/W2XDialogs2/ConfigurationRoot.xdl
+ %origin%/W2PaginatedHTMLDialogs2/ConfigurationRoot.xdl
@@ -60,7 +60,7 @@
General
- %origin%/W2XDialogs2/General.xdl
+ %origin%/W2PaginatedHTMLDialogs2/General.xdl
org.openoffice.da.writer2xhtml.ConfigurationDialog
@@ -82,7 +82,7 @@
Template
- %origin%/W2XDialogs2/Template.xdl
+ %origin%/W2PaginatedHTMLDialogs2/Template.xdl
org.openoffice.da.writer2xhtml.ConfigurationDialog
@@ -104,7 +104,7 @@
Style sheets
- %origin%/W2XDialogs2/Stylesheets.xdl
+ %origin%/W2PaginatedHTMLDialogs2/Stylesheets.xdl
org.openoffice.da.writer2xhtml.ConfigurationDialog
@@ -126,7 +126,7 @@
Master styles
- %origin%/W2XDialogs2/Styles1.xdl
+ %origin%/W2PaginatedHTMLDialogs2/Styles1.xdl
org.openoffice.da.writer2xhtml.ConfigurationDialog
@@ -148,7 +148,7 @@
Other styles
- %origin%/W2XDialogs2/Styles2.xdl
+ %origin%/W2PaginatedHTMLDialogs2/Styles2.xdl
org.openoffice.da.writer2xhtml.ConfigurationDialog
@@ -170,7 +170,7 @@
Formatting
- %origin%/W2XDialogs2/Formatting.xdl
+ %origin%/W2PaginatedHTMLDialogs2/Formatting.xdl
org.openoffice.da.writer2xhtml.ConfigurationDialog
@@ -192,7 +192,7 @@
Content
- %origin%/W2XDialogs2/Content.xdl
+ %origin%/W2PaginatedHTMLDialogs2/Content.xdl
org.openoffice.da.writer2xhtml.ConfigurationDialog
@@ -203,4 +203,4 @@
-
\ No newline at end of file
+
diff --git a/src/main/oxt/writer2xhtml/ToolbarOptionPages.xcu b/src/main/oxt/writer2xhtml/ToolbarOptionPages.xcu
index 7f478dd..0e0a158 100644
--- a/src/main/oxt/writer2xhtml/ToolbarOptionPages.xcu
+++ b/src/main/oxt/writer2xhtml/ToolbarOptionPages.xcu
@@ -28,7 +28,7 @@
Writer2xhtml toolbar
- %origin%/W2XDialogs2/ToolbarConfigurationRoot.xdl
+ %origin%/W2PaginatedHTMLDialogs2/ToolbarConfigurationRoot.xdl
@@ -45,7 +45,7 @@
Settings
- %origin%/W2XDialogs2/ToolbarSettings.xdl
+ %origin%/W2PaginatedHTMLDialogs2/ToolbarSettings.xdl
org.openoffice.da.writer2xhtml.ToolbarSettingsDialog
@@ -54,4 +54,4 @@
-
\ No newline at end of file
+
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_ca.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_ca.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_ca.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_ca.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_cs_CZ.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_cs_CZ.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_cs_CZ.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_cs_CZ.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_da_DK.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_da_DK.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_da_DK.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_da_DK.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_de_DE.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_de_DE.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_de_DE.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_de_DE.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_en_US.default b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_en_US.default
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_en_US.default
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_en_US.default
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_en_US.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_en_US.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_en_US.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_en_US.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_es_ES.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_es_ES.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_es_ES.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_es_ES.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_fa_IR.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_fa_IR.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_fa_IR.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_fa_IR.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_fi_FI.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_fi_FI.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_fi_FI.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_fi_FI.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_fr_FR.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_fr_FR.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_fr_FR.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_fr_FR.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_it_IT.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_it_IT.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_it_IT.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_it_IT.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_nl_NL.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_nl_NL.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_nl_NL.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_nl_NL.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_nn_NO.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_nn_NO.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_nn_NO.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_nn_NO.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_pl_PL.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_pl_PL.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_pl_PL.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_pl_PL.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_pt_BR.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_pt_BR.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_pt_BR.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_pt_BR.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_ru_RU.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_ru_RU.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_ru_RU.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_ru_RU.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_tr_TR.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_tr_TR.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_tr_TR.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_tr_TR.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_uk_UA.properties b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_uk_UA.properties
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/DialogStrings_uk_UA.properties
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/DialogStrings_uk_UA.properties
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/Module1.xba b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/Module1.xba
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/Module1.xba
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/Module1.xba
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/XhtmlOptions.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/XhtmlOptions.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/XhtmlOptions.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/XhtmlOptions.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/XhtmlOptionsCalc.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/XhtmlOptionsCalc.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs/XhtmlOptionsCalc.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/XhtmlOptionsCalc.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/dialog.xlb b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/dialog.xlb
similarity index 71%
rename from src/main/oxt/writer2xhtml/W2XDialogs/dialog.xlb
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/dialog.xlb
index 983cb49..216a814 100644
--- a/src/main/oxt/writer2xhtml/W2XDialogs/dialog.xlb
+++ b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/dialog.xlb
@@ -1,6 +1,6 @@
-
+
-
\ No newline at end of file
+
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs/script.xlb b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/script.xlb
similarity index 66%
rename from src/main/oxt/writer2xhtml/W2XDialogs/script.xlb
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/script.xlb
index e080e86..207d428 100644
--- a/src/main/oxt/writer2xhtml/W2XDialogs/script.xlb
+++ b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs/script.xlb
@@ -1,5 +1,5 @@
-
+
-
\ No newline at end of file
+
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/AuthorDialog.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/AuthorDialog.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/AuthorDialog.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/AuthorDialog.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/ConfigurationRoot.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/ConfigurationRoot.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/ConfigurationRoot.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/ConfigurationRoot.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/Content.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Content.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/Content.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Content.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/DateDialog.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/DateDialog.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/DateDialog.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/DateDialog.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/DeleteDialog.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/DeleteDialog.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/DeleteDialog.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/DeleteDialog.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/EpubMetadata.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/EpubMetadata.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/EpubMetadata.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/EpubMetadata.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/EpubOptions.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/EpubOptions.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/EpubOptions.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/EpubOptions.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/Formatting.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Formatting.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/Formatting.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Formatting.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/General.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/General.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/General.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/General.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/LoadDefaults.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/LoadDefaults.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/LoadDefaults.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/LoadDefaults.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/Module1.xba b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Module1.xba
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/Module1.xba
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Module1.xba
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/NewDialog.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/NewDialog.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/NewDialog.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/NewDialog.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/Styles1.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Styles1.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/Styles1.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Styles1.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/Styles2.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Styles2.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/Styles2.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Styles2.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/Stylesheets.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Stylesheets.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/Stylesheets.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Stylesheets.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/Template.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Template.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/Template.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/Template.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/ToolbarConfigurationRoot.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/ToolbarConfigurationRoot.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/ToolbarConfigurationRoot.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/ToolbarConfigurationRoot.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/ToolbarSettings.xdl b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/ToolbarSettings.xdl
similarity index 100%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/ToolbarSettings.xdl
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/ToolbarSettings.xdl
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/dialog.xlb b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/dialog.xlb
similarity index 89%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/dialog.xlb
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/dialog.xlb
index 98aeee4..359986f 100644
--- a/src/main/oxt/writer2xhtml/W2XDialogs2/dialog.xlb
+++ b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/dialog.xlb
@@ -1,6 +1,6 @@
-
+
@@ -18,4 +18,4 @@
-
\ No newline at end of file
+
diff --git a/src/main/oxt/writer2xhtml/W2XDialogs2/script.xlb b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/script.xlb
similarity index 66%
rename from src/main/oxt/writer2xhtml/W2XDialogs2/script.xlb
rename to src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/script.xlb
index 0c0ef79..e18f6c4 100644
--- a/src/main/oxt/writer2xhtml/W2XDialogs2/script.xlb
+++ b/src/main/oxt/writer2xhtml/W2PaginatedHTMLDialogs2/script.xlb
@@ -1,5 +1,5 @@
-
+
-
\ No newline at end of file
+