Compare commits

..

24 Commits

Author SHA1 Message Date
TDE Gitea 22d51dbc64 Merge translation files from master branch. 6 months ago
TDE Gitea bc8945ba48 Merge translation files from master branch. 6 months ago
TDE Gitea 737705e08a Merge translation files from master branch. 6 months ago
TDE Gitea 6cb1cfcab4 Merge translation files from master branch. 6 months ago
Michele Calgaro f8c80d36d7
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8325fed3c0)
6 months ago
TDE Gitea e97b3562fa Merge translation files from master branch. 7 months ago
TDE Gitea cc3005c726 Merge translation files from master branch. 7 months ago
TDE Gitea 94db920d23 Merge translation files from master branch. 11 months ago
TDE Gitea 2b44f2d2f8 Merge translation files from master branch. 11 months ago
TDE Gitea a16518a4d8 Merge translation files from master branch. 11 months ago
TDE Gitea b8e667e69d Merge translation files from master branch. 11 months ago
TDE Gitea e06715d711 Merge translation files from master branch. 11 months ago
TDE Gitea 2e49eafcf6 Merge translation files from master branch. 12 months ago
TDE Gitea ca8705e0b2 Merge translation files from master branch. 12 months ago
Michele Calgaro 3616373515
Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 7535d57aa5)
1 year ago
TDE Gitea ab1d038f18 Merge translation files from master branch. 1 year ago
TDE Gitea d74b64b294 Merge translation files from master branch. 1 year ago
Michele Calgaro 3c86993a8d
Remove unused files
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 0f0ace5984)
2 years ago
Michele Calgaro d2af325696
Use centralized cmake version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c7171a4002)
2 years ago
Michele Calgaro cae154ccd0
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ca89ef4124)
2 years ago
Slávek Banko 09ce263735
Raise the minimum required version of CMake to 3.5.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 3036341ada)
2 years ago
Michele Calgaro 0a7a004c36
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 0bd30c3c2e)
2 years ago
Michele Calgaro f5c63412a8
Replace TQ_*Focus* and TQ_Scale* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 38f84cb09b)
2 years ago
Michele Calgaro 70940a449d
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8abfadf6f2)
2 years ago

