update translations

add notifications
edit resizing
fix reading ps
some fixes
This commit is contained in:
arcan1s 2015-02-11 05:04:56 +03:00
parent 8055647f34
commit 061244b1d0
29 changed files with 8757 additions and 2659 deletions

View File

@ -9,9 +9,17 @@ project (awesomewidgets)
set (PROJECT_AUTHOR "Evgeniy Alekseev")
set (PROJECT_CONTACT "esalexeev@gmail.com")
set (PROJECT_LICENSE "GPLv3")
set (PROJECT_VERSION_MAJOR 2)
set (PROJECT_VERSION_MINOR 2)
set (PROJECT_VERSION_PATCH 0)
option (BUILD_KDE4 "Build on KDE4" OFF)
if (BUILD_KDE4)
set (PROJECT_VERSION_MAJOR 2)
set (PROJECT_VERSION_MINOR 1)
set (PROJECT_VERSION_PATCH 1)
else ()
set (PROJECT_VERSION_MAJOR 2)
set (PROJECT_VERSION_MINOR 2)
set (PROJECT_VERSION_PATCH 0)
endif ()
set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
string (TIMESTAMP CURRENT_DATE "%Y-%m-%d %H:%M" UTC)
@ -21,8 +29,6 @@ message (STATUS "Project: ${PROJECT_NAME}")
message (STATUS "Version: ${PROJECT_VERSION}")
message (STATUS "Build date: ${CURRENT_DATE}")
option (BUILD_KDE4 "Build on KDE4" OFF)
# flags
if (CMAKE_COMPILER_IS_GNUCXX)
set (CMAKE_CXX_FLAGS "-Wall -Wno-cpp -std=c++11")
@ -47,4 +53,4 @@ else ()
endif ()
# translations
# add_subdirectory (translations)
add_subdirectory (translations)

View File

