Compare commits

...

15 Commits

Author SHA1 Message Date
TDE Gitea ee68d4d663 Merge translation files from master branch. 1 month ago
Michele Calgaro b4fccc8640
Don't use obsolete header kapp.h
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e92e39565b)
4 months ago
TDE Gitea 486774e96e Merge translation files from master branch. 4 months ago
Michele Calgaro 2568c7e3cd
Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 2bc65709c4)
7 months ago
Michele Calgaro 9674d36c78
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit b400439832)
10 months ago
TDE Gitea ad75f0b7ae Merge translation files from master branch. 10 months ago
TDE Gitea 86ecddaed1 Merge translation files from master branch. 10 months ago
TDE Gitea f3a45a1270 Merge translation files from master branch. 11 months ago
Michele Calgaro cd22ad3d30
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit a1dc8556c7)
11 months ago
Michele Calgaro 487fdba42c
Use centralized cmake version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 42a0bc1da8)
11 months ago
Michele Calgaro c049126a5d
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 66f17b6eee)
1 year ago
Michele Calgaro 4f1c8e54e4
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 4586cddf97)
1 year ago
Slávek Banko 2b6bd386e7
Raise the minimum required version of CMake to 3.5.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 08130bc103)
1 year ago
Michele Calgaro 15c4aae718
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 20e2fd1f63)
1 year ago
Michele Calgaro da029309f7
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit fb249e2aa2)
2 years ago

@ -9,7 +9,11 @@
# #
################################################# #################################################
cmake_minimum_required( VERSION 3.1 )
##### set project version ########################
include( TDEVersion )
cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} )
##### include our cmake modules ################# ##### include our cmake modules #################

@ -7,7 +7,11 @@
############################################ ############################################
cmake_minimum_required( VERSION 3.1 ) ##### set project version ########################
include( TDEVersion )
cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} )
tde_set_project_version( )
#### general package setup #### general package setup
@ -31,11 +35,6 @@ include( CheckCXXSourceCompiles )
include( TDEMacros ) include( TDEMacros )
##### set version number ########################
tde_set_project_version( )
##### setup install paths ##### setup install paths
include( TDESetupPaths ) include( TDESetupPaths )

@ -1,7 +1,7 @@
#define VERSION "@VERSION@" #define VERSION "@VERSION@"
// Defined if you have fvisibility and fvisibility-inlines-hidden support. // Defined if you have fvisibility and fvisibility-inlines-hidden support.
#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1 #cmakedefine __TDE_HAVE_GCC_VISIBILITY 1
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */ significant byte first (like Motorola and SPARC, unlike Intel). */

