├── LICENSE ├── README ├── classes ├── ezooconverter.php ├── ezoogenerator.php ├── ezooimport.php └── ezrestodfhandler.php ├── composer.json ├── design └── standard │ ├── images │ └── ooo_logo.gif │ └── templates │ ├── ezodf │ ├── browse_place.tpl │ ├── export.tpl │ ├── icon.tpl │ └── import.tpl │ └── node │ ├── oocontextmenu.tpl │ ├── oocontextsubmenu.tpl │ └── oosubitemscontextmenu.tpl ├── dist.sh ├── doc ├── OOo_documentation_benoit.odt ├── README.daemon ├── changelogs │ ├── 1.0 │ │ └── unstable │ │ │ ├── CHANGELOG-1.0.0alpha1-to-1.0.0beta1 │ │ │ ├── CHANGELOG-1.0.0beta1-to-1.0.0beta2 │ │ │ └── CHANGELOG-1.0.0beta2-to-1.0.0 │ ├── 2.0 │ │ ├── CHANGELOG-1.0.0-to-2.0.0 │ │ └── unstable │ │ │ ├── CHANGELOG-1.0.0-to-2.0.0beta1 │ │ │ ├── CHANGELOG-2.0.0beta1-to-2.0.0beta2 │ │ │ └── CHANGELOG-2.0.0beta2-to-2.0.0beta3 │ ├── 2.1 │ │ ├── CHANGELOG-2.0.0-to-2.1.0 │ │ └── unstable │ │ │ └── CHANGELOG-2.0.0beta3-to-2.1.0beta1 │ ├── 2.2 │ │ └── CHANGELOG-2.1.0-to-2.2.0 │ ├── 2.3 │ │ └── CHANGELOG-2.2.0-to-2.3.0 │ ├── 2.4 │ │ └── CHANGELOG-2.3.0-to-2.4.0 │ └── 2.5 │ │ └── CHANGELOG-2.4.0-to-2.5.0 ├── eZconversion.txt ├── eZconversion.zip ├── ezodf_extension_documentation.odt └── ezodf_extension_documentation.pdf ├── examples ├── article.odt └── general_document_example.odt ├── extension.xml ├── modules └── ezodf │ ├── authenticate.php │ ├── export.php │ ├── import.php │ ├── module.php │ ├── upload_export.php │ └── upload_import.php ├── ooPackage ├── eZExtension.uno.pkg └── sources │ ├── META-INF │ └── manifest.xml │ ├── addon.xcu │ ├── eZ.ini │ ├── eZextension │ ├── Module1.xba │ ├── Module2.xba │ ├── Module3.xba │ ├── Module4.xba │ ├── Module5.xba │ ├── Module6.xba │ ├── dialog.xlb │ └── script.xlb │ ├── getNode.py │ ├── open_16.bmp │ ├── open_26.bmp │ ├── readme.fr │ ├── readme.txt │ ├── receive.py │ ├── save_16.bmp │ ├── save_26.bmp │ ├── saveas_16.bmp │ ├── saveas_26.bmp │ └── send.py ├── scripts ├── converttooo.php └── daemon.php ├── settings ├── admininterface.ini.append.php ├── browse.ini.append.php ├── design.ini.append.php ├── ezrest.ini.append.php ├── module.ini.append.php ├── odf.ini.append.php ├── site.ini.append.php └── upload.ini.append.php ├── templates └── ezpublish.ott ├── translations ├── cat-ES │ └── translation.ts ├── chi-CN │ └── translation.ts ├── chi-TW │ └── translation.ts ├── cro-HR │ └── translation.ts ├── cze-CZ │ └── translation.ts ├── dan-DK │ └── translation.ts ├── dut-NL │ └── translation.ts ├── esl-ES │ └── translation.ts ├── fin-FI │ └── translation.ts ├── fre-FR │ └── translation.ts ├── ger-DE │ └── translation.ts ├── ita-IT │ └── translation.ts ├── jpn-JP │ └── translation.ts ├── nor-NO │ └── translation.ts ├── pol-PL │ └── translation.ts ├── por-BR │ └── translation.ts ├── ser-SR │ └── translation.ts ├── swe-SE │ └── translation.ts └── untranslated │ └── translation.ts └── uploadhandlers └── ezopenofficeuploadhandler.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/README -------------------------------------------------------------------------------- /classes/ezooconverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/classes/ezooconverter.php -------------------------------------------------------------------------------- /classes/ezoogenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/classes/ezoogenerator.php -------------------------------------------------------------------------------- /classes/ezooimport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/classes/ezooimport.php -------------------------------------------------------------------------------- /classes/ezrestodfhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/classes/ezrestodfhandler.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/composer.json -------------------------------------------------------------------------------- /design/standard/images/ooo_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/design/standard/images/ooo_logo.gif -------------------------------------------------------------------------------- /design/standard/templates/ezodf/browse_place.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/design/standard/templates/ezodf/browse_place.tpl -------------------------------------------------------------------------------- /design/standard/templates/ezodf/export.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/design/standard/templates/ezodf/export.tpl -------------------------------------------------------------------------------- /design/standard/templates/ezodf/icon.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/design/standard/templates/ezodf/icon.tpl -------------------------------------------------------------------------------- /design/standard/templates/ezodf/import.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/design/standard/templates/ezodf/import.tpl -------------------------------------------------------------------------------- /design/standard/templates/node/oocontextmenu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/design/standard/templates/node/oocontextmenu.tpl -------------------------------------------------------------------------------- /design/standard/templates/node/oocontextsubmenu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/design/standard/templates/node/oocontextsubmenu.tpl -------------------------------------------------------------------------------- /design/standard/templates/node/oosubitemscontextmenu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/design/standard/templates/node/oosubitemscontextmenu.tpl -------------------------------------------------------------------------------- /dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/dist.sh -------------------------------------------------------------------------------- /doc/OOo_documentation_benoit.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/OOo_documentation_benoit.odt -------------------------------------------------------------------------------- /doc/README.daemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/README.daemon -------------------------------------------------------------------------------- /doc/changelogs/1.0/unstable/CHANGELOG-1.0.0alpha1-to-1.0.0beta1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/1.0/unstable/CHANGELOG-1.0.0alpha1-to-1.0.0beta1 -------------------------------------------------------------------------------- /doc/changelogs/1.0/unstable/CHANGELOG-1.0.0beta1-to-1.0.0beta2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/1.0/unstable/CHANGELOG-1.0.0beta1-to-1.0.0beta2 -------------------------------------------------------------------------------- /doc/changelogs/1.0/unstable/CHANGELOG-1.0.0beta2-to-1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/1.0/unstable/CHANGELOG-1.0.0beta2-to-1.0.0 -------------------------------------------------------------------------------- /doc/changelogs/2.0/CHANGELOG-1.0.0-to-2.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/2.0/CHANGELOG-1.0.0-to-2.0.0 -------------------------------------------------------------------------------- /doc/changelogs/2.0/unstable/CHANGELOG-1.0.0-to-2.0.0beta1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/2.0/unstable/CHANGELOG-1.0.0-to-2.0.0beta1 -------------------------------------------------------------------------------- /doc/changelogs/2.0/unstable/CHANGELOG-2.0.0beta1-to-2.0.0beta2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/2.0/unstable/CHANGELOG-2.0.0beta1-to-2.0.0beta2 -------------------------------------------------------------------------------- /doc/changelogs/2.0/unstable/CHANGELOG-2.0.0beta2-to-2.0.0beta3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/2.0/unstable/CHANGELOG-2.0.0beta2-to-2.0.0beta3 -------------------------------------------------------------------------------- /doc/changelogs/2.1/CHANGELOG-2.0.0-to-2.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/2.1/CHANGELOG-2.0.0-to-2.1.0 -------------------------------------------------------------------------------- /doc/changelogs/2.1/unstable/CHANGELOG-2.0.0beta3-to-2.1.0beta1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/2.1/unstable/CHANGELOG-2.0.0beta3-to-2.1.0beta1 -------------------------------------------------------------------------------- /doc/changelogs/2.2/CHANGELOG-2.1.0-to-2.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/2.2/CHANGELOG-2.1.0-to-2.2.0 -------------------------------------------------------------------------------- /doc/changelogs/2.3/CHANGELOG-2.2.0-to-2.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/2.3/CHANGELOG-2.2.0-to-2.3.0 -------------------------------------------------------------------------------- /doc/changelogs/2.4/CHANGELOG-2.3.0-to-2.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/2.4/CHANGELOG-2.3.0-to-2.4.0 -------------------------------------------------------------------------------- /doc/changelogs/2.5/CHANGELOG-2.4.0-to-2.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/changelogs/2.5/CHANGELOG-2.4.0-to-2.5.0 -------------------------------------------------------------------------------- /doc/eZconversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/eZconversion.txt -------------------------------------------------------------------------------- /doc/eZconversion.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/eZconversion.zip -------------------------------------------------------------------------------- /doc/ezodf_extension_documentation.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/ezodf_extension_documentation.odt -------------------------------------------------------------------------------- /doc/ezodf_extension_documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/doc/ezodf_extension_documentation.pdf -------------------------------------------------------------------------------- /examples/article.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/examples/article.odt -------------------------------------------------------------------------------- /examples/general_document_example.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/examples/general_document_example.odt -------------------------------------------------------------------------------- /extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/extension.xml -------------------------------------------------------------------------------- /modules/ezodf/authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/modules/ezodf/authenticate.php -------------------------------------------------------------------------------- /modules/ezodf/export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/modules/ezodf/export.php -------------------------------------------------------------------------------- /modules/ezodf/import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/modules/ezodf/import.php -------------------------------------------------------------------------------- /modules/ezodf/module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/modules/ezodf/module.php -------------------------------------------------------------------------------- /modules/ezodf/upload_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/modules/ezodf/upload_export.php -------------------------------------------------------------------------------- /modules/ezodf/upload_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/modules/ezodf/upload_import.php -------------------------------------------------------------------------------- /ooPackage/eZExtension.uno.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/eZExtension.uno.pkg -------------------------------------------------------------------------------- /ooPackage/sources/META-INF/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/META-INF/manifest.xml -------------------------------------------------------------------------------- /ooPackage/sources/addon.xcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/addon.xcu -------------------------------------------------------------------------------- /ooPackage/sources/eZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/eZ.ini -------------------------------------------------------------------------------- /ooPackage/sources/eZextension/Module1.xba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/eZextension/Module1.xba -------------------------------------------------------------------------------- /ooPackage/sources/eZextension/Module2.xba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/eZextension/Module2.xba -------------------------------------------------------------------------------- /ooPackage/sources/eZextension/Module3.xba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/eZextension/Module3.xba -------------------------------------------------------------------------------- /ooPackage/sources/eZextension/Module4.xba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/eZextension/Module4.xba -------------------------------------------------------------------------------- /ooPackage/sources/eZextension/Module5.xba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/eZextension/Module5.xba -------------------------------------------------------------------------------- /ooPackage/sources/eZextension/Module6.xba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/eZextension/Module6.xba -------------------------------------------------------------------------------- /ooPackage/sources/eZextension/dialog.xlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/eZextension/dialog.xlb -------------------------------------------------------------------------------- /ooPackage/sources/eZextension/script.xlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/eZextension/script.xlb -------------------------------------------------------------------------------- /ooPackage/sources/getNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/getNode.py -------------------------------------------------------------------------------- /ooPackage/sources/open_16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/open_16.bmp -------------------------------------------------------------------------------- /ooPackage/sources/open_26.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/open_26.bmp -------------------------------------------------------------------------------- /ooPackage/sources/readme.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/readme.fr -------------------------------------------------------------------------------- /ooPackage/sources/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/readme.txt -------------------------------------------------------------------------------- /ooPackage/sources/receive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/receive.py -------------------------------------------------------------------------------- /ooPackage/sources/save_16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/save_16.bmp -------------------------------------------------------------------------------- /ooPackage/sources/save_26.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/save_26.bmp -------------------------------------------------------------------------------- /ooPackage/sources/saveas_16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/saveas_16.bmp -------------------------------------------------------------------------------- /ooPackage/sources/saveas_26.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/saveas_26.bmp -------------------------------------------------------------------------------- /ooPackage/sources/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/ooPackage/sources/send.py -------------------------------------------------------------------------------- /scripts/converttooo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/scripts/converttooo.php -------------------------------------------------------------------------------- /scripts/daemon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/scripts/daemon.php -------------------------------------------------------------------------------- /settings/admininterface.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/settings/admininterface.ini.append.php -------------------------------------------------------------------------------- /settings/browse.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/settings/browse.ini.append.php -------------------------------------------------------------------------------- /settings/design.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/settings/design.ini.append.php -------------------------------------------------------------------------------- /settings/ezrest.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/settings/ezrest.ini.append.php -------------------------------------------------------------------------------- /settings/module.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/settings/module.ini.append.php -------------------------------------------------------------------------------- /settings/odf.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/settings/odf.ini.append.php -------------------------------------------------------------------------------- /settings/site.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/settings/site.ini.append.php -------------------------------------------------------------------------------- /settings/upload.ini.append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/settings/upload.ini.append.php -------------------------------------------------------------------------------- /templates/ezpublish.ott: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/templates/ezpublish.ott -------------------------------------------------------------------------------- /translations/cat-ES/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/cat-ES/translation.ts -------------------------------------------------------------------------------- /translations/chi-CN/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/chi-CN/translation.ts -------------------------------------------------------------------------------- /translations/chi-TW/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/chi-TW/translation.ts -------------------------------------------------------------------------------- /translations/cro-HR/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/cro-HR/translation.ts -------------------------------------------------------------------------------- /translations/cze-CZ/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/cze-CZ/translation.ts -------------------------------------------------------------------------------- /translations/dan-DK/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/dan-DK/translation.ts -------------------------------------------------------------------------------- /translations/dut-NL/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/dut-NL/translation.ts -------------------------------------------------------------------------------- /translations/esl-ES/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/esl-ES/translation.ts -------------------------------------------------------------------------------- /translations/fin-FI/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/fin-FI/translation.ts -------------------------------------------------------------------------------- /translations/fre-FR/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/fre-FR/translation.ts -------------------------------------------------------------------------------- /translations/ger-DE/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/ger-DE/translation.ts -------------------------------------------------------------------------------- /translations/ita-IT/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/ita-IT/translation.ts -------------------------------------------------------------------------------- /translations/jpn-JP/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/jpn-JP/translation.ts -------------------------------------------------------------------------------- /translations/nor-NO/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/nor-NO/translation.ts -------------------------------------------------------------------------------- /translations/pol-PL/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/pol-PL/translation.ts -------------------------------------------------------------------------------- /translations/por-BR/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/por-BR/translation.ts -------------------------------------------------------------------------------- /translations/ser-SR/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/ser-SR/translation.ts -------------------------------------------------------------------------------- /translations/swe-SE/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/swe-SE/translation.ts -------------------------------------------------------------------------------- /translations/untranslated/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/translations/untranslated/translation.ts -------------------------------------------------------------------------------- /uploadhandlers/ezopenofficeuploadhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezsystems/ezodf/HEAD/uploadhandlers/ezopenofficeuploadhandler.php --------------------------------------------------------------------------------