@ -22,7 +22,8 @@ file (GLOB SUBPROJECT_DESKTOP_IN *.desktop)
file (RELATIVE_PATH SUBPROJECT_DESKTOP ${CMAKE_SOURCE_DIR} ${SUBPROJECT_DESKTOP_IN})
file (GLOB_RECURSE SUBPROJECT_SOURCE *.cpp ${PROJECT_TRDPARTY_DIR}/task/*.cpp
${PROJECT_TRDPARTY_DIR}/fontdialog/*.cpp
../extsysmon/extscript.cpp)
../extsysmon/extscript.cpp
../extsysmon/extupgrade.cpp)
set (TASK_HEADER ${PROJECT_TRDPARTY_DIR}/task/task.h)
file (GLOB SUBPROJECT_UI *.ui ${PROJECT_TRDPARTY_DIR}/about/*.ui)
file (GLOB SUBPROJECT_NOTIFY *.notifyrc)

View File

@ -33,6 +33,7 @@
class CustomLabel;
class ExtScript;
class ExtUpgrade;
class GraphicalItem;
class QGraphicsGridLayout;
class QGraphicsScene;
@ -80,7 +81,7 @@ private slots:
// configuration interface
void addBar();
void addCustomScript();
void addNewPkgCommand(QTableWidgetItem *item);
void addPkgCommand();
void contextMenuBars(const QPoint pos);
void contextMenuCustomCommand(const QPoint pos);
void contextMenuPkgCommand(const QPoint pos);
@ -88,6 +89,7 @@ private slots:
void copyCustomCommand(const QString original);
void editBar(QListWidgetItem *item);
void editCustomCommand(QListWidgetItem *item);
void editPkgCommand(QListWidgetItem *item);
void editFanItem(QListWidgetItem *item);
void editHddItem(QListWidgetItem *item);
void editHddSpeedItem(QListWidgetItem *item);
@ -112,6 +114,7 @@ private:
void getGraphicalItems();
GraphicalItem *getItemByTag(const QString tag);
QList<ExtScript *> initScripts();
QList<ExtUpgrade *> initUpgrades();
// ui
QGraphicsGridLayout *mainLayout = nullptr;
CustomLabel *textLabel = nullptr;

View File

@ -28,6 +28,7 @@
#include <QTextCodec>
#include <extscript.h>
#include <extupgrade.h>
#include <graphicalitem.h>
#include <fontdialog/fontdialog.h>
#include <pdebug/pdebug.h>
@ -350,7 +351,7 @@ void AwesomeWidget::createConfigurationInterface(KConfigDialog *parent)
QStringList tooltip;
tooltip.append(i18n("Name: %1", externalScripts[i]->name()));
tooltip.append(i18n("Comment: %1", externalScripts[i]->comment()));
tooltip.append(i18n("Exec: %1", externalScripts[i]->exec()));
tooltip.append(i18n("Exec: %1", externalScripts[i]->executable()));
item->setToolTip(tooltip.join(QChar('\n')));
uiDEConfig.listWidget_custom->addItem(item);
}
@ -376,19 +377,18 @@ void AwesomeWidget::createConfigurationInterface(KConfigDialog *parent)
uiDEConfig.spinBox_mpdport->setValue(deSettings[QString("MPDPORT")].toInt());
uiDEConfig.comboBox_mpris->addItem(deSettings[QString("MPRIS")]);
uiDEConfig.comboBox_mpris->setCurrentIndex(uiDEConfig.comboBox_mpris->count() - 1);
uiDEConfig.tableWidget_pkgCommand->clear();
uiDEConfig.tableWidget_pkgCommand->setRowCount(deSettings[QString("PKGCMD")].split(QChar(',')).count() + 1);
headerList.clear();
headerList.append(i18n("Package manager"));
headerList.append(i18n("Null lines"));
uiDEConfig.tableWidget_pkgCommand->setHorizontalHeaderLabels(headerList);
uiDEConfig.tableWidget_pkgCommand->horizontalHeader()->setResizeMode(QHeaderView::Stretch);
for (int i=0; i<deSettings[QString("PKGCMD")].split(QChar(',')).count(); i++) {
uiDEConfig.tableWidget_pkgCommand->setItem(i, 0, new QTableWidgetItem(deSettings[QString("PKGCMD")].split(QChar(','))[i]));
uiDEConfig.tableWidget_pkgCommand->setItem(i, 1, new QTableWidgetItem(deSettings[QString("PKGNULL")].split(QChar(','))[i]));
QList<ExtUpgrade *> externalUpgrade = initUpgrades();
uiDEConfig.listWidget_pkgCommand->clear();
for (int i=0; i<externalUpgrade.count(); i++) {
QListWidgetItem *item = new QListWidgetItem(externalUpgrade[i]->fileName());
QStringList tooltip;
tooltip.append(i18n("Name: %1", externalUpgrade[i]->name()));
tooltip.append(i18n("Comment: %1", externalUpgrade[i]->comment()));
tooltip.append(i18n("Exec: %1", externalUpgrade[i]->executable()));
item->setToolTip(tooltip.join(QChar('\n')));
uiDEConfig.listWidget_pkgCommand->addItem(item);
}
uiDEConfig.tableWidget_pkgCommand->setItem(uiDEConfig.tableWidget_pkgCommand->rowCount() - 1, 1,
new QTableWidgetItem(QString("0")));
externalUpgrade.clear();
uiDEConfig.comboBox_playerSelect->setCurrentIndex(
uiDEConfig.comboBox_playerSelect->findText(deSettings[QString("PLAYER")], Qt::MatchFixedString));
@ -439,12 +439,13 @@ void AwesomeWidget::createConfigurationInterface(KConfigDialog *parent)
this, SLOT(editCustomCommand(QListWidgetItem *)));
connect(uiDEConfig.listWidget_custom, SIGNAL(customContextMenuRequested(QPoint)),
this, SLOT(contextMenuCustomCommand(QPoint)));
connect(uiDEConfig.tableWidget_pkgCommand, SIGNAL(itemChanged(QTableWidgetItem *)),
this, SLOT(addNewPkgCommand(QTableWidgetItem *)));
connect(uiDEConfig.tableWidget_pkgCommand, SIGNAL(customContextMenuRequested(QPoint)),
connect(uiDEConfig.listWidget_pkgCommand, SIGNAL(itemActivated(QListWidgetItem *)),
this, SLOT(editPkgCommand(QListWidgetItem *)));
connect(uiDEConfig.listWidget_pkgCommand, SIGNAL(customContextMenuRequested(QPoint)),
this, SLOT(contextMenuPkgCommand(QPoint)));
connect(uiAdvancedConfig.pushButton_bars, SIGNAL(clicked(bool)), this, SLOT(addBar()));
connect(uiDEConfig.pushButton_custom, SIGNAL(clicked(bool)), this, SLOT(addCustomScript()));
connect(uiDEConfig.pushButton_pkgCommand, SIGNAL(clicked(bool)), this, SLOT(addPkgCommand()));
connect(uiWidConfig.pushButton_tags, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
connect(uiWidConfig.pushButton_br, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
connect(uiWidConfig.pushButton_font, SIGNAL(clicked(bool)), this, SLOT(setFontFormating()));
@ -546,15 +547,6 @@ void AwesomeWidget::configAccepted()
deSettings[QString("MPDADDRESS")] = uiDEConfig.lineEdit_mpdaddress->text();
deSettings[QString("MPDPORT")] = QString::number(uiDEConfig.spinBox_mpdport->value());
deSettings[QString("MPRIS")] = uiDEConfig.comboBox_mpris->currentText();
items.clear();
for (int i=0; i<uiDEConfig.tableWidget_pkgCommand->rowCount(); i++)
if (uiDEConfig.tableWidget_pkgCommand->item(i, 0) != 0)
items.append(uiDEConfig.tableWidget_pkgCommand->item(i, 0)->text());
deSettings[QString("PKGCMD")] = items.join(QChar(','));
items.clear();
for (int i=0; i<uiDEConfig.tableWidget_pkgCommand->rowCount(); i++)
if (uiDEConfig.tableWidget_pkgCommand->item(i, 0) != 0)
items.append(uiDEConfig.tableWidget_pkgCommand->item(i, 1)->text());
deSettings[QString("PKGNULL")] = items.join(QChar(','));
deSettings[QString("PLAYER")] = uiDEConfig.comboBox_playerSelect->currentText();
writeDataEngineConfiguration(deSettings);
@ -668,7 +660,7 @@ void AwesomeWidget::configChanged()
counts[QString("fan")] = configuration[QString("fanDevice")].split(QString("@@")).count();
counts[QString("hddtemp")] = configuration[QString("hdd")].split(QString("@@")).count();
counts[QString("mount")] = configuration[QString("mount")].split(QString("@@")).count();
counts[QString("pkg")] = deSettings[QString("PKGCMD")].split(QChar(',')).count();
counts[QString("pkg")] = initUpgrades().count();
counts[QString("temp")] = configuration[QString("tempDevice")].split(QString("@@")).count();
counts[QString("tooltip")] = 0;
counts[QString("tooltip")] += configuration[QString("cpuTooltip")].toInt();
@ -724,7 +716,7 @@ void AwesomeWidget::addCustomScript()
{
if (debug) qDebug() << PDEBUG;
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_applet_awesome-widget/desktops");
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_dataengine_extsysmon/scripts");
bool ok;
QString name = QInputDialog::getText(0, i18n("Enter file name"),
i18n("File name"), QLineEdit::Normal,
@ -738,18 +730,21 @@ void AwesomeWidget::addCustomScript()
}
void AwesomeWidget::addNewPkgCommand(QTableWidgetItem *item)
void AwesomeWidget::addPkgCommand()
{
if (debug) qDebug() << PDEBUG;
if ((item->row() == (uiDEConfig.tableWidget_pkgCommand->rowCount() - 1)) &&
(item->column() == 0)) {
uiDEConfig.tableWidget_pkgCommand->insertRow(
uiDEConfig.tableWidget_pkgCommand->rowCount());
uiDEConfig.tableWidget_pkgCommand->setItem(
uiDEConfig.tableWidget_pkgCommand->rowCount() - 1, 1,
new QTableWidgetItem(QString("0")));
}
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_dataengine_extsysmon/upgrade");
bool ok;
QString name = QInputDialog::getText(0, i18n("Enter file name"),
i18n("File name"), QLineEdit::Normal,
QString(""), &ok);
if ((!ok) || (name.isEmpty())) return;
if (!name.endsWith(QString(".desktop"))) name += QString(".desktop");
ExtUpgrade *upgrade = new ExtUpgrade(0, name, dirs, debug);
upgrade->showConfiguration();
}
@ -806,14 +801,18 @@ void AwesomeWidget::contextMenuCustomCommand(const QPoint pos)
void AwesomeWidget::contextMenuPkgCommand(const QPoint pos)
{
if (debug) qDebug() << PDEBUG;
if (uiDEConfig.tableWidget_pkgCommand->currentItem() == 0) return;
if (uiDEConfig.listWidget_pkgCommand->currentItem() == 0) return;
QMenu menu(uiDEConfig.tableWidget_pkgCommand);
QMenu menu(uiDEConfig.listWidget_pkgCommand);
QAction *remove = menu.addAction(QIcon::fromTheme("edit-delete"), i18n("Remove"));
QAction *action = menu.exec(uiDEConfig.tableWidget_pkgCommand->viewport()->mapToGlobal(pos));
if (action == remove)
uiDEConfig.tableWidget_pkgCommand->removeRow(
uiDEConfig.tableWidget_pkgCommand->currentRow());
QAction *action = menu.exec(uiDEConfig.listWidget_pkgCommand->viewport()->mapToGlobal(pos));
if (action == remove) {
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_dataengine_extsysmon/upgrade");
ExtUpgrade *upgrade = new ExtUpgrade(0, uiDEConfig.listWidget_pkgCommand->currentItem()->text(), dirs, debug);
upgrade->tryDelete();
delete upgrade;
uiDEConfig.listWidget_pkgCommand->takeItem(uiDEConfig.listWidget_pkgCommand->currentRow());
}
}
@ -874,7 +873,7 @@ void AwesomeWidget::copyCustomCommand(const QString original)
{
if (debug) qDebug() << PDEBUG;
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_applet_awesome-widget/desktops");
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_dataengine_extsysmon/scripts");
bool ok;
QString name = QInputDialog::getText(0, i18n("Enter file name"),
i18n("File name"), QLineEdit::Normal,
@ -929,6 +928,16 @@ void AwesomeWidget::editCustomCommand(QListWidgetItem *item)
}
void AwesomeWidget::editPkgCommand(QListWidgetItem *item)
{
if (debug) qDebug() << PDEBUG;
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_dataengine_extsysmon/upgrade");
ExtUpgrade *upgrade = new ExtUpgrade(0, item->text(), dirs, debug);
upgrade->showConfiguration();
}
void AwesomeWidget::editFanItem(QListWidgetItem *item)
{
if (debug) qDebug() << PDEBUG;
@ -996,6 +1005,33 @@ QList<ExtScript *> AwesomeWidget::initScripts()
}
QList<ExtUpgrade *> AwesomeWidget::initUpgrades()
{
if (debug) qDebug() << PDEBUG;
QList<ExtUpgrade *> externalUpgrade;
// create directory at $HOME
QString localDir = KStandardDirs::locateLocal("data", "plasma_dataengine_extsysmon/upgrade");
if (KStandardDirs::makeDir(localDir))
if (debug) qDebug() << PDEBUG << ":" << "Created directory" << localDir;
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_dataengine_extsysmon/upgrade");
QStringList names;
for (int i=0; i<dirs.count(); i++) {
QStringList files = QDir(dirs[i]).entryList(QDir::Files, QDir::Name);
for (int j=0; j<files.count(); j++) {
if (!files[j].endsWith(QString(".desktop"))) continue;
if (names.contains(files[j])) continue;
if (debug) qDebug() << PDEBUG << ":" << "Found file" << files[j] << "in" << dirs[i];
names.append(files[j]);
externalUpgrade.append(new ExtUpgrade(0, files[j], dirs, debug));
}
}
return externalUpgrade;
}
void AwesomeWidget::setFontFormating()
{
if (debug) qDebug() << PDEBUG;

View File

@ -345,40 +345,6 @@
</item>
</layout>
</item>
<item row="9" column="0">
<layout class="QVBoxLayout" name="layout_pkgCommand">
<item>
<widget class="QTableWidget" name="tableWidget_pkgCommand">
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>
<property name="toolTip">
<string>Editable
del - remove item</string>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::SingleSelection</enum>
</property>
<attribute name="horizontalHeaderStretchLastSection">
<bool>true</bool>
</attribute>
<attribute name="verticalHeaderVisible">
<bool>false</bool>
</attribute>
<column>
<property name="text">
<string>Package manager</string>
</property>
</column>
<column>
<property name="text">
<string>Null lines</string>
</property>
</column>
</widget>
</item>
</layout>
</item>
<item row="1" column="0">
<layout class="QVBoxLayout" name="layout_custom">
<item>
@ -421,6 +387,48 @@ del - remove item</string>
</item>
</layout>
</item>
<item row="9" column="0">
<layout class="QVBoxLayout" name="layout_pkgCommand">
<item>
<layout class="QHBoxLayout" name="layout_pkgCommandAdd">
<item>
<widget class="QLabel" name="label_pkgCommand">
<property name="text">
<string>Package manager</string>
</property>
</widget>
</item>
<item>
<spacer name="spacer_pkgCommand">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="pushButton_pkgCommand">
<property name="text">
<string>Add</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QListWidget" name="listWidget_pkgCommand">
<property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</widget>

View File

@ -214,7 +214,7 @@ QString GraphicalItem::strType()
default:
value = QString("Horizontal");
break;
}\
}
return value;
}

View File

@ -67,8 +67,8 @@ Item {
Layout.fillWidth: plasmoid.formFactor != PlasmaCore.Planar
Layout.fillHeight: plasmoid.formFactor != PlasmaCore.Planar
Layout.minimumHeight: text.height
Layout.minimumWidth: text.width
Layout.minimumHeight: text.contentHeight
Layout.minimumWidth: text.contentWidth
Plasmoid.icon: "utilities-system-monitor"
Plasmoid.backgroundHints: plasmoid.configuration.background ? "DefaultBackground" : "NoBackground"
@ -144,9 +144,12 @@ Item {
text: plasmoid.configuration.text
PlasmaCore.ToolTipArea {
id: rootTooltip
height: tooltip.height
width: tooltip.width
mainItem: Text {
id: tooltip
height: contentHeight
width: contentWidth
textFormat: Text.RichText
}
}
@ -170,13 +173,6 @@ Item {
text.text = AWKeys.parsePattern(plasmoid.configuration.text)
tooltip.text = AWKeys.toolTipImage()
// update geometry
text.update()
height = text.height
width = text.width
update()
rootTooltip.height = AWKeys.toolTipSize().height
rootTooltip.width = AWKeys.toolTipSize().width
}
Plasmoid.onUserConfiguringChanged: {

View File

@ -437,6 +437,14 @@ bool AWKeys::setDataBySource(const QString sourceName,
// battery
for (int i=0; i<data.keys().count(); i++) {
if (data.keys()[i] == QString("ac")) {
// notification
if ((values[QString("ac")] == params[QString("acOnline")].toString()) != data[QString("ac")].toBool()) {
if (data[QString("ac")].toBool())
AWActions::sendNotification(QString("event"), i18n("AC online"));
else
AWActions::sendNotification(QString("event"), i18n("AC offline"));
}
// value
values[QString("ac")] = data.keys()[i];
if (data[QString("ac")].toBool())
values[QString("ac")] = params[QString("acOnline")].toString();
@ -449,6 +457,10 @@ bool AWKeys::setDataBySource(const QString sourceName,
}
} else if (sourceName == QString("cpu/system/TotalLoad")) {
// cpu
// notification
if ((data[QString("value")].toFloat() >= 90.0) && (values[QString("cpu")].toFloat() < 90.0))
AWActions::sendNotification(QString("event"), i18n("High CPU load"));
// value
values[QString("cpu")] = QString("%1").arg(data[QString("value")].toFloat(), 5, 'f', 1);
toolTip->setData(QString("cpuTooltip"), data[QString("value")].toFloat());
} else if (sourceName.contains(cpuRegExp)) {
@ -505,6 +517,8 @@ bool AWKeys::setDataBySource(const QString sourceName,
mount.remove(QString("partitions")).remove(QString("/filllevel"));
for (int i=0; i<mountDevices.count(); i++)
if (mountDevices[i] == mount) {
if ((data[QString("value")].toFloat() >= 90.0) && (values[QString("hdd") + QString::number(i)].toFloat() < 90.0))
AWActions::sendNotification(QString("event"), i18n("Free space on %1 less than 10%", mount));
values[QString("hdd") + QString::number(i)] = QString("%1").arg(data[QString("value")].toFloat(), 5, 'f', 1);
break;
}
@ -567,14 +581,20 @@ bool AWKeys::setDataBySource(const QString sourceName,
values[QString("memtotgb")] = QString("%1").arg(
values[QString("memusedgb")].toFloat() + values[QString("memfreegb")].toFloat(), 4, 'f', 1);
// percentage
values[QString("mem")] = QString("%1").arg(
100.0 * values[QString("memmb")].toFloat() / values[QString("memtotmb")].toFloat(), 5, 'f', 1);
float value = 100.0 * values[QString("memmb")].toFloat() / values[QString("memtotmb")].toFloat();
// notification
if ((value >= 90.0) && (values[QString("mem")].toFloat() < 90.0))
AWActions::sendNotification(QString("event"), i18n("High memory usage"));
// value
values[QString("mem")] = QString("%1").arg(value, 5, 'f', 1);
toolTip->setData(QString("memTooltip"), values[QString("mem")].toFloat());
} else if (sourceName == QString("netdev")) {
// network device
// notification
if (values[QString("netdev")] != data[QString("value")].toString())
AWActions::sendNotification(QString("event"), i18n("Network device has been changed to %1",
data[QString("value")].toString()));
// value
values[QString("netdev")] = data[QString("value")].toString();
} else if (sourceName.contains(netRecRegExp)) {
// download speed
@ -634,8 +654,12 @@ bool AWKeys::setDataBySource(const QString sourceName,
values[QString("swaptotgb")] = QString("%1").arg(
values[QString("swapgb")].toFloat() + values[QString("swapfreegb")].toFloat(), 4, 'f', 1);
// percentage
values[QString("swap")] = QString("%1").arg(
100.0 * values[QString("swapmb")].toFloat() / values[QString("swaptotmb")].toFloat(), 5, 'f', 1);
float value = 100.0 * values[QString("swapmb")].toFloat() / values[QString("swaptotmb")].toFloat();
// notification
if ((value > 0.0) && (values[QString("swap")].toFloat() == 0.0))
AWActions::sendNotification(QString("event"), i18n("Swap is used"));
// value
values[QString("swap")] = QString("%1").arg(value, 5, 'f', 1);
toolTip->setData(QString("swapTooltip"), values[QString("swap")].toFloat());
} else if (sourceName.contains(tempRegExp)) {
// temperature devices

View File

@ -17,16 +17,12 @@
#include "awtooltip.h"
#include <KI18n/KLocalizedString>
#include <QDebug>
#include <QProcessEnvironment>
#include <math.h>
#include <pdebug/pdebug.h>
#include "awactions.h"
AWToolTip::AWToolTip(QObject *parent,
QMap<QString, QVariant> settings)
@ -156,12 +152,5 @@ void AWToolTip::setData(const QString source, float value, const bool ac)
boundaries[QString("downTooltip")] = data[QString("upTooltip")][i];
boundaries[QString("downTooltip")] *= 1.2;
boundaries[QString("upTooltip")] = boundaries[QString("downTooltip")];
} else if (source == QString("batTooltip")) {
int size = data[source].count();
if (data[source][size-1] * data[source][size-2] >= 0) return;
if (data[source].last() > 0.0)
AWActions::sendNotification(QString("event"), i18n("AC online"));
else
AWActions::sendNotification(QString("event"), i18n("AC offline"));
}
}

View File

@ -44,11 +44,6 @@ Item {
Plasmoid.preferredRepresentation: Plasmoid.fullRepresentation
Plasmoid.compactRepresentation: Plasmoid.fullRepresentation
Layout.fillWidth: plasmoid.formFactor != PlasmaCore.Planar
Layout.fillHeight: plasmoid.formFactor != PlasmaCore.Planar
Layout.minimumWidth: width
Layout. minimumHeight: height
Plasmoid.icon: "utilities-system-monitor"
Plasmoid.backgroundHints: plasmoid.configuration.background ? "DefaultBackground" : "NoBackground"
@ -60,6 +55,8 @@ Item {
Repeater {
id: repeater
height: implicitHeight
width: implicitWidth
model: DPAdds.numberOfDesktops()
Text {
id: text
@ -126,12 +123,11 @@ Item {
repeater.itemAt(i).font.weight = general.fontWeight[plasmoid.configuration.fontWeight]
}
repeater.itemAt(i).update()
newHeight += repeater.itemAt(i).height
newWidth += repeater.itemAt(i).width
newHeight += repeater.itemAt(i).contentHeight
newWidth += repeater.itemAt(i).contentWidth
}
height = newHeight
width = newHeight
update()
Layout.minimumHeight = newHeight
Layout.minimumWidth = newWidth
needTooltipUpdate()
}

View File

@ -624,9 +624,9 @@ QMap<QString, QVariant> ExtendedSysMon::getPsStats()
QStringList running;
for (int i=0; i<directories.count(); i++) {
QFile statusFile(directories[i] + QString("/status"));
QFile statusFile(QString("/proc/%1/status").arg(directories[i]));
if (!statusFile.open(QIODevice::ReadOnly)) continue;
QFile cmdFile(directories[i] + QString("/cmdline"));
QFile cmdFile(QString("/proc/%1/cmdline").arg(directories[i]));
if (!cmdFile.open(QIODevice::ReadOnly)) continue;
QString output = statusFile.readAll();

View File

@ -1,4 +1,8 @@
set (MO_NAME plasma_applet_awesome-widget.mo)
if (BUILD_KDE4)
set (MO_NAME plasma_applet_awesome-widget.mo)
else ()
set (MO_NAME plasma_applet_org.kde.plasma.awesomewidget.mo)
endif ()
file (GLOB _po_files *.po)
set (_gmoFiles)

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,8 @@
set (MO_NAME plasma_applet_desktop-panel.mo)
if (BUILD_KDE4)
set (MO_NAME plasma_applet_desktop-panel.mo)
else ()
set (MO_NAME plasma_applet_org.kde.plasma.desktoppanel.mo)
endif ()
file (GLOB _po_files *.po)
set (_gmoFiles)

View File

@ -1,13 +1,13 @@
# Copyright (C) 2014
# This file is distributed under the same license as the PyTextMonitor package.
#
# Evgeniy Alekseev <esalexeev@gmail.com>, 2014.
# Evgeniy Alekseev <esalexeev@gmail.com>, 2014, 2015.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2014-12-15 02:40+0300\n"
"PO-Revision-Date: 2014-12-15 02:41+0300\n"
"POT-Creation-Date: 2015-02-11 05:00+0300\n"
"PO-Revision-Date: 2015-02-11 05:01+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: English <kde-russian@lists.kde.ru>\n"
"Language: ru\n"
@ -18,140 +18,398 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 1.5\n"
#: desktop-panel.cpp:193
#: desktop-panel-kde4/desktop-panel.cpp:193
#: desktop-panel-kf5/plugin/dpadds.cpp:479
msgid "Top Edge"
msgstr "Top Edge"
#: desktop-panel.cpp:195
#: desktop-panel-kde4/desktop-panel.cpp:195
#: desktop-panel-kf5/plugin/dpadds.cpp:481
msgid "Bottom Edge"
msgstr "Bottom Edge"
#: desktop-panel.cpp:197
#: desktop-panel-kde4/desktop-panel.cpp:197
#: desktop-panel-kf5/plugin/dpadds.cpp:483
msgid "Left Edge"
msgstr "Left Edge"
#: desktop-panel.cpp:199
#: desktop-panel-kde4/desktop-panel.cpp:199
#: desktop-panel-kf5/plugin/dpadds.cpp:485
msgid "Right Edge"
msgstr "Right Edge"
#: desktop-panel.cpp:201
#: desktop-panel-kde4/desktop-panel.cpp:201
msgid "Unknown Position (%1)"
msgstr "Unknown Position (%1)"
#: desktop-panel.cpp:473
#: desktop-panel-kde4/desktop-panel.cpp:473
#: desktop-panel-kf5/package/contents/config/config.qml:25
msgid "Widget"
msgstr "Widget"
#: desktop-panel.cpp:474
#: desktop-panel-kde4/desktop-panel.cpp:474
msgid "Appearance"
msgstr "Appearance"
#: desktop-panel.cpp:475
#: desktop-panel-kde4/desktop-panel.cpp:475
msgid "Toggle panels"
msgstr "Toggle panels"
#: desktop-panel.cpp:596
#: desktop-panel-kde4/desktop-panel.cpp:596
#: desktop-panel-kf5/plugin/dpadds.cpp:354
msgid "Select font"
msgstr "Select font"
#: po/rc.cpp:3 rc.cpp:3
#: desktop-panel-kf5/package/contents/config/config.qml:31
msgid "Advanced"
msgstr "Advanced"
#. i18n: file: desktop-panel-kde4/appearance.ui:30
#. i18n: ectx: attribute (title), widget (QWidget, tab_active)
#: desktop-panel-kf5/package/contents/config/config.qml:37
#: translations/desktop-panel/rc.cpp:3 rc.cpp:3
msgid "Active desktop"
msgstr "Active desktop"
#: po/rc.cpp:6 po/rc.cpp:24 po/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Font"
#: po/rc.cpp:9 po/rc.cpp:27 rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Font size"
#: po/rc.cpp:12 po/rc.cpp:30 rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Font color"
#: po/rc.cpp:15 po/rc.cpp:33 rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Font weight"
#: po/rc.cpp:18 po/rc.cpp:36 rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Font style"
#: po/rc.cpp:21 rc.cpp:21
#. i18n: file: desktop-panel-kde4/appearance.ui:188
#. i18n: ectx: attribute (title), widget (QWidget, tab_inactive)
#: desktop-panel-kf5/package/contents/config/config.qml:43
#: translations/desktop-panel/rc.cpp:21 rc.cpp:21
msgid "Inactive desktop"
msgstr "Inactive desktop"
#: po/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr "To control panels please set widget shortcut."
#: desktop-panel-kf5/package/contents/config/config.qml:49
#: desktop-panel-kf5/package/contents/ui/about.qml:42
msgid "About"
msgstr "About"
#: po/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "Mark"
#: desktop-panel-kf5/package/contents/ui/about.qml:75
msgid "Acknowledgment"
msgstr "Acknowledgment"
#: po/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "A mark which will be shown if this desktop is active"
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:61
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:60
#: desktop-panel-kf5/package/contents/ui/widget.qml:51
#: translations/desktop-panel/rc.cpp:6 translations/desktop-panel/rc.cpp:24
#: translations/desktop-panel/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Font"
#: po/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:79
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:78
#: translations/desktop-panel/rc.cpp:9 translations/desktop-panel/rc.cpp:27
#: rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Font size"
#: po/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:99
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:98
#: translations/desktop-panel/rc.cpp:15 translations/desktop-panel/rc.cpp:33
#: rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Font weight"
#: po/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:107
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:106
msgid "light"
msgstr "light"
#: po/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "Add"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:111
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:154
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:110
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:153
msgid "normal"
msgstr "normal"
#: po/rc.cpp:63 rc.cpp:63
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:115
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:114
msgid "demi bold"
msgstr "demi bold"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:119
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:118
msgid "bold"
msgstr "bold"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:123
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:122
msgid "black"
msgstr "black"
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:146
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:145
#: translations/desktop-panel/rc.cpp:18 translations/desktop-panel/rc.cpp:36
#: rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Font style"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:158
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:157
msgid "italic"
msgstr "italic"
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:181
#: desktop-panel-kf5/package/contents/ui/advanced.qml:121
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:180
#: translations/desktop-panel/rc.cpp:12 translations/desktop-panel/rc.cpp:30
#: rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Font color"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:199
#: desktop-panel-kf5/package/contents/ui/advanced.qml:205
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:198
msgid "Select a color"
msgstr "Select a color"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:206
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:205
msgid "Select a font"
msgstr "Select a font"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:54
msgid "Tooltip type"
msgstr "Tooltip type"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:62
msgid "contours"
msgstr "contours"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:66
msgid "windows"
msgstr "windows"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:70
msgid "clean desktop"
msgstr "clean desktop"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:74
msgid "names"
msgstr "names"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:78
msgid "none"
msgstr "none"
#. i18n: file: desktop-panel-kde4/widget.ui:314
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:101
#: translations/desktop-panel/rc.cpp:63 rc.cpp:63
msgid "Tooltip width"
msgstr "Tooltip width"
#: po/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr "px"
#: po/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr "Window border color on tooltip"
#: po/rc.cpp:72 rc.cpp:72
#. i18n: file: desktop-panel-kde4/widget.ui:380
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_background)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:146
#: translations/desktop-panel/rc.cpp:72 rc.cpp:72
msgid "Enable background"
msgstr "Enable background"
#: po/rc.cpp:75 rc.cpp:75
#. i18n: file: desktop-panel-kde4/widget.ui:410
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_layout)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:160
#: translations/desktop-panel/rc.cpp:75 rc.cpp:75
msgid "Vertical layout"
msgstr "Vertical layout"
#: po/rc.cpp:78 rc.cpp:78
#. i18n: file: desktop-panel-kde4/widget.ui:28
#. i18n: ectx: property (text), widget (QLabel, label_mark)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:172
#: translations/desktop-panel/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "Mark"
#: desktop-panel-kf5/package/contents/ui/widget.qml:44
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"awesome-widgets/\">project homepage</a>"
msgstr ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"awesome-widgets/\">project homepage</a>"
#. i18n: file: desktop-panel-kde4/widget.ui:293
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tags)
#: desktop-panel-kf5/package/contents/ui/widget.qml:194
#: translations/desktop-panel/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "Add"
#: desktop-panel-kf5/package/contents/ui/widget.qml:207
msgid "Show value"
msgstr "Show value"
#: desktop-panel-kf5/package/contents/ui/widget.qml:212
msgid "Tag: %1"
msgstr "Tag: %1"
#: desktop-panel-kf5/package/contents/ui/widget.qml:214
msgid "Value: %1"
msgstr "Value: %1"
#: desktop-panel-kf5/plugin/dpadds.cpp:318
msgid "A set of minimalistic plasmoid widgets"
msgstr "A set of minimalistic plasmoid widgets"
#: desktop-panel-kf5/plugin/dpadds.cpp:320
msgid "Links:"
msgstr "Links:"
#: desktop-panel-kf5/plugin/dpadds.cpp:321
msgid "Homepage"
msgstr "Homepage"
#: desktop-panel-kf5/plugin/dpadds.cpp:322
msgid "Repository"
msgstr "Repository"
#: desktop-panel-kf5/plugin/dpadds.cpp:323
msgid "Bugtracker"
msgstr "Bugtracker"
#: desktop-panel-kf5/plugin/dpadds.cpp:324
msgid "Translation issue"
msgstr "Translation issue"
#: desktop-panel-kf5/plugin/dpadds.cpp:325
msgid "AUR packages"
msgstr "AUR packages"
#: desktop-panel-kf5/plugin/dpadds.cpp:326
msgid "openSUSE packages"
msgstr "openSUSE packages"
#: desktop-panel-kf5/plugin/dpadds.cpp:329
msgid "This software is licensed under %1"
msgstr "This software is licensed under %1"
#: desktop-panel-kf5/plugin/dpadds.cpp:331
msgid "Translators: %1"
msgstr "Translators: %1"
#: desktop-panel-kf5/plugin/dpadds.cpp:339
msgid "This software uses: %1"
msgstr "This software uses: %1"
#: desktop-panel-kf5/plugin/dpadds.cpp:487
msgid "Unknown location (%1)"
msgstr "Unknown location (%1)"
#. i18n: file: desktop-panel-kde4/toggle.ui:41
#. i18n: ectx: property (text), widget (QLabel, label_info)
#: translations/desktop-panel/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr "To control panels please set widget shortcut."
#. i18n: file: desktop-panel-kde4/widget.ui:38
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_mark)
#: translations/desktop-panel/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "A mark which will be shown if this desktop is active"
#. i18n: file: desktop-panel-kde4/widget.ui:157
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_bold)
#: translations/desktop-panel/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#. i18n: file: desktop-panel-kde4/widget.ui:168
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_italic)
#: translations/desktop-panel/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#. i18n: file: desktop-panel-kde4/widget.ui:179
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_underline)
#: translations/desktop-panel/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#. i18n: file: desktop-panel-kde4/widget.ui:324
#. i18n: ectx: property (suffix), widget (QSpinBox, spinBox_tooltip)
#: translations/desktop-panel/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr "px"
#. i18n: file: desktop-panel-kde4/widget.ui:344
#. i18n: ectx: property (text), widget (QLabel, label_tooltipColor)
#: translations/desktop-panel/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr "Window border color on tooltip"
#. i18n: file: desktop-panel-kde4/widget.ui:430
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_tooltip)
#: translations/desktop-panel/rc.cpp:78 rc.cpp:78
msgid "Enable tooltip"
msgstr "Enable tooltip"
#: po/rc.cpp:81 rc.cpp:81
#. i18n: file: desktop-panel-kde4/widget.ui:444
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:81 rc.cpp:81
msgid "Windows"
msgstr "Windows"
#: po/rc.cpp:84 rc.cpp:84
#. i18n: file: desktop-panel-kde4/widget.ui:449
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:84 rc.cpp:84
msgid "Contours"
msgstr "Contours"
#: po/rc.cpp:87 rc.cpp:87
#. i18n: file: desktop-panel-kde4/widget.ui:454
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:87 rc.cpp:87
msgid "Clean desktop"
msgstr "Clean desktop"
#: po/rc.cpp:88 rc.cpp:88
#: translations/desktop-panel/rc.cpp:88 rc.cpp:88
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Evgeniy Alekseev"
#: po/rc.cpp:89 rc.cpp:89
#: translations/desktop-panel/rc.cpp:89 rc.cpp:89
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "esalexeev@gmail.com"
@ -191,9 +449,6 @@ msgstr "esalexeev@gmail.com"
#~ msgid "Set font family"
#~ msgstr "Set font family"
#~ msgid "Set font color"
#~ msgstr "Set font color"
#~ msgid "Set font weight"
#~ msgstr "Set font weight"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2014-12-15 02:40+0300\n"
"POT-Creation-Date: 2015-02-11 05:00+0300\n"
"PO-Revision-Date: 2014-12-15 19:56-0500\n"
"Last-Translator: Ernesto Avilés Vázquez\n"
"Language-Team: Spanish <kde-i18n-doc@kde.org>\n"
@ -18,141 +18,405 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\n"
#: desktop-panel.cpp:193
#: desktop-panel-kde4/desktop-panel.cpp:193
#: desktop-panel-kf5/plugin/dpadds.cpp:479
msgid "Top Edge"
msgstr "Borde superior"
#: desktop-panel.cpp:195
#: desktop-panel-kde4/desktop-panel.cpp:195
#: desktop-panel-kf5/plugin/dpadds.cpp:481
msgid "Bottom Edge"
msgstr "Borde inferior"
#: desktop-panel.cpp:197
#: desktop-panel-kde4/desktop-panel.cpp:197
#: desktop-panel-kf5/plugin/dpadds.cpp:483
msgid "Left Edge"
msgstr "Borde izquierdo"
#: desktop-panel.cpp:199
#: desktop-panel-kde4/desktop-panel.cpp:199
#: desktop-panel-kf5/plugin/dpadds.cpp:485
msgid "Right Edge"
msgstr "Borde derecho"
#: desktop-panel.cpp:201
#: desktop-panel-kde4/desktop-panel.cpp:201
msgid "Unknown Position (%1)"
msgstr "Posición desconocida (%1)"
#: desktop-panel.cpp:473
#: desktop-panel-kde4/desktop-panel.cpp:473
#: desktop-panel-kf5/package/contents/config/config.qml:25
msgid "Widget"
msgstr "Widget"
#: desktop-panel.cpp:474
#: desktop-panel-kde4/desktop-panel.cpp:474
msgid "Appearance"
msgstr "Apariencia"
#: desktop-panel.cpp:475
#: desktop-panel-kde4/desktop-panel.cpp:475
msgid "Toggle panels"
msgstr "Conmutar paneles"
#: desktop-panel.cpp:596
#: desktop-panel-kde4/desktop-panel.cpp:596
#: desktop-panel-kf5/plugin/dpadds.cpp:354
msgid "Select font"
msgstr "Elegir tipo de letra"
#: po/rc.cpp:3 rc.cpp:3
#: desktop-panel-kf5/package/contents/config/config.qml:31
msgid "Advanced"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:30
#. i18n: ectx: attribute (title), widget (QWidget, tab_active)
#: desktop-panel-kf5/package/contents/config/config.qml:37
#: translations/desktop-panel/rc.cpp:3 rc.cpp:3
msgid "Active desktop"
msgstr "Escritorio activo"
#: po/rc.cpp:6 po/rc.cpp:24 po/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Tipo de letra"
#: po/rc.cpp:9 po/rc.cpp:27 rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Tamaño de letra"
#: po/rc.cpp:12 po/rc.cpp:30 rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Color de letra"
#: po/rc.cpp:15 po/rc.cpp:33 rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Grosor de letra"
#: po/rc.cpp:18 po/rc.cpp:36 rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Estilo de letra"
#: po/rc.cpp:21 rc.cpp:21
#. i18n: file: desktop-panel-kde4/appearance.ui:188
#. i18n: ectx: attribute (title), widget (QWidget, tab_inactive)
#: desktop-panel-kf5/package/contents/config/config.qml:43
#: translations/desktop-panel/rc.cpp:21 rc.cpp:21
msgid "Inactive desktop"
msgstr "Escritorio inactivo"
#: po/rc.cpp:39 rc.cpp:39
#: desktop-panel-kf5/package/contents/config/config.qml:49
#: desktop-panel-kf5/package/contents/ui/about.qml:42
msgid "About"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/about.qml:75
msgid "Acknowledgment"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:61
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:60
#: desktop-panel-kf5/package/contents/ui/widget.qml:51
#: translations/desktop-panel/rc.cpp:6 translations/desktop-panel/rc.cpp:24
#: translations/desktop-panel/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Tipo de letra"
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:79
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:78
#: translations/desktop-panel/rc.cpp:9 translations/desktop-panel/rc.cpp:27
#: rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Tamaño de letra"
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:99
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:98
#: translations/desktop-panel/rc.cpp:15 translations/desktop-panel/rc.cpp:33
#: rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Grosor de letra"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:107
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:106
msgid "light"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:111
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:154
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:110
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:153
msgid "normal"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:115
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:114
msgid "demi bold"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:119
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:118
msgid "bold"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:123
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:122
msgid "black"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:146
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:145
#: translations/desktop-panel/rc.cpp:18 translations/desktop-panel/rc.cpp:36
#: rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Estilo de letra"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:158
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:157
msgid "italic"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:181
#: desktop-panel-kf5/package/contents/ui/advanced.qml:121
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:180
#: translations/desktop-panel/rc.cpp:12 translations/desktop-panel/rc.cpp:30
#: rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Color de letra"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:199
#: desktop-panel-kf5/package/contents/ui/advanced.qml:205
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:198
#, fuzzy
msgid "Select a color"
msgstr "Elegir tipo de letra"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:206
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:205
#, fuzzy
msgid "Select a font"
msgstr "Elegir tipo de letra"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:54
#, fuzzy
msgid "Tooltip type"
msgstr "Ancho de la ventana emergente"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:62
#, fuzzy
msgid "contours"
msgstr "Contornos"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:66
#, fuzzy
msgid "windows"
msgstr "Ventanas"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:70
#, fuzzy
msgid "clean desktop"
msgstr "Limpiar escritorio"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:74
#, fuzzy
msgid "names"
msgstr "Tu nombre"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:78
msgid "none"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:314
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:101
#: translations/desktop-panel/rc.cpp:63 rc.cpp:63
msgid "Tooltip width"
msgstr "Ancho de la ventana emergente"
#. i18n: file: desktop-panel-kde4/widget.ui:380
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_background)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:146
#: translations/desktop-panel/rc.cpp:72 rc.cpp:72
msgid "Enable background"
msgstr "Habilitar fondo"
#. i18n: file: desktop-panel-kde4/widget.ui:410
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_layout)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:160
#: translations/desktop-panel/rc.cpp:75 rc.cpp:75
msgid "Vertical layout"
msgstr "Orientación vertical"
#. i18n: file: desktop-panel-kde4/widget.ui:28
#. i18n: ectx: property (text), widget (QLabel, label_mark)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:172
#: translations/desktop-panel/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "Marca"
#: desktop-panel-kf5/package/contents/ui/widget.qml:44
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"awesome-widgets/\">project homepage</a>"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:293
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tags)
#: desktop-panel-kf5/package/contents/ui/widget.qml:194
#: translations/desktop-panel/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "Añadir"
#: desktop-panel-kf5/package/contents/ui/widget.qml:207
msgid "Show value"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:212
msgid "Tag: %1"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:214
msgid "Value: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:318
msgid "A set of minimalistic plasmoid widgets"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:320
msgid "Links:"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:321
msgid "Homepage"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:322
msgid "Repository"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:323
msgid "Bugtracker"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:324
msgid "Translation issue"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:325
msgid "AUR packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:326
msgid "openSUSE packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:329
msgid "This software is licensed under %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:331
msgid "Translators: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:339
msgid "This software uses: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:487
#, fuzzy
msgid "Unknown location (%1)"
msgstr "Posición desconocida (%1)"
#. i18n: file: desktop-panel-kde4/toggle.ui:41
#. i18n: ectx: property (text), widget (QLabel, label_info)
#: translations/desktop-panel/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr ""
"Para controlar los paneles establece el atajo del teclado para el widget."
#: po/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "Marca"
#: po/rc.cpp:45 rc.cpp:45
#. i18n: file: desktop-panel-kde4/widget.ui:38
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_mark)
#: translations/desktop-panel/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "Una marca será mostrada si este escritorio está activo"
#: po/rc.cpp:51 rc.cpp:51
#. i18n: file: desktop-panel-kde4/widget.ui:157
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_bold)
#: translations/desktop-panel/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#: po/rc.cpp:54 rc.cpp:54
#. i18n: file: desktop-panel-kde4/widget.ui:168
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_italic)
#: translations/desktop-panel/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#: po/rc.cpp:57 rc.cpp:57
#. i18n: file: desktop-panel-kde4/widget.ui:179
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_underline)
#: translations/desktop-panel/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#: po/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "Añadir"
#: po/rc.cpp:63 rc.cpp:63
msgid "Tooltip width"
msgstr "Ancho de la ventana emergente"
#: po/rc.cpp:66 rc.cpp:66
#. i18n: file: desktop-panel-kde4/widget.ui:324
#. i18n: ectx: property (suffix), widget (QSpinBox, spinBox_tooltip)
#: translations/desktop-panel/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr "px"
#: po/rc.cpp:69 rc.cpp:69
#. i18n: file: desktop-panel-kde4/widget.ui:344
#. i18n: ectx: property (text), widget (QLabel, label_tooltipColor)
#: translations/desktop-panel/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr "Color del borde de la ventana emergente"
#: po/rc.cpp:72 rc.cpp:72
msgid "Enable background"
msgstr "Habilitar fondo"
#: po/rc.cpp:75 rc.cpp:75
msgid "Vertical layout"
msgstr "Orientación vertical"
#: po/rc.cpp:78 rc.cpp:78
#. i18n: file: desktop-panel-kde4/widget.ui:430
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_tooltip)
#: translations/desktop-panel/rc.cpp:78 rc.cpp:78
msgid "Enable tooltip"
msgstr "Habilitar ventana emergente"
#: po/rc.cpp:81 rc.cpp:81
#. i18n: file: desktop-panel-kde4/widget.ui:444
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:81 rc.cpp:81
msgid "Windows"
msgstr "Ventanas"
#: po/rc.cpp:84 rc.cpp:84
#. i18n: file: desktop-panel-kde4/widget.ui:449
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:84 rc.cpp:84
msgid "Contours"
msgstr "Contornos"
#: po/rc.cpp:87 rc.cpp:87
#. i18n: file: desktop-panel-kde4/widget.ui:454
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:87 rc.cpp:87
msgid "Clean desktop"
msgstr "Limpiar escritorio"
#: po/rc.cpp:88 rc.cpp:88
#: translations/desktop-panel/rc.cpp:88 rc.cpp:88
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Tu nombre"
#: po/rc.cpp:89 rc.cpp:89
#: translations/desktop-panel/rc.cpp:89 rc.cpp:89
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "Tu email"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2014-12-15 02:40+0300\n"
"POT-Creation-Date: 2015-02-11 05:00+0300\n"
"PO-Revision-Date: 2014-06-05 19:24+0400\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: French <kde-french@lists.kde.ru>\n"
@ -19,140 +19,397 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 1.5\n"
#: desktop-panel.cpp:193
#: desktop-panel-kde4/desktop-panel.cpp:193
#: desktop-panel-kf5/plugin/dpadds.cpp:479
msgid "Top Edge"
msgstr ""
#: desktop-panel.cpp:195
#: desktop-panel-kde4/desktop-panel.cpp:195
#: desktop-panel-kf5/plugin/dpadds.cpp:481
msgid "Bottom Edge"
msgstr ""
#: desktop-panel.cpp:197
#: desktop-panel-kde4/desktop-panel.cpp:197
#: desktop-panel-kf5/plugin/dpadds.cpp:483
msgid "Left Edge"
msgstr ""
#: desktop-panel.cpp:199
#: desktop-panel-kde4/desktop-panel.cpp:199
#: desktop-panel-kf5/plugin/dpadds.cpp:485
msgid "Right Edge"
msgstr ""
#: desktop-panel.cpp:201
#: desktop-panel-kde4/desktop-panel.cpp:201
msgid "Unknown Position (%1)"
msgstr ""
#: desktop-panel.cpp:473
#: desktop-panel-kde4/desktop-panel.cpp:473
#: desktop-panel-kf5/package/contents/config/config.qml:25
msgid "Widget"
msgstr "Widget"
#: desktop-panel.cpp:474
#: desktop-panel-kde4/desktop-panel.cpp:474
msgid "Appearance"
msgstr "Apparence"
#: desktop-panel.cpp:475
#: desktop-panel-kde4/desktop-panel.cpp:475
msgid "Toggle panels"
msgstr ""
#: desktop-panel.cpp:596
#: desktop-panel-kde4/desktop-panel.cpp:596
#: desktop-panel-kf5/plugin/dpadds.cpp:354
msgid "Select font"
msgstr ""
#: po/rc.cpp:3 rc.cpp:3
#: desktop-panel-kf5/package/contents/config/config.qml:31
msgid "Advanced"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:30
#. i18n: ectx: attribute (title), widget (QWidget, tab_active)
#: desktop-panel-kf5/package/contents/config/config.qml:37
#: translations/desktop-panel/rc.cpp:3 rc.cpp:3
msgid "Active desktop"
msgstr ""
#: po/rc.cpp:6 po/rc.cpp:24 po/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Police"
#: po/rc.cpp:9 po/rc.cpp:27 rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Taille de la police"
#: po/rc.cpp:12 po/rc.cpp:30 rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Couleur de la police"
#: po/rc.cpp:15 po/rc.cpp:33 rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Épaisseur de la police"
#: po/rc.cpp:18 po/rc.cpp:36 rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Style de la police"
#: po/rc.cpp:21 rc.cpp:21
#. i18n: file: desktop-panel-kde4/appearance.ui:188
#. i18n: ectx: attribute (title), widget (QWidget, tab_inactive)
#: desktop-panel-kf5/package/contents/config/config.qml:43
#: translations/desktop-panel/rc.cpp:21 rc.cpp:21
msgid "Inactive desktop"
msgstr ""
#: po/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
#: desktop-panel-kf5/package/contents/config/config.qml:49
#: desktop-panel-kf5/package/contents/ui/about.qml:42
msgid "About"
msgstr ""
#: po/rc.cpp:42 rc.cpp:42
msgid "Mark"
#: desktop-panel-kf5/package/contents/ui/about.qml:75
msgid "Acknowledgment"
msgstr ""
#: po/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:61
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:60
#: desktop-panel-kf5/package/contents/ui/widget.qml:51
#: translations/desktop-panel/rc.cpp:6 translations/desktop-panel/rc.cpp:24
#: translations/desktop-panel/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Police"
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:79
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:78
#: translations/desktop-panel/rc.cpp:9 translations/desktop-panel/rc.cpp:27
#: rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Taille de la police"
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:99
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:98
#: translations/desktop-panel/rc.cpp:15 translations/desktop-panel/rc.cpp:33
#: rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Épaisseur de la police"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:107
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:106
msgid "light"
msgstr ""
#: po/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:111
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:154
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:110
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:153
msgid "normal"
msgstr ""
#: po/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:115
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:114
msgid "demi bold"
msgstr ""
#: po/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:119
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:118
msgid "bold"
msgstr ""
#: po/rc.cpp:60 rc.cpp:60
msgid "Add"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:123
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:122
msgid "black"
msgstr ""
#: po/rc.cpp:63 rc.cpp:63
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:146
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:145
#: translations/desktop-panel/rc.cpp:18 translations/desktop-panel/rc.cpp:36
#: rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Style de la police"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:158
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:157
msgid "italic"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:181
#: desktop-panel-kf5/package/contents/ui/advanced.qml:121
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:180
#: translations/desktop-panel/rc.cpp:12 translations/desktop-panel/rc.cpp:30
#: rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Couleur de la police"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:199
#: desktop-panel-kf5/package/contents/ui/advanced.qml:205
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:198
msgid "Select a color"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:206
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:205
msgid "Select a font"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:54
msgid "Tooltip type"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:62
msgid "contours"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:66
msgid "windows"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:70
msgid "clean desktop"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:74
#, fuzzy
msgid "names"
msgstr "Evgeniy Alekseev"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:78
msgid "none"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:314
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:101
#: translations/desktop-panel/rc.cpp:63 rc.cpp:63
msgid "Tooltip width"
msgstr ""
#: po/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr ""
#: po/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr ""
#: po/rc.cpp:72 rc.cpp:72
#. i18n: file: desktop-panel-kde4/widget.ui:380
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_background)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:146
#: translations/desktop-panel/rc.cpp:72 rc.cpp:72
msgid "Enable background"
msgstr ""
#: po/rc.cpp:75 rc.cpp:75
#. i18n: file: desktop-panel-kde4/widget.ui:410
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_layout)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:160
#: translations/desktop-panel/rc.cpp:75 rc.cpp:75
msgid "Vertical layout"
msgstr "Positionnement vertical"
#: po/rc.cpp:78 rc.cpp:78
#. i18n: file: desktop-panel-kde4/widget.ui:28
#. i18n: ectx: property (text), widget (QLabel, label_mark)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:172
#: translations/desktop-panel/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:44
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"awesome-widgets/\">project homepage</a>"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:293
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tags)
#: desktop-panel-kf5/package/contents/ui/widget.qml:194
#: translations/desktop-panel/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:207
msgid "Show value"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:212
msgid "Tag: %1"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:214
msgid "Value: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:318
msgid "A set of minimalistic plasmoid widgets"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:320
msgid "Links:"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:321
msgid "Homepage"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:322
msgid "Repository"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:323
msgid "Bugtracker"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:324
msgid "Translation issue"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:325
msgid "AUR packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:326
msgid "openSUSE packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:329
msgid "This software is licensed under %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:331
msgid "Translators: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:339
msgid "This software uses: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:487
msgid "Unknown location (%1)"
msgstr ""
#. i18n: file: desktop-panel-kde4/toggle.ui:41
#. i18n: ectx: property (text), widget (QLabel, label_info)
#: translations/desktop-panel/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:38
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_mark)
#: translations/desktop-panel/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:157
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_bold)
#: translations/desktop-panel/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:168
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_italic)
#: translations/desktop-panel/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:179
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_underline)
#: translations/desktop-panel/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:324
#. i18n: ectx: property (suffix), widget (QSpinBox, spinBox_tooltip)
#: translations/desktop-panel/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:344
#. i18n: ectx: property (text), widget (QLabel, label_tooltipColor)
#: translations/desktop-panel/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:430
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_tooltip)
#: translations/desktop-panel/rc.cpp:78 rc.cpp:78
msgid "Enable tooltip"
msgstr ""
#: po/rc.cpp:81 rc.cpp:81
#. i18n: file: desktop-panel-kde4/widget.ui:444
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:81 rc.cpp:81
msgid "Windows"
msgstr ""
#: po/rc.cpp:84 rc.cpp:84
#. i18n: file: desktop-panel-kde4/widget.ui:449
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:84 rc.cpp:84
msgid "Contours"
msgstr ""
#: po/rc.cpp:87 rc.cpp:87
#. i18n: file: desktop-panel-kde4/widget.ui:454
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:87 rc.cpp:87
msgid "Clean desktop"
msgstr ""
#: po/rc.cpp:88 rc.cpp:88
#: translations/desktop-panel/rc.cpp:88 rc.cpp:88
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Evgeniy Alekseev"
#: po/rc.cpp:89 rc.cpp:89
#: translations/desktop-panel/rc.cpp:89 rc.cpp:89
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "esalexeev@gmail.com"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2014-12-15 02:40+0300\n"
"POT-Creation-Date: 2015-02-11 05:00+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,140 +17,396 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: desktop-panel.cpp:193
#: desktop-panel-kde4/desktop-panel.cpp:193
#: desktop-panel-kf5/plugin/dpadds.cpp:479
msgid "Top Edge"
msgstr ""
#: desktop-panel.cpp:195
#: desktop-panel-kde4/desktop-panel.cpp:195
#: desktop-panel-kf5/plugin/dpadds.cpp:481
msgid "Bottom Edge"
msgstr ""
#: desktop-panel.cpp:197
#: desktop-panel-kde4/desktop-panel.cpp:197
#: desktop-panel-kf5/plugin/dpadds.cpp:483
msgid "Left Edge"
msgstr ""
#: desktop-panel.cpp:199
#: desktop-panel-kde4/desktop-panel.cpp:199
#: desktop-panel-kf5/plugin/dpadds.cpp:485
msgid "Right Edge"
msgstr ""
#: desktop-panel.cpp:201
#: desktop-panel-kde4/desktop-panel.cpp:201
msgid "Unknown Position (%1)"
msgstr ""
#: desktop-panel.cpp:473
#: desktop-panel-kde4/desktop-panel.cpp:473
#: desktop-panel-kf5/package/contents/config/config.qml:25
msgid "Widget"
msgstr ""
#: desktop-panel.cpp:474
#: desktop-panel-kde4/desktop-panel.cpp:474
msgid "Appearance"
msgstr ""
#: desktop-panel.cpp:475
#: desktop-panel-kde4/desktop-panel.cpp:475
msgid "Toggle panels"
msgstr ""
#: desktop-panel.cpp:596
#: desktop-panel-kde4/desktop-panel.cpp:596
#: desktop-panel-kf5/plugin/dpadds.cpp:354
msgid "Select font"
msgstr ""
#: po/rc.cpp:3 rc.cpp:3
#: desktop-panel-kf5/package/contents/config/config.qml:31
msgid "Advanced"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:30
#. i18n: ectx: attribute (title), widget (QWidget, tab_active)
#: desktop-panel-kf5/package/contents/config/config.qml:37
#: translations/desktop-panel/rc.cpp:3 rc.cpp:3
msgid "Active desktop"
msgstr ""
#: po/rc.cpp:6 po/rc.cpp:24 po/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr ""
#: po/rc.cpp:9 po/rc.cpp:27 rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr ""
#: po/rc.cpp:12 po/rc.cpp:30 rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr ""
#: po/rc.cpp:15 po/rc.cpp:33 rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr ""
#: po/rc.cpp:18 po/rc.cpp:36 rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr ""
#: po/rc.cpp:21 rc.cpp:21
#. i18n: file: desktop-panel-kde4/appearance.ui:188
#. i18n: ectx: attribute (title), widget (QWidget, tab_inactive)
#: desktop-panel-kf5/package/contents/config/config.qml:43
#: translations/desktop-panel/rc.cpp:21 rc.cpp:21
msgid "Inactive desktop"
msgstr ""
#: po/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
#: desktop-panel-kf5/package/contents/config/config.qml:49
#: desktop-panel-kf5/package/contents/ui/about.qml:42
msgid "About"
msgstr ""
#: po/rc.cpp:42 rc.cpp:42
msgid "Mark"
#: desktop-panel-kf5/package/contents/ui/about.qml:75
msgid "Acknowledgment"
msgstr ""
#: po/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:61
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:60
#: desktop-panel-kf5/package/contents/ui/widget.qml:51
#: translations/desktop-panel/rc.cpp:6 translations/desktop-panel/rc.cpp:24
#: translations/desktop-panel/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr ""
#: po/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:79
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:78
#: translations/desktop-panel/rc.cpp:9 translations/desktop-panel/rc.cpp:27
#: rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr ""
#: po/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:99
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:98
#: translations/desktop-panel/rc.cpp:15 translations/desktop-panel/rc.cpp:33
#: rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr ""
#: po/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:107
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:106
msgid "light"
msgstr ""
#: po/rc.cpp:60 rc.cpp:60
msgid "Add"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:111
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:154
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:110
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:153
msgid "normal"
msgstr ""
#: po/rc.cpp:63 rc.cpp:63
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:115
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:114
msgid "demi bold"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:119
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:118
msgid "bold"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:123
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:122
msgid "black"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:146
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:145
#: translations/desktop-panel/rc.cpp:18 translations/desktop-panel/rc.cpp:36
#: rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:158
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:157
msgid "italic"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:181
#: desktop-panel-kf5/package/contents/ui/advanced.qml:121
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:180
#: translations/desktop-panel/rc.cpp:12 translations/desktop-panel/rc.cpp:30
#: rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:199
#: desktop-panel-kf5/package/contents/ui/advanced.qml:205
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:198
msgid "Select a color"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:206
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:205
msgid "Select a font"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:54
msgid "Tooltip type"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:62
msgid "contours"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:66
msgid "windows"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:70
msgid "clean desktop"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:74
msgid "names"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:78
msgid "none"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:314
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:101
#: translations/desktop-panel/rc.cpp:63 rc.cpp:63
msgid "Tooltip width"
msgstr ""
#: po/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr ""
#: po/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr ""
#: po/rc.cpp:72 rc.cpp:72
#. i18n: file: desktop-panel-kde4/widget.ui:380
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_background)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:146
#: translations/desktop-panel/rc.cpp:72 rc.cpp:72
msgid "Enable background"
msgstr ""
#: po/rc.cpp:75 rc.cpp:75
#. i18n: file: desktop-panel-kde4/widget.ui:410
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_layout)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:160
#: translations/desktop-panel/rc.cpp:75 rc.cpp:75
msgid "Vertical layout"
msgstr ""
#: po/rc.cpp:78 rc.cpp:78
#. i18n: file: desktop-panel-kde4/widget.ui:28
#. i18n: ectx: property (text), widget (QLabel, label_mark)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:172
#: translations/desktop-panel/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:44
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"awesome-widgets/\">project homepage</a>"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:293
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tags)
#: desktop-panel-kf5/package/contents/ui/widget.qml:194
#: translations/desktop-panel/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:207
msgid "Show value"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:212
msgid "Tag: %1"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:214
msgid "Value: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:318
msgid "A set of minimalistic plasmoid widgets"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:320
msgid "Links:"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:321
msgid "Homepage"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:322
msgid "Repository"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:323
msgid "Bugtracker"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:324
msgid "Translation issue"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:325
msgid "AUR packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:326
msgid "openSUSE packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:329
msgid "This software is licensed under %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:331
msgid "Translators: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:339
msgid "This software uses: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:487
msgid "Unknown location (%1)"
msgstr ""
#. i18n: file: desktop-panel-kde4/toggle.ui:41
#. i18n: ectx: property (text), widget (QLabel, label_info)
#: translations/desktop-panel/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:38
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_mark)
#: translations/desktop-panel/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:157
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_bold)
#: translations/desktop-panel/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:168
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_italic)
#: translations/desktop-panel/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:179
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_underline)
#: translations/desktop-panel/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:324
#. i18n: ectx: property (suffix), widget (QSpinBox, spinBox_tooltip)
#: translations/desktop-panel/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:344
#. i18n: ectx: property (text), widget (QLabel, label_tooltipColor)
#: translations/desktop-panel/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:430
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_tooltip)
#: translations/desktop-panel/rc.cpp:78 rc.cpp:78
msgid "Enable tooltip"
msgstr ""
#: po/rc.cpp:81 rc.cpp:81
#. i18n: file: desktop-panel-kde4/widget.ui:444
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:81 rc.cpp:81
msgid "Windows"
msgstr ""
#: po/rc.cpp:84 rc.cpp:84
#. i18n: file: desktop-panel-kde4/widget.ui:449
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:84 rc.cpp:84
msgid "Contours"
msgstr ""
#: po/rc.cpp:87 rc.cpp:87
#. i18n: file: desktop-panel-kde4/widget.ui:454
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:87 rc.cpp:87
msgid "Clean desktop"
msgstr ""
#: po/rc.cpp:88 rc.cpp:88
#: translations/desktop-panel/rc.cpp:88 rc.cpp:88
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#: po/rc.cpp:89 rc.cpp:89
#: translations/desktop-panel/rc.cpp:89 rc.cpp:89
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2014-12-15 02:40+0300\n"
"POT-Creation-Date: 2015-02-11 05:00+0300\n"
"PO-Revision-Date: 2014-12-24 00:05+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Brazilian Portuguese <kde-russian@lists.kde.ru>\n"
@ -19,141 +19,404 @@ msgstr ""
"X-Language: pt_BR\n"
"X-Source-Language: C\n"
#: desktop-panel.cpp:193
#: desktop-panel-kde4/desktop-panel.cpp:193
#: desktop-panel-kf5/plugin/dpadds.cpp:479
msgid "Top Edge"
msgstr "Canto do topo"
#: desktop-panel.cpp:195
#: desktop-panel-kde4/desktop-panel.cpp:195
#: desktop-panel-kf5/plugin/dpadds.cpp:481
msgid "Bottom Edge"
msgstr "Canto de baixo"
#: desktop-panel.cpp:197
#: desktop-panel-kde4/desktop-panel.cpp:197
#: desktop-panel-kf5/plugin/dpadds.cpp:483
msgid "Left Edge"
msgstr "Canto esquerdo"
#: desktop-panel.cpp:199
#: desktop-panel-kde4/desktop-panel.cpp:199
#: desktop-panel-kf5/plugin/dpadds.cpp:485
msgid "Right Edge"
msgstr "Canto direito"
#: desktop-panel.cpp:201
#, qt-format
#: desktop-panel-kde4/desktop-panel.cpp:201
msgid "Unknown Position (%1)"
msgstr "Posição desconhecida (%1)"
#: desktop-panel.cpp:473
#: desktop-panel-kde4/desktop-panel.cpp:473
#: desktop-panel-kf5/package/contents/config/config.qml:25
msgid "Widget"
msgstr "Widget"
#: desktop-panel.cpp:474
#: desktop-panel-kde4/desktop-panel.cpp:474
msgid "Appearance"
msgstr "Aparência"
#: desktop-panel.cpp:475
#: desktop-panel-kde4/desktop-panel.cpp:475
msgid "Toggle panels"
msgstr "Ativar painéis"
#: desktop-panel.cpp:596
#: desktop-panel-kde4/desktop-panel.cpp:596
#: desktop-panel-kf5/plugin/dpadds.cpp:354
msgid "Select font"
msgstr "Selecionar fonte"
#: po/rc.cpp:3 rc.cpp:3
#: desktop-panel-kf5/package/contents/config/config.qml:31
msgid "Advanced"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:30
#. i18n: ectx: attribute (title), widget (QWidget, tab_active)
#: desktop-panel-kf5/package/contents/config/config.qml:37
#: translations/desktop-panel/rc.cpp:3 rc.cpp:3
msgid "Active desktop"
msgstr "Desktop ativo"
#: po/rc.cpp:6 po/rc.cpp:24 po/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Fonte"
#: po/rc.cpp:9 po/rc.cpp:27 rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Tamanho da fonte"
#: po/rc.cpp:12 po/rc.cpp:30 rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Cor da fonte"
#: po/rc.cpp:15 po/rc.cpp:33 rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Grossura da fonte"
#: po/rc.cpp:18 po/rc.cpp:36 rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Estilo da fonte"
#: po/rc.cpp:21 rc.cpp:21
#. i18n: file: desktop-panel-kde4/appearance.ui:188
#. i18n: ectx: attribute (title), widget (QWidget, tab_inactive)
#: desktop-panel-kf5/package/contents/config/config.qml:43
#: translations/desktop-panel/rc.cpp:21 rc.cpp:21
msgid "Inactive desktop"
msgstr "Desktop inativo"
#: po/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr "Para controlar paines por favor defina o atalho do widget"
#: desktop-panel-kf5/package/contents/config/config.qml:49
#: desktop-panel-kf5/package/contents/ui/about.qml:42
msgid "About"
msgstr ""
#: po/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "Marca"
#: desktop-panel-kf5/package/contents/ui/about.qml:75
msgid "Acknowledgment"
msgstr ""
#: po/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "Uma marca a ser mostrada se este desktop estiver ativo"
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:61
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:60
#: desktop-panel-kf5/package/contents/ui/widget.qml:51
#: translations/desktop-panel/rc.cpp:6 translations/desktop-panel/rc.cpp:24
#: translations/desktop-panel/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Fonte"
#: po/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:79
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:78
#: translations/desktop-panel/rc.cpp:9 translations/desktop-panel/rc.cpp:27
#: rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Tamanho da fonte"
#: po/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:99
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:98
#: translations/desktop-panel/rc.cpp:15 translations/desktop-panel/rc.cpp:33
#: rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Grossura da fonte"
#: po/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:107
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:106
msgid "light"
msgstr ""
#: po/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "Adicionar"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:111
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:154
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:110
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:153
msgid "normal"
msgstr ""
#: po/rc.cpp:63 rc.cpp:63
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:115
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:114
msgid "demi bold"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:119
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:118
msgid "bold"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:123
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:122
msgid "black"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:146
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:145
#: translations/desktop-panel/rc.cpp:18 translations/desktop-panel/rc.cpp:36
#: rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Estilo da fonte"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:158
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:157
msgid "italic"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:181
#: desktop-panel-kf5/package/contents/ui/advanced.qml:121
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:180
#: translations/desktop-panel/rc.cpp:12 translations/desktop-panel/rc.cpp:30
#: rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Cor da fonte"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:199
#: desktop-panel-kf5/package/contents/ui/advanced.qml:205
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:198
#, fuzzy
msgid "Select a color"
msgstr "Selecionar fonte"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:206
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:205
#, fuzzy
msgid "Select a font"
msgstr "Selecionar fonte"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:54
#, fuzzy
msgid "Tooltip type"
msgstr "Largura da dica de contexto"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:62
#, fuzzy
msgid "contours"
msgstr "Contornos"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:66
#, fuzzy
msgid "windows"
msgstr "Janelas"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:70
#, fuzzy
msgid "clean desktop"
msgstr "Limpar desktop"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:74
#, fuzzy
msgid "names"
msgstr "under"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:78
msgid "none"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:314
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:101
#: translations/desktop-panel/rc.cpp:63 rc.cpp:63
msgid "Tooltip width"
msgstr "Largura da dica de contexto"
#: po/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr "px"
#: po/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr "Cor da borda de janela na dica de contexto"
#: po/rc.cpp:72 rc.cpp:72
#. i18n: file: desktop-panel-kde4/widget.ui:380
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_background)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:146
#: translations/desktop-panel/rc.cpp:72 rc.cpp:72
msgid "Enable background"
msgstr "Ativar plano de fundo"
#: po/rc.cpp:75 rc.cpp:75
#. i18n: file: desktop-panel-kde4/widget.ui:410
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_layout)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:160
#: translations/desktop-panel/rc.cpp:75 rc.cpp:75
msgid "Vertical layout"
msgstr "Layout vertical"
#: po/rc.cpp:78 rc.cpp:78
#. i18n: file: desktop-panel-kde4/widget.ui:28
#. i18n: ectx: property (text), widget (QLabel, label_mark)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:172
#: translations/desktop-panel/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "Marca"
#: desktop-panel-kf5/package/contents/ui/widget.qml:44
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"awesome-widgets/\">project homepage</a>"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:293
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tags)
#: desktop-panel-kf5/package/contents/ui/widget.qml:194
#: translations/desktop-panel/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "Adicionar"
#: desktop-panel-kf5/package/contents/ui/widget.qml:207
msgid "Show value"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:212
msgid "Tag: %1"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:214
msgid "Value: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:318
msgid "A set of minimalistic plasmoid widgets"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:320
msgid "Links:"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:321
msgid "Homepage"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:322
msgid "Repository"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:323
msgid "Bugtracker"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:324
msgid "Translation issue"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:325
msgid "AUR packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:326
msgid "openSUSE packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:329
msgid "This software is licensed under %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:331
msgid "Translators: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:339
msgid "This software uses: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:487
#, fuzzy
msgid "Unknown location (%1)"
msgstr "Posição desconhecida (%1)"
#. i18n: file: desktop-panel-kde4/toggle.ui:41
#. i18n: ectx: property (text), widget (QLabel, label_info)
#: translations/desktop-panel/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr "Para controlar paines por favor defina o atalho do widget"
#. i18n: file: desktop-panel-kde4/widget.ui:38
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_mark)
#: translations/desktop-panel/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "Uma marca a ser mostrada se este desktop estiver ativo"
#. i18n: file: desktop-panel-kde4/widget.ui:157
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_bold)
#: translations/desktop-panel/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#. i18n: file: desktop-panel-kde4/widget.ui:168
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_italic)
#: translations/desktop-panel/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#. i18n: file: desktop-panel-kde4/widget.ui:179
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_underline)
#: translations/desktop-panel/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#. i18n: file: desktop-panel-kde4/widget.ui:324
#. i18n: ectx: property (suffix), widget (QSpinBox, spinBox_tooltip)
#: translations/desktop-panel/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr "px"
#. i18n: file: desktop-panel-kde4/widget.ui:344
#. i18n: ectx: property (text), widget (QLabel, label_tooltipColor)
#: translations/desktop-panel/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr "Cor da borda de janela na dica de contexto"
#. i18n: file: desktop-panel-kde4/widget.ui:430
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_tooltip)
#: translations/desktop-panel/rc.cpp:78 rc.cpp:78
msgid "Enable tooltip"
msgstr "Ativar dica de contexto"
#: po/rc.cpp:81 rc.cpp:81
#. i18n: file: desktop-panel-kde4/widget.ui:444
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:81 rc.cpp:81
msgid "Windows"
msgstr "Janelas"
#: po/rc.cpp:84 rc.cpp:84
#. i18n: file: desktop-panel-kde4/widget.ui:449
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:84 rc.cpp:84
msgid "Contours"
msgstr "Contornos"
#: po/rc.cpp:87 rc.cpp:87
#. i18n: file: desktop-panel-kde4/widget.ui:454
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:87 rc.cpp:87
msgid "Clean desktop"
msgstr "Limpar desktop"
#: po/rc.cpp:88 rc.cpp:88
#: translations/desktop-panel/rc.cpp:88 rc.cpp:88
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "under"
#: po/rc.cpp:89 rc.cpp:89
#: translations/desktop-panel/rc.cpp:89 rc.cpp:89
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "under@insicuri.net"

View File

@ -1,13 +1,13 @@
# Copyright (C) 2014
# This file is distributed under the same license as the PyTextMonitor package.
#
# Evgeniy Alekseev <esalexeev@gmail.com>, 2014.
# Evgeniy Alekseev <esalexeev@gmail.com>, 2014, 2015.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2014-12-15 02:40+0300\n"
"PO-Revision-Date: 2014-12-15 02:41+0300\n"
"POT-Creation-Date: 2015-02-11 05:00+0300\n"
"PO-Revision-Date: 2015-02-11 05:04+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: ru\n"
@ -18,140 +18,399 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 1.5\n"
#: desktop-panel.cpp:193
#: desktop-panel-kde4/desktop-panel.cpp:193
#: desktop-panel-kf5/plugin/dpadds.cpp:479
msgid "Top Edge"
msgstr "Верхний край"
#: desktop-panel.cpp:195
#: desktop-panel-kde4/desktop-panel.cpp:195
#: desktop-panel-kf5/plugin/dpadds.cpp:481
msgid "Bottom Edge"
msgstr "Нижний край"
#: desktop-panel.cpp:197
#: desktop-panel-kde4/desktop-panel.cpp:197
#: desktop-panel-kf5/plugin/dpadds.cpp:483
msgid "Left Edge"
msgstr "Левый край"
#: desktop-panel.cpp:199
#: desktop-panel-kde4/desktop-panel.cpp:199
#: desktop-panel-kf5/plugin/dpadds.cpp:485
msgid "Right Edge"
msgstr "Правый край"
#: desktop-panel.cpp:201
#: desktop-panel-kde4/desktop-panel.cpp:201
msgid "Unknown Position (%1)"
msgstr "Неизвестное положение (%1)"
#: desktop-panel.cpp:473
#: desktop-panel-kde4/desktop-panel.cpp:473
#: desktop-panel-kf5/package/contents/config/config.qml:25
msgid "Widget"
msgstr "Виджет"
#: desktop-panel.cpp:474
#: desktop-panel-kde4/desktop-panel.cpp:474
msgid "Appearance"
msgstr "Внешний вид"
#: desktop-panel.cpp:475
#: desktop-panel-kde4/desktop-panel.cpp:475
msgid "Toggle panels"
msgstr "Скрыть панели"
#: desktop-panel.cpp:596
#: desktop-panel-kde4/desktop-panel.cpp:596
#: desktop-panel-kf5/plugin/dpadds.cpp:354
msgid "Select font"
msgstr "Выберете шрифт"
#: po/rc.cpp:3 rc.cpp:3
#: desktop-panel-kf5/package/contents/config/config.qml:31
msgid "Advanced"
msgstr "Расширенные"
#. i18n: file: desktop-panel-kde4/appearance.ui:30
#. i18n: ectx: attribute (title), widget (QWidget, tab_active)
#: desktop-panel-kf5/package/contents/config/config.qml:37
#: translations/desktop-panel/rc.cpp:3 rc.cpp:3
msgid "Active desktop"
msgstr "Активный рабочий стол"
#: po/rc.cpp:6 po/rc.cpp:24 po/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Шрифт"
#: po/rc.cpp:9 po/rc.cpp:27 rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Размер шрифта"
#: po/rc.cpp:12 po/rc.cpp:30 rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Цвет шрифта"
#: po/rc.cpp:15 po/rc.cpp:33 rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Толщина шрифта"
#: po/rc.cpp:18 po/rc.cpp:36 rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Стиль шрифта"
#: po/rc.cpp:21 rc.cpp:21
#. i18n: file: desktop-panel-kde4/appearance.ui:188
#. i18n: ectx: attribute (title), widget (QWidget, tab_inactive)
#: desktop-panel-kf5/package/contents/config/config.qml:43
#: translations/desktop-panel/rc.cpp:21 rc.cpp:21
msgid "Inactive desktop"
msgstr "Неактивный рабочий стол"
#: po/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr "Чтобы управлять панелями, настройте комбинацию клавиш."
#: desktop-panel-kf5/package/contents/config/config.qml:49
#: desktop-panel-kf5/package/contents/ui/about.qml:42
msgid "About"
msgstr "О программе"
#: po/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "Метка"
#: desktop-panel-kf5/package/contents/ui/about.qml:75
msgid "Acknowledgment"
msgstr "Благодарности"
#: po/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "Метка, которая будет показана, если данный рабочий стол активен"
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:61
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:60
#: desktop-panel-kf5/package/contents/ui/widget.qml:51
#: translations/desktop-panel/rc.cpp:6 translations/desktop-panel/rc.cpp:24
#: translations/desktop-panel/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Шрифт"
#: po/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:79
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:78
#: translations/desktop-panel/rc.cpp:9 translations/desktop-panel/rc.cpp:27
#: rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Размер шрифта"
#: po/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:99
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:98
#: translations/desktop-panel/rc.cpp:15 translations/desktop-panel/rc.cpp:33
#: rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Толщина шрифта"
#: po/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:107
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:106
msgid "light"
msgstr "тонкий"
#: po/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "Добавить"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:111
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:154
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:110
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:153
msgid "normal"
msgstr "нормальный"
#: po/rc.cpp:63 rc.cpp:63
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:115
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:114
msgid "demi bold"
msgstr "полужирный"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:119
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:118
msgid "bold"
msgstr "жирный"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:123
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:122
msgid "black"
msgstr "очень жирный"
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:146
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:145
#: translations/desktop-panel/rc.cpp:18 translations/desktop-panel/rc.cpp:36
#: rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Стиль шрифта"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:158
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:157
msgid "italic"
msgstr "курсив"
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:181
#: desktop-panel-kf5/package/contents/ui/advanced.qml:121
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:180
#: translations/desktop-panel/rc.cpp:12 translations/desktop-panel/rc.cpp:30
#: rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Цвет шрифта"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:199
#: desktop-panel-kf5/package/contents/ui/advanced.qml:205
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:198
msgid "Select a color"
msgstr "Выберете цвет"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:206
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:205
msgid "Select a font"
msgstr "Выберете шрифт"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:54
msgid "Tooltip type"
msgstr "Тип тултипа"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:62
msgid "contours"
msgstr "контуры"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:66
msgid "windows"
msgstr "окна"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:70
msgid "clean desktop"
msgstr "пустой рабочий стол"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:74
msgid "names"
msgstr "названия"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:78
msgid "none"
msgstr "нет"
#. i18n: file: desktop-panel-kde4/widget.ui:314
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:101
#: translations/desktop-panel/rc.cpp:63 rc.cpp:63
msgid "Tooltip width"
msgstr "Ширина тултипа"
#: po/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr "px"
#: po/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr "Цвет границ окна в тултипе"
#: po/rc.cpp:72 rc.cpp:72
#. i18n: file: desktop-panel-kde4/widget.ui:380
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_background)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:146
#: translations/desktop-panel/rc.cpp:72 rc.cpp:72
msgid "Enable background"
msgstr "Включить фон"
#: po/rc.cpp:75 rc.cpp:75
#. i18n: file: desktop-panel-kde4/widget.ui:410
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_layout)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:160
#: translations/desktop-panel/rc.cpp:75 rc.cpp:75
msgid "Vertical layout"
msgstr "Вертикальная разметка"
#: po/rc.cpp:78 rc.cpp:78
#. i18n: file: desktop-panel-kde4/widget.ui:28
#. i18n: ectx: property (text), widget (QLabel, label_mark)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:172
#: translations/desktop-panel/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "Метка"
#: desktop-panel-kf5/package/contents/ui/widget.qml:44
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"awesome-widgets/\">project homepage</a>"
msgstr ""
"Подробная информация может быть найдена на <a "
"href=\"http://arcanis.name/projects/"
"awesome-widgets/\">домашней странице</a> проекта"
#. i18n: file: desktop-panel-kde4/widget.ui:293
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tags)
#: desktop-panel-kf5/package/contents/ui/widget.qml:194
#: translations/desktop-panel/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "Добавить"
#: desktop-panel-kf5/package/contents/ui/widget.qml:207
msgid "Show value"
msgstr "Показать значение"
#: desktop-panel-kf5/package/contents/ui/widget.qml:212
msgid "Tag: %1"
msgstr "Тег: %1"
#: desktop-panel-kf5/package/contents/ui/widget.qml:214
msgid "Value: %1"
msgstr "Значение: %1"
#: desktop-panel-kf5/plugin/dpadds.cpp:318
msgid "A set of minimalistic plasmoid widgets"
msgstr "Коллекция минималистичных плазмоидов"
#: desktop-panel-kf5/plugin/dpadds.cpp:320
msgid "Links:"
msgstr "Ссылки:"
#: desktop-panel-kf5/plugin/dpadds.cpp:321
msgid "Homepage"
msgstr "Домашняя страница"
#: desktop-panel-kf5/plugin/dpadds.cpp:322
msgid "Repository"
msgstr "Репозиторий"
#: desktop-panel-kf5/plugin/dpadds.cpp:323
msgid "Bugtracker"
msgstr "Багтрекер"
#: desktop-panel-kf5/plugin/dpadds.cpp:324
msgid "Translation issue"
msgstr "Тикет перевода"
#: desktop-panel-kf5/plugin/dpadds.cpp:325
msgid "AUR packages"
msgstr "Пакеты в AUR"
#: desktop-panel-kf5/plugin/dpadds.cpp:326
msgid "openSUSE packages"
msgstr "Пакеты для openSUSE"
#: desktop-panel-kf5/plugin/dpadds.cpp:329
msgid "This software is licensed under %1"
msgstr "Данное программное обеспечение лицензировано под %1"
#: desktop-panel-kf5/plugin/dpadds.cpp:331
msgid "Translators: %1"
msgstr "Переводчики: %1"
#: desktop-panel-kf5/plugin/dpadds.cpp:339
msgid "This software uses: %1"
msgstr "Данное приложение использует: %1"
#: desktop-panel-kf5/plugin/dpadds.cpp:487
msgid "Unknown location (%1)"
msgstr "Неизвестное положение (%1)"
#. i18n: file: desktop-panel-kde4/toggle.ui:41
#. i18n: ectx: property (text), widget (QLabel, label_info)
#: translations/desktop-panel/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr "Чтобы управлять панелями, настройте комбинацию клавиш."
#. i18n: file: desktop-panel-kde4/widget.ui:38
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_mark)
#: translations/desktop-panel/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "Метка, которая будет показана, если данный рабочий стол активен"
#. i18n: file: desktop-panel-kde4/widget.ui:157
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_bold)
#: translations/desktop-panel/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#. i18n: file: desktop-panel-kde4/widget.ui:168
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_italic)
#: translations/desktop-panel/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#. i18n: file: desktop-panel-kde4/widget.ui:179
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_underline)
#: translations/desktop-panel/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#. i18n: file: desktop-panel-kde4/widget.ui:324
#. i18n: ectx: property (suffix), widget (QSpinBox, spinBox_tooltip)
#: translations/desktop-panel/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr "px"
#. i18n: file: desktop-panel-kde4/widget.ui:344
#. i18n: ectx: property (text), widget (QLabel, label_tooltipColor)
#: translations/desktop-panel/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr "Цвет границ окна в тултипе"
#. i18n: file: desktop-panel-kde4/widget.ui:430
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_tooltip)
#: translations/desktop-panel/rc.cpp:78 rc.cpp:78
msgid "Enable tooltip"
msgstr "Включить тултип"
#: po/rc.cpp:81 rc.cpp:81
#. i18n: file: desktop-panel-kde4/widget.ui:444
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:81 rc.cpp:81
msgid "Windows"
msgstr "Окна"
#: po/rc.cpp:84 rc.cpp:84
#. i18n: file: desktop-panel-kde4/widget.ui:449
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:84 rc.cpp:84
msgid "Contours"
msgstr "Контуры"
#: po/rc.cpp:87 rc.cpp:87
#. i18n: file: desktop-panel-kde4/widget.ui:454
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:87 rc.cpp:87
msgid "Clean desktop"
msgstr "Пустой рабочий стол"
#: po/rc.cpp:88 rc.cpp:88
#: translations/desktop-panel/rc.cpp:88 rc.cpp:88
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Evgeniy Alekseev"
#: po/rc.cpp:89 rc.cpp:89
#: translations/desktop-panel/rc.cpp:89 rc.cpp:89
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "esalexeev@gmail.com"

View File

@ -1,167 +1,431 @@
# Copyright (C) 2014
# This file is distributed under the same license as the PyTextMonitor package.
#
#
# Evgeniy Alekseev <esalexeev@gmail.com>, 2014.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2014-12-15 02:40+0300\n"
"PO-Revision-Date: 2014-06-06 01:23+0400\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Ukrainian <kde-ukrainian@lists.kde.ru>\n"
"Language: ua\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: Lokalize 1.5\n"
#: desktop-panel.cpp:193
msgid "Top Edge"
msgstr "Верхній край"
#: desktop-panel.cpp:195
msgid "Bottom Edge"
msgstr "Нижній край"
#: desktop-panel.cpp:197
msgid "Left Edge"
msgstr "Лівий край"
#: desktop-panel.cpp:199
msgid "Right Edge"
msgstr "Правий край"
#: desktop-panel.cpp:201
msgid "Unknown Position (%1)"
msgstr "Невідоме положення (%1)"
#: desktop-panel.cpp:473
msgid "Widget"
msgstr "Віджет"
#: desktop-panel.cpp:474
msgid "Appearance"
msgstr "Зовнішній вигляд"
#: desktop-panel.cpp:475
msgid "Toggle panels"
msgstr "Перемикання панелей"
#: desktop-panel.cpp:596
msgid "Select font"
msgstr "Вибрати шрифт"
#: po/rc.cpp:3 rc.cpp:3
msgid "Active desktop"
msgstr "Активний робочий стіл"
#: po/rc.cpp:6 po/rc.cpp:24 po/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Шрифт"
#: po/rc.cpp:9 po/rc.cpp:27 rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Розмір шрифту"
#: po/rc.cpp:12 po/rc.cpp:30 rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Колір шрифту"
#: po/rc.cpp:15 po/rc.cpp:33 rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Ширина шрифту"
#: po/rc.cpp:18 po/rc.cpp:36 rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Стиль шрифту"
#: po/rc.cpp:21 rc.cpp:21
msgid "Inactive desktop"
msgstr "Неактивний робочий стіл"
#: po/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr "Для управління панелями будьдаска встановіть комбінацію клавіш для віджету"
#: po/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "Позначка"
#: po/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "Позначка, що буде показана, якщо цей робочий стіл є активним"
#: po/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#: po/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#: po/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#: po/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "Додати"
#: po/rc.cpp:63 rc.cpp:63
msgid "Tooltip width"
msgstr "Ширина підказки"
#: po/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr "px"
#: po/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr "Колір границі вікна підказки"
#: po/rc.cpp:72 rc.cpp:72
msgid "Enable background"
msgstr "Включити фон"
#: po/rc.cpp:75 rc.cpp:75
msgid "Vertical layout"
msgstr "Вертикальна розмітка"
#: po/rc.cpp:78 rc.cpp:78
msgid "Enable tooltip"
msgstr "Включити підказки"
#: po/rc.cpp:81 rc.cpp:81
msgid "Windows"
msgstr "Вікна"
#: po/rc.cpp:84 rc.cpp:84
msgid "Contours"
msgstr "Контури"
#: po/rc.cpp:87 rc.cpp:87
msgid "Clean desktop"
msgstr "Очистити робочий стіл"
#: po/rc.cpp:88 rc.cpp:88
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Slobodyan Victor"
#: po/rc.cpp:89 rc.cpp:89
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "sarumyan@i.ua"
#~ msgid "Time interval"
#~ msgstr "Інтервал оновлення"
#~ msgid "Add stretch to left/top of the layout"
#~ msgstr "Додати порожнє місце ліворуч/вгорі віджету"
#~ msgid "Add stretch to right/bottom of the layout"
#~ msgstr "Додати порожнє місце праворуч/внизу віджету"
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2015-02-11 05:00+0300\n"
"PO-Revision-Date: 2014-06-06 01:23+0400\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Ukrainian <kde-ukrainian@lists.kde.ru>\n"
"Language: ua\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: Lokalize 1.5\n"
#: desktop-panel-kde4/desktop-panel.cpp:193
#: desktop-panel-kf5/plugin/dpadds.cpp:479
msgid "Top Edge"
msgstr "Верхній край"
#: desktop-panel-kde4/desktop-panel.cpp:195
#: desktop-panel-kf5/plugin/dpadds.cpp:481
msgid "Bottom Edge"
msgstr "Нижній край"
#: desktop-panel-kde4/desktop-panel.cpp:197
#: desktop-panel-kf5/plugin/dpadds.cpp:483
msgid "Left Edge"
msgstr "Лівий край"
#: desktop-panel-kde4/desktop-panel.cpp:199
#: desktop-panel-kf5/plugin/dpadds.cpp:485
msgid "Right Edge"
msgstr "Правий край"
#: desktop-panel-kde4/desktop-panel.cpp:201
msgid "Unknown Position (%1)"
msgstr "Невідоме положення (%1)"
#: desktop-panel-kde4/desktop-panel.cpp:473
#: desktop-panel-kf5/package/contents/config/config.qml:25
msgid "Widget"
msgstr "Віджет"
#: desktop-panel-kde4/desktop-panel.cpp:474
msgid "Appearance"
msgstr "Зовнішній вигляд"
#: desktop-panel-kde4/desktop-panel.cpp:475
msgid "Toggle panels"
msgstr "Перемикання панелей"
#: desktop-panel-kde4/desktop-panel.cpp:596
#: desktop-panel-kf5/plugin/dpadds.cpp:354
msgid "Select font"
msgstr "Вибрати шрифт"
#: desktop-panel-kf5/package/contents/config/config.qml:31
msgid "Advanced"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:30
#. i18n: ectx: attribute (title), widget (QWidget, tab_active)
#: desktop-panel-kf5/package/contents/config/config.qml:37
#: translations/desktop-panel/rc.cpp:3 rc.cpp:3
msgid "Active desktop"
msgstr "Активний робочий стіл"
#. i18n: file: desktop-panel-kde4/appearance.ui:188
#. i18n: ectx: attribute (title), widget (QWidget, tab_inactive)
#: desktop-panel-kf5/package/contents/config/config.qml:43
#: translations/desktop-panel/rc.cpp:21 rc.cpp:21
msgid "Inactive desktop"
msgstr "Неактивний робочий стіл"
#: desktop-panel-kf5/package/contents/config/config.qml:49
#: desktop-panel-kf5/package/contents/ui/about.qml:42
msgid "About"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/about.qml:75
msgid "Acknowledgment"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:61
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:60
#: desktop-panel-kf5/package/contents/ui/widget.qml:51
#: translations/desktop-panel/rc.cpp:6 translations/desktop-panel/rc.cpp:24
#: translations/desktop-panel/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "Шрифт"
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:79
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:78
#: translations/desktop-panel/rc.cpp:9 translations/desktop-panel/rc.cpp:27
#: rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "Розмір шрифту"
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:99
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:98
#: translations/desktop-panel/rc.cpp:15 translations/desktop-panel/rc.cpp:33
#: rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "Ширина шрифту"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:107
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:106
msgid "light"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:111
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:154
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:110
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:153
msgid "normal"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:115
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:114
msgid "demi bold"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:119
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:118
msgid "bold"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:123
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:122
msgid "black"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:146
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:145
#: translations/desktop-panel/rc.cpp:18 translations/desktop-panel/rc.cpp:36
#: rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "Стиль шрифту"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:158
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:157
msgid "italic"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:181
#: desktop-panel-kf5/package/contents/ui/advanced.qml:121
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:180
#: translations/desktop-panel/rc.cpp:12 translations/desktop-panel/rc.cpp:30
#: rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "Колір шрифту"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:199
#: desktop-panel-kf5/package/contents/ui/advanced.qml:205
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:198
#, fuzzy
msgid "Select a color"
msgstr "Вибрати шрифт"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:206
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:205
#, fuzzy
msgid "Select a font"
msgstr "Вибрати шрифт"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:54
#, fuzzy
msgid "Tooltip type"
msgstr "Ширина підказки"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:62
#, fuzzy
msgid "contours"
msgstr "Контури"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:66
#, fuzzy
msgid "windows"
msgstr "Вікна"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:70
#, fuzzy
msgid "clean desktop"
msgstr "Очистити робочий стіл"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:74
#, fuzzy
msgid "names"
msgstr "Slobodyan Victor"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:78
msgid "none"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:314
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:101
#: translations/desktop-panel/rc.cpp:63 rc.cpp:63
msgid "Tooltip width"
msgstr "Ширина підказки"
#. i18n: file: desktop-panel-kde4/widget.ui:380
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_background)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:146
#: translations/desktop-panel/rc.cpp:72 rc.cpp:72
msgid "Enable background"
msgstr "Включити фон"
#. i18n: file: desktop-panel-kde4/widget.ui:410
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_layout)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:160
#: translations/desktop-panel/rc.cpp:75 rc.cpp:75
msgid "Vertical layout"
msgstr "Вертикальна розмітка"
#. i18n: file: desktop-panel-kde4/widget.ui:28
#. i18n: ectx: property (text), widget (QLabel, label_mark)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:172
#: translations/desktop-panel/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "Позначка"
#: desktop-panel-kf5/package/contents/ui/widget.qml:44
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"awesome-widgets/\">project homepage</a>"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:293
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tags)
#: desktop-panel-kf5/package/contents/ui/widget.qml:194
#: translations/desktop-panel/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "Додати"
#: desktop-panel-kf5/package/contents/ui/widget.qml:207
msgid "Show value"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:212
msgid "Tag: %1"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:214
msgid "Value: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:318
msgid "A set of minimalistic plasmoid widgets"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:320
msgid "Links:"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:321
msgid "Homepage"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:322
msgid "Repository"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:323
msgid "Bugtracker"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:324
msgid "Translation issue"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:325
msgid "AUR packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:326
msgid "openSUSE packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:329
msgid "This software is licensed under %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:331
msgid "Translators: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:339
msgid "This software uses: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:487
#, fuzzy
msgid "Unknown location (%1)"
msgstr "Невідоме положення (%1)"
#. i18n: file: desktop-panel-kde4/toggle.ui:41
#. i18n: ectx: property (text), widget (QLabel, label_info)
#: translations/desktop-panel/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr ""
"Для управління панелями будьдаска встановіть комбінацію клавіш для віджету"
#. i18n: file: desktop-panel-kde4/widget.ui:38
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_mark)
#: translations/desktop-panel/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "Позначка, що буде показана, якщо цей робочий стіл є активним"
#. i18n: file: desktop-panel-kde4/widget.ui:157
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_bold)
#: translations/desktop-panel/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#. i18n: file: desktop-panel-kde4/widget.ui:168
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_italic)
#: translations/desktop-panel/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#. i18n: file: desktop-panel-kde4/widget.ui:179
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_underline)
#: translations/desktop-panel/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#. i18n: file: desktop-panel-kde4/widget.ui:324
#. i18n: ectx: property (suffix), widget (QSpinBox, spinBox_tooltip)
#: translations/desktop-panel/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr "px"
#. i18n: file: desktop-panel-kde4/widget.ui:344
#. i18n: ectx: property (text), widget (QLabel, label_tooltipColor)
#: translations/desktop-panel/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr "Колір границі вікна підказки"
#. i18n: file: desktop-panel-kde4/widget.ui:430
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_tooltip)
#: translations/desktop-panel/rc.cpp:78 rc.cpp:78
msgid "Enable tooltip"
msgstr "Включити підказки"
#. i18n: file: desktop-panel-kde4/widget.ui:444
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:81 rc.cpp:81
msgid "Windows"
msgstr "Вікна"
#. i18n: file: desktop-panel-kde4/widget.ui:449
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:84 rc.cpp:84
msgid "Contours"
msgstr "Контури"
#. i18n: file: desktop-panel-kde4/widget.ui:454
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:87 rc.cpp:87
msgid "Clean desktop"
msgstr "Очистити робочий стіл"
#: translations/desktop-panel/rc.cpp:88 rc.cpp:88
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Slobodyan Victor"
#: translations/desktop-panel/rc.cpp:89 rc.cpp:89
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "sarumyan@i.ua"
#~ msgid "Time interval"
#~ msgstr "Інтервал оновлення"
#~ msgid "Add stretch to left/top of the layout"
#~ msgstr "Додати порожнє місце ліворуч/вгорі віджету"
#~ msgid "Add stretch to right/bottom of the layout"
#~ msgstr "Додати порожнє місце праворуч/внизу віджету"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
"POT-Creation-Date: 2014-12-15 02:40+0300\n"
"POT-Creation-Date: 2015-02-11 05:00+0300\n"
"PO-Revision-Date: 2014-09-15 10:04+0400\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: American English <kde-russian@lists.kde.ru>\n"
@ -18,141 +18,402 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\n"
#: desktop-panel.cpp:193
#: desktop-panel-kde4/desktop-panel.cpp:193
#: desktop-panel-kf5/plugin/dpadds.cpp:479
msgid "Top Edge"
msgstr "顶部边缘"
#: desktop-panel.cpp:195
#: desktop-panel-kde4/desktop-panel.cpp:195
#: desktop-panel-kf5/plugin/dpadds.cpp:481
msgid "Bottom Edge"
msgstr "底部边缘"
#: desktop-panel.cpp:197
#: desktop-panel-kde4/desktop-panel.cpp:197
#: desktop-panel-kf5/plugin/dpadds.cpp:483
msgid "Left Edge"
msgstr "左端边缘"
#: desktop-panel.cpp:199
#: desktop-panel-kde4/desktop-panel.cpp:199
#: desktop-panel-kf5/plugin/dpadds.cpp:485
msgid "Right Edge"
msgstr "右端边缘"
#: desktop-panel.cpp:201
#: desktop-panel-kde4/desktop-panel.cpp:201
msgid "Unknown Position (%1)"
msgstr "未知位置(%1"
#: desktop-panel.cpp:473
#: desktop-panel-kde4/desktop-panel.cpp:473
#: desktop-panel-kf5/package/contents/config/config.qml:25
msgid "Widget"
msgstr "窗口小部件"
#: desktop-panel.cpp:474
#: desktop-panel-kde4/desktop-panel.cpp:474
msgid "Appearance"
msgstr "外观"
#: desktop-panel.cpp:475
#: desktop-panel-kde4/desktop-panel.cpp:475
msgid "Toggle panels"
msgstr "控制面板状态切换(显示/隐藏)"
#: desktop-panel.cpp:596
#: desktop-panel-kde4/desktop-panel.cpp:596
#: desktop-panel-kf5/plugin/dpadds.cpp:354
msgid "Select font"
msgstr "选择字体"
#: po/rc.cpp:3 rc.cpp:3
#: desktop-panel-kf5/package/contents/config/config.qml:31
msgid "Advanced"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:30
#. i18n: ectx: attribute (title), widget (QWidget, tab_active)
#: desktop-panel-kf5/package/contents/config/config.qml:37
#: translations/desktop-panel/rc.cpp:3 rc.cpp:3
msgid "Active desktop"
msgstr "当前激活桌面"
#: po/rc.cpp:6 po/rc.cpp:24 po/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "字体"
#: po/rc.cpp:9 po/rc.cpp:27 rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "字体大小"
#: po/rc.cpp:12 po/rc.cpp:30 rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "字体颜色"
#: po/rc.cpp:15 po/rc.cpp:33 rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "字体宽度"
#: po/rc.cpp:18 po/rc.cpp:36 rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "字体样式"
#: po/rc.cpp:21 rc.cpp:21
#. i18n: file: desktop-panel-kde4/appearance.ui:188
#. i18n: ectx: attribute (title), widget (QWidget, tab_inactive)
#: desktop-panel-kf5/package/contents/config/config.qml:43
#: translations/desktop-panel/rc.cpp:21 rc.cpp:21
msgid "Inactive desktop"
msgstr "未激活桌面"
#: po/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr "设置控制面板的快捷键"
#: desktop-panel-kf5/package/contents/config/config.qml:49
#: desktop-panel-kf5/package/contents/ui/about.qml:42
msgid "About"
msgstr ""
#: po/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "标记"
#: desktop-panel-kf5/package/contents/ui/about.qml:75
msgid "Acknowledgment"
msgstr ""
#: po/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "当前桌面处于激活状态下,该当标记显示。 "
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#. i18n: file: desktop-panel-kde4/appearance.ui:53
#. i18n: ectx: property (text), widget (QLabel, label_fontActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:211
#. i18n: ectx: property (text), widget (QLabel, label_fontInactive)
#. i18n: file: desktop-panel-kde4/widget.ui:122
#. i18n: ectx: property (text), widget (QPushButton, pushButton_font)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:61
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:60
#: desktop-panel-kf5/package/contents/ui/widget.qml:51
#: translations/desktop-panel/rc.cpp:6 translations/desktop-panel/rc.cpp:24
#: translations/desktop-panel/rc.cpp:48 rc.cpp:6 rc.cpp:24 rc.cpp:48
msgid "Font"
msgstr "字体"
#: po/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:70
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:228
#. i18n: ectx: property (text), widget (QLabel, label_fontSizeInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:79
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:78
#: translations/desktop-panel/rc.cpp:9 translations/desktop-panel/rc.cpp:27
#: rc.cpp:9 rc.cpp:27
msgid "Font size"
msgstr "字体大小"
#: po/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:114
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:272
#. i18n: ectx: property (text), widget (QLabel, label_fontWeightInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:99
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:98
#: translations/desktop-panel/rc.cpp:15 translations/desktop-panel/rc.cpp:33
#: rc.cpp:15 rc.cpp:33
msgid "Font weight"
msgstr "字体宽度"
#: po/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:107
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:106
msgid "light"
msgstr ""
#: po/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "添加"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:111
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:154
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:110
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:153
msgid "normal"
msgstr ""
#: po/rc.cpp:63 rc.cpp:63
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:115
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:114
msgid "demi bold"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:119
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:118
msgid "bold"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:123
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:122
msgid "black"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:302
#. i18n: ectx: property (text), widget (QLabel, label_fontStyleInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:146
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:145
#: translations/desktop-panel/rc.cpp:18 translations/desktop-panel/rc.cpp:36
#: rc.cpp:18 rc.cpp:36
msgid "Font style"
msgstr "字体样式"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:158
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:157
msgid "italic"
msgstr ""
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#. i18n: file: desktop-panel-kde4/appearance.ui:97
#. i18n: ectx: property (text), widget (QLabel, label_fontColorActive)
#. i18n: file: desktop-panel-kde4/appearance.ui:255
#. i18n: ectx: property (text), widget (QLabel, label_fontColorInactive)
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:181
#: desktop-panel-kf5/package/contents/ui/advanced.qml:121
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:180
#: translations/desktop-panel/rc.cpp:12 translations/desktop-panel/rc.cpp:30
#: rc.cpp:12 rc.cpp:30
msgid "Font color"
msgstr "字体颜色"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:199
#: desktop-panel-kf5/package/contents/ui/advanced.qml:205
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:198
#, fuzzy
msgid "Select a color"
msgstr "选择字体"
#: desktop-panel-kf5/package/contents/ui/activeapp.qml:206
#: desktop-panel-kf5/package/contents/ui/inactiveapp.qml:205
#, fuzzy
msgid "Select a font"
msgstr "选择字体"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:54
msgid "Tooltip type"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:62
msgid "contours"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:66
msgid "windows"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/advanced.qml:70
#, fuzzy
msgid "clean desktop"
msgstr "当前激活桌面"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:74
#, fuzzy
msgid "names"
msgstr "用户名"
#: desktop-panel-kf5/package/contents/ui/advanced.qml:78
msgid "none"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:314
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:101
#: translations/desktop-panel/rc.cpp:63 rc.cpp:63
msgid "Tooltip width"
msgstr ""
#: po/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr ""
#: po/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr ""
#: po/rc.cpp:72 rc.cpp:72
#. i18n: file: desktop-panel-kde4/widget.ui:380
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_background)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:146
#: translations/desktop-panel/rc.cpp:72 rc.cpp:72
msgid "Enable background"
msgstr "启用背景"
#: po/rc.cpp:75 rc.cpp:75
#. i18n: file: desktop-panel-kde4/widget.ui:410
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_layout)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:160
#: translations/desktop-panel/rc.cpp:75 rc.cpp:75
msgid "Vertical layout"
msgstr "垂直布局"
#: po/rc.cpp:78 rc.cpp:78
#. i18n: file: desktop-panel-kde4/widget.ui:28
#. i18n: ectx: property (text), widget (QLabel, label_mark)
#: desktop-panel-kf5/package/contents/ui/advanced.qml:172
#: translations/desktop-panel/rc.cpp:42 rc.cpp:42
msgid "Mark"
msgstr "标记"
#: desktop-panel-kf5/package/contents/ui/widget.qml:44
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"awesome-widgets/\">project homepage</a>"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:293
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tags)
#: desktop-panel-kf5/package/contents/ui/widget.qml:194
#: translations/desktop-panel/rc.cpp:60 rc.cpp:60
msgid "Add"
msgstr "添加"
#: desktop-panel-kf5/package/contents/ui/widget.qml:207
msgid "Show value"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:212
msgid "Tag: %1"
msgstr ""
#: desktop-panel-kf5/package/contents/ui/widget.qml:214
msgid "Value: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:318
msgid "A set of minimalistic plasmoid widgets"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:320
msgid "Links:"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:321
msgid "Homepage"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:322
msgid "Repository"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:323
msgid "Bugtracker"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:324
msgid "Translation issue"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:325
msgid "AUR packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:326
msgid "openSUSE packages"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:329
msgid "This software is licensed under %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:331
msgid "Translators: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:339
msgid "This software uses: %1"
msgstr ""
#: desktop-panel-kf5/plugin/dpadds.cpp:487
#, fuzzy
msgid "Unknown location (%1)"
msgstr "未知位置(%1"
#. i18n: file: desktop-panel-kde4/toggle.ui:41
#. i18n: ectx: property (text), widget (QLabel, label_info)
#: translations/desktop-panel/rc.cpp:39 rc.cpp:39
msgid "To control panels please set widget shortcut."
msgstr "设置控制面板的快捷键"
#. i18n: file: desktop-panel-kde4/widget.ui:38
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_mark)
#: translations/desktop-panel/rc.cpp:45 rc.cpp:45
msgid "A mark which will be shown if this desktop is active"
msgstr "当前桌面处于激活状态下,该当标记显示。 "
#. i18n: file: desktop-panel-kde4/widget.ui:157
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_bold)
#: translations/desktop-panel/rc.cpp:51 rc.cpp:51
msgid "Ctrl+B"
msgstr "Ctrl+B"
#. i18n: file: desktop-panel-kde4/widget.ui:168
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_italic)
#: translations/desktop-panel/rc.cpp:54 rc.cpp:54
msgid "Ctrl+I"
msgstr "Ctrl+I"
#. i18n: file: desktop-panel-kde4/widget.ui:179
#. i18n: ectx: property (shortcut), widget (QPushButton, pushButton_underline)
#: translations/desktop-panel/rc.cpp:57 rc.cpp:57
msgid "Ctrl+U"
msgstr "Ctrl+U"
#. i18n: file: desktop-panel-kde4/widget.ui:324
#. i18n: ectx: property (suffix), widget (QSpinBox, spinBox_tooltip)
#: translations/desktop-panel/rc.cpp:66 rc.cpp:66
msgid "px"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:344
#. i18n: ectx: property (text), widget (QLabel, label_tooltipColor)
#: translations/desktop-panel/rc.cpp:69 rc.cpp:69
msgid "Window border color on tooltip"
msgstr ""
#. i18n: file: desktop-panel-kde4/widget.ui:430
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_tooltip)
#: translations/desktop-panel/rc.cpp:78 rc.cpp:78
msgid "Enable tooltip"
msgstr ""
#: po/rc.cpp:81 rc.cpp:81
#. i18n: file: desktop-panel-kde4/widget.ui:444
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:81 rc.cpp:81
msgid "Windows"
msgstr ""
#: po/rc.cpp:84 rc.cpp:84
#. i18n: file: desktop-panel-kde4/widget.ui:449
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:84 rc.cpp:84
msgid "Contours"
msgstr ""
#: po/rc.cpp:87 rc.cpp:87
#. i18n: file: desktop-panel-kde4/widget.ui:454
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_tooltipType)
#: translations/desktop-panel/rc.cpp:87 rc.cpp:87
#, fuzzy
msgid "Clean desktop"
msgstr "当前激活桌面"
#: po/rc.cpp:88 rc.cpp:88
#: translations/desktop-panel/rc.cpp:88 rc.cpp:88
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "用户名"
#: po/rc.cpp:89 rc.cpp:89
#: translations/desktop-panel/rc.cpp:89 rc.cpp:89
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "用户邮箱"