@ -72,7 +72,7 @@ MainWidget::MainWidget ( TDEAboutData *about, bool tren, TQWidget *parent, const
extent_visible=false;
setFocusPolicy(TQWidget::NoFocus);
TDEConfig *cfg = tdeApp->config();
TDEConfig *cfg = TDEApplication::kApplication()->config();
if (cfg)
{
extent_visible = cfg->readBoolEntry("numpad_visible", false);
@ -506,7 +506,7 @@ MainWidget::MainWidget ( TDEAboutData *about, bool tren, TQWidget *parent, const
tray = new KbdTray ( this );
tray->setPixmap ( UserIcon ( "tray" ) );
TDEConfig *cfg = tdeApp->config();
TDEConfig *cfg = TDEApplication::kApplication()->config();
TDEPopupMenu *m = tray->contextMenu();
m->setCheckable ( true );
@ -571,7 +571,7 @@ MainWidget::MainWidget ( TDEAboutData *about, bool tren, TQWidget *parent, const
void MainWidget::chooseBackgroundColor()
{
TDEConfig *cfg = tdeApp->config();
TDEConfig *cfg = TDEApplication::kApplication()->config();
TQString backgroundC = cfg->readEntry("keyboardBackgroundColor", "#cdc0b0");
TQColor newBackgroundC = TQColorDialog::getColor(TQColor(backgroundC));
if (newBackgroundC.isValid())
@ -584,7 +584,7 @@ void MainWidget::chooseBackgroundColor()
void MainWidget::chooseKeysColor()
{
TDEConfig *cfg = tdeApp->config();
TDEConfig *cfg = TDEApplication::kApplication()->config();
TQString keysC = cfg->readEntry("keysColor", "#f0f0f0");
TQColor newkeysC = TQColorDialog::getColor(TQColor(keysC));
if (newkeysC.isValid())
@ -613,7 +613,7 @@ void MainWidget::chooseKeysColor()
void MainWidget::finishInit()
{
TDEConfig *cfg = tdeApp->config();
TDEConfig *cfg = TDEApplication::kApplication()->config();
bool vis = cfg->readBoolEntry("visible",true);
if (vis) {
show();
@ -640,7 +640,7 @@ void MainWidget::restorePosition()
TQRect dflt_geom(screen_geom.width()-d_width-150,screen_geom.height()-d_height-50,d_width,d_height);
TDEConfig *cfg = 0;
cfg = tdeApp->config();
cfg = TDEApplication::kApplication()->config();
if (cfg){
TQRect geom = cfg->readRectEntry("geometry");
if (!geom.isNull() && geom.isValid()) {
@ -653,7 +653,7 @@ void MainWidget::restorePosition()
void MainWidget::saveState()
{
TDEConfig *cfg = 0;
cfg = tdeApp->config();
cfg = TDEApplication::kApplication()->config();
if (cfg){
cfg->writeEntry("visible",isShown());
cfg->sync();
@ -663,7 +663,7 @@ void MainWidget::hideEvent ( TQHideEvent * )
{
TDEConfig *cfg = 0;
cfg = tdeApp->config();
cfg = TDEApplication::kApplication()->config();
if (cfg){
cfg->writeEntry("geometry",geometry());
cfg->writeEntry("numpad_visible",extent_visible);
@ -777,7 +777,7 @@ void MainWidget::chooseFont()
// value, in this case Helvetica [Cronyx], 10
}
TDEConfig *cfg = tdeApp->config();
TDEConfig *cfg = TDEApplication::kApplication()->config();
cfg->writeEntry ("KvkbdFont", this->font());
cfg->sync();
@ -804,7 +804,7 @@ void MainWidget::toggleLock()
{
setLockState(!locked);
TDEConfig *cfg = tdeApp->config();
TDEConfig *cfg = TDEApplication::kApplication()->config();
cfg->writeEntry("locked", locked);
cfg->sync();
}
@ -820,7 +820,7 @@ void MainWidget::showDock()
tray->contextMenu()->setItemChecked ( mnu_dock, !c );
dock->show();
}
TDEConfig *cfg = tdeApp->config();
TDEConfig *cfg = TDEApplication::kApplication()->config();
cfg->writeEntry ("showdock", !c);
cfg->sync();
@ -830,7 +830,7 @@ void MainWidget::toggleFontAutoRes()
{
bool c = tray->contextMenu()->isItemChecked( mnu_autores);
tray->contextMenu()->setItemChecked(mnu_autores, !c);
TDEConfig *cfg = tdeApp->config();
TDEConfig *cfg = TDEApplication::kApplication()->config();
cfg->writeEntry ("autoresfont", !c);
cfg->sync();
}

@ -12,7 +12,7 @@ double VButton::ph=235.0;
VButton::VButton(TQWidget *parent, const char *name): TQPushButton (parent,name)
{
TDEConfig *cfg = tdeApp->config();
TDEConfig *cfg = TDEApplication::kApplication()->config();
TQString keysC = cfg->readEntry("keysColor", "#f0f0f0");
setColor(TQColor(keysC));
setFocusPolicy(TQWidget::NoFocus);

@ -23,7 +23,7 @@
#include <tdeaboutdata.h>
#include <tdecmdlineargs.h>
#include <tdelocale.h>
#include <tdeuniqueapplication.h>
#include <kuniqueapplication.h>
#include "MainWidget.h"
@ -80,11 +80,11 @@ void findAloneWindow()
XCloseDisplay(dipsy);
}
class Kvkbd : public TDEUniqueApplication
class Kvkbd : public KUniqueApplication
{
public:
Kvkbd(): TDEUniqueApplication(true,true,true) {
Kvkbd(): KUniqueApplication(true,true,true) {
};
@ -133,7 +133,7 @@ public:
}
}
return TDEUniqueApplication::process(fun,data,replyType,replyData);
return KUniqueApplication::process(fun,data,replyType,replyData);
};

@ -1,35 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# Slávek Banko <slavek.banko@axis.cz>, 2025.
# Alejo Fernández <alejofernandez@hotmail.com.ar>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-03 10:29+0200\n"
"PO-Revision-Date: 2025-05-13 19:15+0000\n"
"Last-Translator: Alejo Fernández <alejofernandez@hotmail.com.ar>\n"
"Language-Team: Spanish (Argentina) <https://mirror.git.trinitydesktop.org/"
"weblate/projects/applications/kvkbd-kvkbddesktop/es_AR/>\n"
"Language: es_AR\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
#: kvkbd.desktop:3
#, fuzzy
msgid "Kvkbd"
msgstr "Kvkbd"
#. GenericName
#: kvkbd.desktop:4
msgid "Virtual Keyboard"
msgstr "Teclado virtual"
#. Comment
#: kvkbd.desktop:8
msgid "A virtual keyboard for TDE"
msgstr "Un teclado virtual para TDE"

@ -1,93 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Slávek Banko <slavek.banko@axis.cz>, 2025.
# Alejo Fernández <alejofernandez@hotmail.com.ar>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2021-03-26 18:50+0000\n"
"PO-Revision-Date: 2025-05-13 19:15+0000\n"
"Last-Translator: Alejo Fernández <alejofernandez@hotmail.com.ar>\n"
"Language-Team: Spanish (Argentina) <https://mirror.git.trinitydesktop.org/"
"weblate/projects/applications/kvkbd/es_AR/>\n"
"Language: es_AR\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 "Alejo Fernández"
#. 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 "alejoo.fernandez.2003@gmail.com"
#: MainWidget.cpp:381
msgid "Hide keyboard"
msgstr "Ocultar teclado"
#: MainWidget.cpp:392 MainWidget.cpp:755
msgid "Hide num pad"
msgstr "Ocultar el teclado numérico"
#: MainWidget.cpp:397 MainWidget.cpp:749
msgid "Show num pad"
msgstr "Mostrar el teclado numérico"
#: MainWidget.cpp:515
msgid "Font ..."
msgstr "Tipografía ..."
#: MainWidget.cpp:517
msgid "Auto resize font"
msgstr "Cambiar el tamaño de la tipografía automáticamente"
#: MainWidget.cpp:521
msgid "Background color"
msgstr "Color de fondo"
#: MainWidget.cpp:522
msgid "Keys color"
msgstr "Color de las teclas"
#: MainWidget.cpp:525
msgid "Dock widget"
msgstr "Widget acoplable"
#: MainWidget.cpp:529
msgid "Lock on screen"
msgstr "Bloquear en pantalla"
#: MainWidget.cpp:960
msgid "Toggle keyboard visibility"
msgstr "Activar/desactivar la visibilidad del teclado"
#: MainWidget.cpp:989
msgid "Virtual keyboard"
msgstr "Teclado virtual"
#: main.cpp:36
msgid "A virtual keyboard for TDE"
msgstr "Un teclado virtual para TDE"
#: main.cpp:42
msgid ""
"Stand alone version for use with TDM or XDM. \n"
"You should Add : HOME=/root kvkbd --loginhelper & to Xsetup to run in xdm/tdm"
msgstr ""
"Versión independiente para usar con TDM o XDM. \n"
"Deberías agregar: HOME=/root kvkbd --loginhelper & a Xsetup para que se "
"ejecute en xdm/tdm"
#: main.cpp:186
#, fuzzy
msgid "kvkbd"
msgstr "kvkbd"
Loading…
Cancel
Save