Compare commits

..

22 Commits

Author SHA1 Message Date
Michele Calgaro b5d6568563
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit aa806af764)
3 years ago
Michele Calgaro 2654338bb2
Remove obsolete setting of CMAKE_MODULE_PATH in cmake files.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
3 years ago
Slávek Banko c5363efbeb
Update version number to the upcoming R14.0.13.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
3 years ago
Slávek Banko e7e647077c
Raise the minimum required version of CMake to 3.1 in CMakeL10n rules.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit dae027fc17)
3 years ago
Slávek Banko 4ba78a444c
Raise the minimum required version of CMake to 3.1.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit d7ee67e742)
3 years ago
Slávek Banko 67ab77bd52
Update version number to R14.0.12.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
3 years ago
TDE Gitea a6355928d5 Merge translation files from master branch. 3 years ago
Slávek Banko c168c9641c
Use common rules for build and install documentation and translations.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 9d7fc4700e)
4 years ago
Slávek Banko 2271dae6de
Remove cmake submodule since it has now been replaced by cmake-trinity dependency.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
4 years ago
TDE Gitea 5ae56b7598 Reset submodule main/applications/tdedocker/cmake to latest HEAD 4 years ago
Slávek Banko d35ab02c23
Update version number to R14.0.11.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
4 years ago
Slávek Banko bfa0f6688d
Fix FTBFS due to narrowing Window ID from unsigned long to long.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 7df6c3f008)
4 years ago
TDE Gitea 6a53701508 Reset submodule main/applications/tdedocker/cmake to latest HEAD 4 years ago
TDE Gitea 4acc41a322 Reset submodule main/applications/tdedocker/cmake to latest HEAD 4 years ago
TDE Gitea 437ab976fe Reset submodule main/applications/tdedocker/cmake to latest HEAD 4 years ago
Slávek Banko bc17ebb84a
Raise the minimum required version of CMake to 2.8.12.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 159e567fd3)
4 years ago
TDE Gitea 8fabc72659 Reset submodule main/applications/tdedocker/cmake to latest HEAD 4 years ago
TDE Gitea ffd0e12dea Reset submodule main/applications/tdedocker/cmake to latest HEAD 4 years ago
Slávek Banko 0e472618a3
Update version number to R14.0.10.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
4 years ago
Slávek Banko 5cb9f3965b
Update release version number to R14.0.9.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
4 years ago
Slávek Banko 593a0e84cd Merge translation files from master branch. 4 years ago
Michele Calgaro 2d9baeabae
Switch cmake submodule to r14.0.x.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
4 years ago

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

@ -9,12 +9,7 @@
#
#################################################
##### set project version ########################
include( TDEVersion )
cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} )
tde_set_project_version( )
cmake_minimum_required( VERSION 3.1 )
##### general package setup #####################
@ -39,6 +34,11 @@ include( FindPkgConfig )
include( TDEMacros )
##### set version number ########################
tde_set_project_version( )
##### setup install paths #######################
include( TDESetupPaths )

@ -1,16 +1,19 @@
Words of wisdom
1. Make sure all changes work on all desktop environments
1. Make sure all changed work on both KDE and Gnome
2. The System tray protocol specification can be found at
https://freedesktop.org/wiki/Specifications/systemtray-spec
http://freedesktop.org/Standards/systemtray-spec/systemtray-spec-0.1.html
3. The site I use for Xlib reference
3. The KDE System tray Docking Protocol can be found at
http://developer.kde.org/documentation/library/kdetqt/kde3arch/protocols-docking.html
4. The site i use for Xlib reference
http://tronche.com/gui/x/xlib/function-index.html
4. TQt Documentation at https://www.trinitydesktop.org/docs/qt3
5. Qt Documentation at http://doc.trolltech.com
5. There's do or no do. There's no try.
6. There's do or no do. There's no try.
TDEDocker Window Docking Strategy and a little bit of history
-----------------------------------------------------------

@ -1,5 +1,5 @@
Prerequisites
1. Make sure you have TQt installed and working. If you dont know what Qt is,
1. Make sure you have Qt installed and working. If you dont know what Qt is,
you must be out from a cave just now. You will need qmake to compile.
Building