@ -28,7 +28,7 @@ backup system for TDE.
.PP .PP
The behavior is quite simple: you choose the files you want to backup, you set up the frequency and the number of backup you want to have, and Keep will backup them automatically. The behavior is quite simple: you choose the files you want to backup, you set up the frequency and the number of backup you want to have, and Keep will backup them automatically.
.SH OPTIONS .SH OPTIONS
All TDE and Qt All TDE and TQt
programs accept a some common command-line options. keep has no programs accept a some common command-line options. keep has no
application-specific options. application-specific options.
.PP .PP
@ -36,8 +36,8 @@ application-specific options.
\*(T<\fB\-\-help\fR\*(T> \*(T<\fB\-\-help\fR\*(T>
Show help about options Show help about options
.TP .TP
\*(T<\fB\-\-help\-qt\fR\*(T> \*(T<\fB\-\-help\-tqt\fR\*(T>
Show Qt specific options Show TQt specific options
.TP .TP
\*(T<\fB\-\-help\-tde\fR\*(T> \*(T<\fB\-\-help\-tde\fR\*(T>
Show TDE specific options Show TDE specific options

@ -82,11 +82,11 @@ void AddBackupWizard::initView()
void AddBackupWizard::initConnections() void AddBackupWizard::initConnections()
{ {
connect( addBackupWizard1View->source, TQT_SIGNAL( textChanged(const TQString&)), this, TQT_SLOT( slotPage1Changed() ) ); connect( addBackupWizard1View->source, TQ_SIGNAL( textChanged(const TQString&)), this, TQ_SLOT( slotPage1Changed() ) );
connect( addBackupWizard2View->dest, TQT_SIGNAL( textChanged(const TQString&)), this, TQT_SLOT( slotPage2Changed() ) ); connect( addBackupWizard2View->dest, TQ_SIGNAL( textChanged(const TQString&)), this, TQ_SLOT( slotPage2Changed() ) );
connect( addBackupWizard3View->advancedConfig, TQT_SIGNAL( clicked()),this,TQT_SLOT(slotShowAdvancedConfig())); connect( addBackupWizard3View->advancedConfig, TQ_SIGNAL( clicked()),this,TQ_SLOT(slotShowAdvancedConfig()));
connect( addBackupWizard1View->includeExclude, TQT_SIGNAL( clicked()),this,TQT_SLOT(slotShowIncludeExclude())); connect( addBackupWizard1View->includeExclude, TQ_SIGNAL( clicked()),this,TQ_SLOT(slotShowIncludeExclude()));
connect( finishButton(), TQT_SIGNAL( clicked()), this, TQT_SLOT( slotFinishClicked() ) ); connect( finishButton(), TQ_SIGNAL( clicked()), this, TQ_SLOT( slotFinishClicked() ) );
} }
void AddBackupWizard::setupPage1() void AddBackupWizard::setupPage1()

@ -31,7 +31,7 @@
class AddBackupWizard: public KWizard class AddBackupWizard: public KWizard
{ {
Q_OBJECT TQ_OBJECT
public: public:
AddBackupWizard(TQWidget *parent, const char *name); AddBackupWizard(TQWidget *parent, const char *name);

@ -25,7 +25,7 @@
class AdvancedBackupConfigDialog: public KDialogBase class AdvancedBackupConfigDialog: public KDialogBase
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -52,7 +52,7 @@ BackupConfigDialog::BackupConfigDialog(TQWidget *parent):KDialogBase(Plain, i18n
topLayout->addWidget( m_backupListWidget ); topLayout->addWidget( m_backupListWidget );
setMainWidget(page); setMainWidget(page);
connect( this, TQT_SIGNAL( okClicked()),this, TQT_SLOT(saveSettings())); connect( this, TQ_SIGNAL( okClicked()),this, TQ_SLOT(saveSettings()));
} }
void BackupConfigDialog::saveSettings() void BackupConfigDialog::saveSettings()

@ -26,7 +26,7 @@
class BackupConfigDialog: public KDialogBase class BackupConfigDialog: public KDialogBase
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -35,9 +35,9 @@ BackupListWidget::BackupListWidget(TQWidget *parent,char *name): BackupListView(
new ListViewToolTip(m_lstBackup); new ListViewToolTip(m_lstBackup);
slotReadSettings(); slotReadSettings();
connect( m_btnAdd, TQT_SIGNAL( clicked()), this, TQT_SLOT( slotAddClicked() ) ); connect( m_btnAdd, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotAddClicked() ) );
connect( m_btnRemove, TQT_SIGNAL( clicked()), this, TQT_SLOT( slotRemoveClicked() ) ); connect( m_btnRemove, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotRemoveClicked() ) );
connect( m_btnEdit, TQT_SIGNAL( clicked()), this, TQT_SLOT( slotEditClicked() ) ); connect( m_btnEdit, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotEditClicked() ) );
} }
BackupListWidget::~BackupListWidget() BackupListWidget::~BackupListWidget()
@ -75,7 +75,7 @@ void BackupListWidget::slotSaveSettings()
void BackupListWidget::slotAddClicked() void BackupListWidget::slotAddClicked()
{ {
AddBackupWizard *wizard = new AddBackupWizard(this,"addBackupWizard"); AddBackupWizard *wizard = new AddBackupWizard(this,"addBackupWizard");
connect(wizard,TQT_SIGNAL(backupSetted(Backup) ), this, TQT_SLOT(slotAddBackup(Backup))); connect(wizard,TQ_SIGNAL(backupSetted(Backup) ), this, TQ_SLOT(slotAddBackup(Backup)));
wizard->show(); wizard->show();
} }
@ -86,7 +86,7 @@ void BackupListWidget::slotEditClicked()
{ {
BackupListViewItem *backupItem = static_cast<BackupListViewItem*>(item); BackupListViewItem *backupItem = static_cast<BackupListViewItem*>(item);
AddBackupWizard *wizard = new AddBackupWizard(backupItem->backup(),this,"addBackupWizard"); AddBackupWizard *wizard = new AddBackupWizard(backupItem->backup(),this,"addBackupWizard");
connect(wizard,TQT_SIGNAL(backupSetted(Backup) ), this, TQT_SLOT(slotUpdateBackup(Backup))); connect(wizard,TQ_SIGNAL(backupSetted(Backup) ), this, TQ_SLOT(slotUpdateBackup(Backup)));
wizard->show(); wizard->show();
} }
} }

@ -24,7 +24,7 @@
class BackupListWidget: public BackupListView class BackupListWidget: public BackupListView
{ {
Q_OBJECT TQ_OBJECT
public: public:
BackupListWidget(TQWidget *parent, char *name); BackupListWidget(TQWidget *parent, char *name);

@ -52,9 +52,9 @@ ForceBackupDialog::ForceBackupDialog(TQWidget *parent):KDialogBase(Plain, i18n("
loadBackupList(); loadBackupList();
m_manager = new RDBManager(); m_manager = new RDBManager();
connect( m_manager, TQT_SIGNAL(backupError(Backup,TQString)), this, TQT_SLOT(slotBackupError(Backup,TQString)) ); connect( m_manager, TQ_SIGNAL(backupError(Backup,TQString)), this, TQ_SLOT(slotBackupError(Backup,TQString)) );
connect( this, TQT_SIGNAL(okClicked()), this, TQT_SLOT(slotForceBackup())); connect( this, TQ_SIGNAL(okClicked()), this, TQ_SLOT(slotForceBackup()));
} }
ForceBackupDialog::~ForceBackupDialog() ForceBackupDialog::~ForceBackupDialog()

@ -28,7 +28,7 @@
class ForceBackupDialog: public KDialogBase class ForceBackupDialog: public KDialogBase
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -49,9 +49,9 @@ IncludeExcludeDialog::IncludeExcludeDialog(TQWidget *parent):KDialogBase(Plain,
m_view->includeExcludeList->setSorting(-1); m_view->includeExcludeList->setSorting(-1);
connect(m_view->include,TQT_SIGNAL(clicked()),this,TQT_SLOT(slotInclude())); connect(m_view->include,TQ_SIGNAL(clicked()),this,TQ_SLOT(slotInclude()));
connect(m_view->exclude,TQT_SIGNAL(clicked()),this,TQT_SLOT(slotExclude())); connect(m_view->exclude,TQ_SIGNAL(clicked()),this,TQ_SLOT(slotExclude()));
connect(m_view->remove,TQT_SIGNAL(clicked()),this,TQT_SLOT(slotRemove())); connect(m_view->remove,TQ_SIGNAL(clicked()),this,TQ_SLOT(slotRemove()));
resize( TQSize(450,450).expandedTo(minimumSizeHint()) ); resize( TQSize(450,450).expandedTo(minimumSizeHint()) );
} }

@ -26,7 +26,7 @@
class IncludeExcludeDialog: public KDialogBase class IncludeExcludeDialog: public KDialogBase
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -27,7 +27,7 @@
#include <kdebug.h> #include <kdebug.h>
#include <tdelocale.h> #include <tdelocale.h>
#include <kactivelabel.h> #include <kactivelabel.h>
#include <kapp.h> #include <tdeapplication.h>
#include <kled.h> #include <kled.h>
#include <kpushbutton.h> #include <kpushbutton.h>
#include <tdemessagebox.h> #include <tdemessagebox.h>
@ -78,26 +78,26 @@ KeepMainWindow::~KeepMainWindow()
void KeepMainWindow::initActions() void KeepMainWindow::initActions()
{ {
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(close()), actionCollection()); KStdAction::quit(this, TQ_SLOT(close()), actionCollection());
new TDEAction( i18n("Check rdiff-backup"), "application-vnd.tde.info", "", TQT_TQOBJECT(this), TQT_SLOT(slotCheckRDB()), actionCollection(), "check_rdiff-backup" ); new TDEAction( i18n("Check rdiff-backup"), "application-vnd.tde.info", "", this, TQ_SLOT(slotCheckRDB()), actionCollection(), "check_rdiff-backup" );
new TDEAction( i18n("Configure backups"), "configure", "", TQT_TQOBJECT(this), TQT_SLOT(slotConfigureBackup()), actionCollection(), "configure_backups" ); new TDEAction( i18n("Configure backups"), "configure", "", this, TQ_SLOT(slotConfigureBackup()), actionCollection(), "configure_backups" );
new TDEAction( i18n("Configure"), "configure", "", TQT_TQOBJECT(this), TQT_SLOT(slotConfigure()), actionCollection(), "configure_keep" ); new TDEAction( i18n("Configure"), "configure", "", this, TQ_SLOT(slotConfigure()), actionCollection(), "configure_keep" );
new TDEAction( i18n("Add Backup"), "add_backup", "", TQT_TQOBJECT(this), TQT_SLOT(slotAddBackupWizard()), actionCollection(), "add_backup" ); new TDEAction( i18n("Add Backup"), "add_backup", "", this, TQ_SLOT(slotAddBackupWizard()), actionCollection(), "add_backup" );
new TDEAction( i18n("Restore Backup"), "restore_dir", "", TQT_TQOBJECT(this), TQT_SLOT(slotRestoreBackupWizard()), actionCollection(), "restore_backup" ); new TDEAction( i18n("Restore Backup"), "restore_dir", "", this, TQ_SLOT(slotRestoreBackupWizard()), actionCollection(), "restore_backup" );
new TDEAction( i18n("Backup Now"), "force_backup", "", TQT_TQOBJECT(this), TQT_SLOT(slotForceBackup()), actionCollection(), "force_backup" ); new TDEAction( i18n("Backup Now"), "force_backup", "", this, TQ_SLOT(slotForceBackup()), actionCollection(), "force_backup" );
new TDEAction( i18n("View log"), "text-x-log", "", TQT_TQOBJECT(this), TQT_SLOT(slotViewLog()), actionCollection(), "view_log"); new TDEAction( i18n("View log"), "text-x-log", "", this, TQ_SLOT(slotViewLog()), actionCollection(), "view_log");
} }
void KeepMainWindow::initConnections() void KeepMainWindow::initConnections()
{ {
connect( m_actionView->m_btnAddWizard, TQT_SIGNAL( clicked()), TQT_TQOBJECT(this), TQT_SLOT( slotAddBackupWizard() ) ); connect( m_actionView->m_btnAddWizard, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotAddBackupWizard() ) );
connect( m_actionView->m_btnRestoreWizard, TQT_SIGNAL( clicked()), TQT_TQOBJECT(this), TQT_SLOT( slotRestoreBackupWizard() ) ); connect( m_actionView->m_btnRestoreWizard, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotRestoreBackupWizard() ) );
connect( m_actionView->m_btnForce, TQT_SIGNAL( clicked()), TQT_TQOBJECT(this), TQT_SLOT( slotForceBackup() ) ); connect( m_actionView->m_btnForce, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotForceBackup() ) );
connect( m_actionView->m_btnBackupConfig, TQT_SIGNAL( clicked()), TQT_TQOBJECT(this), TQT_SLOT( slotConfigureBackup() ) ); connect( m_actionView->m_btnBackupConfig, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotConfigureBackup() ) );
connect( m_actionView->m_btnLog, TQT_SIGNAL( clicked()), TQT_TQOBJECT(this), TQT_SLOT( slotViewLog() ) ); connect( m_actionView->m_btnLog, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotViewLog() ) );
connect( m_actionView->m_btnLoadDaemon, TQT_SIGNAL( clicked()), TQT_TQOBJECT(this), TQT_SLOT( slotLoadDaemon() ) ); connect( m_actionView->m_btnLoadDaemon, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotLoadDaemon() ) );
connect( m_actionView->m_btnUnloadDaemon, TQT_SIGNAL( clicked()), TQT_TQOBJECT(this), TQT_SLOT( slotUnloadDaemon() ) ); connect( m_actionView->m_btnUnloadDaemon, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotUnloadDaemon() ) );
connect( m_actionView->m_btnReloadDaemon, TQT_SIGNAL( clicked()), TQT_TQOBJECT(this), TQT_SLOT( slotReloadDaemon() ) ); connect( m_actionView->m_btnReloadDaemon, TQ_SIGNAL( clicked()), this, TQ_SLOT( slotReloadDaemon() ) );
} }
void KeepMainWindow::slotRefreshGUI() void KeepMainWindow::slotRefreshGUI()
@ -169,7 +169,7 @@ void KeepMainWindow::slotConfigure()
void KeepMainWindow::slotAddBackupWizard() void KeepMainWindow::slotAddBackupWizard()
{ {
AddBackupWizard *addBackupWizard = new AddBackupWizard(this, "addBackupWizard"); AddBackupWizard *addBackupWizard = new AddBackupWizard(this, "addBackupWizard");
connect( addBackupWizard, TQT_SIGNAL( backupSetted(Backup)), TQT_TQOBJECT(this), TQT_SLOT( slotAddBackup(Backup) ) ); connect( addBackupWizard, TQ_SIGNAL( backupSetted(Backup)), this, TQ_SLOT( slotAddBackup(Backup) ) );
addBackupWizard->show(); addBackupWizard->show();
} }

