summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitmodules3
-rw-r--r--CMakeL10n.txt7
-rw-r--r--CMakeLists.txt16
m---------cmake0
-rw-r--r--doc/CMakeLists.txt14
-rw-r--r--doc/en/CMakeLists.txt1
-rw-r--r--src/tdmtheme.cpp8
-rw-r--r--src/tdmtheme.h2
-rw-r--r--translations/CMakeLists.txt1
-rw-r--r--translations/desktop_files/tdmtheme.desktop/pt.po28
-rw-r--r--translations/desktop_files/tdmtheme.desktop/ru.po29
-rw-r--r--translations/messages/CMakeLists.txt14
-rw-r--r--translations/messages/el.po155
-rw-r--r--translations/messages/pl.po6
-rw-r--r--translations/messages/pt.po139
-rw-r--r--translations/messages/ru.po152
16 files changed, 526 insertions, 49 deletions
diff --git a/.gitmodules b/.gitmodules
deleted file mode 100644
index 69dd7b2..0000000
--- a/.gitmodules
+++ /dev/null
@@ -1,3 +0,0 @@
-[submodule "cmake"]
- path = cmake
- url = https://system@scm.trinitydesktop.org/scm/git/tde-common-cmake
diff --git a/CMakeL10n.txt b/CMakeL10n.txt
index a525b71..0176702 100644
--- a/CMakeL10n.txt
+++ b/CMakeL10n.txt
@@ -9,12 +9,15 @@
#
#################################################
-cmake_minimum_required( VERSION 2.8 )
+
+##### set project version ########################
+
+include( TDEVersion )
+cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} )
##### include our cmake modules #################
-set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
include( TDEL10n )
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c454b69..e2744d9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -7,13 +7,16 @@
############################################
-cmake_minimum_required( VERSION 2.8 )
+##### set project version ########################
+
+include( TDEVersion )
+cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} )
+tde_set_project_version( )
#### general package setup
project( tdmtheme )
-set( VERSION R14.1.0 )
#### include essential cmake modules
@@ -29,7 +32,6 @@ include( CheckCXXSourceCompiles )
#### include our cmake modules
-set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
include( TDEMacros )
@@ -69,8 +71,12 @@ set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined"
##### directories
add_subdirectory( src )
-tde_conditional_add_subdirectory( BUILD_DOC doc )
-tde_conditional_add_subdirectory( BUILD_TRANSLATIONS translations )
+
+
+##### other data ################################
+
+tde_conditional_add_project_docs( BUILD_DOC )
+tde_conditional_add_project_translations( BUILD_TRANSLATIONS )
##### write configure files
diff --git a/cmake b/cmake
deleted file mode 160000
-Subproject 0459cbaf3eaf2b123a07d125623db0fc82baa6a
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
deleted file mode 100644
index 70d6348..0000000
--- a/doc/CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-file( GLOB _dirs RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * )
-string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" )
-
-foreach( _dir ${_dirs} )
- if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_dir} AND
- EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${_dir}/CMakeLists.txt )
- if( "${_dir}" STREQUAL "en" OR
- "${_dir}" STREQUAL "man" OR
- "${_linguas}" MATCHES "^;*$" OR
- ";${_linguas};" MATCHES ";${_dir};" )
- add_subdirectory( ${_dir} )
- endif( )
- endif()
-endforeach()
diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt
deleted file mode 100644
index ba3ef3e..0000000
--- a/doc/en/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-tde_create_handbook( DESTINATION ${PROJECT_NAME} )
diff --git a/src/tdmtheme.cpp b/src/tdmtheme.cpp
index 03df749..df3b89e 100644
--- a/src/tdmtheme.cpp
+++ b/src/tdmtheme.cpp
@@ -111,10 +111,10 @@ TDMThemeWidget::TDMThemeWidget( TQWidget *parent, const char *name, const TQStri
ml->addWidget( bRemoveTheme, 4, 1 );
- connect( themeWidget, TQT_SIGNAL(selectionChanged()), TQT_SLOT(themeSelected()) );
- connect( bInstallTheme, TQT_SIGNAL(clicked()), TQT_SLOT(installNewTheme()) );
- connect( bRemoveTheme, TQT_SIGNAL(clicked()), TQT_SLOT(removeSelectedThemes()) );
- connect( cUseTheme, TQT_SIGNAL( toggled( bool ) ), TQT_SLOT( toggleUseTheme( bool ) ) );
+ connect( themeWidget, TQ_SIGNAL(selectionChanged()), TQ_SLOT(themeSelected()) );
+ connect( bInstallTheme, TQ_SIGNAL(clicked()), TQ_SLOT(installNewTheme()) );
+ connect( bRemoveTheme, TQ_SIGNAL(clicked()), TQ_SLOT(removeSelectedThemes()) );
+ connect( cUseTheme, TQ_SIGNAL( toggled( bool ) ), TQ_SLOT( toggleUseTheme( bool ) ) );
TQStringList themeDirs = TDEGlobal::dirs()->findDirs("data","tdm/");
themeDir = TDEGlobal::dirs()->findDirs("data","tdm/").last();
diff --git a/src/tdmtheme.h b/src/tdmtheme.h
index b04006a..c41fc5e 100644
--- a/src/tdmtheme.h
+++ b/src/tdmtheme.h
@@ -34,7 +34,7 @@ class TQListView;
class TQCheckBox;
class TDMThemeWidget : public TDECModule {
- Q_OBJECT
+ TQ_OBJECT
public:
diff --git a/translations/CMakeLists.txt b/translations/CMakeLists.txt
deleted file mode 100644
index 42b186a..0000000
--- a/translations/CMakeLists.txt
+++ /dev/null
@@ -1 +0,0 @@
-tde_auto_add_subdirectories()
diff --git a/translations/desktop_files/tdmtheme.desktop/pt.po b/translations/desktop_files/tdmtheme.desktop/pt.po
new file mode 100644
index 0000000..ed226d5
--- /dev/null
+++ b/translations/desktop_files/tdmtheme.desktop/pt.po
@@ -0,0 +1,28 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Hugo Carvalho <hugokarvalho@hotmail.com>, 2020, 2021.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-05-06 15:47+0200\n"
+"PO-Revision-Date: 2021-04-09 14:00+0000\n"
+"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
+"Language-Team: Portuguese <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/tdmtheme-tdmthemedesktop/pt/>\n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 4.5.3\n"
+
+#. Comment
+#: tdmtheme.desktop:14
+msgid "tdmtheme - TDM Theme Manager"
+msgstr "tdmtheme - Gestor de Temas TDM"
+
+#. Name
+#: tdmtheme.desktop:15
+msgid "TDM Theme Manager"
+msgstr "Gestor de Temas TDM"
diff --git a/translations/desktop_files/tdmtheme.desktop/ru.po b/translations/desktop_files/tdmtheme.desktop/ru.po
new file mode 100644
index 0000000..84af157
--- /dev/null
+++ b/translations/desktop_files/tdmtheme.desktop/ru.po
@@ -0,0 +1,29 @@
+# SOME DESCRIPTIVE TITLE.
+# This file is put in the public domain.
+# Andrei Stepanov <adem4ik@gmail.com>, 2024.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-05-06 15:47+0200\n"
+"PO-Revision-Date: 2024-04-21 17:51+0000\n"
+"Last-Translator: Andrei Stepanov <adem4ik@gmail.com>\n"
+"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/tdmtheme-tdmthemedesktop/ru/>\n"
+"Language: ru\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Weblate 4.17\n"
+
+#. Comment
+#: tdmtheme.desktop:14
+msgid "tdmtheme - TDM Theme Manager"
+msgstr "tdmtheme — менеджер тем TDM"
+
+#. Name
+#: tdmtheme.desktop:15
+msgid "TDM Theme Manager"
+msgstr "Управление темами TDM"
diff --git a/translations/messages/CMakeLists.txt b/translations/messages/CMakeLists.txt
deleted file mode 100644
index 75c89f8..0000000
--- a/translations/messages/CMakeLists.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po )
-string( REGEX REPLACE "[ \r\n\t]+" ";" _linguas "$ENV{LINGUAS}" )
-
-foreach( _po ${po_files} )
- get_filename_component( _lang ${_po} NAME_WE )
- if( "${_linguas}" MATCHES "^;*$" OR ";${_linguas};" MATCHES ";${_lang};" )
- if( "${_po}" MATCHES "^([^/]*)/.*" )
- string( REGEX REPLACE "^([^/]*)/.*" "\\1" _component "${_po}" )
- else( )
- set( _component "${PROJECT_NAME}" )
- endif( )
- tde_create_translation( FILES ${_po} LANG ${_lang} OUTPUT_NAME ${_component} )
- endif( )
-endforeach( )
diff --git a/translations/messages/el.po b/translations/messages/el.po
new file mode 100644
index 0000000..da4ca45
--- /dev/null
+++ b/translations/messages/el.po
@@ -0,0 +1,155 @@
+# SOME DESCRIPTIVE TITLE.
+# blu.256 <mavridisf@gmail.com>, 2020, 2021.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2020-05-11 04:30+0200\n"
+"PO-Revision-Date: 2021-01-01 01:00+0000\n"
+"Last-Translator: blu.256 <mavridisf@gmail.com>\n"
+"Language-Team: Greek <https://mirror.git.trinitydesktop.org/weblate/projects/"
+"applications/tdmtheme/el/>\n"
+"Language: el\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.4\n"
+
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr "blu.256"
+
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr "mavridisf@gmail.com"
+
+#: tdmtheme.cpp:71
+msgid ""
+"Theming is not available due to enabled Secure Attention Key (SAK) support"
+msgstr ""
+"Τα θέματα δεν είναι διαθέσιμα γιατί η λειτουργία Secure Attention Key (SAK) "
+"είναι ενεργή."
+
+#: tdmtheme.cpp:76
+msgid "En&able TDM Themes"
+msgstr "&Ενεργοποίηση θεμάτων"
+
+#: tdmtheme.cpp:80
+msgid "Theme"
+msgstr "Θέμα"
+
+#: tdmtheme.cpp:81
+msgid "Author"
+msgstr "Δημιουργός"
+
+#: tdmtheme.cpp:85
+msgid ""
+"This is a list of installed themes.\n"
+"Click the one to be used."
+msgstr ""
+"Αυτή είναι μια λίστα από τα εγκατεστημένα θέματα.\n"
+"Κάντε κλικ στο θέμα που θέλετε να χρησιμοποιήσετε."
+
+#: tdmtheme.cpp:93
+msgid "This is a screen shot of what TDM will look like."
+msgstr ""
+"Αυτό είναι ένα στιγμιότυπο που δείχνει την εμφάνιση του TDM με το επιλεγμένο "
+"θέμα."
+
+#: tdmtheme.cpp:100
+msgid "This contains information about the selected theme."
+msgstr "Εδώ περιέχονται πληροφορίες σχετικά με το επιεγμένο θέμα."
+
+#: tdmtheme.cpp:104
+msgid "Install &new theme"
+msgstr "Εγκατάσταση &νέου θέματος"
+
+#: tdmtheme.cpp:105
+msgid "This will install a theme into the theme directory."
+msgstr ""
+"Αυτή η ενέργεια θα εγκαταστήσει το θέμα σε έναν ειδικό κατάλογο θεμάτων."
+
+#: tdmtheme.cpp:109
+msgid "&Remove theme"
+msgstr "&Διαγραφή θέματος"
+
+#: tdmtheme.cpp:110
+msgid "This will remove the selected theme."
+msgstr "Αυτή η ενέργεια θα διαγράψει το επιλεγμένο θέμα."
+
+#: tdmtheme.cpp:163
+msgid ""
+"I can't find the configuration file for the Login Manager, tdm. Check you "
+"have set up the Login Manager from the Control Center, and that you have "
+"permision to read and write the Login Manager's configuration file.\n"
+"\n"
+" You must set-up the Login Manager before you can use its themes."
+msgstr ""
+"Το αρχείο ρυθμίσεων του Διαχειριστή εισόδου TDM δεν μπορεί να βρεθεί. "
+"Ελέγξτε μήπως δεν έχετε ρυθμίσει τον Διαχειριστή εισόδου από το Κέντρο "
+"ελέγχου ή μήπως δεν έχετε δικαιώματα ανάγνωσης/εγγραφής πάνω στο αρχείο "
+"ρυθμίσεων του Διαχειριστή εισόδου.\n"
+"\n"
+" Πρέπει να ρυθμίσετε πρώτα τον Διαχειριστή εισόδου για να μπορέσετε να "
+"ορίσετε θέμα."
+
+#: tdmtheme.cpp:163
+msgid "Can't find Configuration File"
+msgstr "Το αρχείο ρυθμίσεων δεν μπορεί να βρεθεί"
+
+#: tdmtheme.cpp:274
+msgid "<qt><strong>Copyright:</strong> %1<br/></qt>"
+msgstr "<qt><strong>Copyright:</strong> %1<br/></qt>"
+
+#: tdmtheme.cpp:278
+msgid "<qt><strong>Description:</strong> %1</qt>"
+msgstr "<qt><strong>:</strong> %1</qt>"
+
+#: tdmtheme.cpp:283 tdmtheme.cpp:287
+msgid "Screenshot not available"
+msgstr "Στιγμιότυπο μη διαθέσιμο"
+
+#: tdmtheme.cpp:285
+msgid "No theme selected."
+msgstr "Δεν επελέχθη θέμα."
+
+#: tdmtheme.cpp:293
+msgid "Drag or Type Theme URL"
+msgstr "Σύρετε αρχείο θέματος ή γράψτε το URL του."
+
+#: tdmtheme.cpp:304
+#, c-format
+msgid "Unable to find the TDM theme archive %1."
+msgstr "Αδύνατη γ εύρεση του αρχείου θέματος TDM %1."
+
+#: tdmtheme.cpp:306
+msgid ""
+"Unable to download the TDM theme archive;\n"
+"please check that address %1 is correct."
+msgstr ""
+"Αδύνατη η λήψη του αρχείου θέματος TDM.\n"
+"Βεβαιωθείτε ότι η διεύθυνση %1 είναι σωστή."
+
+#: tdmtheme.cpp:332
+msgid "The file is not a valid TDM theme archive."
+msgstr "Αυτό το αρχείο δεν είναι αρχείο θέματος TDM."
+
+#: tdmtheme.cpp:335
+msgid "Installing TDM themes"
+msgstr "Εγκατάσταση θεμάτων TDM"
+
+#: tdmtheme.cpp:343
+msgid "<qt>Installing <strong>%1</strong> theme</qt>"
+msgstr "<qt>Εγκατάσταση του θέματος <strong>%1</strong></qt>"
+
+#: tdmtheme.cpp:379
+msgid "Are you sure you want to remove this TDM theme?"
+msgstr "Σίγουρα θέλετε να διαγράψετε αυτό το θέμα TDM;"
+
+#: tdmtheme.cpp:380
+msgid "Remove theme?"
+msgstr "Διαγραφή θέματος;"
diff --git a/translations/messages/pl.po b/translations/messages/pl.po
index 502c0e6..fbf70c3 100644
--- a/translations/messages/pl.po
+++ b/translations/messages/pl.po
@@ -17,14 +17,12 @@ msgstr ""
"X-Generator: Weblate 4.1.1\n"
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
-#, ignore-inconsistent
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr "Jan Stolarek"
#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
-#, ignore-inconsistent
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
@@ -91,8 +89,8 @@ msgid ""
msgstr ""
"Nie można znaleźć konfiguracji Menedżera Logowania tdm. Upewnij się że "
"skonfigurowałeś Menedżera Logowania w Centrum Sterowania i że posiadasz "
-"uprawnienia do zapisu i odczytu plików konfiguracyjnych Menedżera Logowania."
-"\n"
+"uprawnienia do zapisu i odczytu plików konfiguracyjnych Menedżera "
+"Logowania.\n"
"\n"
"Musisz skonfigurować Menedżera Logowania zanim będziesz mógł zacząć używać "
"jego motywów."
diff --git a/translations/messages/pt.po b/translations/messages/pt.po
new file mode 100644
index 0000000..0a82c5c
--- /dev/null
+++ b/translations/messages/pt.po
@@ -0,0 +1,139 @@
+# SOME DESCRIPTIVE TITLE.
+# Hugo Carvalho <hugokarvalho@hotmail.com>, 2020, 2021.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2020-05-11 04:30+0200\n"
+"PO-Revision-Date: 2021-11-23 15:59+0000\n"
+"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
+"Language-Team: Portuguese <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/tdmtheme/pt/>\n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 4.9.1\n"
+
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr "Hugo Carvalho"
+
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr "hugokarvalho@hotmail.com"
+
+#: tdmtheme.cpp:71
+msgid ""
+"Theming is not available due to enabled Secure Attention Key (SAK) support"
+msgstr ""
+
+#: tdmtheme.cpp:76
+msgid "En&able TDM Themes"
+msgstr ""
+
+#: tdmtheme.cpp:80
+msgid "Theme"
+msgstr "Tema"
+
+#: tdmtheme.cpp:81
+msgid "Author"
+msgstr "Autor"
+
+#: tdmtheme.cpp:85
+msgid ""
+"This is a list of installed themes.\n"
+"Click the one to be used."
+msgstr ""
+
+#: tdmtheme.cpp:93
+msgid "This is a screen shot of what TDM will look like."
+msgstr ""
+
+#: tdmtheme.cpp:100
+msgid "This contains information about the selected theme."
+msgstr ""
+
+#: tdmtheme.cpp:104
+msgid "Install &new theme"
+msgstr ""
+
+#: tdmtheme.cpp:105
+msgid "This will install a theme into the theme directory."
+msgstr ""
+
+#: tdmtheme.cpp:109
+msgid "&Remove theme"
+msgstr ""
+
+#: tdmtheme.cpp:110
+msgid "This will remove the selected theme."
+msgstr ""
+
+#: tdmtheme.cpp:163
+msgid ""
+"I can't find the configuration file for the Login Manager, tdm. Check you "
+"have set up the Login Manager from the Control Center, and that you have "
+"permision to read and write the Login Manager's configuration file.\n"
+"\n"
+" You must set-up the Login Manager before you can use its themes."
+msgstr ""
+
+#: tdmtheme.cpp:163
+msgid "Can't find Configuration File"
+msgstr ""
+
+#: tdmtheme.cpp:274
+msgid "<qt><strong>Copyright:</strong> %1<br/></qt>"
+msgstr ""
+
+#: tdmtheme.cpp:278
+msgid "<qt><strong>Description:</strong> %1</qt>"
+msgstr ""
+
+#: tdmtheme.cpp:283 tdmtheme.cpp:287
+msgid "Screenshot not available"
+msgstr ""
+
+#: tdmtheme.cpp:285
+msgid "No theme selected."
+msgstr ""
+
+#: tdmtheme.cpp:293
+msgid "Drag or Type Theme URL"
+msgstr ""
+
+#: tdmtheme.cpp:304
+#, c-format
+msgid "Unable to find the TDM theme archive %1."
+msgstr ""
+
+#: tdmtheme.cpp:306
+msgid ""
+"Unable to download the TDM theme archive;\n"
+"please check that address %1 is correct."
+msgstr ""
+
+#: tdmtheme.cpp:332
+msgid "The file is not a valid TDM theme archive."
+msgstr ""
+
+#: tdmtheme.cpp:335
+msgid "Installing TDM themes"
+msgstr ""
+
+#: tdmtheme.cpp:343
+msgid "<qt>Installing <strong>%1</strong> theme</qt>"
+msgstr ""
+
+#: tdmtheme.cpp:379
+msgid "Are you sure you want to remove this TDM theme?"
+msgstr ""
+
+#: tdmtheme.cpp:380
+msgid "Remove theme?"
+msgstr ""
diff --git a/translations/messages/ru.po b/translations/messages/ru.po
new file mode 100644
index 0000000..8edd5ba
--- /dev/null
+++ b/translations/messages/ru.po
@@ -0,0 +1,152 @@
+# SOME DESCRIPTIVE TITLE.
+# blu.256 <mavridisf@gmail.com>, 2020, 2021.
+# Alexander Golubev <fatzer2@gmail.com>, 2022, 2024.
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2020-05-11 04:30+0200\n"
+"PO-Revision-Date: 2024-03-02 07:44+0000\n"
+"Last-Translator: Alexander Golubev <fatzer2@gmail.com>\n"
+"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
+"projects/applications/tdmtheme/ru/>\n"
+"Language: ru\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Weblate 4.17\n"
+
+#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
+msgid ""
+"_: NAME OF TRANSLATORS\n"
+"Your names"
+msgstr "blu.256"
+
+#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
+msgid ""
+"_: EMAIL OF TRANSLATORS\n"
+"Your emails"
+msgstr "mavridisf@gmail.com"
+
+#: tdmtheme.cpp:71
+msgid ""
+"Theming is not available due to enabled Secure Attention Key (SAK) support"
+msgstr ""
+"Поддержка тем недоступна так как включёна клавиша безопасной аутентификации "
+"(SAK)"
+
+#: tdmtheme.cpp:76
+msgid "En&able TDM Themes"
+msgstr "&Включить темы TDM"
+
+#: tdmtheme.cpp:80
+msgid "Theme"
+msgstr "Тема"
+
+#: tdmtheme.cpp:81
+msgid "Author"
+msgstr "Автор"
+
+#: tdmtheme.cpp:85
+msgid ""
+"This is a list of installed themes.\n"
+"Click the one to be used."
+msgstr ""
+"Это – список установленных тем.\n"
+"Нажмите на тему, которую хотите использовать."
+
+#: tdmtheme.cpp:93
+msgid "This is a screen shot of what TDM will look like."
+msgstr "Это – скриншот с примером выбранной темы TDM."
+
+#: tdmtheme.cpp:100
+msgid "This contains information about the selected theme."
+msgstr "Здесь содержится информация о выбранной теме."
+
+#: tdmtheme.cpp:104
+msgid "Install &new theme"
+msgstr "Установить &новую тему"
+
+#: tdmtheme.cpp:105
+msgid "This will install a theme into the theme directory."
+msgstr "Данное действие скопирует тему в специальный каталог."
+
+#: tdmtheme.cpp:109
+msgid "&Remove theme"
+msgstr "&Удалить тему"
+
+#: tdmtheme.cpp:110
+msgid "This will remove the selected theme."
+msgstr "Данное действие удалит выбранную тему."
+
+#: tdmtheme.cpp:163
+msgid ""
+"I can't find the configuration file for the Login Manager, tdm. Check you "
+"have set up the Login Manager from the Control Center, and that you have "
+"permision to read and write the Login Manager's configuration file.\n"
+"\n"
+" You must set-up the Login Manager before you can use its themes."
+msgstr ""
+"Конфигурационный файл менеджера входа TDM не может быть найден. Убедитесь, "
+"что Вы настроили менеджер входа в Центре управления и что у Вас есть права "
+"на чтение и запись конфигурационного файла менеджера входа.\n"
+"\n"
+" Вы должны настроить менеджер входа перед тем как использовать темы для него."
+
+#: tdmtheme.cpp:163
+msgid "Can't find Configuration File"
+msgstr "Конфигурационный файл не найден"
+
+#: tdmtheme.cpp:274
+msgid "<qt><strong>Copyright:</strong> %1<br/></qt>"
+msgstr "<qt><strong>Copyright:</strong> %1<br/></qt>"
+
+#: tdmtheme.cpp:278
+msgid "<qt><strong>Description:</strong> %1</qt>"
+msgstr "<qt><strong>Описание:</strong> %1</qt>"
+
+#: tdmtheme.cpp:283 tdmtheme.cpp:287
+msgid "Screenshot not available"
+msgstr "Снипок экрана недоступен"
+
+#: tdmtheme.cpp:285
+msgid "No theme selected."
+msgstr "Тема не выбрана."
+
+#: tdmtheme.cpp:293
+msgid "Drag or Type Theme URL"
+msgstr "Перетащите тему сюда или введите её URL-адрес"
+
+#: tdmtheme.cpp:304
+#, c-format
+msgid "Unable to find the TDM theme archive %1."
+msgstr "Архив темы TDM %1 не найден."
+
+#: tdmtheme.cpp:306
+msgid ""
+"Unable to download the TDM theme archive;\n"
+"please check that address %1 is correct."
+msgstr ""
+"Невозможно скачать архив темы TDM.\n"
+"Пожалуйста, убедитесь в верности адреса %1."
+
+#: tdmtheme.cpp:332
+msgid "The file is not a valid TDM theme archive."
+msgstr "Файл не является архивом темы TDM."
+
+#: tdmtheme.cpp:335
+msgid "Installing TDM themes"
+msgstr "Установка тем TDM"
+
+#: tdmtheme.cpp:343
+msgid "<qt>Installing <strong>%1</strong> theme</qt>"
+msgstr "<qt>Кстановка темы <strong>%1</strong> </qt>"
+
+#: tdmtheme.cpp:379
+msgid "Are you sure you want to remove this TDM theme?"
+msgstr "Вы уверены, что хотите удалить данную тему TDM?"
+
+#: tdmtheme.cpp:380
+msgid "Remove theme?"
+msgstr "Удалить тему?"