@ -45,8 +45,8 @@ static void sighandler(int sig)
}
tqDebug("%s", i18n("Caught signal %1. Cleaning up.").arg(sig).local8Bit().data());
((TDEDocker*)tdeApp)->trayLabelMgr()->undockAll();
tdeApp->quit();
((TDEDocker*)TDEApplication::kApplication())->trayLabelMgr()->undockAll();
TDEApplication::kApplication()->quit();
}
static const TDECmdLineOptions options[] =
@ -66,7 +66,7 @@ static const TDECmdLineOptions options[] =
TDECmdLineLastOption
};
//extern "C" int TDE_EXPORT kdemain(int argc, char* argv[])
//extern "C" int KDE_EXPORT kdemain(int argc, char* argv[])
int main(int argc, char *argv[])
{
TDEAboutData about("tdedocker", I18N_NOOP("tdedocker"), "1.3",

@ -45,14 +45,14 @@ TDEDocker::TDEDocker()
: TDEApplication(), mTrayLabelMgr(NULL)
{
// Set ourselves up to be called from the application loop
connect(&mInitTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(doInit()));
connect(&mInitTimer, SIGNAL(timeout()), this, SLOT(doInit()));
mInitTimer.start(0, true);
// Required so that the saved config is correctly loaded
// (see TrayLabelMgr::doRestoreSession() for usage)
if (tdeApp->isRestored())
if (TDEApplication::kApplication()->isRestored())
{
tdeApp->sessionConfig();
TDEApplication::kApplication()->sessionConfig();
}
}

@ -30,7 +30,7 @@ class TrayLabelMgr;
class TDEDocker : public TDEApplication
{
TQ_OBJECT
Q_OBJECT
public:
TDEDocker();

@ -76,7 +76,7 @@ void TQTrayLabel::initialize(void)
setAlignment(TQt::AlignCenter);
setBackgroundMode(X11ParentRelative);
connect(&mRealityMonitor, TQ_SIGNAL(timeout()), this, TQ_SLOT(realityCheck()));
connect(&mRealityMonitor, SIGNAL(timeout()), this, SLOT(realityCheck()));
setDockedWindow(mDockedWindow);
sysTrayStatus(TQPaintDevice::x11AppDisplay(), &mSysTray);
@ -198,7 +198,7 @@ void TQTrayLabel::realityCheck(void)
if (!(attr.your_event_mask & SubstructureNotifyMask))
{
subscribe(display, None, SubstructureNotifyMask, true);
TRACE("%s rescanning clients since tqt overrode mask", me());
TRACE("%s rescanning clients since qt overrode mask", me());
scanClients();
}
@ -288,7 +288,7 @@ void TQTrayLabel::dock(void)
* working with with a delay of as little as 50ms. But since I
* dont understand why this delay is required, I am justifiably paranoid
*/
TQTimer::singleShot(500, this, TQ_SLOT(show()));
TQTimer::singleShot(500, this, SLOT(show()));
// let the world know
emit docked(this);
@ -330,7 +330,7 @@ void TQTrayLabel::map(void)
* the WM 200ms to do that. We will override that value to -1 (all
* desktops) on showOnAllDesktops().
*/
TQTimer::singleShot(200, this, TQ_SLOT(showOnAllDesktops()));
TQTimer::singleShot(200, this, SLOT(showOnAllDesktops()));
}
/*
@ -355,13 +355,13 @@ void TQTrayLabel::map(void)
sendMessage(display, tqt_xrootwin(), mDockedWindow, "_NET_ACTIVE_WINDOW", 32,
SubstructureNotifyMask | SubstructureRedirectMask, l, sizeof(l));
// skipTaskbar modifies _NET_WM_STATE. Make sure we dont override WMs value
TQTimer::singleShot(230, this, TQ_SLOT(skipTaskbar()));
TQTimer::singleShot(230, this, SLOT(skipTaskbar()));
// disable "dock when minized" (if enable) for a short while since we went to Iconic state
// (when the window is mapped, often an IconicState WM_STATE message is sent too
// just before the NormalState)
mSavedDWM = mDockWhenMinimized->isChecked(); // store for later use
mDockWhenMinimized->setChecked(false);
TQTimer::singleShot(500, this, TQ_SLOT(toggleDockWhenMinimized()));
TQTimer::singleShot(500, this, SLOT(toggleDockWhenMinimized()));
}
void TQTrayLabel::withdraw(void)
@ -574,7 +574,7 @@ void TQTrayLabel::setDockedWindow(Window w)
if (mWithdrawn)
{
// show the window for sometime before docking
TQTimer::singleShot(500, this, TQ_SLOT(withdraw()));
TQTimer::singleShot(500, this, SLOT(withdraw()));
}
else map();
dock();
@ -622,7 +622,7 @@ void TQTrayLabel::balloonText()
mBalloon->move(p);
mBalloon->show();
TQTimer::singleShot(mBalloonTimeout, mBalloon, TQ_SLOT(hide()));
TQTimer::singleShot(mBalloonTimeout, mBalloon, SLOT(hide()));
#endif
}
@ -840,7 +840,7 @@ void TQTrayLabel::mapEvent(void)
* the window. So we disable it for sometime and reanable.
*/
mDockWhenObscured->setChecked(false);
TQTimer::singleShot(800, mDockWhenObscured, TQ_SLOT(toggle()));
TQTimer::singleShot(800, mDockWhenObscured, SLOT(toggle()));
TRACE("Turning off DWO for some time");
}
}
@ -981,13 +981,13 @@ void TQTrayLabel::installMenu()
mOptionsMenu = new TDEPopupMenu(this);
mDockWhenRestored = new TDEToggleAction(i18n("Dock when session restored"), 0, this);
connect(mDockWhenRestored, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(setDockWhenRestored(bool)));
connect(mDockWhenRestored, SIGNAL(toggled(bool)), this, SLOT(setDockWhenRestored(bool)));
mDockWhenRestored->plug(mOptionsMenu);
mOptionsMenu->insertItem(i18n("Set Icon"), this, TQ_SLOT(setCustomIcon()));
mOptionsMenu->insertItem(i18n("Set Icon"), this, SLOT(setCustomIcon()));
mBalloonTimeoutAction = new TDEAction(i18n("Set balloon timeout"), 0, this);
connect(mBalloonTimeoutAction, TQ_SIGNAL(activated()), this, TQ_SLOT(slotSetBalloonTimeout()));
connect(mBalloonTimeoutAction, SIGNAL(activated()), this, SLOT(slotSetBalloonTimeout()));
mBalloonTimeoutAction->plug(mOptionsMenu);
mDockWhenObscured = new TDEToggleAction(i18n("Dock when obscured"), 0, this);
@ -1000,25 +1000,25 @@ void TQTrayLabel::installMenu()
mDockWhenFocusLost->plug(mOptionsMenu);
mSkipTaskbar = new TDEToggleAction(i18n("Skip taskbar"), 0, this);
connect(mSkipTaskbar, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(setSkipTaskbar(bool)));
connect(mSkipTaskbar, SIGNAL(toggled(bool)), this, SLOT(setSkipTaskbar(bool)));
mSkipTaskbar->plug(mOptionsMenu);
mMainMenu = new TDEPopupMenu(this);
mMainMenu->insertItem(i18n("Options"), mOptionsMenu);
mMainMenu->insertItem(i18n("Dock Another"), tlMgr, TQ_SLOT(dockAnother()));
mMainMenu->insertItem(i18n("Undock All"), tlMgr, TQ_SLOT(undockAll()));
mMainMenu->insertItem(i18n("Quit All"), tlMgr, TQ_SLOT(quitAll()));
mMainMenu->insertItem(i18n("Dock Another"), tlMgr, SLOT(dockAnother()));
mMainMenu->insertItem(i18n("Undock All"), tlMgr, SLOT(undockAll()));
mMainMenu->insertItem(i18n("Quit All"), tlMgr, SLOT(quitAll()));
mMainMenu->insertSeparator();
mShowId = mMainMenu->insertItem(TQString("Show/Hide [untitled]"), this, TQ_SLOT(toggleShow()));
mMainMenu->insertItem(TQString(i18n("Undock")), this, TQ_SLOT(undock()));
mShowId = mMainMenu->insertItem(TQString("Show/Hide [untitled]"), this, SLOT(toggleShow()));
mMainMenu->insertItem(TQString(i18n("Undock")), this, SLOT(undock()));
mMainMenu->insertSeparator();
mMainMenu->insertItem(SmallIcon("help"),KStdGuiItem::help().text(), (new KHelpMenu(this, TDEGlobal::instance()->aboutData()))->menu(), false);
TDEAction *quitAction = KStdAction::quit(this, TQ_SLOT(close()), NULL);
TDEAction *quitAction = KStdAction::quit(this, SLOT(close()), NULL);
quitAction->plug(mMainMenu);
connect(mMainMenu, TQ_SIGNAL(aboutToShow()), this, TQ_SLOT(updateMenu()));
connect(mMainMenu, SIGNAL(aboutToShow()), this, SLOT(updateMenu()));
// Apply defaults here
mDockWhenObscured->setChecked(false);

