From 0816faa34e96a24644d9cf030cb05a78e71db3b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 23 Dec 2018 02:03:40 +0100 Subject: Add CMakeL10n rules. Create translation template. Modify CMake rules for translations to make them independent of languages. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- CMakeL10n.txt | 23 +++ po/CMakeLists.txt | 10 +- po/az/CMakeLists.txt | 3 - po/bg/CMakeLists.txt | 3 - po/br/CMakeLists.txt | 3 - po/ca/CMakeLists.txt | 3 - po/cs/CMakeLists.txt | 3 - po/cy/CMakeLists.txt | 3 - po/da/CMakeLists.txt | 3 - po/de/CMakeLists.txt | 3 - po/el/CMakeLists.txt | 3 - po/en_GB/CMakeLists.txt | 3 - po/es/CMakeLists.txt | 3 - po/et/CMakeLists.txt | 3 - po/filelight.pot | 418 ++++++++++++++++++++++++++++++++++++++++++++++ po/fr/CMakeLists.txt | 3 - po/ga/CMakeLists.txt | 3 - po/gl/CMakeLists.txt | 3 - po/is/CMakeLists.txt | 3 - po/it/CMakeLists.txt | 3 - po/ja/CMakeLists.txt | 3 - po/ka/CMakeLists.txt | 3 - po/lt/CMakeLists.txt | 3 - po/nb/CMakeLists.txt | 3 - po/nl/CMakeLists.txt | 3 - po/pl/CMakeLists.txt | 3 - po/pt/CMakeLists.txt | 3 - po/pt_BR/CMakeLists.txt | 3 - po/ro/CMakeLists.txt | 3 - po/ru/CMakeLists.txt | 3 - po/rw/CMakeLists.txt | 3 - po/sr/CMakeLists.txt | 3 - po/sr@Latn/CMakeLists.txt | 3 - po/sv/CMakeLists.txt | 3 - po/ta/CMakeLists.txt | 3 - po/tr/CMakeLists.txt | 3 - po/uk/CMakeLists.txt | 3 - 37 files changed, 449 insertions(+), 104 deletions(-) create mode 100644 CMakeL10n.txt delete mode 100644 po/az/CMakeLists.txt delete mode 100644 po/bg/CMakeLists.txt delete mode 100644 po/br/CMakeLists.txt delete mode 100644 po/ca/CMakeLists.txt delete mode 100644 po/cs/CMakeLists.txt delete mode 100644 po/cy/CMakeLists.txt delete mode 100644 po/da/CMakeLists.txt delete mode 100644 po/de/CMakeLists.txt delete mode 100644 po/el/CMakeLists.txt delete mode 100644 po/en_GB/CMakeLists.txt delete mode 100644 po/es/CMakeLists.txt delete mode 100644 po/et/CMakeLists.txt create mode 100644 po/filelight.pot delete mode 100644 po/fr/CMakeLists.txt delete mode 100644 po/ga/CMakeLists.txt delete mode 100644 po/gl/CMakeLists.txt delete mode 100644 po/is/CMakeLists.txt delete mode 100644 po/it/CMakeLists.txt delete mode 100644 po/ja/CMakeLists.txt delete mode 100644 po/ka/CMakeLists.txt delete mode 100644 po/lt/CMakeLists.txt delete mode 100644 po/nb/CMakeLists.txt delete mode 100644 po/nl/CMakeLists.txt delete mode 100644 po/pl/CMakeLists.txt delete mode 100644 po/pt/CMakeLists.txt delete mode 100644 po/pt_BR/CMakeLists.txt delete mode 100644 po/ro/CMakeLists.txt delete mode 100644 po/ru/CMakeLists.txt delete mode 100644 po/rw/CMakeLists.txt delete mode 100644 po/sr/CMakeLists.txt delete mode 100644 po/sr@Latn/CMakeLists.txt delete mode 100644 po/sv/CMakeLists.txt delete mode 100644 po/ta/CMakeLists.txt delete mode 100644 po/tr/CMakeLists.txt delete mode 100644 po/uk/CMakeLists.txt 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 , 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 \n" +"Language-Team: LANGUAGE \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 "" +"The directory at '%1' will be recursively and " +"permanently deleted." +msgstr "" + +#: src/part/radialMap/widgetEvents.cpp:208 +msgid "'%1' will be permanently 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 ¬ 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 " +"/mnt from being scanned if you scan /." +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 ) -- cgit v1.2.1