summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2018-12-23 02:03:40 +0100
committerSlávek Banko <slavek.banko@axis.cz>2018-12-23 02:03:40 +0100
commit0816faa34e96a24644d9cf030cb05a78e71db3b6 (patch)
tree85fa23208ddefa21979ffc6870ce88126af51424
parent4702db0e8bd645a41f448f14f3592ae57ab70112 (diff)
downloadfilelight-0816faa3.tar.gz
filelight-0816faa3.zip
Add CMakeL10n rules.
Create translation template. Modify CMake rules for translations to make them independent of languages. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--CMakeL10n.txt23
-rw-r--r--po/CMakeLists.txt10
-rw-r--r--po/az/CMakeLists.txt3
-rw-r--r--po/bg/CMakeLists.txt3
-rw-r--r--po/br/CMakeLists.txt3
-rw-r--r--po/ca/CMakeLists.txt3
-rw-r--r--po/cs/CMakeLists.txt3
-rw-r--r--po/cy/CMakeLists.txt3
-rw-r--r--po/da/CMakeLists.txt3
-rw-r--r--po/de/CMakeLists.txt3
-rw-r--r--po/el/CMakeLists.txt3
-rw-r--r--po/en_GB/CMakeLists.txt3
-rw-r--r--po/es/CMakeLists.txt3
-rw-r--r--po/et/CMakeLists.txt3
-rw-r--r--po/filelight.pot418
-rw-r--r--po/fr/CMakeLists.txt3
-rw-r--r--po/ga/CMakeLists.txt3
-rw-r--r--po/gl/CMakeLists.txt3
-rw-r--r--po/is/CMakeLists.txt3
-rw-r--r--po/it/CMakeLists.txt3
-rw-r--r--po/ja/CMakeLists.txt3
-rw-r--r--po/ka/CMakeLists.txt3
-rw-r--r--po/lt/CMakeLists.txt3
-rw-r--r--po/nb/CMakeLists.txt3
-rw-r--r--po/nl/CMakeLists.txt3
-rw-r--r--po/pl/CMakeLists.txt3
-rw-r--r--po/pt/CMakeLists.txt3
-rw-r--r--po/pt_BR/CMakeLists.txt3
-rw-r--r--po/ro/CMakeLists.txt3
-rw-r--r--po/ru/CMakeLists.txt3
-rw-r--r--po/rw/CMakeLists.txt3
-rw-r--r--po/sr/CMakeLists.txt3
-rw-r--r--po/sr@Latn/CMakeLists.txt3
-rw-r--r--po/sv/CMakeLists.txt3
-rw-r--r--po/ta/CMakeLists.txt3
-rw-r--r--po/tr/CMakeLists.txt3
-rw-r--r--po/uk/CMakeLists.txt3
37 files changed, 449 insertions, 104 deletions
diff --git a/CMakeL10n.txt b/CMakeL10n.txt
new file mode 100644
index 0000000..4e84164
--- /dev/null
+++ b/CMakeL10n.txt
@@ -0,0 +1,23 @@
+#################################################
+#
+# (C) 2018 Slávek Banko
+# slavek.banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+cmake_minimum_required( VERSION 2.8 )
+
+
+##### include our cmake modules #################
+
+set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
+include( TDEL10n )
+
+
+##### create translation templates ##############
+
+tde_l10n_create_template( "filelight" )
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt
index 03be086..2ce6ef4 100644
--- a/po/CMakeLists.txt
+++ b/po/CMakeLists.txt
@@ -1,3 +1,9 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
+# build translations if some are already available
-tde_auto_add_subdirectories( )
+file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${PROJECT_NAME}.po )
+
+foreach( _po ${po_files} )
+ string( REPLACE "/" ";" _path "${_po}" )
+ list( GET _path 0 _lang )
+ tde_create_translation( FILES ${_po} LANG ${_lang} )
+endforeach( )
diff --git a/po/az/CMakeLists.txt b/po/az/CMakeLists.txt
deleted file mode 100644
index 73387bc..0000000
--- a/po/az/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG az )
diff --git a/po/bg/CMakeLists.txt b/po/bg/CMakeLists.txt
deleted file mode 100644
index fd895fd..0000000
--- a/po/bg/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG bg )
diff --git a/po/br/CMakeLists.txt b/po/br/CMakeLists.txt
deleted file mode 100644
index a9b94b9..0000000
--- a/po/br/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG br )
diff --git a/po/ca/CMakeLists.txt b/po/ca/CMakeLists.txt
deleted file mode 100644
index c7b6527..0000000
--- a/po/ca/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG ca )
diff --git a/po/cs/CMakeLists.txt b/po/cs/CMakeLists.txt
deleted file mode 100644
index aff5e9f..0000000
--- a/po/cs/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG cs )
diff --git a/po/cy/CMakeLists.txt b/po/cy/CMakeLists.txt
deleted file mode 100644
index ecb92aa..0000000
--- a/po/cy/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG cy )
diff --git a/po/da/CMakeLists.txt b/po/da/CMakeLists.txt
deleted file mode 100644
index f97412f..0000000
--- a/po/da/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG da )
diff --git a/po/de/CMakeLists.txt b/po/de/CMakeLists.txt
deleted file mode 100644
index bfe26e1..0000000
--- a/po/de/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG de )
diff --git a/po/el/CMakeLists.txt b/po/el/CMakeLists.txt
deleted file mode 100644
index 534209a..0000000
--- a/po/el/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG el )
diff --git a/po/en_GB/CMakeLists.txt b/po/en_GB/CMakeLists.txt
deleted file mode 100644
index 3aed56a..0000000
--- a/po/en_GB/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG en_GB )
diff --git a/po/es/CMakeLists.txt b/po/es/CMakeLists.txt
deleted file mode 100644
index 180d5b2..0000000
--- a/po/es/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG es )
diff --git a/po/et/CMakeLists.txt b/po/et/CMakeLists.txt
deleted file mode 100644
index 6bf33cc..0000000
--- a/po/et/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG et )
diff --git a/po/filelight.pot b/po/filelight.pot
new file mode 100644
index 0000000..ac343a8
--- /dev/null
+++ b/po/filelight.pot
@@ -0,0 +1,418 @@
+# SOME DESCRIPTIVE TITLE.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2018-12-23 01:45+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: _translatorinfo:1
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr ""
+
+#: _translatorinfo:2
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr ""
+
+#: src/app/historyAction.cpp:45
+msgid "Back"
+msgstr ""
+
+#: src/app/historyAction.cpp:46
+msgid "Forward"
+msgstr ""
+
+#: src/app/main.cpp:15
+msgid "Scan 'path'"
+msgstr ""
+
+#: src/app/main.cpp:21
+msgid "Graphical disk-usage information"
+msgstr ""
+
+#: src/app/main.cpp:22
+msgid "(C )2006 Max Howell"
+msgstr ""
+
+#: src/app/main.cpp:30
+msgid "Author, maintainer"
+msgstr ""
+
+#: src/app/main.cpp:31
+msgid "Documentation"
+msgstr ""
+
+#: src/app/main.cpp:32
+msgid "Inspiration"
+msgstr ""
+
+#: src/app/main.cpp:33
+msgid "Internationalization"
+msgstr ""
+
+#: src/app/main.cpp:34
+msgid "Testing"
+msgstr ""
+
+#: src/app/main.cpp:35
+msgid "Bravery in the face of unreadable code"
+msgstr ""
+
+#: src/app/mainWindow.cpp:40
+msgid ""
+"TDE could not find the Filelight Part, or the Filelight Part could not be "
+"started. Did you make install?"
+msgstr ""
+
+#: src/app/mainWindow.cpp:57
+msgid ""
+"Filelight is not installed properly, consequently its menus and toolbars "
+"will appear reduced or even empty"
+msgstr ""
+
+#: src/app/mainWindow.cpp:91
+msgid "Scan &Home Directory"
+msgstr ""
+
+#: src/app/mainWindow.cpp:92
+msgid "Scan &Root Directory"
+msgstr ""
+
+#: src/app/mainWindow.cpp:93
+msgid "Rescan"
+msgstr ""
+
+#: src/app/mainWindow.cpp:94
+msgid "Stop"
+msgstr ""
+
+#: src/app/mainWindow.cpp:95
+msgid "Clear Location Bar"
+msgstr ""
+
+#: src/app/mainWindow.cpp:96
+msgid "Go"
+msgstr ""
+
+#: src/app/mainWindow.cpp:98
+msgid "Location Bar"
+msgstr ""
+
+#: src/app/mainWindow.cpp:99
+msgid "&Recent Scans"
+msgstr ""
+
+#: src/app/mainWindow.cpp:102
+msgid "&Scan Directory..."
+msgstr ""
+
+#: src/app/mainWindow.cpp:263
+msgid ""
+"_: &Up: /home/mxcl\n"
+"%1: %2"
+msgstr ""
+
+#: src/part/part.cpp:62
+msgid "Configure Filelight..."
+msgstr ""
+
+#: src/part/part.cpp:118
+msgid "The entered URL cannot be parsed; it is invalid."
+msgstr ""
+
+#: src/part/part.cpp:122
+#, c-format
+msgid "Filelight only accepts absolute paths, eg. /%1"
+msgstr ""
+
+#: src/part/part.cpp:126
+#, c-format
+msgid "Directory not found: %1"
+msgstr ""
+
+#: src/part/part.cpp:130
+msgid ""
+"Unable to enter: %1\n"
+"You do not have access rights to this location."
+msgstr ""
+
+#: src/part/part.cpp:147
+msgid "Aborting Scan..."
+msgstr ""
+
+#: src/part/part.cpp:195
+#, c-format
+msgid "Scanning: %1"
+msgstr ""
+
+#: src/part/part.cpp:220
+msgid "Scan completed, generating map..."
+msgstr ""
+
+#: src/part/part.cpp:229
+#, c-format
+msgid "Scan failed: %1"
+msgstr ""
+
+#: src/part/progressBox.cpp:62
+#, c-format
+msgid ""
+"_n: %n File\n"
+"%n Files"
+msgstr ""
+
+#: src/part/radialMap/builder.cpp:133
+msgid ""
+"_: There can't ever be only 1 file\n"
+"%1 files, each about %2"
+msgstr ""
+
+#: src/part/radialMap/segmentTip.cpp:126
+#, c-format
+msgid "Files: %1"
+msgstr ""
+
+#: src/part/radialMap/widgetEvents.cpp:165
+msgid "Open &Konqueror Here"
+msgstr ""
+
+#: src/part/radialMap/widgetEvents.cpp:168
+msgid "Open &Konsole Here"
+msgstr ""
+
+#: src/part/radialMap/widgetEvents.cpp:172
+msgid "&Center Map Here"
+msgstr ""
+
+#: src/part/radialMap/widgetEvents.cpp:176
+msgid "&Open"
+msgstr ""
+
+#: src/part/radialMap/widgetEvents.cpp:179
+msgid "&Copy to clipboard"
+msgstr ""
+
+#: src/part/radialMap/widgetEvents.cpp:182
+#: src/part/radialMap/widgetEvents.cpp:211
+msgid "&Delete"
+msgstr ""
+
+#: src/part/radialMap/widgetEvents.cpp:207
+msgid ""
+"<qt>The directory at <i>'%1'</i> will be <b>recursively</b> and "
+"<b>permanently</b> deleted."
+msgstr ""
+
+#: src/part/radialMap/widgetEvents.cpp:208
+msgid "<qt><i>'%1'</i> will be <b>permanently</b> deleted."
+msgstr ""
+
+#: src/part/settingsDialog.cpp:26
+msgid "Rainbow"
+msgstr ""
+
+#: src/part/settingsDialog.cpp:27
+msgid "TDE Colors"
+msgstr ""
+
+#: src/part/settingsDialog.cpp:28
+msgid "High Contrast"
+msgstr ""
+
+#: src/part/settingsDialog.cpp:146
+msgid "That directory is already set to be excluded from scans"
+msgstr ""
+
+#: src/part/summaryWidget.cpp:102
+msgid "Free"
+msgstr ""
+
+#: src/part/summaryWidget.cpp:103
+msgid "Used"
+msgstr ""
+
+#: misc/filelightui.rc:4
+#, no-c-format
+msgid "&Scan"
+msgstr ""
+
+#: misc/filelightui.rc:18
+#, no-c-format
+msgid "&View"
+msgstr ""
+
+#: misc/filelightui.rc:19
+#, no-c-format
+msgid "&Go"
+msgstr ""
+
+#: misc/filelightui.rc:27
+#, no-c-format
+msgid "Main Toolbar"
+msgstr ""
+
+#: misc/filelightui.rc:35
+#, no-c-format
+msgid "Location Toolbar"
+msgstr ""
+
+#: src/part/dialog.ui:16
+#, no-c-format
+msgid "Settings - Filelight"
+msgstr ""
+
+#: src/part/dialog.ui:34
+#, no-c-format
+msgid "Scannin&g"
+msgstr ""
+
+#: src/part/dialog.ui:53
+#, no-c-format
+msgid "Do &not scan these directories:"
+msgstr ""
+
+#: src/part/dialog.ui:70
+#, no-c-format
+msgid ""
+"Filelight will not scan these directories unless you specifically request "
+"them."
+msgstr ""
+
+#: src/part/dialog.ui:106
+#, no-c-format
+msgid "R&emove"
+msgstr ""
+
+#: src/part/dialog.ui:117
+#, no-c-format
+msgid "&Add..."
+msgstr ""
+
+#: src/part/dialog.ui:202
+#, no-c-format
+msgid "Exclude remote files&ystems"
+msgstr ""
+
+#: src/part/dialog.ui:208
+#, no-c-format
+msgid ""
+"Prevents scanning of filesystems that are not on this computer, e.g. NFS or "
+"Samba mounts."
+msgstr ""
+
+#: src/part/dialog.ui:216
+#, no-c-format
+msgid "Scan across filesystem &boundaries"
+msgstr ""
+
+#: src/part/dialog.ui:219
+#, no-c-format
+msgid ""
+"Allows scans to enter directories that are part of other filesystems. For "
+"example, when unchecked, this will usually prevent the contents of "
+"<b>/mnt</b> from being scanned if you scan <b>/</b>."
+msgstr ""
+
+#: src/part/dialog.ui:230
+#, no-c-format
+msgid "E&xclude removable media"
+msgstr ""
+
+#: src/part/dialog.ui:236
+#, no-c-format
+msgid "Prevents Filelight from scanning removable media (eg. CD-ROMs)."
+msgstr ""
+
+#: src/part/dialog.ui:248
+#, no-c-format
+msgid "&Appearance"
+msgstr ""
+
+#: src/part/dialog.ui:259
+#, no-c-format
+msgid "Scheme"
+msgstr ""
+
+#: src/part/dialog.ui:291
+#, no-c-format
+msgid "Co&ntrast"
+msgstr ""
+
+#: src/part/dialog.ui:314
+#, no-c-format
+msgid "Here you can vary the contrast of the filemap in realtime."
+msgstr ""
+
+#: src/part/dialog.ui:326
+#, no-c-format
+msgid "&Use anti-aliasing"
+msgstr ""
+
+#: src/part/dialog.ui:329
+#, no-c-format
+msgid ""
+"Anti-aliasing the filemap makes it clearer and prettier, unfortunately it "
+"also makes rendering very slow."
+msgstr ""
+
+#: src/part/dialog.ui:351
+#, no-c-format
+msgid "Var&y label font sizes"
+msgstr ""
+
+#: src/part/dialog.ui:354
+#, no-c-format
+msgid ""
+"The font size of exploded labels can be varied relative to the depth of the "
+"directories they represent. This helps you spot the important labels more "
+"easily. Set a sensible minimum font size."
+msgstr ""
+
+#: src/part/dialog.ui:390
+#, no-c-format
+msgid "Minimum font si&ze:"
+msgstr ""
+
+#: src/part/dialog.ui:399
+#, no-c-format
+msgid "The smallest font size Filelight can use to render labels."
+msgstr ""
+
+#: src/part/dialog.ui:442
+#, no-c-format
+msgid "Show small files"
+msgstr ""
+
+#: src/part/dialog.ui:445
+#, no-c-format
+msgid ""
+"Some files are too small to be rendered on the filemap. Selecting this "
+"option makes these files visible by merging them all into a single "
+"\"multi-segment\"."
+msgstr ""
+
+#: src/part/dialog.ui:464
+#, no-c-format
+msgid "&Reset"
+msgstr ""
+
+#: src/part/dialog.ui:470
+#, no-c-format
+msgid "Reset any changes you have made since you opened this dialog."
+msgstr ""
+
+#: src/part/dialog.ui:495
+#, no-c-format
+msgid "&Close"
+msgstr ""
diff --git a/po/fr/CMakeLists.txt b/po/fr/CMakeLists.txt
deleted file mode 100644
index cf66cc2..0000000
--- a/po/fr/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG fr )
diff --git a/po/ga/CMakeLists.txt b/po/ga/CMakeLists.txt
deleted file mode 100644
index ee761c5..0000000
--- a/po/ga/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG ga )
diff --git a/po/gl/CMakeLists.txt b/po/gl/CMakeLists.txt
deleted file mode 100644
index e86c246..0000000
--- a/po/gl/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG gl )
diff --git a/po/is/CMakeLists.txt b/po/is/CMakeLists.txt
deleted file mode 100644
index 162fdf0..0000000
--- a/po/is/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG is )
diff --git a/po/it/CMakeLists.txt b/po/it/CMakeLists.txt
deleted file mode 100644
index 4342d60..0000000
--- a/po/it/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG it )
diff --git a/po/ja/CMakeLists.txt b/po/ja/CMakeLists.txt
deleted file mode 100644
index 120c5e3..0000000
--- a/po/ja/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG ja )
diff --git a/po/ka/CMakeLists.txt b/po/ka/CMakeLists.txt
deleted file mode 100644
index bf86c40..0000000
--- a/po/ka/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG ka )
diff --git a/po/lt/CMakeLists.txt b/po/lt/CMakeLists.txt
deleted file mode 100644
index c9e1525..0000000
--- a/po/lt/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG lt )
diff --git a/po/nb/CMakeLists.txt b/po/nb/CMakeLists.txt
deleted file mode 100644
index 9f9a2a4..0000000
--- a/po/nb/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG nb )
diff --git a/po/nl/CMakeLists.txt b/po/nl/CMakeLists.txt
deleted file mode 100644
index cf6f6b5..0000000
--- a/po/nl/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG nl )
diff --git a/po/pl/CMakeLists.txt b/po/pl/CMakeLists.txt
deleted file mode 100644
index 509a4b3..0000000
--- a/po/pl/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG pl )
diff --git a/po/pt/CMakeLists.txt b/po/pt/CMakeLists.txt
deleted file mode 100644
index 7f64a93..0000000
--- a/po/pt/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG pt )
diff --git a/po/pt_BR/CMakeLists.txt b/po/pt_BR/CMakeLists.txt
deleted file mode 100644
index 02c6b68..0000000
--- a/po/pt_BR/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG pt_BR )
diff --git a/po/ro/CMakeLists.txt b/po/ro/CMakeLists.txt
deleted file mode 100644
index 080cf35..0000000
--- a/po/ro/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG ro )
diff --git a/po/ru/CMakeLists.txt b/po/ru/CMakeLists.txt
deleted file mode 100644
index 67183e3..0000000
--- a/po/ru/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG ru )
diff --git a/po/rw/CMakeLists.txt b/po/rw/CMakeLists.txt
deleted file mode 100644
index 3381e0a..0000000
--- a/po/rw/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG rw )
diff --git a/po/sr/CMakeLists.txt b/po/sr/CMakeLists.txt
deleted file mode 100644
index 7dc96c5..0000000
--- a/po/sr/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG sr )
diff --git a/po/sr@Latn/CMakeLists.txt b/po/sr@Latn/CMakeLists.txt
deleted file mode 100644
index ba4b10c..0000000
--- a/po/sr@Latn/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG sr@Latn )
diff --git a/po/sv/CMakeLists.txt b/po/sv/CMakeLists.txt
deleted file mode 100644
index 5f0ac30..0000000
--- a/po/sv/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG sv )
diff --git a/po/ta/CMakeLists.txt b/po/ta/CMakeLists.txt
deleted file mode 100644
index 49d3666..0000000
--- a/po/ta/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG ta )
diff --git a/po/tr/CMakeLists.txt b/po/tr/CMakeLists.txt
deleted file mode 100644
index 7b05c30..0000000
--- a/po/tr/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG tr )
diff --git a/po/uk/CMakeLists.txt b/po/uk/CMakeLists.txt
deleted file mode 100644
index 90a013a..0000000
--- a/po/uk/CMakeLists.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# This file is genereted by trinity-automake-cmake-convert script by Fat-Zer
-
-tde_create_translation( LANG uk )