@ -51,7 +51,7 @@ class TDEToggleAction;
class TQTrayLabel : public TQLabel
{
TQ_OBJECT
Q_OBJECT
public:
TQTrayLabel(Window w, TQWidget *p = NULL, const TQString &text = TQString::null);

@ -47,10 +47,10 @@ TrayLabelMgr* TrayLabelMgr::instance()
TrayLabelMgr::TrayLabelMgr() : mReady(false), mHiddenLabelsCount(0)
{
connect(&restoreSessionTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(doRestoreSession()));
connect(&restoreSessionTimer, SIGNAL(timeout()), this, SLOT(doRestoreSession()));
// Set ourselves up to be called from the application loop
TQTimer::singleShot(0, this, TQ_SLOT(startup()));
TQTimer::singleShot(0, this, SLOT(startup()));
}
TrayLabelMgr::~TrayLabelMgr()
@ -67,7 +67,7 @@ void TrayLabelMgr::startup(void)
* stdout is a tty) OR if we are getting restored, wait for WAIT_TIME until
* the system tray shows up (before informing the user)
*/
static bool do_wait = !isatty(fileno(stdout)) || tdeApp->isRestored();
static bool do_wait = !isatty(fileno(stdout)) || TDEApplication::kApplication()->isRestored();
SysTrayState state = sysTrayStatus(TQPaintDevice::x11AppDisplay());
@ -76,7 +76,7 @@ void TrayLabelMgr::startup(void)
if (wait_time-- > 0 && do_wait)
{
TRACE("Will check sys tray status after 1 second");
TQTimer::singleShot(1000, this, TQ_SLOT(startup()));
TQTimer::singleShot(1000, this, SLOT(startup()));
return;
}
@ -84,7 +84,7 @@ void TrayLabelMgr::startup(void)
state == SysTrayAbsent ? i18n("No system tray found") : i18n("System tray appears to be hidden"),
i18n("TDEDocker")) == KMessageBox::Cancel)
{
tdeApp->quit();
TDEApplication::kApplication()->quit();
return;
}
}
@ -92,7 +92,7 @@ void TrayLabelMgr::startup(void)
// Things are fine or user with OK with the state of system tray
mReady = true;
bool ok = false;
if (tdeApp->isRestored())
if (TDEApplication::kApplication()->isRestored())
{
restoreSession();
ok = true;
@ -110,19 +110,19 @@ void TrayLabelMgr::startup(void)
}
if (!ok)
{
tdeApp->quit();
TDEApplication::kApplication()->quit();
}
}
// Initialize a TQTrayLabel after its creation
void TrayLabelMgr::manageTrayLabel(TQTrayLabel *t)
{
connect(t, TQ_SIGNAL(destroyed(TQObject *)), this, TQ_SLOT(trayLabelDestroyed(TQObject *)));
connect(t, TQ_SIGNAL(undocked(TQTrayLabel *)), t, TQ_SLOT(deleteLater()));
connect(t, SIGNAL(destroyed(TQObject *)), this, SLOT(trayLabelDestroyed(TQObject *)));
connect(t, SIGNAL(undocked(TQTrayLabel *)), t, SLOT(deleteLater()));
// All TQTrayLabels will emit this signal. We just need one of them
if (mTrayLabels.count() == 0)
connect(t, TQ_SIGNAL(sysTrayDestroyed()), this, TQ_SLOT(sysTrayDestroyed()));
connect(t, SIGNAL(sysTrayDestroyed()), this, SLOT(sysTrayDestroyed()));
mTrayLabels.prepend(t);
TRACE("New TQTrayLabel prepended. Count=%i", mTrayLabels.count());
@ -426,7 +426,7 @@ TQTrayLabel *TrayLabelMgr::dockApplication(char *argv[])
{
tqDebug("%s", i18n("Failed to exec [%1]: %2").arg(argv[0]).arg(strerror(errno)).local8Bit().data());
// Exit the forked process only.
// Using tdeApp->quit() crashes the parent application.
// Using TDEApplication::kApplication()->quit() crashes the parent application.
exit(0);
return NULL;
}
@ -447,7 +447,7 @@ TQTrayLabel *TrayLabelMgr::dockApplication(char *argv[])
}
TQTrayLabel *label = new TQTrayLabel(cmd_line, pid);
tdeApp->syncX();
TDEApplication::kApplication()->syncX();
write(filedes[1], buf, sizeof(buf));
close(filedes[0]);
close(filedes[1]);
@ -479,13 +479,13 @@ void TrayLabelMgr::trayLabelDestroyed(TQObject *t)
mTrayLabels.removeRef((TQTrayLabel*)t);
if (mTrayLabels.isEmpty())
{
tdeApp->quit();
TDEApplication::kApplication()->quit();
}
else if (reconnect)
{
TRACE("Reconnecting");
connect(mTrayLabels.getFirst(), TQ_SIGNAL(sysTrayDestroyed()),
this, TQ_SLOT(sysTrayDestroyed()));
connect(mTrayLabels.getFirst(), SIGNAL(sysTrayDestroyed()),
this, SLOT(sysTrayDestroyed()));
}
}
@ -497,7 +497,7 @@ void TrayLabelMgr::sysTrayDestroyed(void)
* to not pop up a box when the user is logging out. So, we set ourselves
* up to notify user after 3 seconds.
*/
TQTimer::singleShot(3000, this, TQ_SLOT(notifySysTrayAbsence()));
TQTimer::singleShot(3000, this, SLOT(notifySysTrayAbsence()));
}
void TrayLabelMgr::notifySysTrayAbsence()
@ -526,7 +526,7 @@ void TrayLabelMgr::doRestoreSession()
{
TRACE("Restoring session");
TDEConfig *config = tdeApp->sessionConfig();
TDEConfig *config = TDEApplication::kApplication()->sessionConfig();
if (config->hasGroup("General"))
{
config->setGroup("General");
@ -554,7 +554,7 @@ void TrayLabelMgr::doRestoreSession()
// Exit if no application could be restored
if (mTrayLabels.isEmpty())
{
tdeApp->quit();
TDEApplication::kApplication()->quit();
}
}
@ -564,7 +564,7 @@ bool TrayLabelMgr::saveState(TQSessionManager &sm)
int i = 0;
TQTrayLabel *t;
TDEConfig *config = tdeApp->sessionConfig();
TDEConfig *config = TDEApplication::kApplication()->sessionConfig();
TQPtrListIterator<TQTrayLabel> it(mTrayLabels);
for (it.toFirst(); it.current(); ++it)
{

@ -35,7 +35,7 @@ class TQSessionManager;
class TrayLabelMgr : public TQObject, public KSessionManaged
{
TQ_OBJECT
Q_OBJECT
public:
static TrayLabelMgr* instance();

@ -0,0 +1,62 @@
TEMPLATE = app
DEPENDPATH += i18n src
INCLUDEPATH += . src /usr/include/X11 /usr/include/X11R6
LIBPATH += /usr/X11/lib /usr/X11R6/lib
LIBS = -lX11 -lXpm -lXmu
TARGET = tdedocker
INSTALL_PATH = /usr/local/share/tdedocker
DOCS_PATH = $$INSTALL_PATH/docs
# Defines
TRANSLATIONS_PATH = $$INSTALL_PATH/i18n
DEFINES += TRANSLATIONS_PATH='"$$TRANSLATIONS_PATH"'
ICONS_PATH = $$INSTALL_PATH/icons
DEFINES += ICONS_PATH='"$$ICONS_PATH"'
# Installation
icons.path = $$ICONS_PATH
icons.files = icons/tdedocker.png icons/question.png
translations.path = $$TRANSLATIONS_PATH
translations.files = i18n/*.qm
docs.path = $$DOCS_PATH
docs.files = README
desktop.path = /usr/share/applications
desktop.files = tdedocker.desktop
target.path = /usr/local/bin
INSTALLS += target icons docs translations desktop
# Input
HEADERS += src/customtraylabel.h \
src/tdedocker.h \
src/qtraylabel.h \
src/trace.h \
src/traylabelmgr.h \
src/util.h
SOURCES += src/customtraylabel.cpp \
src/tdedocker.cpp \
src/main.cpp \
src/qtraylabel.cpp \
src/trace.cpp \
src/traylabelmgr.cpp \
src/util.cpp
TRANSLATIONS += i18n/tdedocker_en.ts i18n/tdedocker_es.ts i18n/tdedocker_fr.ts \
i18n/tdedocker_cs.ts i18n/tdedocker_ru.ts i18n/tdedocker_pt_BR.ts \
i18n/tdedocker_de.ts i18n/tdedocker_pl.ts i18n/tdedocker_id.ts \
i18n/tdedocker_it.ts i18n/tdedocker_bg.ts i18n/tdedocker_ja.ts \
i18n/tdedocker_nl.ts i18n/tdedocker_hu.ts i18n/tdedocker_sv.ts
# Debugging (Uncomment line below and make clean; make")
# DEFINES += ENABLE_TRACING
# Output
MOC_DIR = tmp
OBJECTS_DIR = tmp
DESTDIR = .

@ -1,33 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# Temuri Doghonadze <rkavt@smartprojects.ge>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-03-26 17:51+0100\n"
"PO-Revision-Date: 2024-11-06 05:11+0000\n"
"Last-Translator: Temuri Doghonadze <rkavt@smartprojects.ge>\n"
"Language-Team: Georgian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/tdedocker-tdedockerdesktop/ka/>\n"
"Language: ka\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.17\n"
#. Name
#: tdedocker.desktop:2
msgid "TDEDocker"
msgstr "TDEDocker"
#. GenericName
#: tdedocker.desktop:3
msgid "Application docking utility"
msgstr "აპლიკაციის მიმაგრების პროგრამა"
#. Comment
#: tdedocker.desktop:4
msgid "Docks any application into system tray"
msgstr "ჩაკეცავს ნებისმიერ აპლიკაციას სისტემურ საათთან"

@ -1,34 +0,0 @@
# 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-03-26 17:51+0100\n"
"PO-Revision-Date: 2024-04-24 18:56+0000\n"
"Last-Translator: Andrei Stepanov <adem4ik@gmail.com>\n"
"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/tdedocker-tdedockerdesktop/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
#: tdedocker.desktop:2
msgid "TDEDocker"
msgstr "TDEDocker"
#. GenericName
#: tdedocker.desktop:3
msgid "Application docking utility"
msgstr "Средство для состыковки приложений"
#. Comment
#: tdedocker.desktop:4
msgid "Docks any application into system tray"
msgstr "Помещает любое приложение в системный трей"

@ -30,37 +30,31 @@ msgstr "Засечен е сигнал %1. Почистване."
#: main.cpp:54
#, fuzzy
#| msgid "-b \tDont warn about non-normal windows (blind mode)"
msgid "Dont warn about non-normal windows (blind mode)"
msgstr "-b \tБез предупреждение за абнормални прозорци (сляп режим)"
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tИзключване управление на сесиите"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tВключване управление на сесиите"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr "-f \tПрибиране на текущия (активен) прозорец"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i icon\tИзбиране на друга икона"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr ""
"-m \tОставяне приложението в лентата със задачите (не се скрива при "
@ -72,25 +66,21 @@ msgstr "Прибиране при пълно закриване"
#: main.cpp:61
#, fuzzy
#| msgid "-p secs\tSet ballooning timeout (popup time)"
msgid "Set ballooning timeout (popup time)"
msgstr "-p secs\tУказване времето за изчезване на подсказката"
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr "-q \tИзключване на известяването с подсказки (тих режим)"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tПремахване на даденото приложение от лентата със задачите"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w wid \tid на прозореца, който прибирате в системния трей\n"
@ -104,7 +94,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "Docks any application into the system tray\n"
msgid "Docks any application into the system tray."
msgstr "Прибира всяко дадено приложение в системния трей\n"
@ -203,7 +192,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "Системният трей е скрит или премахнат"
@ -243,7 +231,6 @@ msgstr "Игнориране"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "Системният трей е скрит или премахнат"

@ -34,31 +34,26 @@ msgstr ""
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tVypne správu sezení"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tZapne správce sezení"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr "-f \tDokuje okno, které je právě aktivní"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i ikona\tVlastní ikona doku"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr "-m \tNeskrývat aplikaci při dokování"
@ -72,19 +67,16 @@ msgstr ""
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr "-q \tVypne balónek při změně názvu"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tOdstraní tuto aplikaci z panelu aplikací"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w wid \tID okna aplikace k dokování\n"
@ -98,7 +90,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "Docks any application into the system tray\n"
msgid "Docks any application into the system tray."
msgstr "Dokuje jakoukoli aplikaci do systémové části panelu\n"
@ -192,7 +183,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "Systémová část panelu je skrytá nebo odstraněná"
@ -232,7 +222,6 @@ msgstr "Ignorovat"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "Systémová část panelu je skrytá nebo odstraněná"

@ -32,37 +32,31 @@ msgstr "Empfing Signal %1. Säubern."
#: main.cpp:54
#, fuzzy
#| msgid "-b \tDont warn about non-normal windows (blind mode)"
msgid "Dont warn about non-normal windows (blind mode)"
msgstr "-b Nicht vor nicht normalen Fenstern warnen (Blind-Modus)"
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tDeaktiviert Sitzungsverwaltung"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tAktiviert Sitzungsverwaltung"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr "-f \tDockt das aktive Fenster"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i icon\tEigenes Dock-Symbol"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr "-m \tZeigt das Programmfenster (nicht durch Docken verstecken)"
@ -72,25 +66,21 @@ msgstr "Andocken wenn verdeckt"
#: main.cpp:61
#, fuzzy
#| msgid "-p secs\tSet ballooning timeout (popup time)"
msgid "Set ballooning timeout (popup time)"
msgstr "-p Sek. Sprechblasen-Auszeit einstellen (Kurzinfo-Zeit)"
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr "-q \tDeaktiviert das Anzeigen von Titelveränderungen"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tEntfernt Programm aus der Fensterleiste"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w wid \tFenster ID des anzudockenden Programmes\n"
@ -104,7 +94,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "Docks any application into the system tray\n"
msgid "Docks any application into the system tray."
msgstr ""
"Zeigt von einem beliebigen Programm ein Symbol\n"
@ -205,7 +194,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "Der Systembereich der Kontrollleiste wurde ausgeblendet oder entfernt"
@ -248,7 +236,6 @@ msgstr "Ignoriere"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "Der Systembereich der Kontrollleiste wurde ausgeblendet oder entfernt"

@ -34,31 +34,26 @@ msgstr ""
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tDeshabilitar el manejo de sesiones"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tActivar el manejo de sesiones"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr "-f \tIconifica la ventana que tenga el foco (ventana activa)"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i icon\tPersonaliza el icono a usar"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr "-m \tNo ocultar la ventana de la aplicación al iconificarla"
@ -72,19 +67,16 @@ msgstr ""
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr "-q \tDesactivar el informar de cambios de título (silencioso)"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tEliminar esta aplicación de la barra de tareas"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w wid \tId de la ventana de la aplicación a iconificar\n"
@ -98,7 +90,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "Docks any application into the system tray\n"
msgid "Docks any application into the system tray."
msgstr "Iconifica cualquier aplicación en la bandeja del sistema\n"
@ -196,7 +187,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "La Bandeja del sistema fue ocultada o eliminada"
@ -236,7 +226,6 @@ msgstr "Ignorar"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "La Bandeja del sistema fue ocultada o eliminada"

@ -30,38 +30,32 @@ msgstr "Signal %1 intercepté. Nettoyage en cours."
#: main.cpp:54
#, fuzzy
#| msgid "-b \tDont warn about non-normal windows (blind mode)"
msgid "Dont warn about non-normal windows (blind mode)"
msgstr ""
"-b \tPas d'avertissement pour les fenêtres non conformes (mode aveugle)"
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tDésactiver le gestionnaire de session"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tActiver le gestionnaire de session"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr "-f \tIcônifie la fenêtre active"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i icon\tIcône spécifique pour la miniature"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr "-m \tGarder l'application visible lors de l'icônification"
@ -71,25 +65,21 @@ msgstr "Icônifier si masquée"
#: main.cpp:61
#, fuzzy
#| msgid "-p secs\tSet ballooning timeout (popup time)"
msgid "Set ballooning timeout (popup time)"
msgstr "-p secs\tFixe le délai des Info-bulles"
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr "-q \tDésactiver l'actualisation des Infos-bulles (silencieux)"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tRetirer de la barre des tâches"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w wid \tIdentifiant de la fenêtre à icônifier\n"
@ -103,7 +93,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "Docks any application into the system tray\n"
msgid "Docks any application into the system tray."
msgstr ""
"Permet à n'importe quelle application d'être placée dans la boîte à "
@ -204,7 +193,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "La boite à miniatures est cachée ou a été enlevé"
@ -247,7 +235,6 @@ msgstr "Ignorer"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "La boite à miniatures est cachée ou a été enlevé"

@ -195,7 +195,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "A Rendszer tálca rejtett vagy eltávolított"
@ -239,7 +238,6 @@ msgstr "Letiltás"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "A Rendszer tálca rejtett vagy eltávolított"

@ -30,38 +30,32 @@ msgstr "Mendapat sinyal %1. Membereskan semua."
#: main.cpp:54
#, fuzzy
#| msgid "-b \tDont warn about non-normal windows (blind mode)"
msgid "Dont warn about non-normal windows (blind mode)"
msgstr ""
"-b \tJangan peringatkan tentang jendela yang tidak normal (blind mode)"
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tNon aktifkan manajemen sesi"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tAktifkan manajemen sesi"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr "-f \tDock jendela yang mendapatkan fokus ( jendela aktif )"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i icon\tPilih icon sendiri"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr ""
"-m \tTetap memetakan jendela aplikasi (jangan sembunyikan saat docking)"
@ -77,19 +71,16 @@ msgstr "-p detik\tTentukan waktu petunjuk (waktu tampil)"
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr "-q \tMenonaktifkan petunjuk perubahan titlebar (quiet)"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tHilangkan aplikasi ini dari taskbar"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w wid \tid jendela aplikasi yang di dock\n"
@ -103,7 +94,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "Docks any application into the system tray\n"
msgid "Docks any application into the system tray."
msgstr "Dock aplikasi apa saja ke system tray\n"
@ -202,7 +192,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "System tray telah disembunyikan atau dihilangkan"
@ -242,7 +231,6 @@ msgstr "Abaikan"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "System tray telah disembunyikan atau dihilangkan"

@ -30,38 +30,32 @@ msgstr ""
#: main.cpp:54
#, fuzzy
#| msgid "-b \tDont warn about non-normal windows (blind mode)"
msgid "Dont warn about non-normal windows (blind mode)"
msgstr "-b \t非正常なウィンドウについて警告しない (ブラインド モード)"
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tセッション管理を無効にする"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tセッション管理を有効にする"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr ""
"-f \tフォーカスを持ったウィンドウ(アクティブウィンドウ) をドックに入れる"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i icon\tカスタム ドックアイコン"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr "-m \tウィンドウの配置を保つ (ドックに隠さない)"
@ -71,25 +65,21 @@ msgstr "隠れた時にドックに入れる"
#: main.cpp:61
#, fuzzy
#| msgid "-p secs\tSet ballooning timeout (popup time)"
msgid "Set ballooning timeout (popup time)"
msgstr "-p secs\tバルーニング タイムアウト(ポップアップ タイム) をセット"
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr "-q \tバルーニングタイトルの変更を無効にする"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tタスクバーからこのアプリケーションを除く"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w wid \tドックに入れるアプリケーションのWindow ID\n"
@ -103,7 +93,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "NOTE: Use -d for all startup scripts.\n"
msgid "Docks any application into the system tray."
msgstr "注: 全てのスタートアップ スクリプトの変わりに -d を使いましょう。\n"
@ -204,7 +193,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "システムトレイは、隠されたか、または取り外されました。"
@ -247,7 +235,6 @@ msgstr "無視する"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "システムトレイは、隠されたか、または取り外されました。"

@ -1,225 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Temuri Doghonadze <rkavt@smartprojects.ge>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2020-05-11 04:30+0200\n"
"PO-Revision-Date: 2024-11-10 15:11+0000\n"
"Last-Translator: Temuri Doghonadze <rkavt@smartprojects.ge>\n"
"Language-Team: Georgian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/tdedocker/ka/>\n"
"Language: ka\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.17\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 "თემური დოღონაძე"
#. 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"
msgstr "temuri.doghonadze@gmail.com"
#: main.cpp:47
msgid "Caught signal %1. Cleaning up."
msgstr "მიღებულია სიგნალი %1. მოსუფთავება."
#: main.cpp:54
msgid "Dont warn about non-normal windows (blind mode)"
msgstr "არ გამაფრთხილო არანორმალური ფანჯრების შესახებ (ბრმა რეჟიმი)"
#: main.cpp:55
msgid "Disable session management"
msgstr "სესიების მართვის გათიშვა"
#: main.cpp:56
msgid "Enable session management"
msgstr "სესიების მართვის ჩართვა"
#: main.cpp:57
msgid "Dock window that has the focus (active window)"
msgstr "ფოკუსის მქონე (აქტიური) ფანჯრის მიმაგრება"
#: main.cpp:58
msgid "Custom dock Icon"
msgstr "მორგებული მიმაგრების ხატულა"
#: main.cpp:59
msgid "Keep application window mapped (don't hide on dock)"
msgstr "აპლიკაციის დატოვება ამოცანების პანელზე (არ დამალო ჩაკეცვისას)"
#: main.cpp:60 tqtraylabel.cpp:993
msgid "Dock when obscured"
msgstr "ჩაკეცვა ფოკუსის დაკარგვისას"
#: main.cpp:61
msgid "Set ballooning timeout (popup time)"
msgstr "ბუშტის ვადის დაყენება (მხტუნარა მენიუს დრო)"
#: main.cpp:62
msgid "Disable ballooning title changes (quiet)"
msgstr "ბუშტის სათაურის ცვლილებების გათიშვა (ჩუმად)"
#: main.cpp:63
msgid "Remove this application from the task bar"
msgstr "ამ აპლიკაციის მოცილება ამოცანების პანელიდან"
#: main.cpp:64
msgid "Window id of the application to dock"
msgstr "ჩასაკეცი აპლიკაციის ფანჯრის id"
#: main.cpp:65
msgid "Application to dock"
msgstr "ჩასაკეცი აპლიკაცია"
#: main.cpp:72
msgid "tdedocker"
msgstr "tdedocker"
#: main.cpp:73
msgid "Docks any application into the system tray."
msgstr "ჩაკეცავს ნებისმიერ აპლიკაციას სისტემურ საათთან."
#: main.cpp:74
msgid "Original KDocker maintainer"
msgstr "KDocker-ის პირველი პროგრამისტი"
#: main.cpp:75
msgid "Original KDocker developer"
msgstr "KDocker-ის პირველი წამყვანი პროგრამისტი"
#: tqtraylabel.cpp:747
msgid ""
"You cannot drop an item into the tray icon. Drop it on the window\n"
"that is brought in front when you hover the item over the tray icon"
msgstr ""
"თქვენ არ შეგიძლიათ ელემენტი საათთან ხატულაზე დააგდოთ. დააგდეთ ის ფანჯარაზე,\n"
"რომელიც გამოვა, როცა ზედ თაგუნას გააჩერებთ"
#: tqtraylabel.cpp:748 tqtraylabel.cpp:940 tqtraylabel.cpp:957
#: tqtraylabel.cpp:967 traylabelmgr.cpp:85 traylabelmgr.cpp:360
#: traylabelmgr.cpp:374 traylabelmgr.cpp:388 traylabelmgr.cpp:511
msgid "TDEDocker"
msgstr "TDEDocker"
#: tqtraylabel.cpp:939
msgid ""
"No valid application executable file known. \"Dock When Restore\" is not "
"possible."
msgstr ""
"სწორი აპლიკაციის გამშვები ფაილი უცნობია. \"ჩაკეცვა აღდგენისას\" შეუძლებელია."
#: tqtraylabel.cpp:957
msgid "%1 is not a valid icon"
msgstr "%1 არასწორი ხატულაა"
#: tqtraylabel.cpp:968
msgid "Enter balloon timeout (secs). 0 to disable ballooning"
msgstr "შეიყვანეთ ბუშტის ვადა (წმ). 0 ბუშტის გასათიშად"
#: tqtraylabel.cpp:983
msgid "Dock when session restored"
msgstr "ჩაკეცვა, როცა სესია აღდგება"
#: tqtraylabel.cpp:987
msgid "Set Icon"
msgstr "ხატულას დაყენება"
#: tqtraylabel.cpp:989
msgid "Set balloon timeout"
msgstr "ბუშტის ვადის დაყენება"
#: tqtraylabel.cpp:996
msgid "Dock when minimized"
msgstr "დამალვა საათთან ჩაკეცვისას"
#: tqtraylabel.cpp:999
msgid "Dock when focus lost"
msgstr "ჩაკეცვა საათთან ფოკუსის დაკარგვისას"
#: tqtraylabel.cpp:1002
msgid "Skip taskbar"
msgstr "ამოცანების პანელის გამოტოვება"
#: tqtraylabel.cpp:1008
msgid "Dock Another"
msgstr "სხვის ჩაკეცვა"
#: tqtraylabel.cpp:1009
msgid "Undock All"
msgstr "ყველას ამოკეცვა"
#: tqtraylabel.cpp:1010
msgid "Quit All"
msgstr "ყველა პროგრამიდან გასვლა"
#: tqtraylabel.cpp:1014
msgid "Undock"
msgstr "მოხსნა"
#: tqtraylabel.cpp:1036
#, c-format
msgid "Show %1"
msgstr "%1-ის ჩვენება"
#: tqtraylabel.cpp:1036
#, c-format
msgid "Hide %1"
msgstr "%1-ის დამალვა"
#: traylabelmgr.cpp:84
msgid "No system tray found"
msgstr "სისტემური კუთხე აღმოჩენილი არაა"
#: traylabelmgr.cpp:84
msgid "System tray appears to be hidden"
msgstr "როგორც ჩანს, სისტემური კუთხე დამალულია"
#: traylabelmgr.cpp:351
msgid "Select the application/window to dock with button1."
msgstr "აირჩიეთ აპლიკაცია/ფანჯარა, რომ მიამაგროთ ღილაკს1."
#: traylabelmgr.cpp:352
msgid "Click any other button to abort\n"
msgstr "შესაწყვეტად დააწკაპუნეთ ნებისმიერ სხვა ღილაკზე\n"
#: traylabelmgr.cpp:373
msgid ""
"The window you are attempting to dock does not seem to be a normal window."
msgstr "ფანჯარა, რომლის ჩაკეცვასაც ცდილობთ, ნორმალურ ფანჯარას არ ჰგავს."
#: traylabelmgr.cpp:387
msgid ""
"This window is already docked.\n"
"Click on system tray icon to toggle docking."
msgstr ""
"ეს ფანჯარა უკვე ჩაკეცილია.\n"
"დააწკაპუნეთ სისტემური კუთხის ხატულაზე ჩაკეცვის გადასართავად."
#: traylabelmgr.cpp:427
msgid "Failed to exec [%1]: %2"
msgstr "[%1]-ის გაშვების შეცდომა: %2"
#: traylabelmgr.cpp:437
#, c-format
msgid "Failed to fork: %1"
msgstr "ფორკი ჩავარდა: %1"
#: traylabelmgr.cpp:437
msgid "Ignore"
msgstr "გამოტოვება"
#: traylabelmgr.cpp:510
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr ""
"სისტემური კუთხე დამალული ან მოცილებულია. მოხდება ყველა აპლიკაციის ამოკეცვა."

@ -30,37 +30,31 @@ msgstr "Signaal %1 ontvangen. Opruimen."
#: main.cpp:54
#, fuzzy
#| msgid "-b \tDont warn about non-normal windows (blind mode)"
msgid "Dont warn about non-normal windows (blind mode)"
msgstr "-b \tNiet waarschuwen over niet normale vensters (blinde modus)"
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tSessiebeheer uitschakelen"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tSessiebeheer inschakelen"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr "-f \tVenster dat focus heeft aankoppelen (actieve venster)"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i pictogram\tAangepast pictogram voor aankoppelen"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr "-m \tToepassingsvenster zichtbaar houden"
@ -70,25 +64,21 @@ msgstr "Aankoppelen tijdens verduistering"
#: main.cpp:61
#, fuzzy
#| msgid "-p secs\tSet ballooning timeout (popup time)"
msgid "Set ballooning timeout (popup time)"
msgstr "-p sec.\tBallon interval instellen (popup tijd)"
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr "-q \tBallonnen van titel wijzigingen uitschakelen (stil)"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tDeze toepassing verwijderen uit het systeem dienblad"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w wid \tVenster id van de aan te koppelen applicatie\n"
@ -102,7 +92,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "Docks any application into the system tray\n"
msgid "Docks any application into the system tray."
msgstr "Koppelt elke toepassing aan in het systeem dienblad\n"
@ -202,7 +191,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "Het systeem dienblad was verborgen of verwijderd"
@ -244,7 +232,6 @@ msgstr "Negeren"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "Het systeem dienblad was verborgen of verwijderd"

@ -30,37 +30,31 @@ msgstr "Sinal %1 recebido. Limpando."
#: main.cpp:54
#, fuzzy
#| msgid "-b \tDont warn about non-normal windows (blind mode)"
msgid "Dont warn about non-normal windows (blind mode)"
msgstr "-b \tNão avise sobre janelas fora do normal (modo cego)"
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tDesabilita controle de sessão"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tHabilita controle de sessão"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr "-f \tMostra janela que tem o foco (janela ativa) no painel"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i ico\tPersonalizar ícone para o painel do sistema"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr ""
"-m \tMantém janela do aplicativo mapeada (não esconde ao mostrar no "
@ -76,20 +70,17 @@ msgstr ""
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr ""
"-q \tDesabilita mostrar a mudança nos títulos em popups (silencioso)"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tRemove esta aplicação da barra de tarefas"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w jan\tID da janela da aplicação para mostrar no painel do sistema\n"
@ -103,7 +94,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "Docks any application into the system tray\n"
msgid "Docks any application into the system tray."
msgstr "Mostra qualquer aplicação no painel do sistema\n"
@ -201,7 +191,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "O painel do sistema estava escondido ou não estava sendo executado"
@ -244,7 +233,6 @@ msgstr "Ignorar"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "O painel do sistema estava escondido ou não estava sendo executado"

@ -1,32 +1,28 @@
# Andrei Stepanov <adem4ik@gmail.com>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: TDEDocker 1.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-11 04:30+0200\n"
"PO-Revision-Date: 2024-05-11 01:02+0000\n"
"Last-Translator: Andrei Stepanov <adem4ik@gmail.com>\n"
"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/tdedocker/ru/>\n"
"PO-Revision-Date: 2013-07-07 19:55+0200\n"
"Last-Translator: Aleksey Kirpichnikov <coder@paco.net>\n"
"Language-Team: ru <ru@li.org>\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"
"X-Generator: Translate Toolkit 1.9.0\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 "Андрей Степанов"
msgstr ""
#. 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 "adem4ik@gmail.com"
msgstr ""
#: main.cpp:47
msgid "Caught signal %1. Cleaning up."
@ -38,31 +34,26 @@ msgstr ""
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tОтключить менеджер сессий"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tВключить менеджер сессий"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr "-f \tПоместить в трей окно с фокусом (активное окно)"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i icon\tДругой значек трея"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr "-m \tОставть приложение в панели задач (не прятать в трей)"
@ -76,19 +67,16 @@ msgstr ""
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr "-q \tПрятать всплывающие подсказки"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tУбрать приложение с панели задач"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w wid \tWindow id приложения для помещения в трей\n"
@ -102,7 +90,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "Docks any application into the system tray\n"
msgid "Docks any application into the system tray."
msgstr "Поместить любое приложение в трей\n"
@ -120,7 +107,7 @@ msgid ""
"that is brought in front when you hover the item over the tray icon"
msgstr ""
"Вы не можете переместить объект в трей. Переместите его в окно\n"
"которое будет наверху, когда Вы подведёте объект к значку в трее"
"которое будет наверху, когда Вы подведете объект к иконке в трее"
#: tqtraylabel.cpp:748 tqtraylabel.cpp:940 tqtraylabel.cpp:957
#: tqtraylabel.cpp:967 traylabelmgr.cpp:85 traylabelmgr.cpp:360

@ -30,37 +30,31 @@ msgstr "Tog emot signal %1. Rensar upp."
#: main.cpp:54
#, fuzzy
#| msgid "-b \tDont warn about non-normal windows (blind mode)"
msgid "Dont warn about non-normal windows (blind mode)"
msgstr "-b \tVarna inte om icke-normala fönster (blindläge)"
#: main.cpp:55
#, fuzzy
#| msgid "-d \tDisable session management"
msgid "Disable session management"
msgstr "-d \tInaktivera sessionshantering"
#: main.cpp:56
#, fuzzy
#| msgid "-e \tEnable session management"
msgid "Enable session management"
msgstr "-e \tAktivera sessionshantering"
#: main.cpp:57
#, fuzzy
#| msgid "-f \tDock window that has the focus(active window)"
msgid "Dock window that has the focus (active window)"
msgstr "-f \tDocka fönster som har fokus(aktivt fönster)"
#: main.cpp:58
#, fuzzy
#| msgid "-i icon\tCustom dock Icon"
msgid "Custom dock Icon"
msgstr "-i icon\tCustom Ikon för docka"
#: main.cpp:59
#, fuzzy
#| msgid "-m \tKeep application window mapped (dont hide on dock)"
msgid "Keep application window mapped (don't hide on dock)"
msgstr "-m \tBehåll programfönstret mappat (dölj inte vid dockning)"
@ -70,25 +64,21 @@ msgstr "Docka när undangömd"
#: main.cpp:61
#, fuzzy
#| msgid "-p secs\tSet ballooning timeout (popup time)"
msgid "Set ballooning timeout (popup time)"
msgstr "-p secs\tSet tidsgräns för ballongtext (popup-tid)"
#: main.cpp:62
#, fuzzy
#| msgid "-q \tDisable ballooning title changes (quiet)"
msgid "Disable ballooning title changes (quiet)"
msgstr "-q \tInaktivera titeländring för ballongtext (tyst)"
#: main.cpp:63
#, fuzzy
#| msgid "-t \tRemove this application from the task bar"
msgid "Remove this application from the task bar"
msgstr "-t \tTar bort det här programmet från åtgärdsraden"
#: main.cpp:64
#, fuzzy
#| msgid "-w wid \tWindow id of the application to dock\n"
msgid "Window id of the application to dock"
msgstr "-w wid \tFönstrets id-nummer för programmet att dock\n"
@ -102,7 +92,6 @@ msgstr ""
#: main.cpp:73
#, fuzzy
#| msgid "Docks any application into the system tray\n"
msgid "Docks any application into the system tray."
msgstr "Dockar program i systembrickan\n"
@ -201,7 +190,6 @@ msgstr ""
#: traylabelmgr.cpp:84
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid "System tray appears to be hidden"
msgstr "Systembrickan var dold eller borttagen"
@ -241,7 +229,6 @@ msgstr "Ignorera"
#: traylabelmgr.cpp:510
#, fuzzy
#| msgid "The System tray was hidden or removed"
msgid ""
"The System tray was hidden or removed. All applications will be undocked."
msgstr "Systembrickan var dold eller borttagen"

Loading…
Cancel
Save