From 3a121c599732a399265a02efed9f8b60d8df7603 Mon Sep 17 00:00:00 2001
From: Michele Calgaro <michele.calgaro@yahoo.it>
Date: Fri, 6 Mar 2026 21:11:56 +0900
Subject: Remove old compatibility files no longer required with modern TDE

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
---
 configure.in.in                                    | 86 ----------------------
 kexi/data/Makefile.am                              |  7 --
 kexi/data/trinity4compat/Makefile.am               | 15 ----
 kexi/data/trinity4compat/msaccess.magic            |  5 --
 kexi/data/trinity4compat/sqlite.magic              |  2 -
 kexi/data/trinity4compat/x-sqlite2.desktop         | 53 -------------
 kexi/data/trinity4compat/x-sqlite3.desktop         | 53 -------------
 mimetypes/Makefile.am                              |  9 ---
 mimetypes/trinity3/Makefile.am                     | 16 ----
 .../trinity3/vnd.oasis.opendocument.chart.desktop  | 54 --------------
 .../vnd.oasis.opendocument.formula.desktop         | 56 --------------
 ...nd.oasis.opendocument.graphics-template.desktop | 56 --------------
 .../vnd.oasis.opendocument.graphics.desktop        | 55 --------------
 .../trinity3/vnd.oasis.opendocument.image.desktop  | 56 --------------
 ...asis.opendocument.presentation-template.desktop | 56 --------------
 .../vnd.oasis.opendocument.presentation.desktop    | 55 --------------
 ...oasis.opendocument.spreadsheet-template.desktop | 56 --------------
 .../vnd.oasis.opendocument.spreadsheet.desktop     | 56 --------------
 .../vnd.oasis.opendocument.text-template.desktop   | 56 --------------
 .../trinity3/vnd.oasis.opendocument.text.desktop   | 56 --------------
 mimetypes/trinity51/Makefile.am                    |  5 --
 mimetypes/trinity51/x-raw.desktop                  | 43 -----------
 22 files changed, 906 deletions(-)
 delete mode 100644 kexi/data/trinity4compat/Makefile.am
 delete mode 100644 kexi/data/trinity4compat/msaccess.magic
 delete mode 100644 kexi/data/trinity4compat/sqlite.magic
 delete mode 100644 kexi/data/trinity4compat/x-sqlite2.desktop
 delete mode 100644 kexi/data/trinity4compat/x-sqlite3.desktop
 delete mode 100644 mimetypes/Makefile.am
 delete mode 100644 mimetypes/trinity3/Makefile.am
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.chart.desktop
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.formula.desktop
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.graphics-template.desktop
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.graphics.desktop
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.image.desktop
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.presentation-template.desktop
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.presentation.desktop
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.spreadsheet-template.desktop
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.spreadsheet.desktop
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.text-template.desktop
 delete mode 100644 mimetypes/trinity3/vnd.oasis.opendocument.text.desktop
 delete mode 100644 mimetypes/trinity51/Makefile.am
 delete mode 100644 mimetypes/trinity51/x-raw.desktop

diff --git a/configure.in.in b/configure.in.in
index 3f2a9fb5..0d6ce353 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -167,92 +167,6 @@ AC_DEFUN([KOFFICE_PKG_CHECK_MODULES], [
   fi
 ])
 