@ -28,7 +28,7 @@
class KeepMainWindow: public TDEMainWindow class KeepMainWindow: public TDEMainWindow
{ {
Q_OBJECT TQ_OBJECT
public: public:
KeepMainWindow(TQWidget *parent, const char *name); KeepMainWindow(TQWidget *parent, const char *name);

@ -25,7 +25,7 @@
class LogDialog: public KDialogBase class LogDialog: public KDialogBase
{ {
Q_OBJECT TQ_OBJECT
public: public:

@ -40,7 +40,7 @@
RestoreBackupWizard::RestoreBackupWizard(TQWidget *parent,const char* name): KWizard( parent, name, true) RestoreBackupWizard::RestoreBackupWizard(TQWidget *parent,const char* name): KWizard( parent, name, true)
{ {
m_manager = new RDBManager(); m_manager = new RDBManager();
connect( m_manager, TQT_SIGNAL(backupError(Backup,TQString)), this, TQT_SLOT(slotRestoreError(Backup,TQString)) ); connect( m_manager, TQ_SIGNAL(backupError(Backup,TQString)), this, TQ_SLOT(slotRestoreError(Backup,TQString)) );
TDEIconLoader icons; TDEIconLoader icons;
this->setIcon( icons.loadIcon( "wizard",TDEIcon::Small )); this->setIcon( icons.loadIcon( "wizard",TDEIcon::Small ));
@ -48,9 +48,9 @@ RestoreBackupWizard::RestoreBackupWizard(TQWidget *parent,const char* name): KWi
m_popup = new TDEPopupMenu(this); m_popup = new TDEPopupMenu(this);
m_popup->insertTitle(i18n("Menu")); m_popup->insertTitle(i18n("Menu"));
m_popup->insertItem(i18n("Show differences destination/backup"), this, TQT_SLOT(slotShowDiff())); m_popup->insertItem(i18n("Show differences destination/backup"), this, TQ_SLOT(slotShowDiff()));
m_popup->insertItem(i18n("List changed files"), this, TQT_SLOT(slotShowChanged())); m_popup->insertItem(i18n("List changed files"), this, TQ_SLOT(slotShowChanged()));
m_popup->insertItem(i18n("List files"), this, TQT_SLOT(slotShowList())); m_popup->insertItem(i18n("List files"), this, TQ_SLOT(slotShowList()));
setupPage1(); setupPage1();
setupPage2(); setupPage2();
@ -73,25 +73,25 @@ RestoreBackupWizard::~RestoreBackupWizard()
void RestoreBackupWizard::initConnections() void RestoreBackupWizard::initConnections()
{ {
// If custom source setted // If custom source setted
connect(restoreBackupWizard1View->btnCustomSource, TQT_SIGNAL( toggled(bool)),this,TQT_SLOT(slotCustomSourceChecked(bool))); connect(restoreBackupWizard1View->btnCustomSource, TQ_SIGNAL( toggled(bool)),this,TQ_SLOT(slotCustomSourceChecked(bool)));
// Date selection popup menu // Date selection popup menu
connect(restoreBackupWizard3View->incrementList, TQT_SIGNAL(contextMenu (TDEListView *, TQListViewItem *, const TQPoint &)), this, TQT_SLOT(slotContextMenu(TDEListView *,TQListViewItem*,const TQPoint&))); connect(restoreBackupWizard3View->incrementList, TQ_SIGNAL(contextMenu (TDEListView *, TQListViewItem *, const TQPoint &)), this, TQ_SLOT(slotContextMenu(TDEListView *,TQListViewItem*,const TQPoint&)));
// Page 1 changes // Page 1 changes
connect(restoreBackupWizard1View->m_lstBackup,TQT_SIGNAL(selectionChanged()),this,TQT_SLOT(slotPage1Changed())); connect(restoreBackupWizard1View->m_lstBackup,TQ_SIGNAL(selectionChanged()),this,TQ_SLOT(slotPage1Changed()));
connect(restoreBackupWizard1View->btnCustomSource,TQT_SIGNAL(toggled(bool)),this,TQT_SLOT(slotPage1Changed())); connect(restoreBackupWizard1View->btnCustomSource,TQ_SIGNAL(toggled(bool)),this,TQ_SLOT(slotPage1Changed()));
connect(restoreBackupWizard1View->customSource,TQT_SIGNAL(textChanged(const TQString &)),this,TQT_SLOT(slotPage1Changed())); connect(restoreBackupWizard1View->customSource,TQ_SIGNAL(textChanged(const TQString &)),this,TQ_SLOT(slotPage1Changed()));
// Page 2 changes // Page 2 changes
connect(restoreBackupWizard2View->btnCustomDest,TQT_SIGNAL(toggled(bool)),this,TQT_SLOT(slotPage2Changed())); connect(restoreBackupWizard2View->btnCustomDest,TQ_SIGNAL(toggled(bool)),this,TQ_SLOT(slotPage2Changed()));
connect(restoreBackupWizard2View->customDest,TQT_SIGNAL(textChanged(const TQString &)),this,TQT_SLOT(slotPage2Changed())); connect(restoreBackupWizard2View->customDest,TQ_SIGNAL(textChanged(const TQString &)),this,TQ_SLOT(slotPage2Changed()));
// Page 3 Changes // Page 3 Changes
connect(restoreBackupWizard3View->incrementList,TQT_SIGNAL(selectionChanged()),this,TQT_SLOT(slotPage3Changed())); connect(restoreBackupWizard3View->incrementList,TQ_SIGNAL(selectionChanged()),this,TQ_SLOT(slotPage3Changed()));
// Finish button // Finish button
connect(finishButton(),TQT_SIGNAL(clicked()),this,TQT_SLOT(slotRestoreBackup())); connect(finishButton(),TQ_SIGNAL(clicked()),this,TQ_SLOT(slotRestoreBackup()));
} }
void RestoreBackupWizard::slotPage1Changed() void RestoreBackupWizard::slotPage1Changed()
@ -118,7 +118,7 @@ void RestoreBackupWizard::slotPage1Changed()
{ {
RDBManager manager; RDBManager manager;
TQDateTime lastBackup = manager.lastIncrement(b); TQDateTime lastBackup = manager.lastIncrement(b);
restoreBackupWizard3View->lblLastBackup->setText(lastBackup.toString(Qt::LocalDate)); restoreBackupWizard3View->lblLastBackup->setText(lastBackup.toString(TQt::LocalDate));
TQValueList<TQDateTime> increments = manager.incrementList(b); TQValueList<TQDateTime> increments = manager.incrementList(b);
if ( increments.size() != 0 ) if ( increments.size() != 0 )
{ {
@ -222,7 +222,7 @@ void RestoreBackupWizard::setupPage3()
restoreBackupWizard3View = new RestoreBackupWizard3View(page3,"restoreBackupWizard3View"); restoreBackupWizard3View = new RestoreBackupWizard3View(page3,"restoreBackupWizard3View");
restoreBackupWizard3View->incrementList->setSorting(0,false); restoreBackupWizard3View->incrementList->setSorting(0,false);
restoreBackupWizard3View->lblDate->setText(TQDateTime::currentDateTime().toString(Qt::LocalDate)); restoreBackupWizard3View->lblDate->setText(TQDateTime::currentDateTime().toString(TQt::LocalDate));
addPage( page3, "Date to restore" ); addPage( page3, "Date to restore" );
} }

@ -32,7 +32,7 @@
class RestoreBackupWizard: public KWizard class RestoreBackupWizard: public KWizard
{ {
Q_OBJECT TQ_OBJECT
public: public:
RestoreBackupWizard(TQWidget *parent, const char *name); RestoreBackupWizard(TQWidget *parent, const char *name);

@ -50,7 +50,7 @@ void IncrementListViewItem::setDate(TQDateTime date)
void IncrementListViewItem::setDateText() void IncrementListViewItem::setDateText()
{ {
setText(0, m_date.toString(Qt::LocalDate) ); setText(0, m_date.toString(TQt::LocalDate) );
} }

@ -26,7 +26,7 @@
class RDBListener: public TQObject class RDBListener: public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:
RDBListener(); RDBListener();

@ -62,7 +62,7 @@ TQString RDBManager::compareAtTime(Backup backup, TQDateTime date)
*proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.dest()))); *proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.dest())));
// Adds the listener // Adds the listener
RDBListener *listen = new RDBListener(); RDBListener *listen = new RDBListener();
connect(proc,TQT_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQT_SLOT(receivedStdOut(TDEProcess *,char *,int))); connect(proc,TQ_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQ_SLOT(receivedStdOut(TDEProcess *,char *,int)));
// Starts the process // Starts the process
if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) ) if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) )
kdDebug() << "Error starting rdiff-backup" << endl; kdDebug() << "Error starting rdiff-backup" << endl;
@ -89,7 +89,7 @@ TQString RDBManager::listChangedSince(Backup backup, TQDateTime date)
*proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.dest()))); *proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.dest())));
// Adds a listener // Adds a listener
RDBListener *listen = new RDBListener(); RDBListener *listen = new RDBListener();
connect(proc,TQT_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQT_SLOT(receivedStdOut(TDEProcess *,char *,int))); connect(proc,TQ_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQ_SLOT(receivedStdOut(TDEProcess *,char *,int)));
// Starts the process // Starts the process
if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) ) if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) )
kdDebug() << "Error starting rdiff-backup" << endl; kdDebug() << "Error starting rdiff-backup" << endl;
@ -116,7 +116,7 @@ TQString RDBManager::listAtTime(Backup backup, TQDateTime date)
*proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.dest()))); *proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.dest())));
// Adds a listener // Adds a listener
RDBListener *listen = new RDBListener(); RDBListener *listen = new RDBListener();
connect(proc,TQT_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQT_SLOT(receivedStdOut(TDEProcess *,char *,int))); connect(proc,TQ_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQ_SLOT(receivedStdOut(TDEProcess *,char *,int)));
// Starts the process // Starts the process
if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) ) if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) )
kdDebug() << "Error starting rdiff-backup" << endl; kdDebug() << "Error starting rdiff-backup" << endl;
@ -144,7 +144,7 @@ TQValueList<TQDateTime> RDBManager::incrementList(Backup backup)
*proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.dest()))); *proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.dest())));
// Adds a listener // Adds a listener
RDBListener *listen = new RDBListener(); RDBListener *listen = new RDBListener();
connect(proc,TQT_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQT_SLOT(receivedStdOut(TDEProcess *,char *,int))); connect(proc,TQ_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQ_SLOT(receivedStdOut(TDEProcess *,char *,int)));
// Starts the process // Starts the process
if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) ) if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) )
kdDebug() << "Error starting rdiff-backup" << endl; kdDebug() << "Error starting rdiff-backup" << endl;
@ -214,8 +214,8 @@ void RDBManager::slotRestoreBackup(Backup backup,TQDateTime time)
*proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.source()))); *proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.source())));
// Adds a listener (for output recording) // Adds a listener (for output recording)
RDBListener *listen = new RDBListener(); RDBListener *listen = new RDBListener();
connect(proc,TQT_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQT_SLOT(receivedStdOut(TDEProcess *,char *,int))); connect(proc,TQ_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQ_SLOT(receivedStdOut(TDEProcess *,char *,int)));
connect(proc,TQT_SIGNAL(receivedStderr(TDEProcess *,char *,int)),listen,TQT_SLOT(receivedStdErr(TDEProcess *,char *,int))); connect(proc,TQ_SIGNAL(receivedStderr(TDEProcess *,char *,int)),listen,TQ_SLOT(receivedStdErr(TDEProcess *,char *,int)));
// Starts the process // Starts the process
if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) ) if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) )
kdDebug() << "Error starting rdiff-backup" << endl; kdDebug() << "Error starting rdiff-backup" << endl;
@ -239,7 +239,7 @@ bool RDBManager::isRDB()
*proc << "-V"; *proc << "-V";
// Adds a listener (for output recording) // Adds a listener (for output recording)
RDBListener *listen = new RDBListener(); RDBListener *listen = new RDBListener();
connect(proc,TQT_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQT_SLOT(receivedStdOut(TDEProcess *,char *,int))); connect(proc,TQ_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQ_SLOT(receivedStdOut(TDEProcess *,char *,int)));
// Starts the process // Starts the process
if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) ) if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) )
kdDebug() << "Error starting rdiff-backup" << endl; kdDebug() << "Error starting rdiff-backup" << endl;
@ -264,7 +264,7 @@ TQString RDBManager::RDBVersion()
*proc << "-V"; *proc << "-V";
// Adds a listener (for output recording) // Adds a listener (for output recording)
RDBListener *listen = new RDBListener(); RDBListener *listen = new RDBListener();
connect(proc,TQT_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQT_SLOT(receivedStdOut(TDEProcess *,char *,int))); connect(proc,TQ_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQ_SLOT(receivedStdOut(TDEProcess *,char *,int)));
// Starts the process // Starts the process
if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) ) if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) )
kdDebug() << "Error starting rdiff-backup" << endl; kdDebug() << "Error starting rdiff-backup" << endl;
@ -329,8 +329,8 @@ void RDBManager::doBackup(Backup backup)
*proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.dest()))); *proc << TQString(TQFile::encodeName(TDEProcess::quote(backup.dest())));
// Adds a listener (for output recording) // Adds a listener (for output recording)
RDBListener *listen = new RDBListener(); RDBListener *listen = new RDBListener();
connect(proc,TQT_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQT_SLOT(receivedStdOut(TDEProcess *,char *,int))); connect(proc,TQ_SIGNAL(receivedStdout(TDEProcess *,char *,int)),listen,TQ_SLOT(receivedStdOut(TDEProcess *,char *,int)));
connect(proc,TQT_SIGNAL(receivedStderr(TDEProcess *,char *,int)),listen,TQT_SLOT(receivedStdErr(TDEProcess *,char *,int))); connect(proc,TQ_SIGNAL(receivedStderr(TDEProcess *,char *,int)),listen,TQ_SLOT(receivedStdErr(TDEProcess *,char *,int)));
// Starts the process // Starts the process
if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) ) if ( !proc->start(TDEProcess::Block, TDEProcess::AllOutput) )
kdDebug() << "Error starting rdiff-backup" << endl; kdDebug() << "Error starting rdiff-backup" << endl;

