Compare commits

..

13 Commits

Author SHA1 Message Date
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);
@ -402,7 +402,7 @@ MainWidget::MainWidget ( TDEAboutData *about, bool tren, TQWidget *parent, const
TQTimer *t = new TQTimer ( this );
connect ( t, TQ_SIGNAL ( timeout() ), this, TQ_SLOT ( queryModState() ) );
t->start ( 500, false );
t->start ( 500, FALSE );
int padx= 554;
TQString txt[9] = { "Ho\nme", TQString::fromUtf8(""), "Pg\nUp",
@ -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,33 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# Michele Calgaro <michele.calgaro@yahoo.it>, 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-03-04 08:44+0000\n"
"Last-Translator: Michele Calgaro <michele.calgaro@yahoo.it>\n"
"Language-Team: Italian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/kvkbd-kvkbddesktop/it/>\n"
"Language: it\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
msgid "Kvkbd"
msgstr "Kvkbd"
#. GenericName
#: kvkbd.desktop:4
msgid "Virtual Keyboard"
msgstr "Tastiera virtuale"
#. Comment
#: kvkbd.desktop:8
msgid "A virtual keyboard for TDE"
msgstr "Una tastiera virtuale per TDE"

@ -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-05-03 10:29+0200\n"
"PO-Revision-Date: 2024-11-04 18:10+0000\n"
"Last-Translator: Temuri Doghonadze <rkavt@smartprojects.ge>\n"
"Language-Team: Georgian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/kvkbd-kvkbddesktop/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
#: kvkbd.desktop:3
msgid "Kvkbd"
msgstr "Kvkbd"
#. GenericName
#: kvkbd.desktop:4
msgid "Virtual Keyboard"
msgstr "ვირტუალური კლავიატურა"
#. Comment
#: kvkbd.desktop:8
msgid "A virtual keyboard for TDE"
msgstr "ვირტუალური კლავიატურა TDE-სთვის"

@ -1,33 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# Heimen Stoffels <vistausss@fastmail.com>, 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-04-04 18:44+0000\n"
"Last-Translator: Heimen Stoffels <vistausss@fastmail.com>\n"
"Language-Team: Dutch <https://mirror.git.trinitydesktop.org/weblate/projects/"
"applications/kvkbd-kvkbddesktop/nl/>\n"
"Language: nl\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
msgid "Kvkbd"
msgstr "Kvkbd"
#. GenericName
#: kvkbd.desktop:4
msgid "Virtual Keyboard"
msgstr "Schermtoetsenbord"
#. Comment
#: kvkbd.desktop:8
msgid "A virtual keyboard for TDE"
msgstr "Een schermtoetsenbord voor 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"

@ -1,89 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Temuri Doghonadze <rkavt@smartprojects.ge>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2021-03-26 18:50+0000\n"
"PO-Revision-Date: 2024-11-08 09:11+0000\n"
"Last-Translator: Temuri Doghonadze <rkavt@smartprojects.ge>\n"
"Language-Team: Georgian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/kvkbd/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).
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).
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
msgstr "temuri.doghonadze@gmail.com"
#: MainWidget.cpp:381
msgid "Hide keyboard"
msgstr "კლავიატურის დამალვა"
#: MainWidget.cpp:392 MainWidget.cpp:755
msgid "Hide num pad"
msgstr "ციფრებიანი კლავიატურის დამალვა"
#: MainWidget.cpp:397 MainWidget.cpp:749
msgid "Show num pad"
msgstr "ციფრებიანი კლავიატურის ჩვენება"
#: MainWidget.cpp:515
msgid "Font ..."
msgstr "ფონტი ..."
#: MainWidget.cpp:517
msgid "Auto resize font"
msgstr "ფონტის ზომის ავტომატური შეცვლა"
#: MainWidget.cpp:521
msgid "Background color"
msgstr "ფონის ფერი"
#: MainWidget.cpp:522
msgid "Keys color"
msgstr "ღილაკების ფერი"
#: MainWidget.cpp:525
msgid "Dock widget"
msgstr "მიმაგრებადი ვიჯეტი"
#: MainWidget.cpp:529
msgid "Lock on screen"
msgstr "დამაგრება ეკრანზე"
#: MainWidget.cpp:960
msgid "Toggle keyboard visibility"
msgstr "კლავიტურის ხილვადობის გადართვა"
#: MainWidget.cpp:989
msgid "Virtual keyboard"
msgstr "ვირტუალური კლავიატურა"
#: main.cpp:36
msgid "A virtual keyboard for TDE"
msgstr "ვირტუალური კლავიატურა 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 ""
"ცალკე ვერსია TDM-თან ან XDM-თან ერთად გამოსაყენებლად.\n"
"xdm/tdm-ში გასაშვებად დაამატეთ HOME=/root kvkbd --loginhelper & თქვენს "
"Xsetup-ში"
#: main.cpp:186
msgid "kvkbd"
msgstr "kvkbd"

@ -1,89 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Heimen Stoffels <vistausss@fastmail.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2021-03-26 18:50+0000\n"
"PO-Revision-Date: 2025-04-04 18:44+0000\n"
"Last-Translator: Heimen Stoffels <vistausss@fastmail.com>\n"
"Language-Team: Dutch <https://mirror.git.trinitydesktop.org/weblate/projects/"
"applications/kvkbd/nl/>\n"
"Language: nl\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).
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr "Heimen Stoffels"
#. 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 "vistausss@fastmail.com"
#: MainWidget.cpp:381
msgid "Hide keyboard"
msgstr "Toetsenbord verbergen"
#: MainWidget.cpp:392 MainWidget.cpp:755
msgid "Hide num pad"
msgstr "Numerieke toetsen verbergen"
#: MainWidget.cpp:397 MainWidget.cpp:749
msgid "Show num pad"
msgstr "Numerieke toetsen tonen"
#: MainWidget.cpp:515
msgid "Font ..."
msgstr "Lettertype…"
#: MainWidget.cpp:517
msgid "Auto resize font"
msgstr "Lettertype automatisch inpassen"
#: MainWidget.cpp:521
msgid "Background color"
msgstr "Achtergrondkleur"
#: MainWidget.cpp:522
msgid "Keys color"
msgstr "Toetskleuren"
#: MainWidget.cpp:525
msgid "Dock widget"
msgstr "Dockwidget"
#: MainWidget.cpp:529
msgid "Lock on screen"
msgstr "Altijd bovenaan"
#: MainWidget.cpp:960
msgid "Toggle keyboard visibility"
msgstr "Toetsenbord tonen/verbergen"
#: MainWidget.cpp:989
msgid "Virtual keyboard"
msgstr "Schermtoetsenbord"
#: main.cpp:36
msgid "A virtual keyboard for TDE"
msgstr "Een schermtoetsenbord voor 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 ""
"Een afzonderlijke uitvoering voor gebruik op TDM of XDM. \n"
"Voeg HOME=/root kvkbd --loginhelper & toe aan Xsetup om te toten op TDM/"
"XDM."
#: main.cpp:186
msgid "kvkbd"
msgstr "kvkbd"

@ -1,90 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Marek W <coronzon88@gmail.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2021-03-26 18:50+0000\n"
"PO-Revision-Date: 2025-03-30 14:44+0000\n"
"Last-Translator: Marek W <coronzon88@gmail.com>\n"
"Language-Team: Polish <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/kvkbd/pl/>\n"
"Language: pl\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==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.17\n"
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr ""
#. 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 ""
#: MainWidget.cpp:381
msgid "Hide keyboard"
msgstr "Ukryj klawiaturę"
#: MainWidget.cpp:392 MainWidget.cpp:755
msgid "Hide num pad"
msgstr "Ukryj klawiaturę numeryczną"
#: MainWidget.cpp:397 MainWidget.cpp:749
msgid "Show num pad"
msgstr "Pokaż klawiaturę numeryczną"
#: MainWidget.cpp:515
msgid "Font ..."
msgstr "Czcionka ..."
#: MainWidget.cpp:517
msgid "Auto resize font"
msgstr "Automatyczny rozmiar czcionki"
#: MainWidget.cpp:521
msgid "Background color"
msgstr "Kolor tła"
#: MainWidget.cpp:522
msgid "Keys color"
msgstr "Kolor klawiszy"
#: MainWidget.cpp:525
msgid "Dock widget"
msgstr "Dokowanie obiektu"
#: MainWidget.cpp:529
msgid "Lock on screen"
msgstr "Zablokowanie na ekranie"
#: MainWidget.cpp:960
msgid "Toggle keyboard visibility"
msgstr "Przełącz widoczność klawiatury"
#: MainWidget.cpp:989
msgid "Virtual keyboard"
msgstr "Wirtualna klawiatura"
#: main.cpp:36
msgid "A virtual keyboard for TDE"
msgstr "Wirtualna klawiatura dla 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 ""
"Wersja samodzielna do użycia z TDM lub XDM.\n"
"Aby uruchomić klawiaturę w xdm/tdm, dodaj HOME=/root kvkbd --loginhelper & "
"do Xsetup"
#: main.cpp:186
msgid "kvkbd"
msgstr ""
Loading…
Cancel
Save