-# --- Check for KDE 3.2 or 3.3 ---
-
-AC_MSG_CHECKING([for KDE version])
-
-AC_LANG_SAVE
-AC_LANG_CPLUSPLUS
-tdeversion_save_CXXFLAGS="$CXXFLAGS"
-tdeversion_safe_LIBS="$LIBS"
-LIBS="$LIBS $X_EXTRA_LIBS"
-CXXFLAGS="$CXXFLAGS $all_includes"
-
-AC_COMPILE_IFELSE([
-#include <tdeversion.h>
-#if ! ( KDE_IS_VERSION( 3, 2, 90 ) )
-#error KDE 3.2
-#endif
-],
-	need_trinity2_compat="no"
-,
-	need_trinity2_compat="yes"
-)
-
-AC_COMPILE_IFELSE([
-#include <tdeversion.h>
-#if ! ( KDE_IS_VERSION( 3, 3, 90 ) )
-#error KDE 3.3
-#endif
-],
-	need_trinity3_compat="no"
-,
-	need_trinity3_compat="yes"
-)
-
-AC_COMPILE_IFELSE([
-#include <tdeversion.h>
-#if ! ( KDE_IS_VERSION( 3, 4, 90 ) )
-#error KDE 3.4
-#endif
-],
-	need_trinity4_compat="no"
-,
-	need_trinity4_compat="yes"
-)
-
-AC_COMPILE_IFELSE([
-#include <tdeversion.h>
-#if ! ( KDE_IS_VERSION( 3, 5, 2 ) )
-#error KDE 3.5.x (x < 2)
-#endif
-],
-	need_trinity51_compat="no"
-,
-	need_trinity51_compat="yes"
-)
-CXXFLAGS="$tdeversion_save_CXXFLAGS"
-LIBS="$tdeversion_safe_LIBS"
-AC_LANG_RESTORE
-
-if test "$need_trinity2_compat" = "yes"; then
-	AC_MSG_RESULT([KDE 3.2.x])
-else
-	if test "$need_trinity3_compat" = "yes"; then
-		AC_MSG_RESULT([KDE 3.3.x])
-	else 
-		if test "$need_trinity4_compat" = "yes"; then
-			AC_MSG_RESULT([KDE 3.4.x])
-                else
-                        if test "$need_trinity51_compat" = "yes"; then
-                                AC_MSG_RESULT([KDE 3.5.x (x < 2)])
-                        else
-			        AC_MSG_RESULT([KDE 3.5.x (x >=2) or SVN trunk])
-                        fi
-		fi
-	fi
-fi
-
-AM_CONDITIONAL(need_trinity2_compatibility, test "$need_trinity2_compat" = "yes")
-AM_CONDITIONAL(need_trinity3_compatibility, test "$need_trinity3_compat" = "yes")
-AM_CONDITIONAL(need_trinity4_compatibility, test "$need_trinity4_compat" = "yes")
-AM_CONDITIONAL(need_trinity51_compatibility, test "$need_trinity51_compat" = "yes")
-
-# Keep the old KDE 3.1 test, as long as it is still used
-AM_CONDITIONAL(need_trinity1_compatibility, test "supported" = "no")
-
-# --- End KDE 3.2 check ---
-
 # --- OpenEXR check ---
 
 KDE_FIND_PATH(pkg-config, PKGCONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/bin /usr/local/bin /opt/local/bin], [
diff --git a/kexi/data/Makefile.am b/kexi/data/Makefile.am
index d6eb6dde..0fadb01d 100644
--- a/kexi/data/Makefile.am
+++ b/kexi/data/Makefile.am
@@ -44,13 +44,6 @@ x-kexiproject-shortcut.desktop
 
 #TODO: add x-kexi-shortcut-table etc.
 
-#kde <=3.4
-if need_trinity4_compatibility
-  KDE34COMPAT = trinity4compat
-endif
-
-SUBDIRS = $(KDE34COMPAT)
-
 SUFFIXES = .magic .magic.mgc
 
 .magic.magic.mgc:
diff --git a/kexi/data/trinity4compat/Makefile.am b/kexi/data/trinity4compat/Makefile.am
deleted file mode 100644
index 5a98c376..00000000
--- a/kexi/data/trinity4compat/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-application_DATA = \
- x-sqlite2.desktop \
- x-sqlite3.desktop
-
-applicationdir = $(kde_mimedir)/application
-
-magic_DATA = sqlite.magic sqlite.magic.mgc msaccess.magic msaccess.magic.mgc
-magicdir = $(kde_confdir)/magic
-
-EXTRA_DIST = $(application_DATA)
-
-SUFFIXES = .magic .magic.mgc
-
-.magic.magic.mgc:
-	(cd `dirname $@` && file -C -m $<)
diff --git a/kexi/data/trinity4compat/msaccess.magic b/kexi/data/trinity4compat/msaccess.magic
deleted file mode 100644
index 9b318b14..00000000
--- a/kexi/data/trinity4compat/msaccess.magic
+++ /dev/null
@@ -1,5 +0,0 @@
-# Following magic data is provided here because KDE < 3.5 lacks it:
-
-# MS Access database (95 or newer, i.e. MS Jet 3.0 or newer)
-4	  string	Standard\ Jet\ DB	application/x-msaccess
-
diff --git a/kexi/data/trinity4compat/sqlite.magic b/kexi/data/trinity4compat/sqlite.magic
deleted file mode 100644
index a31592fb..00000000
--- a/kexi/data/trinity4compat/sqlite.magic
+++ /dev/null
@@ -1,2 +0,0 @@
-0	string		**\ This\ file\ contains\ an\ SQLite	application/x-sqlite2
-0	string		SQLite\ format\ 3	application/x-sqlite3
diff --git a/kexi/data/trinity4compat/x-sqlite2.desktop b/kexi/data/trinity4compat/x-sqlite2.desktop
deleted file mode 100644
index 8bdf1f8b..00000000
--- a/kexi/data/trinity4compat/x-sqlite2.desktop
+++ /dev/null
@@ -1,53 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/x-sqlite2
-Icon=application-x-zerosize
-Patterns=
-Comment=SQLite2 Database File
-Comment[bg]=Файл на SQLite2
-Comment[br]=Restr stlennvon SQLite2
-Comment[ca]=Fitxer de base de dades de SQLite2
-Comment[cy]=Ffeil Gronfa DdataSQLite2
-Comment[da]=SQLite2 databasefil
-Comment[de]=SQLite2-Datenbankdatei
-Comment[el]=Αρχείο βάσης δεδομένων SQLite2
-Comment[eo]=SQLite2-datumbazdosiero
-Comment[es]=Archivo de base de datos SQLite2
-Comment[et]=SQLite2 andmebaasi fail
-Comment[eu]=SQLite2 Datu-basearen fitxategia
-Comment[fa]=پروندۀ دادگان SQLite2
-Comment[fi]=SQLite2 tietokantatiedosto
-Comment[fr]=Fichier de base de données SQLite2
-Comment[fy]=SQLite2 Databanktriem
-Comment[ga]=Comhad Bunachair Shonraí SQLite2
-Comment[gl]=Ficheiro de Base de Datos de SQLite2
-Comment[he]=קובץ מסד נתונים של SQLite2
-Comment[hr]=SQLite2 datoteka baze podataka
-Comment[hu]=SQLite2-adatbázisfájl
-Comment[is]=SQLite2 gagnagrunnsskrá
-Comment[it]=File di banca dati SQLite2
-Comment[ja]=SQLite2 データベースファイル
-Comment[km]=ឯកសារ​មូលដ្ឋាន​ទិន្នន័យ​ SQLite2
-Comment[lt]=SQLite2 duomenų bazės byla
-Comment[lv]=SQLite2 datu bāzes fails
-Comment[ms]=Fail Pangkalan Data SQLite2
-Comment[nb]=SQLite2-databasefil
-Comment[nds]=SQLite2-Datenbankdatei
-Comment[ne]=SQLite2 डाटाबेस फाइल
-Comment[nl]=SQLite2 databasebestand
-Comment[nn]=SQLite2-databasefil
-Comment[pl]=Plik bazy danych SQLite2
-Comment[pt]=Ficheiro de Base de Dados do SQLite2
-Comment[pt_BR]=Arquivo de Banco de Dados do SQLite2
-Comment[ru]=База данных SQLite2
-Comment[se]=SQLite2-diehtovuođđofiila
-Comment[sk]=Databázový súbor SQLite2
-Comment[sl]=Datoteka zbirke podatkov SQLite2
-Comment[sr]=Фајл базе података SQLite2
-Comment[sr@Latn]=Fajl baze podataka SQLite2
-Comment[sv]=SQLite2-databasfil
-Comment[uk]=Файл бази даних SQLite2
-Comment[uz]=SQLite2 maʼlumot baza fayli
-Comment[uz@cyrillic]=SQLite2 маълумот база файли
-Comment[zh_CN]=SQLite2 数据库文件
-Comment[zh_TW]=SQLite2 資料庫檔案
diff --git a/kexi/data/trinity4compat/x-sqlite3.desktop b/kexi/data/trinity4compat/x-sqlite3.desktop
deleted file mode 100644
index 3704e186..00000000
--- a/kexi/data/trinity4compat/x-sqlite3.desktop
+++ /dev/null
@@ -1,53 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/x-sqlite3
-Icon=application-x-zerosize
-Patterns=
-Comment=SQLite3 Database File
-Comment[bg]=Файл на SQLite3
-Comment[br]=Restr stlennvon SQLite3
-Comment[ca]=Fitxer de base de dades de SQLite3
-Comment[cy]=Ffeil Gronfa DdataSQLite3
-Comment[da]=SQLite3 databasefil
-Comment[de]=SQLite3-Datenbankdatei
-Comment[el]=Αρχείο βάσης δεδομένων SQLite3
-Comment[eo]=SQLite3-datumbazdosiero
-Comment[es]=Archivo de base de datos SQLite3
-Comment[et]=SQLite3 andmebaasi fail
-Comment[eu]=SQLite3 Datu-basearen fitxategia
-Comment[fa]=پروندۀ دادگان SQLite3
-Comment[fi]=SQLite3-tietokantatiedosto
-Comment[fr]=Fichier de base de données SQLite3
-Comment[fy]=SQLite3 Databanktriem
-Comment[ga]=Comhad Bunachair Shonraí SQLite3
-Comment[gl]=Ficheiro de Base de Datos de SQLite3
-Comment[he]=קובץ מסד נתונים של SQLite3
-Comment[hr]=SQLite3 datoteka baze podataka
-Comment[hu]=SQLite3-adatbázisfájl
-Comment[is]=SQLite3 gagnagrunnsskrá
-Comment[it]=File di banca dati SQLite3
-Comment[ja]=SQLite3 データベースファイル
-Comment[km]=ឯកសារ​មូលដ្ឋាន​ទិន្នន័យ SQLite3
-Comment[lt]=SQLite3 duomenų bazės byla
-Comment[lv]=SQLite3 datu bāzes fails
-Comment[ms]=Fail Pangkalan Data SQLite3
-Comment[nb]=SQLite3-databasefil
-Comment[nds]=SQLite3-Datenbankdatei
-Comment[ne]=SQLite3 डाटाबेस फाइल
-Comment[nl]=SQLite3 databasebestand
-Comment[nn]=SQLite3-databasefil
-Comment[pl]=Plik bazy danych SQLite3
-Comment[pt]=Ficheiro de Base de Dados do SQLite3
-Comment[pt_BR]=Arquivo de Banco de Dados do SQLite3
-Comment[ru]=База данных SQLite3
-Comment[se]=SQLite3-diehtovuođđofiila
-Comment[sk]=Databázový súbor SQLite3
-Comment[sl]=Datoteka zbirke podatkov SQLite3
-Comment[sr]=Фајл базе података SQLite3
-Comment[sr@Latn]=Fajl baze podataka SQLite3
-Comment[sv]=SQLite3-databasfil
-Comment[uk]=Файл бази даних SQLite3
-Comment[uz]=SQLite3 maʼlumot baza fayli
-Comment[uz@cyrillic]=SQLite3 маълумот база файли
-Comment[zh_CN]=SQLite3 数据库文件
-Comment[zh_TW]=SQLite3 資料庫檔案
diff --git a/mimetypes/Makefile.am b/mimetypes/Makefile.am
deleted file mode 100644
index 943ef043..00000000
--- a/mimetypes/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-if need_trinity3_compatibility
-  KDE33MIMEDIR = trinity3
-endif
-
-if need_trinity51_compatibility
-  KDE351MIMEDIR = trinity51
-endif
-
-SUBDIRS = $(KDE33MIMEDIR) $(KDE351MIMEDIR)
diff --git a/mimetypes/trinity3/Makefile.am b/mimetypes/trinity3/Makefile.am
deleted file mode 100644
index 5ba4b102..00000000
--- a/mimetypes/trinity3/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-application_DATA = \
- vnd.oasis.opendocument.graphics-template.desktop \
- vnd.oasis.opendocument.graphics.desktop \
- vnd.oasis.opendocument.formula.desktop \
- vnd.oasis.opendocument.presentation-template.desktop \
- vnd.oasis.opendocument.presentation.desktop \
- vnd.oasis.opendocument.spreadsheet-template.desktop \
- vnd.oasis.opendocument.spreadsheet.desktop \
- vnd.oasis.opendocument.text-template.desktop \
- vnd.oasis.opendocument.text.desktop \
- vnd.oasis.opendocument.image.desktop \
- vnd.oasis.opendocument.chart.desktop
-
-applicationdir = $(kde_mimedir)/application
-
-EXTRA_DIST = $(application_DATA)
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.chart.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.chart.desktop
deleted file mode 100644
index 43b203b0..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.chart.desktop
+++ /dev/null
@@ -1,54 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.chart
-Patterns=*.odc;*.ODC
-Icon=application-x-kchart
-Comment=OASIS OpenDocument Chart
-Comment[bg]=Диаграма на OASIS OpenDocument
-Comment[br]=Treser grafoù OpenDocument OASIS
-Comment[ca]=Diagrama en format OASIS OpenDocument
-Comment[cy]=Siart OASIS OpenDocument
-Comment[da]=OASIS OpenDocument diagram
-Comment[de]=OASIS OpenDocument-Diagramm
-Comment[el]=Διάγραμμα του OASIS OpenDocument
-Comment[es]=Gráfica de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument diagramm
-Comment[eu]=OASIS OpenDocument grafika
-Comment[fa]=نمودار OASIS OpenDocument
-Comment[fr]=Diagramme OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint-grafyk
-Comment[ga]=Cairt OpenDocument OASIS
-Comment[gl]=Gráfico OASIS OpenDocument
-Comment[he]=תרשים של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट चार्ट
-Comment[hu]=OASIS OpenDocument grafikon
-Comment[is]=OASIS OpenDocument graf
-Comment[it]=Grafico OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument チャート
-Comment[km]=គំនូសតាង OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument grafikas
-Comment[lv]=OASIS OpenDocument diagramma
-Comment[ms]=Carta Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-diagram
-Comment[nds]=OpenDocument-Diagramm för OASIS
-Comment[ne]=OASIS खुला कागजात चित्रपट
-Comment[nl]=OASIS OpenDocument-grafiek
-Comment[nn]=OASIS OpenDocument-diagram
-Comment[pl]=Wykres w formacie OASIS OpenDocument
-Comment[pt]=Gráfico OASIS OpenDocument
-Comment[pt_BR]=Gráfico OpenDocument OASIS
-Comment[ru]=Диаграмма OASIS OpenDocument
-Comment[se]=OASIS OpenDocument-diagrámma
-Comment[sk]=Graf OASIS OpenDocument
-Comment[sl]=Graf OASIS OpenDocument
-Comment[sr]=OASIS-ов OpenDocument дијаграм
-Comment[sr@Latn]=OASIS-ov OpenDocument dijagram
-Comment[sv]=OASIS OpenDocument diagram
-Comment[uk]=Діаграма OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument diagrammasi
-Comment[uz@cyrillic]=OASIS OpenDocument диаграммаси
-Comment[zh_CN]=OASIS OpenDocument 图表
-Comment[zh_TW]=OASIS 開放文件圖表
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.odc
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.formula.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.formula.desktop
deleted file mode 100644
index 07875df3..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.formula.desktop
+++ /dev/null
@@ -1,56 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.formula
-Patterns=*.odf;*.ODF
-Icon=formula
-Comment=OASIS OpenDocument Formula
-Comment[bg]=Формула на OASIS OpenDocument
-Comment[br]=Formulenn OpenDocument OASIS
-Comment[ca]=Fòrmula OASIS OpenDocument
-Comment[cy]=Fformiwla OASIS OpenDocument
-Comment[da]=OASIS OpenDocument formel
-Comment[de]=OASIS OpenDocument-Formel
-Comment[el]=Μαθηματικός τύπος του OASIS OpenDocument
-Comment[es]=Fórmula de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument valem
-Comment[eu]=OASIS OpenDocument formula
-Comment[fa]=فرمول OASIS OpenDocument
-Comment[fi]=OASIS OpenDocument -kaava
-Comment[fr]=Formule OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint-formule
-Comment[ga]=Foirmle OpenDocument OASIS
-Comment[gl]=Fórmula OASIS OpenDocument
-Comment[he]=נוסחה של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट फ़ॉर्मूला
-Comment[hr]=OASIS OpenDocument formula
-Comment[hu]=OASIS OpenDocument képlet
-Comment[is]=OASIS OpenDocument formúla
-Comment[it]=Formula OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument 数式
-Comment[km]=រូបមន្ត OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument formulė
-Comment[lv]=OASIS OpenDocument formula
-Comment[ms]=Formula Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-formel
-Comment[nds]=OpenDocument-Formel för OASIS
-Comment[ne]=OASIS खुला कागजात सूत्र
-Comment[nl]=OASIS OpenDocument-formule
-Comment[nn]=OASIS OpenDocument-formel
-Comment[pl]=Wyrażenie matematyczne w formacie OASIS OpenDocument
-Comment[pt]=Formula OASIS OpenDocument
-Comment[pt_BR]=Fórmula OpenDocument OASIS
-Comment[ru]=Формула OASIS OpenDocument
-Comment[se]=OASIS OpenDocument-hápmu
-Comment[sk]=Rovnica OASIS OpenDocument
-Comment[sl]=Formula OASIS OpenDocument
-Comment[sr]=OASIS-ова OpenDocument формула
-Comment[sr@Latn]=OASIS-ova OpenDocument formula
-Comment[sv]=OASIS OpenDocument formel
-Comment[uk]=Формула OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument formula
-Comment[uz@cyrillic]=OASIS OpenDocument формула
-Comment[zh_CN]=OASIS OpenDocument 公式
-Comment[zh_TW]=OASIS 開放文件公式
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.odf
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.graphics-template.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.graphics-template.desktop
deleted file mode 100644
index 035a004e..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.graphics-template.desktop
+++ /dev/null
@@ -1,56 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.graphics-template
-Patterns=*.otg;*.OTG
-Icon=application-vnd.oasis.opendocument.graphics
-Comment=OASIS OpenDocument Graphics Template
-Comment[bg]=Шаблон за графика на OASIS OpenDocument
-Comment[br]=Patrom skeudenn OpenOffice.org OASIS
-Comment[ca]=Plantilla de gràfics OASIS OpenDocument
-Comment[cy]=Patrymlun Graffeg OASIS OpenDocument
-Comment[da]=OASIS OpenDocument grafikskabelon
-Comment[de]=Vorlage für OASIS OpenDocument-Graphik
-Comment[el]=Πρότυπο γραφικών του OASIS OpenDocument
-Comment[es]=Plantilla de gráficos de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument graafikamall
-Comment[eu]=OASIS OpenDocument-en grafikoen txantiloia
-Comment[fa]=قالب نگاره‌سازی OASIS OpenDocument
-Comment[fi]=OASIS OpenDocument -grafiikkapohja
-Comment[fr]=Modèle de graphiques OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint-illustraasjesjabloan
-Comment[ga]=Teimpléad Grafaice OpenDocument OASIS
-Comment[gl]=Modelo de Debuxo OASIS OpenDocument
-Comment[he]=תבנית גרפיקה של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट ग्राफ़िक्स टैम्प्लेट
-Comment[hr]=OASIS OpenDocument predložak grafika
-Comment[hu]=OASIS OpenDocument grafikai sablon
-Comment[is]=OASIS OpenDocument grafíksnið
-Comment[it]=Modello di grafica OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument 図形描画テンプレート
-Comment[km]=ពុម្ពក្រាហ្វិក OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument grafikos šablonas
-Comment[lv]=OASIS OpenDocument grafikas sagatave
-Comment[ms]=Templat Grafik Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-tegningsmal
-Comment[nds]=OpenDocument-Grafikvörlaag för OASIS
-Comment[ne]=OASIS खुला कागजात ग्राफिक्स टेम्प्लेट
-Comment[nl]=OASIS OpenDocument illustratiesjabloon
-Comment[nn]=OASIS OpenDocument-teikningsmal
-Comment[pl]=Szablon graficzny w formacie OASIS OpenDocument
-Comment[pt]=Modelo de Desenho OASIS OpenDocument
-Comment[pt_BR]=Modelo de Gráfico OpenDocument OASIS
-Comment[ru]=Шаблон рисунка OASIS OpenDocument Graphics
-Comment[se]=OASIS OpenDocument-grafihkkamálle
-Comment[sk]=Grafická šablóna OASIS OpenDocument
-Comment[sl]=Predloga grafike OASIS OpenDocument
-Comment[sr]=OASIS-ов OpenDocument графички шаблон
-Comment[sr@Latn]=OASIS-ov OpenDocument grafički šablon
-Comment[sv]=OASIS OpenDocument grafikmall
-Comment[uk]=Шаблон графічного зображення OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument grafika namunasi
-Comment[uz@cyrillic]=OASIS OpenDocument графика намунаси
-Comment[zh_CN]=OASIS OpenDocument 绘图模板
-Comment[zh_TW]=OASIS 開放文件圖片範本
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.otg
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.graphics.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.graphics.desktop
deleted file mode 100644
index 2da95fc4..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.graphics.desktop
+++ /dev/null
@@ -1,55 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.graphics
-Patterns=*.odg;*.ODG
-Icon=application-vnd.oasis.opendocument.graphics
-Comment=OASIS OpenDocument Graphics
-Comment[bg]=Графика на OASIS OpenDocument
-Comment[br]=Skeudenn OpenOffice.org OASIS
-Comment[ca]=Gràfics OASIS OpenDocument
-Comment[cy]=Graffeg OASIS OpenDocument
-Comment[da]=OASIS OpenDocument grafik
-Comment[de]=OASIS OpenDocument-Graphik
-Comment[el]=Γραφικά του OASIS OpenDocument
-Comment[es]=Gráficos de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument graafika
-Comment[eu]=OASIS OpenDocument-en grafikoak
-Comment[fa]=نگاره سازی OASIS OpenDocument
-Comment[fr]=Graphiques OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint-illustraasjes
-Comment[ga]=Grafaic OpenDocument OASIS
-Comment[gl]=Debuxo OASIS OpenDocument
-Comment[he]=גרפיקה של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट ग्राफ़िक्स
-Comment[hr]=OASIS OpenDocument grafike
-Comment[hu]=OASIS OpenDocument grafika
-Comment[is]=OASIS OpenDocument grafík
-Comment[it]=Grafica OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument 図形描画
-Comment[km]=ក្រាហ្វិក OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument grafika
-Comment[lv]=OASIS OpenDocument grafika
-Comment[ms]=Grafik Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-tegning
-Comment[nds]=OpenDocument-Grafik för OASIS
-Comment[ne]=OASIS खुला कागजात ग्राफिक्स
-Comment[nl]=OASIS OpenDocument-illustraties
-Comment[nn]=OASIS OpenDocument-teikning
-Comment[pl]=Grafika w formacie OASIS OpenDocument
-Comment[pt]=Desenho OASIS OpenDocument
-Comment[pt_BR]=Gráfico OpenDocument OASIS
-Comment[ru]=Рисунок OASIS OpenDocument
-Comment[se]=OASIS OpenDocument-sárgun
-Comment[sk]=Grafika OASIS OpenDocument
-Comment[sl]=Grafika OASIS OpenDocument
-Comment[sr]=OASIS-ова OpenDocument графика
-Comment[sr@Latn]=OASIS-ova OpenDocument grafika
-Comment[sv]=OASIS OpenDocument grafik
-Comment[uk]=Графіка OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument grafika
-Comment[uz@cyrillic]=OASIS OpenDocument графика
-Comment[zh_CN]=OASIS OpenDocument 绘图
-Comment[zh_TW]=OASIS 開放文件圖片
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.odg
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.image.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.image.desktop
deleted file mode 100644
index b5313ef9..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.image.desktop
+++ /dev/null
@@ -1,56 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.image
-Patterns=*.odi;*.ODI
-Icon=chalk_kra
-Comment=OASIS OpenDocument Image
-Comment[bg]=Изображение на OASIS OpenDocument
-Comment[br]=Skeudenn OpenDocument OASIS
-Comment[ca]=Imatge OASIS OpenDocument
-Comment[cy]=Delwedd OASIS OpenDocument
-Comment[da]=OASIS OpenDocument billede
-Comment[de]=OASIS OpenDocument-Bild
-Comment[el]=Εικόνα του OASIS OpenDocument
-Comment[es]=Imagen de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument pilt
-Comment[eu]=OASIS OpenDocument irudia
-Comment[fa]=تصویر OASIS OpenDocument
-Comment[fi]=OASIS OpenDocument- kuva
-Comment[fr]=Image OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint-ôfbylding
-Comment[ga]=Íomhá OpenDocument OASIS
-Comment[gl]=Imaxe OASIS OpenDocument
-Comment[he]=תמונה של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट छवि
-Comment[hr]=OASIS OpenDocument slika
-Comment[hu]=OASIS OpenDocument kép
-Comment[is]=OASIS OpenDocument mynd
-Comment[it]=Immagine OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument 画像
-Comment[km]=រូបភាព OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument paveikslėlis
-Comment[lv]=OASIS OpenDocument attēls
-Comment[ms]=Imej Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-bilde
-Comment[nds]=OpenDocument-Bild för OASIS
-Comment[ne]=OASIS खुला कागजात छवि
-Comment[nl]=OASIS OpenDocument-afbeelding
-Comment[nn]=OASIS OpenDocument-bilete
-Comment[pl]=Obrazek w formacie OASIS OpenDocument
-Comment[pt]=Imagem OASIS OpenDocument
-Comment[pt_BR]=Imagem OpenDocument OASIS
-Comment[ru]=Изображение OASIS OpenDocument
-Comment[se]=OASIS OpenDocument-govva
-Comment[sk]=Obrázok OASIS OpenDocument
-Comment[sl]=Slika OASIS OpenDocument
-Comment[sr]=OASIS-ова OpenDocument слика
-Comment[sr@Latn]=OASIS-ova OpenDocument slika
-Comment[sv]=OASIS OpenDocument bild
-Comment[uk]=Зображення OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument rasm
-Comment[uz@cyrillic]=OASIS OpenDocument расм
-Comment[zh_CN]=OASIS OpenDocument 图像
-Comment[zh_TW]=OASIS 開放文件影像
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.odi
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.presentation-template.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.presentation-template.desktop
deleted file mode 100644
index 3f607ee8..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.presentation-template.desktop
+++ /dev/null
@@ -1,56 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.presentation-template
-Patterns=*.otp;*.OTP
-Icon=application-vnd.oasis.opendocument.presentation
-Comment=OASIS OpenDocument Presentation Template
-Comment[bg]=Шаблон за презентация на OASIS OpenDocument
-Comment[br]=Patrom un emginnig OASIS OpenDocument
-Comment[ca]=Plantilla de presentació OASIS OpenDocument
-Comment[cy]=Patrymlun Cyflwyniad OASIS OpenDocument
-Comment[da]=OASIS OpenDocument præsentationsskabelon
-Comment[de]=Vorlage für OASIS OpenDocument-Präsentation
-Comment[el]=Πρότυπο παρουσίασης του OASIS OpenDocument
-Comment[es]=Plantilla de presentación de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument esitlusemall
-Comment[eu]=OASIS OpenDocument aurkezpen-txantiloia
-Comment[fa]=قالب ارائۀ OASIS OpenDocument
-Comment[fi]=OASIS OpenDocument -esityspohja
-Comment[fr]=Modèle de présentation OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint Presintaasjesjabloan
-Comment[ga]=Teimpléad Láithreoireachta OpenDocument OASIS
-Comment[gl]=Modelo de Presentación OASIS OpenDocument
-Comment[he]=תבנית מצגת של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट प्रेजेंटेशन टैम्प्लेट
-Comment[hr]=OASIS OpenDocument predložak prezentacije
-Comment[hu]=OASIS OpenDocument bemutatósablon
-Comment[is]=OASIS OpenDocument kynningarsnið
-Comment[it]=Modello di presentazione OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument プレゼンテーションテンプレート
-Comment[km]=ពុម្ពការបង្ហាញ OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument pateikčių šablonas
-Comment[lv]=OASIS OpenDocument prezentācijas sagatave
-Comment[ms]=Templat Persembahan Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-presentasjonsmal
-Comment[nds]=OpenDocument-Presentatschoonvörlaag för OASIS
-Comment[ne]=OASIS खुला कागजात प्रस्तुतिकरण टेम्प्लेट
-Comment[nl]=OASIS OpenDocument Presentatiesjabloon
-Comment[nn]=OASIS OpenDocument-presentasjonsmal
-Comment[pl]=Szablon prezentacji w formacie OASIS OpenDocument
-Comment[pt]=Modelo de Apresentação OASIS OpenDocument
-Comment[pt_BR]=Modelo de Apresentação OpenDocument OASIS
-Comment[ru]=Шаблон презентации OASIS OpenDocument
-Comment[se]=OASIS OpenDocument-presentašuvdnamálle
-Comment[sk]=Šablóna prezentácie OASIS OpenDocument
-Comment[sl]=Predloga predstavitve OASIS OpenDocument
-Comment[sr]=OASIS-ов OpenDocument шаблон за презентације
-Comment[sr@Latn]=OASIS-ov OpenDocument šablon za prezentacije
-Comment[sv]=OASIS OpenDocument presentationsmall
-Comment[uk]=Шаблон презентації OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument namoyish namunasi
-Comment[uz@cyrillic]=OASIS OpenDocument намойиш намунаси
-Comment[zh_CN]=OASIS OpenDocument 演示文稿模板
-Comment[zh_TW]=OASIS 開放文件簡報範本
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.otp
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.presentation.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.presentation.desktop
deleted file mode 100644
index 23c4181f..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.presentation.desktop
+++ /dev/null
@@ -1,55 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.presentation
-Patterns=*.odp;*.ODP
-Icon=application-vnd.oasis.opendocument.presentation
-Comment=OASIS OpenDocument Presentation
-Comment[bg]=Презентация на OASIS OpenDocument
-Comment[br]=Emginnig OASIS OpenDocument
-Comment[ca]=Presentació OASIS OpenDocument
-Comment[cy]=Cyflwyniad OASIS OpenDocument
-Comment[da]=OASIS OpenDocument præsentation
-Comment[de]=OASIS OpenDocument-Präsentation
-Comment[el]=Παρουσίαση του OASIS OpenDocument
-Comment[es]=Presentación de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument esitlus
-Comment[eu]=OASIS OpenDocument aurkezpena
-Comment[fa]=ارائۀ OASIS OpenDocument
-Comment[fr]=Présentation OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint Presintaasje
-Comment[ga]=Láithreoireacht OpenDocument OASIS
-Comment[gl]=Presentación OASIS OpenDocument
-Comment[he]=מצגת של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट प्रेजेंटेशन
-Comment[hr]=OASIS OpenDocument prezentacija
-Comment[hu]=OASIS OpenDocument bemutató
-Comment[is]=OASIS OpenDocument kynning
-Comment[it]=Presentazione OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument プレゼンテーション
-Comment[km]=ការបង្ហាញ OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument pateiktis
-Comment[lv]=OASIS OpenDocument prezentācija
-Comment[ms]=Persembahan Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-presentasjon
-Comment[nds]=OpenDocument-Presentatschoon för OASIS
-Comment[ne]=OASIS खुला कागजात प्रस्तुतिकरण
-Comment[nl]=OASIS OpenDocument Presentatie
-Comment[nn]=OASIS OpenDocument-presentasjon
-Comment[pl]=Prezentacja w formacie OASIS OpenDocument
-Comment[pt]=Apresentação OASIS OpenDocument
-Comment[pt_BR]=Apresentação OpenDocument OASIS
-Comment[ru]=Презентация OASIS OpenDocument
-Comment[se]=OASIS OpenDocument-presentašuvdna
-Comment[sk]=Prezentácia OASIS OpenDocument
-Comment[sl]=Predstavitev OASIS OpenDocument
-Comment[sr]=OASIS-ова OpenDocument презентација
-Comment[sr@Latn]=OASIS-ova OpenDocument prezentacija
-Comment[sv]=OASIS OpenDocument presentation
-Comment[uk]=Презентація OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument namoyish
-Comment[uz@cyrillic]=OASIS OpenDocument намойиш
-Comment[zh_CN]=OASIS OpenDocument 演示文稿
-Comment[zh_TW]=OASIS 開放文件簡報
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.odp
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.spreadsheet-template.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.spreadsheet-template.desktop
deleted file mode 100644
index 1cd4b136..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.spreadsheet-template.desktop
+++ /dev/null
@@ -1,56 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.spreadsheet-template
-Patterns=*.ots;*.OTS
-Icon=application-vnd.oasis.opendocument.spreadsheet
-Comment=OASIS OpenDocument SpreadSheet Template
-Comment[bg]=Шаблон за електронна таблица на OASIS OpenDocument
-Comment[br]=Patrom loger OpenOffice.org OASIS
-Comment[ca]=Plantilla de full de càlcul OASIS OpenDocument
-Comment[cy]=Patrymlun Taenlen OASIS OpenDocument
-Comment[da]=OASIS OpenDocument regnearkskabelon
-Comment[de]=Vorlage für OASIS OpenDocument-Tabellenkalkulation
-Comment[el]=Πρότυπο λογιστικού φύλλου του OASIS OpenDocument
-Comment[es]=Plantilla de hoja de cálculo de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument arvutustabeli mall
-Comment[eu]=OASIS OpenDocument kalkulu-orrien txantiloia
-Comment[fa]=قالب صفحه گستردۀ OASIS OpenDocument
-Comment[fi]=OASIS OpenDocument -taulukkolaskentapohja
-Comment[fr]=Modèle de tableur OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint Rekkenboerdsjabloan
-Comment[ga]=Teimpléad Scarbhileoige OpenDocument OASIS
-Comment[gl]=Modelo de Folla de Cálculo OASIS OpenDocument
-Comment[he]=תבנית גיליון אלקטרוני של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट स्प्रेडशीट टैम्प्लेट
-Comment[hr]=OASIS OpenDocument predložak proračunske tablice
-Comment[hu]=OASIS OpenDocument munkafüzetsablon
-Comment[is]=OASIS OpenDocument töflureiknissnið
-Comment[it]=Modello di foglio di calcolo OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument 表計算テンプレート
-Comment[km]=ពុម្ពសៀវភៅបញ្ជី OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument elektroninės lentelės šablonas
-Comment[lv]=OASIS OpenDocument tabullapas sagatave
-Comment[ms]=Templat Hamparan Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-regnearkmal
-Comment[nds]=OpenDocument-Tabellenutrekenvörlaag för OASIS
-Comment[ne]=OASIS खुला कागजात स्प्रिेडसिट टेम्प्लेट
-Comment[nl]=OASIS OpenDocument Werkbladsjabloon
-Comment[nn]=OASIS OpenDocument-reknearkmal
-Comment[pl]=Szablon arkusza kalkulacyjnego w formacie OASIS OpenDocument
-Comment[pt]=Modelo de Folha de Cálculo OASIS OpenDocument
-Comment[pt_BR]=Modelo de Planilha OpenDocument OASIS
-Comment[ru]=Шаблон таблицы OASIS Open Office
-Comment[se]=OASIS OpenDocument-rehketárkamálle
-Comment[sk]=Šablóna tabuľky OASIS OpenDocument
-Comment[sl]=Predloga preglednice OASIS OpenDocument
-Comment[sr]=OASIS-ов OpenDocument шаблон табеларног прорачуна
-Comment[sr@Latn]=OASIS-ov OpenDocument šablon tabelarnog proračuna
-Comment[sv]=OASIS OpenDocument kalkylarksmall
-Comment[uk]=Шаблон електронної таблиці OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument elektron jadval namunasi
-Comment[uz@cyrillic]=OASIS OpenDocument электрон жадвал намунаси
-Comment[zh_CN]=OASIS OpenDocument 工作簿模板
-Comment[zh_TW]=OASIS 開放文件工作表範本
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.ots
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.spreadsheet.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.spreadsheet.desktop
deleted file mode 100644
index ff521acb..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.spreadsheet.desktop
+++ /dev/null
@@ -1,56 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.spreadsheet
-Patterns=*.ods;*.ODS
-Icon=application-vnd.oasis.opendocument.spreadsheet
-Comment=OASIS OpenDocument SpreadSheet
-Comment[bg]=Електронна таблица на OASIS OpenDocument
-Comment[br]=Loger OpenOffice.org OASIS
-Comment[ca]=Full de càlcul OASIS OpenDocument
-Comment[cy]=Taenlen OASIS OpenDocument
-Comment[da]=OASIS OpenDocument regneark
-Comment[de]=OASIS OpenDocument-Tabellenkalkulation
-Comment[el]=Λογιστικό φύλλο του OASIS OpenDocument
-Comment[es]=Hoja de cálculo de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument arvutustabel
-Comment[eu]=OASIS OpenDocument kalkulu-orria
-Comment[fa]=صفحه گستردۀ OASIS OpenDocument
-Comment[fi]=OASIS OpenDocument -taulukkolaskenta
-Comment[fr]=Tableur OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint Rekkenboerd 
-Comment[ga]=Scarbhileog OpenDocument OASIS
-Comment[gl]=Folla de Cálculo OASIS OpenDocument
-Comment[he]=גיליון אלקטרוני של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट स्प्रेडशीट
-Comment[hr]=OASIS OpenDocument proračunska tablica
-Comment[hu]=OASIS OpenDocument munkafüzet
-Comment[is]=OASIS OpenDocument töflureiknir
-Comment[it]=Foglio di calcolo OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument 表計算
-Comment[km]=សៀវភៅបញ្ជី OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument elektroninė lentelė
-Comment[lv]=OASIS OpenDocument tabullapa
-Comment[ms]=Hamparan Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-regneark
-Comment[nds]=OpenDocument-Tabellenutreken för OASIS
-Comment[ne]=OASIS खुला कागजात स्प्रिेडसिट
-Comment[nl]=OASIS OpenDocument Werkblad
-Comment[nn]=OASIS OpenDocument-rekneark
-Comment[pl]=Arkusz kalkulacyjny w formacie OASIS OpenDocument
-Comment[pt]=Folha de Cálculo OASIS OpenDocument
-Comment[pt_BR]=Planilha OpenDocument OASIS
-Comment[ru]=Таблица OASIS OpenDocument
-Comment[se]=OASIS OpenDocument-rehketárka
-Comment[sk]=Tabuľka OASIS OpenDocument
-Comment[sl]=Preglednica OASIS OpenDocument
-Comment[sr]=OASIS-ов OpenDocument табеларни прорачун
-Comment[sr@Latn]=OASIS-ov OpenDocument tabelarni proračun
-Comment[sv]=OASIS OpenDocument kalkylark
-Comment[uk]=Електронна таблиця OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument elektron jadval
-Comment[uz@cyrillic]=OASIS OpenDocument электрон жадвал
-Comment[zh_CN]=OASIS OpenDocument 工作簿
-Comment[zh_TW]=OASIS 開放文件工作表
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.ods
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.text-template.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.text-template.desktop
deleted file mode 100644
index 3a8ec7ee..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.text-template.desktop
+++ /dev/null
@@ -1,56 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.text-template
-Patterns=*.ott;*.OTT
-Icon=application-vnd.oasis.opendocument.text
-Comment=OASIS OpenDocument Text Template
-Comment[bg]=Текстов шаблон на OASIS OpenDocument
-Comment[br]=Patrom skrid OpenOffice.org OASIS
-Comment[ca]=Plantilla de text OASIS OpenDocument
-Comment[cy]=Patrymlun Testun OASIS OpenDocument
-Comment[da]=OASIS OpenDocument tekstskabelon
-Comment[de]=Vorlage für OASIS OpenDocument-Text
-Comment[el]=Πρότυπο κειμένου του OASIS OpenDocument
-Comment[es]=Plantilla de texto de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument tekstimall
-Comment[eu]=OASIS OpenDocument testu-txantiloia
-Comment[fa]=قالب متن OASIS OpenDocument
-Comment[fi]=OASIS OpenDocument -tekstimallipohja
-Comment[fr]=Modèle de texte OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint Tekstsjabloan
-Comment[ga]=Teimpléad Téacs OpenDocument OASIS
-Comment[gl]=Modelo de Texto OASIS OpenDocument
-Comment[he]=תבנית מסמך טקסט של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट पाठ टैम्प्लेट
-Comment[hr]=OASIS OpenDocument predložak teksta
-Comment[hu]=OASIS OpenDocument szövegsablon
-Comment[is]=OASIS OpenDocument textasnið
-Comment[it]=Modello di testo OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument テキストテンプレート
-Comment[km]=ពុម្ពអត្ថបទ OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument teksto dokumento šablonas
-Comment[lv]=OASIS OpenDocument teksta sagatave
-Comment[ms]=Templat Teks Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-tekstmal
-Comment[nds]=OpenDocument-Textvörlaag för OASIS
-Comment[ne]=OASIS खुला कागजात पाठ टेम्प्लेट
-Comment[nl]=OpenOffice.org Tekstsjabloon
-Comment[nn]=OASIS OpenDocument-tekstmal
-Comment[pl]=Szablon tekstowy w formacie OASIS OpenDocument
-Comment[pt]=Modelo de Texto OASIS OpenDocument
-Comment[pt_BR]=Modelo de Documento Texto OpenDocument OASIS
-Comment[ru]=Шаблон текстового документа OASIS OpenDocument
-Comment[se]=OASIS OpenDocument-teakstamálle
-Comment[sk]=Textová šablóna OASIS OpenDocument
-Comment[sl]=Predloga besedilnega dokumenta OASIS OpenDocument
-Comment[sr]=OASIS-ов OpenDocument шаблон за текст
-Comment[sr@Latn]=OASIS-ov OpenDocument šablon za tekst
-Comment[sv]=OASIS OpenDocument textmall
-Comment[uk]=Шаблон текстового документу OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument matn namunasi
-Comment[uz@cyrillic]=OASIS OpenDocument матн намунаси
-Comment[zh_CN]=OASIS OpenDocument 文本模板
-Comment[zh_TW]=OASIS 開放文件文字範本
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.ott
diff --git a/mimetypes/trinity3/vnd.oasis.opendocument.text.desktop b/mimetypes/trinity3/vnd.oasis.opendocument.text.desktop
deleted file mode 100644
index a53c1c2d..00000000
--- a/mimetypes/trinity3/vnd.oasis.opendocument.text.desktop
+++ /dev/null
@@ -1,56 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=application/vnd.oasis.opendocument.text
-Patterns=*.odt;*.ODT
-Icon=application-vnd.oasis.opendocument.text
-Comment=OASIS OpenDocument Text
-Comment[bg]=Текстов документ на OASIS OpenDocument
-Comment[br]=Skrid OpenDocument OASIS
-Comment[ca]=Text OASIS OpenDocument
-Comment[cy]=Testun OASIS OpenDocument
-Comment[da]=OASIS Open Office tekst
-Comment[de]=OASIS OpenDocument-Text
-Comment[el]=Κείμενο του OASIS OpenDocument
-Comment[es]=Texto de OASIS OpenDocument
-Comment[et]=OASIS OpenDocument tekst
-Comment[eu]=OASIS OpenDocument testua
-Comment[fa]=متن OASIS OpenDocument
-Comment[fi]=OASIS OpenDocument -teksti
-Comment[fr]=Texte OASIS OpenDocument
-Comment[fy]=OASIS IepenDokumint Tekst
-Comment[ga]=Téacs OpenDocument OASIS
-Comment[gl]=Texto OASIS OpenDocument
-Comment[he]=מסמך טקסט של OASIS OpenDocument
-Comment[hi]=ओएसिस ओपनडाकुमेंट पाठ
-Comment[hr]=OASIS OpenDocument tekst
-Comment[hu]=OASIS OpenDocument szöveg
-Comment[is]=OASIS OpenDocument texti
-Comment[it]=Testo OpenDocument OASIS
-Comment[ja]=OASIS OpenDocument テキスト
-Comment[km]=អត្ថបទ OpenDocument របស់ OASIS
-Comment[lt]=OASIS OpenDocument tekstas
-Comment[lv]=OASIS OpenDocument teksts
-Comment[ms]=Teks Dokumen Terbuka OASIS
-Comment[nb]=OASIS OpenDocument-tekst
-Comment[nds]=OpenDocument-Text för OASIS
-Comment[ne]=OASIS खुला कागजात पाठ
-Comment[nl]=OASIS OpenDocument Tekst
-Comment[nn]=OASIS OpenDocument-tekst
-Comment[pl]=Tekst w formacie OASIS OpenDocument
-Comment[pt]=Texto OASIS OpenDocument
-Comment[pt_BR]=Documento Texto OpenDocument OASIS
-Comment[ru]=Текстовый документ OASIS OpenDocument
-Comment[se]=OASIS OpenDocument-teaksta
-Comment[sk]=Text OASIS OpenDocument
-Comment[sl]=Besedilo OASIS OpenDocument
-Comment[sr]=OASIS-ов OpenDocument текст
-Comment[sr@Latn]=OASIS-ov OpenDocument tekst
-Comment[sv]=OASIS OpenDocument text
-Comment[uk]=Текстовий документ OASIS OpenDocument
-Comment[uz]=OASIS OpenDocument matn
-Comment[uz@cyrillic]=OASIS OpenDocument матн
-Comment[zh_CN]=OASIS OpenDocument 文本
-Comment[zh_TW]=OASIS 開放文件文字
-[Property::X-TDE-NativeExtension]
-Type=TQString
-Value=.odt
diff --git a/mimetypes/trinity51/Makefile.am b/mimetypes/trinity51/Makefile.am
deleted file mode 100644
index 2b0b0b19..00000000
--- a/mimetypes/trinity51/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-image_DATA = x-raw.desktop
-
-imagedir = $(kde_mimedir)/image
-
-EXTRA_DIST = $(image_DATA)
diff --git a/mimetypes/trinity51/x-raw.desktop b/mimetypes/trinity51/x-raw.desktop
deleted file mode 100644
index b6278579..00000000
--- a/mimetypes/trinity51/x-raw.desktop
+++ /dev/null
@@ -1,43 +0,0 @@
-[Desktop Entry]
-Type=MimeType
-MimeType=image/x-raw
-Icon=image-x-generic
-Patterns=*.raw;*.RAW;*.dcr;*.DCR;*.dng;*.DNG;*.crw;*.CRW;*.cr2,*.CR2;*.nef;*.NEF;*.mrw;*.MRW;
-Comment=RAW Camera Image
-Comment[bg]=RAW изображение от камера
-Comment[ca]=Imatge de Càmera RAW
-Comment[da]=Ubehandlet kamerabillede
-Comment[de]=Kamera RAW-Bild
-Comment[el]=Εικόνα RAW φωτογραφικής μηχανής
-Comment[es]=Imagen RAW de cámara
-Comment[et]=Kaamera toorpilt
-Comment[fa]=تصویر دوربین RAW
-Comment[fr]=Image RAW d'appareil photo
-Comment[fy]=RAW kamera-ôfbylding
-Comment[ga]=Íomhá Cheamara RAW
-Comment[gl]=Imaxe RAW de Cámara
-Comment[he]=תמונה של מצלמת מסוג RAW
-Comment[hu]=RAW-képfájl
-Comment[is]=RAW ljósmynd
-Comment[it]=Immagine in formato grezzo di macchina fotografica
-Comment[ja]=RAW カメラ画像
-Comment[km]=រូបភាព​ចេញ​ពី​ម៉ាស៊ីន​ថតរូប
-Comment[lt]=RAW fotoaparato paveiksliukas
-Comment[lv]=RAW kameras attēls
-Comment[nb]=RAW kamera-bilde
-Comment[nds]=Kamera Roh-Bild
-Comment[ne]=RAW क्यामेरा छवि
-Comment[nl]=RAW camera-afbeelding
-Comment[pl]=Nieobrobione zdjęcie (RAW)
-Comment[pt]=Imagem RAW da Máquina Fotográfica
-Comment[pt_BR]=Imagem RAW da Máquina Fotográfica
-Comment[ru]=Изображение камеры в формате RAW
-Comment[se]=RAW-govvenapparáhttagovva
-Comment[sk]=RAW obrázok z fotoaparátu
-Comment[sl]=Fotografija v formatu RAW
-Comment[sr]=Сирова слика са камере
-Comment[sr@Latn]=Sirova slika sa kamere
-Comment[sv]=Obehandlad bild från kamera
-Comment[uk]=RAW-зображення з камери
-Comment[zh_CN]=相机 RAW 图像
-Comment[zh_TW]=照像機 RAW 圖片
-- 
cgit v1.2.3