@ -28,7 +28,7 @@
class RDBManager: public TQObject class RDBManager: public TQObject
{ {
Q_OBJECT TQ_OBJECT
public: public:
RDBManager(); RDBManager();

@ -37,13 +37,13 @@ KeepKded::KeepKded(const TQCString &name): KDEDModule(name)
m_logFilePath = locateLocal( "data", "keep/keep.log", true ); m_logFilePath = locateLocal( "data", "keep/keep.log", true );
m_manager = new RDBManager(); m_manager = new RDBManager();
connect( m_manager, TQT_SIGNAL(backupError(Backup,TQString)), this, TQT_SLOT(slotBackupError(Backup,TQString)) ); connect( m_manager, TQ_SIGNAL(backupError(Backup,TQString)), this, TQ_SLOT(slotBackupError(Backup,TQString)) );
connect( m_manager, TQT_SIGNAL(backupSuccess(Backup)), this, TQT_SLOT(slotBackupSuccess(Backup)) ); connect( m_manager, TQ_SIGNAL(backupSuccess(Backup)), this, TQ_SLOT(slotBackupSuccess(Backup)) );
slotCheckBackup(); slotCheckBackup();
m_timer = new TQTimer(this); m_timer = new TQTimer(this);
connect( m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotCheckBackup()) ); connect( m_timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotCheckBackup()) );
m_timer->start( 1000 * 60 * 60 ); m_timer->start( 1000 * 60 * 60 );
} }
@ -72,7 +72,7 @@ void KeepKded::slotBackupSuccess(Backup backup)
void KeepKded::log(TQString type,TQString backup,TQString message) void KeepKded::log(TQString type,TQString backup,TQString message)
{ {
TQString logMessage = TQDateTime::currentDateTime().toString(Qt::ISODate) + "\t" + type + "\t" + backup + "\t" + message; TQString logMessage = TQDateTime::currentDateTime().toString(TQt::ISODate) + "\t" + type + "\t" + backup + "\t" + message;
TQFile file( m_logFilePath ); TQFile file( m_logFilePath );
if ( file.open(IO_WriteOnly | IO_Append) ) if ( file.open(IO_WriteOnly | IO_Append) )
{ {
@ -90,7 +90,7 @@ void KeepKded::slotCheckBackup()
extern "C" extern "C"
{ {
KDE_EXPORT KDEDModule *create_keep(const TQCString &name) TDE_EXPORT KDEDModule *create_keep(const TQCString &name)
{ {
return new KeepKded(name); return new KeepKded(name);
} }

@ -26,7 +26,7 @@
class KeepKded: public KDEDModule class KeepKded: public KDEDModule
{ {
Q_OBJECT TQ_OBJECT
// //
K_DCOP K_DCOP

@ -1,25 +1,26 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# This file is put in the public domain. # This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # Juan M Ayala <linux.zero@yahoo.com>, 2025.
#
#, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-07-29 09:37+0200\n" "POT-Creation-Date: 2020-07-29 09:37+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2025-01-21 10:12+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: Juan M Ayala <linux.zero@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: Spanish <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/keep-desktop-files/es/>\n"
"Language: es\n" "Language: es\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.17\n"
#. Name #. Name
#: app/keep.desktop:2 #: app/keep.desktop:2
msgid "Keep" msgid "Keep"
msgstr "" msgstr "Keep"
#. GenericName #. GenericName
#. Comment #. Comment

@ -0,0 +1,35 @@
# 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-07-29 09:37+0200\n"
"PO-Revision-Date: 2024-04-21 17:50+0000\n"
"Last-Translator: Andrei Stepanov <adem4ik@gmail.com>\n"
"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/keep-desktop-files/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"
#. Name
#: app/keep.desktop:2
msgid "Keep"
msgstr "Keep"
#. GenericName
#. Comment
#: app/keep.desktop:4 kded/keep.desktop:4
msgid "Backup System"
msgstr "Система резервного копирования"
#. Name
#: kded/keep.desktop:2
msgid "Keep Daemon"
msgstr "Демон Keep"

@ -1,18 +1,21 @@
# translation of keep.po to ქართული # translation of keep.po to ქართული
# #
# Rusudan Tsiskreli <tsiskreli@gmail.com>, 2006. # Rusudan Tsiskreli <tsiskreli@gmail.com>, 2006.
# Temuri Doghonadze <rkavt@smartprojects.ge>, 2024.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: keep\n" "Project-Id-Version: keep\n"
"POT-Creation-Date: 2021-07-07 18:33+0000\n" "POT-Creation-Date: 2021-07-07 18:33+0000\n"
"PO-Revision-Date: 2006-04-16 19:50+0000\n" "PO-Revision-Date: 2024-11-03 22:11+0000\n"
"Last-Translator: Rusudan Tsiskreli <tsiskreli@gmail.com>\n" "Last-Translator: Temuri Doghonadze <rkavt@smartprojects.ge>\n"
"Language-Team: ქართული <Georgianization@googlegroups.com>\n" "Language-Team: Georgian <https://mirror.git.trinitydesktop.org/weblate/"
"Language: \n" "projects/applications/keep/ka/>\n"
"Language: ka\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n" "Plural-Forms: nplurals=2; plural=n != 1;\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). #. Instead of a literal translation, add your name to the end of the list (separated by a comma).
msgid "" msgid ""
@ -28,51 +31,51 @@ msgstr "tsiskreli@gmail.com"
#: app/advancedbackupconfigdialog.cpp:34 #: app/advancedbackupconfigdialog.cpp:34
msgid "Advanced Backup Configuration" msgid "Advanced Backup Configuration"
msgstr "სარეზერვო ასლის დეტალური კონფიგურაცია" msgstr "სარეზერვო ასლის დეტალური მორგება"
#: app/backupconfigdialog.cpp:43 app/keepmainwindow.cpp:83 #: app/backupconfigdialog.cpp:43 app/keepmainwindow.cpp:83
msgid "Configure backups" msgid "Configure backups"
msgstr "სარეზერვო ასლის კონფიგურაცია" msgstr "მარქაფის მორგება"
#: app/forcebackupdialog.cpp:45 #: app/forcebackupdialog.cpp:45
msgid "Backup now" msgid "Backup now"
msgstr "სარეზერვო ასლის ახლა გაკეთება" msgstr "მარქაფი ახლავე"
#: app/forcebackupdialog.cpp:96 kded/keepkded.cpp:59 #: app/forcebackupdialog.cpp:96 kded/keepkded.cpp:59
msgid "<p><b>An error occured making %1 backup:</b></p><p>%2</p>" msgid "<p><b>An error occured making %1 backup:</b></p><p>%2</p>"
msgstr "<p><b>%1 სარეზერვო ასლის შექმნისას მოხდა შეცდომა</b></p><p>%2</p>" msgstr "<p><b>%1 მარქაფის შექმნისას მოხდა შეცდომა</b></p><p>%2</p>"
#: app/includeexcludedialog.cpp:39 #: app/includeexcludedialog.cpp:39
msgid "Inclusion/Exclusion Configuration" msgid "Inclusion/Exclusion Configuration"
msgstr "ჩართვის/გამოტოვების კონფიგურაცია" msgstr "ჩართვის/გამოტოვების მორგება"
#: app/keepmainwindow.cpp:49 #: app/keepmainwindow.cpp:49
msgid "Backup System" msgid "Backup System"
msgstr "სისტემის სარეზერვო ასლი" msgstr "სისტემის მარქაფი"
#: app/keepmainwindow.cpp:82 #: app/keepmainwindow.cpp:82
msgid "Check rdiff-backup" msgid "Check rdiff-backup"
msgstr "rdiff-სარეზერვო ასლის შემოწმება" msgstr "rdiff-backup-ის შემოწმება"
#: app/keepmainwindow.cpp:85 #: app/keepmainwindow.cpp:85
msgid "Add Backup" msgid "Add Backup"
msgstr "სარეზერვო ასლის დამატება" msgstr "მარქაფის დამატება"
#: app/keepmainwindow.cpp:86 #: app/keepmainwindow.cpp:86
msgid "Restore Backup" msgid "Restore Backup"
msgstr "სარეზერვო ასლის აღდგენა" msgstr "მარქაფის აღდგენა"
#: app/keepmainwindow.cpp:87 #: app/keepmainwindow.cpp:87
msgid "Backup Now" msgid "Backup Now"
msgstr "სარეზერვო ასლის ახლა გაკეთება" msgstr "მარქაფი ახლავე"
#: app/keepmainwindow.cpp:88 app/logdialog.cpp:42 #: app/keepmainwindow.cpp:88 app/logdialog.cpp:42
msgid "View log" msgid "View log"
msgstr "ჟურნალის ხილვა" msgstr "ჟურნალის ნახვა"
#: app/keepmainwindow.cpp:108 #: app/keepmainwindow.cpp:108
msgid "<p align=\"right\"><b>Ok</b></p>" msgid "<p align=\"right\"><b>Ok</b></p>"
msgstr "<p align=\"right\"><b>ოკ</b></p>" msgstr "<p align=\"right\"><b>დიახ</b></p>"
#: app/keepmainwindow.cpp:116 #: app/keepmainwindow.cpp:116
msgid "<p align=\"right\"><b>Not Running</b></p>" msgid "<p align=\"right\"><b>Not Running</b></p>"
@ -83,8 +86,8 @@ msgid ""
"<b>The application rdiff-backup has been detected on your system.</" "<b>The application rdiff-backup has been detected on your system.</"
"b><br><br> You're running version %1 of rdiff-backup." "b><br><br> You're running version %1 of rdiff-backup."
msgstr "" msgstr ""
"<b>პროგრამა rdiff-სარეზერვო ასლი მოიძებნა თქვენს სისტემაში.</b><br><br> " "<b>პროგრამა rdiff-backup მოიძებნა თქვენს სისტემაში.</b><br><br> თქვენ rdiff-"
"თქვენ rdiff-სარეზერვო ასლის %1 ვერსია გაქვთ." "backup %1 ვერსია გაქვთ."
#: app/keepmainwindow.cpp:130 #: app/keepmainwindow.cpp:130
msgid "" msgid ""
@ -92,13 +95,13 @@ msgid ""
"b><br><br>If rdiff-backup is not installed, Keep will not be able to make " "b><br><br>If rdiff-backup is not installed, Keep will not be able to make "
"backups. To fix this problem, install rdiff-backup on your system." "backups. To fix this problem, install rdiff-backup on your system."
msgstr "" msgstr ""
"<b>პროგრამა rdiff-სარეზერვო ასლი ვერ მოიძებნა თქვენს სისტემაში.</" "<b>პროგრამა rdiff-backup ვერ მოიძებნა თქვენს სისტემაში.</b><br><br>თუ rdiff-"
"b><br><br>თუ rdiff-სარეზერვო ასლი არაა დაყენებული, Keep ვერ შექმნის " "backup არაა დაყენებული, Keep ვერ შექმნის სარეზერვო ასლებს. ამ პრობლემის "
"სარეზერვო ასლებს. ამ პრობლემის აღმოსაფხვრელად დააყენეთ rdiff-სარეზერვო ასლი." "აღმოსაფხვრელად დააყენეთ rdiff-backup."
#: app/keepmainwindow.cpp:164 #: app/keepmainwindow.cpp:164
msgid "General" msgid "General"
msgstr "საერთო" msgstr "ზოგადი"
#: app/keepmainwindow.cpp:249 #: app/keepmainwindow.cpp:249
msgid "Incorrect reply from KDED." msgid "Incorrect reply from KDED."
@ -113,13 +116,12 @@ msgid "Unable to stop service."
msgstr "სერვისის გაჩერება ვერ მოხერხდა." msgstr "სერვისის გაჩერება ვერ მოხერხდა."
#: app/main.cpp:29 #: app/main.cpp:29
#, fuzzy
msgid "TDE Backup System" msgid "TDE Backup System"
msgstr "KDE სარეზერვო ასლთა სისტემა" msgstr "TDE-ის მარქაფების სისტემა"
#: app/main.cpp:33 #: app/main.cpp:33
msgid "Keep" msgid "Keep"
msgstr "დატოვება" msgstr "Keep"
#: app/main.cpp:35 #: app/main.cpp:35
msgid "Maintainer" msgid "Maintainer"
@ -127,7 +129,7 @@ msgstr "მხარდამჭერი"
#: app/main.cpp:37 #: app/main.cpp:37
msgid "Ubuntu packages" msgid "Ubuntu packages"
msgstr "Ubuntu პაკეტები" msgstr "Ubuntu-ის პაკეტები"
#: app/main.cpp:38 #: app/main.cpp:38
msgid "Application wording" msgid "Application wording"
@ -135,7 +137,7 @@ msgstr "პროგრამის ფორმულირება"
#: app/main.cpp:39 #: app/main.cpp:39
msgid "Useful patches" msgid "Useful patches"
msgstr "" msgstr "სასარგებლო პაჩები"
#: app/restorebackupwizard.cpp:50 #: app/restorebackupwizard.cpp:50
msgid "Menu" msgid "Menu"
@ -143,19 +145,19 @@ msgstr "მენიუ"
#: app/restorebackupwizard.cpp:51 #: app/restorebackupwizard.cpp:51
msgid "Show differences destination/backup" msgid "Show differences destination/backup"
msgstr "სხვაობის ჩვენება დანიშნულება/სარეზერვო ასლი" msgstr "სხვაობის ჩვენება დანიშნულება/მარქაფი"
#: app/restorebackupwizard.cpp:52 #: app/restorebackupwizard.cpp:52
msgid "List changed files" msgid "List changed files"
msgstr "სიამ შეცვალა ფაილები" msgstr "შეცვლილი ფაილების სია"
#: app/restorebackupwizard.cpp:53 #: app/restorebackupwizard.cpp:53
msgid "List files" msgid "List files"
msgstr "ფაილთა ჩამოთვლა" msgstr "ფაილების სია"
#: app/restorebackupwizard.cpp:251 #: app/restorebackupwizard.cpp:251
msgid "List of modifications since the selected increment:" msgid "List of modifications since the selected increment:"
msgstr "უკანასკნელი მომენტიდან ცვლილებათა სია:" msgstr "უკანასკნელი მომენტიდან ცვლილებების სია:"
#: app/restorebackupwizard.cpp:252 #: app/restorebackupwizard.cpp:252
msgid "Modifications" msgid "Modifications"
@ -167,24 +169,23 @@ msgstr "არაფერი."
#: app/restorebackupwizard.cpp:264 #: app/restorebackupwizard.cpp:264
msgid "List of changed files since the selected increment:" msgid "List of changed files since the selected increment:"
msgstr "უკანასკნელი მომენტიდან ცვლილებათა სია:" msgstr "უკანასკნელი მომენტიდან ცვლილებების სია:"
#: app/restorebackupwizard.cpp:265 #: app/restorebackupwizard.cpp:265
msgid "Changed files" msgid "Changed files"
msgstr "შეცვლილი ფაილები" msgstr "შეცვლილი ფაილები"
#: app/restorebackupwizard.cpp:275 #: app/restorebackupwizard.cpp:275
#, fuzzy
msgid "List of files in the selected increment:" msgid "List of files in the selected increment:"
msgstr "არჩეულ მომენტში ფაილთა სია:" msgstr "არჩეულ მომენტში ფაილების სია:"
#: app/restorebackupwizard.cpp:276 #: app/restorebackupwizard.cpp:276
msgid "List of files" msgid "List of files"
msgstr "ფაილთა სია" msgstr "ფაილების სია"
#: app/restorebackupwizard.cpp:290 #: app/restorebackupwizard.cpp:290
msgid "<p><b>An error occured restoring %1 backup:</b></p><p>%2</p>" msgid "<p><b>An error occured restoring %1 backup:</b></p><p>%2</p>"
msgstr "<p><b>%1 საზერვო ასლის აღდგენისას მოხდა შეცდომა:</b></p><p>%2</p>" msgstr "<p><b>%1 მარქაფის აღდგენისას მოხდა შეცდომა:</b></p><p>%2</p>"
#: app/addbackupwizard3view.ui:271 common/backup.cpp:161 #: app/addbackupwizard3view.ui:271 common/backup.cpp:161
#, no-c-format #, no-c-format
@ -198,12 +199,12 @@ msgstr "%1 დღე"
#: common/backup.cpp:168 #: common/backup.cpp:168
msgid "Source directory:" msgid "Source directory:"
msgstr "წყაროს დირექტორია:" msgstr "წყარო საქაღალდე:"
#: app/restorebackupwizard2view.ui:100 common/backup.cpp:169 #: app/restorebackupwizard2view.ui:100 common/backup.cpp:169
#, no-c-format #, no-c-format
msgid "Destination directory:" msgid "Destination directory:"
msgstr "დაშორებული დირექტორია:" msgstr "სამიზნე საქაღალდე:"
#: common/backup.cpp:170 #: common/backup.cpp:170
msgid "Interval:" msgid "Interval:"
@ -215,7 +216,7 @@ msgstr "წაშლა შემდეგ:"
#: common/backup.cpp:172 #: common/backup.cpp:172
msgid "Use compression:" msgid "Use compression:"
msgstr "შეკუშვის გამოყენება:" msgstr "შეკუშვის გამოყენება:"
#: common/backuplistviewitem.cpp:52 #: common/backuplistviewitem.cpp:52
msgid "Never" msgid "Never"
@ -223,7 +224,7 @@ msgstr "არასდროს"
#: common/includeexcludeitem.cpp:57 #: common/includeexcludeitem.cpp:57
msgid "Included" msgid "Included"
msgstr "დაყოლებული" msgstr "ჩასმული"
#: common/includeexcludeitem.cpp:59 #: common/includeexcludeitem.cpp:59
msgid "Excluded" msgid "Excluded"
@ -231,42 +232,42 @@ msgstr "გამოტოვებული"
#: kded/keepkded.cpp:68 #: kded/keepkded.cpp:68
msgid "<p><b>Backup %1 successfully backuped to %2</b></p>" msgid "<p><b>Backup %1 successfully backuped to %2</b></p>"
msgstr "<p><b>%1 სარეზერვო ასლი წარმატების შეიქმნა %2-ში</b></p>" msgstr "<p><b>%1 მარქაფის წარმატების შეიქმნა %2-ში</b></p>"
#: app/actionview.ui:51 #: app/actionview.ui:51
#, no-c-format #, no-c-format
msgid "Backup system:" msgid "Backup system:"
msgstr "სარეზერვო ასლის სისტემა:" msgstr "მარქაფის სისტემა:"
#: app/actionview.ui:114 #: app/actionview.ui:114
#, no-c-format #, no-c-format
msgid "<i>Add directory to backup</i>" msgid "<i>Add directory to backup</i>"
msgstr "<i>სარეზერვო ასლისთვის დირექტორიის დამატება</i>" msgstr "<i>მარქაფისთვის საქაღალდის დამატება</i>"
#: app/actionview.ui:168 #: app/actionview.ui:168
#, no-c-format #, no-c-format
msgid "<i>Restore a backup</i>" msgid "<i>Restore a backup</i>"
msgstr "<i>სარეზერვო ასლის აღდგენა</i>" msgstr "<i>მარქაფის აღდგენა</i>"
#: app/actionview.ui:222 #: app/actionview.ui:222
#, no-c-format #, no-c-format
msgid "<i>Backup now</i>" msgid "<i>Backup now</i>"
msgstr "<i> სარეზერვო ასლის ახლა შექმნა</i>" msgstr "<i>მარქაფი ახლავე</i>"
#: app/actionview.ui:276 #: app/actionview.ui:276
#, no-c-format #, no-c-format
msgid "<i>Edit backup list</i>" msgid "<i>Edit backup list</i>"
msgstr "<i>სარეზერვო ასლის სიის რედაქტირება</i>" msgstr "<i>მარქაფის ჩასწორება</i>"
#: app/actionview.ui:330 #: app/actionview.ui:330
#, no-c-format #, no-c-format
msgid "<i>View backup log</i>" msgid "<i>View backup log</i>"
msgstr "<i>სარეზერვო ასლის ჟურნალის ხილვა</i>" msgstr "<i>მარქაფის ჟურნალის ნახვა</i>"
#: app/actionview.ui:352 #: app/actionview.ui:352
#, no-c-format #, no-c-format
msgid "Backup daemon:" msgid "Backup daemon:"
msgstr "სარეზერვო ასლის დემონი:" msgstr "მარქაფის დემონი:"
#: app/actionview.ui:408 #: app/actionview.ui:408
#, no-c-format #, no-c-format
@ -286,12 +287,12 @@ msgstr "&ჩატვირთვა"
#: app/actionview.ui:469 #: app/actionview.ui:469
#, no-c-format #, no-c-format
msgid "Unload" msgid "Unload"
msgstr "ამოტვირთვა" msgstr "ამოტვირთვა"
#: app/addbackupwizard1view.ui:100 #: app/addbackupwizard1view.ui:100
#, no-c-format #, no-c-format
msgid "Select a directory for backup." msgid "Select a directory for backup."
msgstr "სარეზერვო ასლის დირექტორიის ამორჩევა." msgstr "მარქაფის საქაღალდის არჩევა."
#: app/addbackupwizard1view.ui:137 #: app/addbackupwizard1view.ui:137
#, no-c-format #, no-c-format
@ -301,52 +302,52 @@ msgstr "ჩართვა/გამოტოვების სიის გა
#: app/addbackupwizard2view.ui:117 #: app/addbackupwizard2view.ui:117
#, no-c-format #, no-c-format
msgid "Select a location to place the backup." msgid "Select a location to place the backup."
msgstr "სარეზერვო ასლის მოსათავსებელი მდებარეობის ამორჩევა." msgstr "მარქაფის მოსათავსებელი მდებარეობის არჩევა."
#: app/addbackupwizard3view.ui:108 #: app/addbackupwizard3view.ui:108
#, no-c-format #, no-c-format
msgid "Set the desired options for your backup." msgid "Set the desired options for your backup."
msgstr "მიუთითეთ სარეზერვო ასლისთვის სასურველი პარამეტრები." msgstr "მიუთითეთ მარქაფის სასურველი პარამეტრები."
#: app/addbackupwizard3view.ui:124 #: app/addbackupwizard3view.ui:124
#, no-c-format #, no-c-format
msgid "General options:" msgid "General options:"
msgstr "საერთო პარამეტრები:" msgstr "ზოგადი პარამეტრები:"
#: app/addbackupwizard3view.ui:167 #: app/addbackupwizard3view.ui:167
#, no-c-format #, no-c-format
msgid "Backup interval (days):" msgid "Backup interval (days):"
msgstr "სარეზერვო ასლის ინტერვალი (დღეები):" msgstr "მარქაფის ინტერვალი (დღე):"
#: app/addbackupwizard3view.ui:183 #: app/addbackupwizard3view.ui:183
#, no-c-format #, no-c-format
msgid "Delete after (days):" msgid "Delete after (days):"
msgstr "წაშლა შემდეგ (დღეები):" msgstr "წაშლა შემდეგ (დღე):"
#: app/addbackupwizard3view.ui:293 #: app/addbackupwizard3view.ui:293
#, no-c-format #, no-c-format
msgid "Extra options:" msgid "Extra options:"
msgstr "ექსტრა პარამეტრები:" msgstr "დამატებითი პარამეტრები:"
#: app/addbackupwizard3view.ui:320 #: app/addbackupwizard3view.ui:320
#, no-c-format #, no-c-format
msgid "Use compression" msgid "Use compression"
msgstr "შეკუშვის გამოყენება" msgstr "შეკუშვის გამოყენება"
#: app/addbackupwizard3view.ui:331 #: app/addbackupwizard3view.ui:331
#, no-c-format #, no-c-format
msgid "Exclude special files" msgid "Exclude special files"
msgstr "სპეციალური ფაილების გამოკლება" msgstr "სპეციალური ფაილების გამოტოვება"
#: app/addbackupwizard3view.ui:358 #: app/addbackupwizard3view.ui:358
#, no-c-format #, no-c-format
msgid "Use advanced configuration" msgid "Use advanced configuration"
msgstr "გაფართოებული კონფიგურაციის გამოყენება" msgstr "დამატებითი კონფიგურაციის გამოყენება"
#: app/advancedbackupconfigview.ui:46 #: app/advancedbackupconfigview.ui:46
#, no-c-format #, no-c-format
msgid "Choose the options you want to use during the backup process:" msgid "Choose the options you want to use during the backup process:"
msgstr "აირჩიეთ სარეზერვო ასლის გაკეთების პროცესში გამოსაყენებელი პარაეტრები:" msgstr "აირჩიეთ მარქაფის შექმნის პროცესში გამოსაყენებელი პარაეტრები:"
#: app/backuplistview.ui:44 app/forcebackupdialogview.ui:66 #: app/backuplistview.ui:44 app/forcebackupdialogview.ui:66
#: app/restorebackupwizard1view.ui:106 #: app/restorebackupwizard1view.ui:106
@ -358,13 +359,13 @@ msgstr "წყარო"
#: app/restorebackupwizard1view.ui:117 #: app/restorebackupwizard1view.ui:117
#, no-c-format #, no-c-format
msgid "Destination" msgid "Destination"
msgstr "დაშორება" msgstr "სამიზნე"
#: app/backuplistview.ui:66 app/forcebackupdialogview.ui:88 #: app/backuplistview.ui:66 app/forcebackupdialogview.ui:88
#: app/restorebackupwizard1view.ui:128 #: app/restorebackupwizard1view.ui:128
#, no-c-format #, no-c-format
msgid "Backup Interval" msgid "Backup Interval"
msgstr "სარეზერვო ასლის ინტერვალი" msgstr "მარქაფის ინტერვალი"
#: app/backuplistview.ui:77 app/forcebackupdialogview.ui:99 #: app/backuplistview.ui:77 app/forcebackupdialogview.ui:99
#: app/restorebackupwizard1view.ui:139 #: app/restorebackupwizard1view.ui:139
@ -375,43 +376,43 @@ msgstr "წაშლა შემდეგ"
#: app/forcebackupdialogview.ui:46 #: app/forcebackupdialogview.ui:46
#, no-c-format #, no-c-format
msgid "Select the sources to backup now." msgid "Select the sources to backup now."
msgstr "ახლა სარეზერვო ასლის წყაროს ამორჩევა." msgstr "აირჩიეთ წყაროები მარქაფისთვის ახლა."
#: app/generalconfigview.ui:16 #: app/generalconfigview.ui:16
#, no-c-format #, no-c-format
msgid "GeneralConfigView" msgid "GeneralConfigView"
msgstr "" msgstr "GeneralConfigView"
#: app/generalconfigview.ui:35 #: app/generalconfigview.ui:35
#, no-c-format #, no-c-format
msgid "Notifications" msgid "Notifications"
msgstr "შეტყობინებები" msgstr "გაფრთხილებები"
#: app/generalconfigview.ui:54 #: app/generalconfigview.ui:54
#, no-c-format #, no-c-format
msgid "Notify backup error" msgid "Notify backup error"
msgstr "შეტყობინება სარეზერვო ასლის შეცდომის შესახებ" msgstr "შეტყობინება მარქაფის შეცდომაზე"
#: app/generalconfigview.ui:62 #: app/generalconfigview.ui:62
#, no-c-format #, no-c-format
msgid "Notify backup success" msgid "Notify backup success"
msgstr "შეტყობინება სარეზერვო ასლის წარმატების შესახებ" msgstr "შეტყობინება მარქაფის წარმატების შესახებ"
#: app/generalconfigview.ui:74 common/keepsettings.kcfg:24 #: app/generalconfigview.ui:74 common/keepsettings.kcfg:24
#, fuzzy, no-c-format #, no-c-format
msgid "Rdiff-backup priority" msgid "Rdiff-backup priority"
msgstr "შეტყობინება სარეზერვო ასლის შეცდომის შესახებ" msgstr "Rdiff-backup-ის პრიორიტეტი"
#: app/generalconfigview.ui:93 common/keepsettings.kcfg:17 #: app/generalconfigview.ui:93 common/keepsettings.kcfg:17
#: common/keepsettings.kcfg:19 #: common/keepsettings.kcfg:19
#, no-c-format #, no-c-format
msgid "Control rdiff-backup priority" msgid "Control rdiff-backup priority"
msgstr "" msgstr "აკონტროლეთ rdiff-backup-ის პრიორიტეტი"
#: app/generalconfigview.ui:131 #: app/generalconfigview.ui:131
#, fuzzy, no-c-format #, no-c-format
msgid "Rdiff-backup niceness" msgid "Rdiff-backup niceness"
msgstr "შეტყობინება სარეზერვო ასლის წარმატების შესახებ" msgstr "Rdiff-backup-ის პრიორიტეტი"
#: app/includeexcludeview.ui:46 #: app/includeexcludeview.ui:46
#, no-c-format #, no-c-format
@ -420,8 +421,8 @@ msgid ""
"(wildcard) generic character. You can drag and drop the items to tune the " "(wildcard) generic character. You can drag and drop the items to tune the "
"priority order." "priority order."
msgstr "" msgstr ""
"აირჩიეთ ფაილები/დირქტორიები, რომლის ჩართვა/გამოტოვება გსურთ. შეგიძლიათ " "აირჩიეთ ფაილები/საქაღალდეები, რომლის ჩართვა/გამოტოვება გსურთ. შეგიძლიათ "
"გამოიყენოთ * (თარგი). შეგიძლიათ გადაათრიოთ და ჩააგდოთ ელემენტები." "გამოიყენოთ * (ვაილდკარდი). შეგიძლიათ გადაათრიოთ და ჩააგდოთ ელემენტები."
#: app/includeexcludeview.ui:92 #: app/includeexcludeview.ui:92
#, no-c-format #, no-c-format
@ -439,14 +440,14 @@ msgid "Include/Exclude list:"
msgstr "ჩართვა/გამოტოვების სია:" msgstr "ჩართვა/გამოტოვების სია:"
#: app/includeexcludeview.ui:127 #: app/includeexcludeview.ui:127
#, fuzzy, no-c-format #, no-c-format
msgid "Item" msgid "Item"
msgstr "ელემენტი" msgstr "ელემენტი"
#: app/includeexcludeview.ui:138 #: app/includeexcludeview.ui:138
#, no-c-format #, no-c-format
msgid "Action" msgid "Action"
msgstr "მოქმედება" msgstr "ქმედება"
#: app/includeexcludeview.ui:173 #: app/includeexcludeview.ui:173
#, no-c-format #, no-c-format
@ -466,22 +467,22 @@ msgstr "მოვლენა"
#: app/logview.ui:60 #: app/logview.ui:60
#, no-c-format #, no-c-format
msgid "Backup" msgid "Backup"
msgstr "სარეზერვო ასლი" msgstr "მარქაფი"
#: app/restorebackupwizard1view.ui:100 #: app/restorebackupwizard1view.ui:100
#, no-c-format #, no-c-format
msgid "Select the backup to restore." msgid "Select the backup to restore."
msgstr "აირჩიეთ აღსადგენი სარეზერვო ასლი." msgstr "აირჩიეთ აღსადგენი მარქაფი."
#: app/restorebackupwizard1view.ui:168 #: app/restorebackupwizard1view.ui:168
#, no-c-format #, no-c-format
msgid "Custom backup directory:" msgid "Custom backup directory:"
msgstr "სხვა სარეზერვო ასლის დირექტორია:" msgstr "მორგებული მარქაფის საქაღალდე:"
#: app/restorebackupwizard1view.ui:187 #: app/restorebackupwizard1view.ui:187
#, no-c-format #, no-c-format
msgid "Use custom backup directory" msgid "Use custom backup directory"
msgstr "სხვა სარეზერვო ასლის დირექტორიის გამოყენება" msgstr "მორგებული მარქაფის საქაღალდის გამოყენება"
#: app/restorebackupwizard1view.ui:211 app/restorebackupwizard2view.ui:168 #: app/restorebackupwizard1view.ui:211 app/restorebackupwizard2view.ui:168
#, no-c-format #, no-c-format
@ -491,17 +492,17 @@ msgstr "დირექტორია:"
#: app/restorebackupwizard2view.ui:92 #: app/restorebackupwizard2view.ui:92
#, no-c-format #, no-c-format
msgid "Choose a location to restore the selected backup." msgid "Choose a location to restore the selected backup."
msgstr "აირჩიეთ არჩეული სარეზერვო ასლის ამოღების მდებარეობა." msgstr "აირჩიეთ არჩეული მარქაფს აღდგენის მდებარეობა."
#: app/restorebackupwizard2view.ui:119 #: app/restorebackupwizard2view.ui:119
#, no-c-format #, no-c-format
msgid "Use default directory" msgid "Use default directory"
msgstr "ნაგულისხმევი დირექტორიის გამოყენება" msgstr "ნაგულისხმევი საქაღალდი გამოყენება"
#: app/restorebackupwizard2view.ui:144 #: app/restorebackupwizard2view.ui:144
#, no-c-format #, no-c-format
msgid "Use custom directory:" msgid "Use custom directory:"
msgstr "მორგებული დირექტორიის გამოყენება:" msgstr "მორგებული საქაღალდის გამოყენება:"
#: app/restorebackupwizard3view.ui:16 #: app/restorebackupwizard3view.ui:16
#, no-c-format #, no-c-format
@ -511,7 +512,7 @@ msgstr "RestoreBackupWizard2View"
#: app/restorebackupwizard3view.ui:95 #: app/restorebackupwizard3view.ui:95
#, no-c-format #, no-c-format
msgid "Set the date to restore the selected backup." msgid "Set the date to restore the selected backup."
msgstr "მიუთითეთ არჩეული სარეზერვო ასლის აღდგენის თარიღი." msgstr "მიუთითეთ არჩეული მარქაფის აღდგენის თარიღი."
#: app/restorebackupwizard3view.ui:127 #: app/restorebackupwizard3view.ui:127
#, no-c-format #, no-c-format
@ -519,9 +520,9 @@ msgid "Current date:"
msgstr "მიმდინარე თარიღი:" msgstr "მიმდინარე თარიღი:"
#: app/restorebackupwizard3view.ui:143 #: app/restorebackupwizard3view.ui:143
#, fuzzy, no-c-format #, no-c-format
msgid "Last backup:" msgid "Last backup:"
msgstr "სარეზერვო ასლის აღდგენა" msgstr "ბოლო მარქაფი:"
#: app/restorebackupwizard3view.ui:169 app/restorebackupwizard3view.ui:185 #: app/restorebackupwizard3view.ui:169 app/restorebackupwizard3view.ui:185
#, no-c-format #, no-c-format
@ -529,19 +530,19 @@ msgid "unknown"
msgstr "უცნობი" msgstr "უცნობი"
#: common/keepsettings.kcfg:7 common/keepsettings.kcfg:9 #: common/keepsettings.kcfg:7 common/keepsettings.kcfg:9
#, fuzzy, no-c-format #, no-c-format
msgid "Notify backup error." msgid "Notify backup error."
msgstr "შეტყობინება სარეზერვო ასლის შეცდომის შესახებ" msgstr "შეტყობინება მარქაფის შეცდომის შესახებ."
#: common/keepsettings.kcfg:12 common/keepsettings.kcfg:14 #: common/keepsettings.kcfg:12 common/keepsettings.kcfg:14
#, fuzzy, no-c-format #, no-c-format
msgid "Notify backup success." msgid "Notify backup success."
msgstr "შეტყობინება სარეზერვო ასლის წარმატების შესახებ" msgstr "შეტყობინება მარქაფის წარმატების შესახებ."
#: common/keepsettings.kcfg:22 #: common/keepsettings.kcfg:22
#, fuzzy, no-c-format #, no-c-format
msgid "Rdiff-backup priority\"" msgid "Rdiff-backup priority\""
msgstr "შეტყობინება სარეზერვო ასლის შეცდომის შესახებ" msgstr "Rdiff-backup-ის პრიორიტეტი\""
#, fuzzy #, fuzzy
#~ msgid "Configure" #~ msgid "Configure"

@ -6,13 +6,14 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, 2006. # FIRST AUTHOR <EMAIL@ADDRESS>, 2006.
# Nick Shaforostoff <shafff@ukr.net>, 2006. # Nick Shaforostoff <shafff@ukr.net>, 2006.
# Alexander Golubev <fatzer2@gmail.com>, 2021. # Alexander Golubev <fatzer2@gmail.com>, 2021.
# Andrei Stepanov <adem4ik@gmail.com>, 2024.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: keep\n" "Project-Id-Version: keep\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2021-07-07 18:33+0000\n" "POT-Creation-Date: 2021-07-07 18:33+0000\n"
"PO-Revision-Date: 2021-01-21 09:11+0000\n" "PO-Revision-Date: 2024-05-06 02:00+0000\n"
"Last-Translator: Alexander Golubev <fatzer2@gmail.com>\n" "Last-Translator: Andrei Stepanov <adem4ik@gmail.com>\n"
"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/" "Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/keep/ru/>\n" "projects/applications/keep/ru/>\n"
"Language: ru\n" "Language: ru\n"
@ -21,19 +22,19 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && 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" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.4.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). #. Instead of a literal translation, add your name to the end of the list (separated by a comma).
msgid "" msgid ""
"_: NAME OF TRANSLATORS\n" "_: NAME OF TRANSLATORS\n"
"Your names" "Your names"
msgstr "Николай Шафоростов" msgstr "Николай Шафоростов,Андрей Степанов"
#. Instead of a literal translation, add your email to the end of the list (separated by a comma). #. Instead of a literal translation, add your email to the end of the list (separated by a comma).
msgid "" msgid ""
"_: EMAIL OF TRANSLATORS\n" "_: EMAIL OF TRANSLATORS\n"
"Your emails" "Your emails"
msgstr "shafff@ukr.net" msgstr "shafff@ukr.net,adem4ik@gmail.com"
#: app/advancedbackupconfigdialog.cpp:34 #: app/advancedbackupconfigdialog.cpp:34
msgid "Advanced Backup Configuration" msgid "Advanced Backup Configuration"
@ -123,9 +124,8 @@ msgid "Unable to stop service."
msgstr "Невозможно остановить сервис." msgstr "Невозможно остановить сервис."
#: app/main.cpp:29 #: app/main.cpp:29
#, fuzzy
msgid "TDE Backup System" msgid "TDE Backup System"
msgstr "Система резервного копирования KDE" msgstr "Система резервного копирования TDE"
#: app/main.cpp:33 #: app/main.cpp:33
msgid "Keep" msgid "Keep"
@ -141,11 +141,11 @@ msgstr "Пакеты Ubuntu"
#: app/main.cpp:38 #: app/main.cpp:38
msgid "Application wording" msgid "Application wording"
msgstr "" msgstr "Формулировки заявления"
#: app/main.cpp:39 #: app/main.cpp:39
msgid "Useful patches" msgid "Useful patches"
msgstr "" msgstr "Полезные патчи"
#: app/restorebackupwizard.cpp:50 #: app/restorebackupwizard.cpp:50
msgid "Menu" msgid "Menu"
@ -184,9 +184,8 @@ msgid "Changed files"
msgstr "Изменённые файлы" msgstr "Изменённые файлы"
#: app/restorebackupwizard.cpp:275 #: app/restorebackupwizard.cpp:275
#, fuzzy
msgid "List of files in the selected increment:" msgid "List of files in the selected increment:"
msgstr "Список файлов, изменённых в предыдущий раз:" msgstr "Список файлов в выбранном приращении:"
#: app/restorebackupwizard.cpp:276 #: app/restorebackupwizard.cpp:276
msgid "List of files" msgid "List of files"
@ -281,7 +280,7 @@ msgstr "Демон резервного копирования:"
#: app/actionview.ui:408 #: app/actionview.ui:408
#, no-c-format #, no-c-format
msgid "Keep daemon state:" msgid "Keep daemon state:"
msgstr "Состояние службы:" msgstr "Сохранять состояние демона:"
#: app/actionview.ui:429 #: app/actionview.ui:429
#, no-c-format #, no-c-format
@ -299,9 +298,9 @@ msgid "Unload"
msgstr "Выгрузить" msgstr "Выгрузить"
#: app/addbackupwizard1view.ui:100 #: app/addbackupwizard1view.ui:100
#, fuzzy, no-c-format #, no-c-format
msgid "Select a directory for backup." msgid "Select a directory for backup."
msgstr "Выберите каталог, резервную копию которого следует создать." msgstr "Выберите каталог для резервного копирования."
#: app/addbackupwizard1view.ui:137 #: app/addbackupwizard1view.ui:137
#, no-c-format #, no-c-format
@ -383,14 +382,14 @@ msgid "Delete After"
msgstr "Удалить по прошествии" msgstr "Удалить по прошествии"
#: app/forcebackupdialogview.ui:46 #: app/forcebackupdialogview.ui:46
#, fuzzy, no-c-format #, no-c-format
msgid "Select the sources to backup now." msgid "Select the sources to backup now."
msgstr "Выберите источник для резервирования" msgstr "Выберите источники для резервного копирования."
#: app/generalconfigview.ui:16 #: app/generalconfigview.ui:16
#, no-c-format #, no-c-format
msgid "GeneralConfigView" msgid "GeneralConfigView"
msgstr "" msgstr "GeneralConfigView"
#: app/generalconfigview.ui:35 #: app/generalconfigview.ui:35
#, no-c-format #, no-c-format
@ -408,20 +407,20 @@ msgid "Notify backup success"
msgstr "Известить об успешном создании резервной копии" msgstr "Известить об успешном создании резервной копии"
#: app/generalconfigview.ui:74 common/keepsettings.kcfg:24 #: app/generalconfigview.ui:74 common/keepsettings.kcfg:24
#, fuzzy, no-c-format #, no-c-format
msgid "Rdiff-backup priority" msgid "Rdiff-backup priority"
msgstr "Известить об ошибке при резервировании" msgstr "Приоритет резервного копирования Rdiff"
#: app/generalconfigview.ui:93 common/keepsettings.kcfg:17 #: app/generalconfigview.ui:93 common/keepsettings.kcfg:17
#: common/keepsettings.kcfg:19 #: common/keepsettings.kcfg:19
#, no-c-format #, no-c-format
msgid "Control rdiff-backup priority" msgid "Control rdiff-backup priority"
msgstr "" msgstr "Управление приоритетом резервного копирования Rdiff"
#: app/generalconfigview.ui:131 #: app/generalconfigview.ui:131
#, fuzzy, no-c-format #, no-c-format
msgid "Rdiff-backup niceness" msgid "Rdiff-backup niceness"
msgstr "Известить об успешном создании резервной копии" msgstr "Вежливость резервного копирования Rdiff"
#: app/includeexcludeview.ui:46 #: app/includeexcludeview.ui:46
#, no-c-format #, no-c-format
@ -430,6 +429,9 @@ msgid ""
"(wildcard) generic character. You can drag and drop the items to tune the " "(wildcard) generic character. You can drag and drop the items to tune the "
"priority order." "priority order."
msgstr "" msgstr ""
"Выберите файлы/каталоги, которые нужно включить/исключить. Можно "
"использовать общий символ * (подстановочный знак). Вы можете перетаскивать "
"элементы для настройки порядока приоритетов."
#: app/includeexcludeview.ui:92 #: app/includeexcludeview.ui:92
#, no-c-format #, no-c-format
@ -444,7 +446,7 @@ msgstr "Исключить"
#: app/includeexcludeview.ui:110 #: app/includeexcludeview.ui:110
#, no-c-format #, no-c-format
msgid "Include/Exclude list:" msgid "Include/Exclude list:"
msgstr "" msgstr "Список включения/исключения:"
#: app/includeexcludeview.ui:127 #: app/includeexcludeview.ui:127
#, no-c-format #, no-c-format
@ -517,9 +519,9 @@ msgid "RestoreBackupWizard2View"
msgstr "RestoreBackupWizard2View" msgstr "RestoreBackupWizard2View"
#: app/restorebackupwizard3view.ui:95 #: app/restorebackupwizard3view.ui:95
#, fuzzy, no-c-format #, no-c-format
msgid "Set the date to restore the selected backup." msgid "Set the date to restore the selected backup."
msgstr "Выберите дату для создания резервной копии." msgstr "Установите дату восстановления выбранной резервной копии."
#: app/restorebackupwizard3view.ui:127 #: app/restorebackupwizard3view.ui:127
#, no-c-format #, no-c-format
@ -527,9 +529,9 @@ msgid "Current date:"
msgstr "Текущая дата:" msgstr "Текущая дата:"
#: app/restorebackupwizard3view.ui:143 #: app/restorebackupwizard3view.ui:143
#, fuzzy, no-c-format #, no-c-format
msgid "Last backup:" msgid "Last backup:"
msgstr "Восстановить из резервной копии" msgstr "Последняя резервная копия:"
#: app/restorebackupwizard3view.ui:169 app/restorebackupwizard3view.ui:185 #: app/restorebackupwizard3view.ui:169 app/restorebackupwizard3view.ui:185
#, no-c-format #, no-c-format
@ -537,19 +539,19 @@ msgid "unknown"
msgstr "неизвестно" msgstr "неизвестно"
#: common/keepsettings.kcfg:7 common/keepsettings.kcfg:9 #: common/keepsettings.kcfg:7 common/keepsettings.kcfg:9
#, fuzzy, no-c-format #, no-c-format
msgid "Notify backup error." msgid "Notify backup error."
msgstr "Известить об ошибке при резервировании" msgstr "Уведомить об ошибке резервного копирования."
#: common/keepsettings.kcfg:12 common/keepsettings.kcfg:14 #: common/keepsettings.kcfg:12 common/keepsettings.kcfg:14
#, fuzzy, no-c-format #, no-c-format
msgid "Notify backup success." msgid "Notify backup success."
msgstr "Известить об успешном создании резервной копии" msgstr "Уведомить об успешном создании резервной копии."
#: common/keepsettings.kcfg:22 #: common/keepsettings.kcfg:22
#, fuzzy, no-c-format #, no-c-format
msgid "Rdiff-backup priority\"" msgid "Rdiff-backup priority\""
msgstr "Известить об ошибке при резервировании" msgstr "Приоритет резервного копирования Rdiff\""
#, fuzzy #, fuzzy
#~ msgid "Configure" #~ msgid "Configure"

Loading…
Cancel
Save