1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-01-27 06:03:51 +03:00

Merge remote-tracking branch 'refs/remotes/origin/master'

Conflicts:
	corona/nowdockview.cpp
This commit is contained in:
Johan Smith Agudelo Rodriguez 2016-12-28 21:29:46 -05:00
commit 7d867298c1
63 changed files with 3741 additions and 378 deletions

View File

@ -2,15 +2,16 @@ project(lattedock)
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
set (CMAKE_CXX_STANDARD 11)
set(VERSION 0.5.88)
set(VERSION 0.5.89)
set(AUTHOR "Michail Vourlakos")
set(EMAIL "mvourlakos@gmail.com")
set(WEBSITE "https://store.kde.org/p/1154578/")
set(WEBSITE "https://github.com/psifidotos/Latte-Dock")
set(QT_MIN_VERSION "5.6.0")
set(KF5_MIN_VERSION "5.26.0")
find_package(ECM 1.8.0 REQUIRED NO_MODULE)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
@ -52,7 +53,7 @@ ELSE(NOT GETTEXT_MSGFMT_EXECUTABLE)
ENDFOREACH(_poFile ${PO_FILES})
#plasmoid translations
SET(catalogname-plasmoid plasma_applet_org.kde.store.nowdock.plasmoid)
SET(catalogname-plasmoid plasma_applet_org.kde.latte.plasmoid)
ADD_CUSTOM_TARGET(translations-plasmoid ALL)
FILE(GLOB PO_FILES_PLASMOID po/plasmoid/*.po)
@ -74,36 +75,61 @@ ELSE(NOT GETTEXT_MSGFMT_EXECUTABLE)
ENDFOREACH(_poFile ${PO_FILES})
#shell translations
SET(catalogname-shell plasma_shell_org.kde.latte.shell)
ADD_CUSTOM_TARGET(translations-shell ALL)
#SET(catalogname-shell plasma_shell_org.kde.latte.shell)
#ADD_CUSTOM_TARGET(translations-shell ALL)
FILE(GLOB PO_FILES_SHELL po/shell/*.po)
#FILE(GLOB PO_FILES_SHELL po/shell/*.po)
FOREACH(_poFile ${PO_FILES_SHELL})
#FOREACH(_poFile ${PO_FILES_SHELL})
# GET_FILENAME_COMPONENT(_poFileName ${_poFile} NAME)
# STRING(REGEX REPLACE "^${catalogname-shell}_?" "" _langCode ${_poFileName} )
# STRING(REGEX REPLACE "\\.po$" "" _langCode ${_langCode} )
# IF( _langCode )
# GET_FILENAME_COMPONENT(_lang ${_poFile} NAME_WE)
# SET(_gmoFile ${CMAKE_CURRENT_BINARY_DIR}/shell/${_lang}.gmo)
# ADD_CUSTOM_COMMAND(TARGET translations-shell
# COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} --check -o ${_gmoFile} ${_poFile}
# DEPENDS ${_poFile})
# INSTALL(FILES ${_gmoFile} DESTINATION ${LOCALE_INSTALL_DIR}/kf5/${_langCode}/LC_MESSAGES/ RENAME ${catalogname-shell}.mo)
# ENDIF( _langCode )
#ENDFOREACH(_poFile ${PO_FILES})
#app translations
SET(catalogname-app latte-dock)
ADD_CUSTOM_TARGET(translations-app ALL)
FILE(GLOB PO_FILES_CORONA po/app/*.po)
FOREACH(_poFile ${PO_FILES_CORONA})
GET_FILENAME_COMPONENT(_poFileName ${_poFile} NAME)
STRING(REGEX REPLACE "^${catalogname-shell}_?" "" _langCode ${_poFileName} )
STRING(REGEX REPLACE "^${catalogname-app}_?" "" _langCode ${_poFileName} )
STRING(REGEX REPLACE "\\.po$" "" _langCode ${_langCode} )
IF( _langCode )
GET_FILENAME_COMPONENT(_lang ${_poFile} NAME_WE)
SET(_gmoFile ${CMAKE_CURRENT_BINARY_DIR}/shell/${_lang}.gmo)
SET(_gmoFile ${CMAKE_CURRENT_BINARY_DIR}/app/${_lang}.gmo)
ADD_CUSTOM_COMMAND(TARGET translations-shell
ADD_CUSTOM_COMMAND(TARGET translations-app
COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} --check -o ${_gmoFile} ${_poFile}
DEPENDS ${_poFile})
INSTALL(FILES ${_gmoFile} DESTINATION ${LOCALE_INSTALL_DIR}/kf5/${_langCode}/LC_MESSAGES/ RENAME ${catalogname-shell}.mo)
INSTALL(FILES ${_gmoFile} DESTINATION ${LOCALE_INSTALL_DIR}/kf5/${_langCode}/LC_MESSAGES/ RENAME ${catalogname-app}.mo)
ENDIF( _langCode )
ENDFOREACH(_poFile ${PO_FILES})
ENDFOREACH(_poFile ${PO_FILES})
ENDIF(NOT GETTEXT_MSGFMT_EXECUTABLE)
add_subdirectory(liblattedock)
add_subdirectory(containment)
plasma_install_package(build/containment/release org.kde.latte.containment)
add_subdirectory(plasmoid)
plasma_install_package(build/plasmoid/release org.kde.store.nowdock.plasmoid)
plasma_install_package(build/plasmoid/release org.kde.latte.plasmoid)
add_subdirectory(shell)
plasma_install_package(build/shell/release org.kde.latte.shell shells shell)
add_subdirectory(corona)
add_subdirectory(app)
add_subdirectory(icons)

View File

@ -1,3 +1,4 @@
find_package(KF5I18n NO_MODULE)
include(KDEInstallDirs)
include(KDECMakeSettings)

16
app/latte-dock.desktop Normal file
View File

@ -0,0 +1,16 @@
[Desktop Entry]
Name=Latte
Name[el]=Latte
Comment=Dock for the masses
Comment[el]=Πίνακας για όλον τον κόσμο
GenericName=Dock
GenericName[el]=Πίνακας
Categories=Utility;
Exec=latte-dock %u
Icon=latte-dock
InitialPreference=1
StartupNotify=true
Terminal=false
Type=Application

View File

@ -54,8 +54,10 @@ int main(int argc, char **argv)
QApplication app(argc, argv);
app.setApplicationVersion(version);
app.setOrganizationDomain(QStringLiteral("nowdock"));
app.setApplicationName(QStringLiteral("NowDock"));
app.setOrganizationDomain(QStringLiteral("latte-dock"));
KLocalizedString::setApplicationDomain("latte-dock");
app.setApplicationName(QStringLiteral("Latte Dock"));
//! set pattern for debug messages
//! [%{type}] [%{function}:%{line}] - %{message} [%{backtrace}]
@ -74,4 +76,3 @@ int main(int argc, char **argv)
return app.exec();
}

View File

@ -22,8 +22,10 @@
#include <QQuickItem>
#include <QQmlContext>
#include <QQmlEngine>
#include <QScreen>
#include <KLocalizedContext>
#include <KWindowSystem>
#include <KWindowEffects>
@ -49,12 +51,12 @@ NowDockConfigView::NowDockConfigView(Plasma::Containment *containment, NowDockVi
syncSlideEffect();
});
//containment->setLocation(Plasma::Types::LeftEdge);
/*connect(containment, &Plasma::Containment::immutabilityChanged
, [&](Plasma::Types::ImmutabilityType type) {
if (type != Plasma::Types::Mutable && isVisible())
hide();
});*/
connect(containment, &Plasma::Containment::immutabilityChanged, this, &NowDockConfigView::immutabilityChanged);
/* connect(containment, &Plasma::Containment::immutabilityChanged
, [&](Plasma::Types::ImmutabilityType type) {
if (type != Plasma::Types::Mutable && this && isVisible())
hide();
});*/
}
NowDockConfigView::~NowDockConfigView()
@ -66,6 +68,7 @@ void NowDockConfigView::init()
setDefaultAlphaBuffer(true);
setColor(Qt::transparent);
rootContext()->setContextProperty(QStringLiteral("dock"), m_dockView);
engine()->rootContext()->setContextObject(new KLocalizedContext(this));
auto source = QUrl::fromLocalFile(m_containment->corona()->kPackage().filePath("nowdockconfigurationui"));
setSource(source);
syncSlideEffect();
@ -80,7 +83,7 @@ void NowDockConfigView::syncGeometry()
{
if (!m_containment || !rootObject())
return;
const auto location = m_containment->location();
const auto sGeometry = screen()->geometry();
@ -90,7 +93,7 @@ void NowDockConfigView::syncGeometry()
setMaximumSize(size);
setMinimumSize(size);
resize(size);
if (location == Plasma::Types::TopEdge) {
setPosition(sGeometry.center().x() - size.width() / 2
, m_dockView->currentThickness());
@ -106,7 +109,7 @@ void NowDockConfigView::syncGeometry()
setMaximumSize(size);
setMinimumSize(size);
resize(size);
if (location == Plasma::Types::LeftEdge) {
setPosition(m_dockView->currentThickness()
, sGeometry.center().y() - size.height() / 2);
@ -128,26 +131,26 @@ void NowDockConfigView::syncSlideEffect()
{
if (!m_containment)
return;
KWindowEffects::SlideFromLocation slideLocation{KWindowEffects::NoEdge};
switch (m_containment->location()) {
case Plasma::Types::TopEdge:
slideLocation = KWindowEffects::TopEdge;
break;
case Plasma::Types::RightEdge:
slideLocation = KWindowEffects::RightEdge;
break;
case Plasma::Types::BottomEdge:
slideLocation = KWindowEffects::BottomEdge;
break;
case Plasma::Types::LeftEdge:
slideLocation = KWindowEffects::LeftEdge;
break;
default:
qDebug() << staticMetaObject.className() << "wrong location";// << qEnumToStr(m_containment->location());
break;
@ -169,7 +172,7 @@ void NowDockConfigView::showEvent(QShowEvent *ev)
if (m_containment)
m_containment->setUserConfiguring(true);
// m_dockView->visibility()->forceShow(true);
// m_dockView->visibility()->showImmediately();
m_screenSyncTimer.start();
@ -193,12 +196,22 @@ void NowDockConfigView::hideEvent(QHideEvent *ev)
void NowDockConfigView::focusOutEvent(QFocusEvent *ev)
{
//FIXME: I can understand why we need to hide on focus out
Q_UNUSED(ev);
const auto *focusWindow = qGuiApp->focusWindow();
if (focusWindow && focusWindow->flags().testFlag(Qt::Popup))
return;
hide();
// hide();
}
void NowDockConfigView::immutabilityChanged(Plasma::Types::ImmutabilityType type)
{
if (type != Plasma::Types::Mutable && isVisible()) {
hide();
}
}
// kate: indent-mode cstyle; indent-width 4; replace-tabs on;

View File

@ -21,6 +21,7 @@
#define NOWDOCKCONFIGVIEW_H
#include "plasmaquick/configview.h"
#include <plasma/package.h>
#include <QObject>
#include <QWindow>
@ -30,6 +31,7 @@
namespace Plasma {
class Applet;
class Containment;
class Types;
}
class NowDockView;
@ -51,6 +53,9 @@ protected:
void syncGeometry();
void syncSlideEffect();
private Q_SLOTS:
void immutabilityChanged(Plasma::Types::ImmutabilityType type);
private:
Plasma::Containment *m_containment{nullptr};

View File

@ -54,6 +54,7 @@ NowDockCorona::NowDockCorona(QObject *parent)
setKPackage(package);
qmlRegisterTypes();
connect(this, &Corona::containmentAdded, this, &NowDockCorona::addDock);
loadLayout();
@ -156,6 +157,20 @@ void NowDockCorona::addDock(Plasma::Containment *containment)
return;
}
// the system tray is a containment that behaves as an applet
// so a dockview shouldnt be created for it
KPluginMetaData metadata = containment->pluginMetaData();
if (metadata.pluginId() == "org.kde.plasma.systemtray") {
return;
}
foreach (NowDockView *dock, m_containments) {
if (dock->containment() == containment) {
return;
}
}
qWarning() << "Adding dock for container...";
auto dockView = new NowDockView(this);
@ -176,7 +191,7 @@ void NowDockCorona::loadDefaultLayout()
QVariantList args;
auto defaultContainment = createContainmentDelayed("org.kde.latte.containment", args);
//auto defaultContainment = createContainmentDelayed("org.kde.panel", args);
defaultContainment->setContainmentType(Plasma::Types::PanelContainment);
defaultContainment->init();
@ -184,12 +199,9 @@ void NowDockCorona::loadDefaultLayout()
qWarning() << "the requested containment plugin can not be located or loaded";
return;
}
auto config = defaultContainment->config();
config.writeEntry("dock", "initial");
// config.writeEntry("alignment", (int)Dock::Center);
// config.deleteEntry("wallpaperplugin");
defaultContainment->restore(config);
switch (containments().size()) {
case 1:
@ -209,12 +221,20 @@ void NowDockCorona::loadDefaultLayout()
break;
}
auto cfg = defaultContainment->config();
defaultContainment->save(cfg);
//config.writeEntry("dock", "initial");
//config.writeEntry("alignment", (int)Dock::Center);
//config.deleteEntry("wallpaperplugin");
defaultContainment->updateConstraints(Plasma::Types::StartupCompletedConstraint);
defaultContainment->save(config);
requestConfigSync();
defaultContainment->flushPendingConstraintsEvents();
emit containmentAdded(defaultContainment);
emit containmentCreated(defaultContainment);
addDock(defaultContainment);
defaultContainment->createApplet(QStringLiteral("org.kde.store.nowdock.plasmoid"));
defaultContainment->createApplet(QStringLiteral("org.kde.latte.plasmoid"));
defaultContainment->createApplet(QStringLiteral("org.kde.plasma.analogclock"));
}

View File

@ -25,6 +25,7 @@
#include <QAction>
#include <QQmlContext>
#include <QQmlEngine>
#include <QQmlProperty>
#include <QQuickItem>
#include <QMetaEnum>
@ -34,6 +35,7 @@
#include <KWindowSystem>
#include <Plasma/Containment>
#include <KActionCollection>
#include <KLocalizedContext>
#include "nowdockcorona.h"
@ -115,7 +117,10 @@ void NowDockView::init()
connect(this, SIGNAL(widthChanged(int)), this, SIGNAL(widthChanged()));
connect(this, SIGNAL(heightChanged(int)), this, SIGNAL(heightChanged()));
rootContext()->setContextProperty(QStringLiteral("panel"), this);
rootContext()->setContextProperty(QStringLiteral("dock"), this);
engine()->rootContext()->setContextObject(new KLocalizedContext(this));
// engine()->rootContext()->setContextProperty(QStringLiteral("dock"), this);
setSource(corona()->kPackage().filePath("nowdockui"));

View File

@ -16,7 +16,6 @@ NowDockPackage::~NowDockPackage()
void NowDockPackage::initPackage(KPackage::Package *package)
{
auto fallback = KPackage::PackageLoader::self()->loadPackage("Plasma/Shell", "org.kde.plasma.desktop");
package->setDefaultPackageRoot(QStringLiteral("plasma/shells/"));
package->setPath("org.kde.latte.shell");
package->addFileDefinition("nowdockui", QStringLiteral("views/Panel.qml"), i18n("Now Dock panel"));
@ -35,7 +34,7 @@ void NowDockPackage::pathChanged(KPackage::Package *package)
const QString pluginName = package->metadata().pluginId();
if (!pluginName.isEmpty() && pluginName != "org.kde.latte.shell") {
auto fallback = KPackage::PackageLoader::self()->loadPackage("LatteDock/Shell", "org.kde.latte.shell");
auto fallback = KPackage::PackageLoader::self()->loadPackage("Plasma/Shell", "org.kde.latte.shell");
package->setFallbackPackage(fallback);
} else if (pluginName.isEmpty() || pluginName == "org.kde.latte.shell") {
package->setFallbackPackage(KPackage::Package());

View File

@ -30,7 +30,7 @@
<choice name="DodgeMaximized"/>
<choice name="DodgeAllWindows"/>
</choices>
<default>0</default>
<default>2</default>
</entry>
<entry name="zoomLevel" type="Int">
<default>10</default>

View File

@ -42,7 +42,7 @@ Item {
property int animationTime: root.durationTime* (1.2 *units.shortDuration) // 70
property int hoveredIndex: layoutsContainer.hoveredIndex
property int index: -1
property int appletMargin: (applet && (applet.pluginName === "org.kde.store.nowdock.plasmoid"))
property int appletMargin: (applet && (applet.pluginName === root.plasmoidName))
|| isInternalViewSplitter
|| root.reverseLinesPosition ? 0 : root.statesLineSize
property int maxWidth: root.isHorizontal ? root.height : root.width
@ -61,10 +61,10 @@ Item {
property string title: isInternalViewSplitter ? "Now Dock Splitter" : ""
property Item applet
property Item nowDock: applet && (applet.pluginName === "org.kde.store.nowdock.plasmoid") ?
property Item nowDock: applet && (applet.pluginName === root.plasmoidName) ?
(applet.children[0] ? applet.children[0] : null) : null
property Item appletWrapper: applet &&
((applet.pluginName === "org.kde.store.nowdock.plasmoid") ||
((applet.pluginName === root.plasmoidName) ||
(applet.pluginName === "org.kde.plasma.systemtray")) ? wrapper : wrapperContainer
property alias containsMouse: appletMouseArea.containsMouse
@ -168,8 +168,9 @@ Item {
onShowZoomedChanged: {
if(showZoomed){
var newZ = container.maxHeight / root.iconSize;
wrapper.zoomScale = newZ;
//var newZ = container.maxHeight / root.iconSize;
//wrapper.zoomScale = newZ;
wrapper.zoomScale = 1;
}
else{
wrapper.zoomScale = 1;
@ -526,9 +527,9 @@ Item {
active: container.applet
&&((plasmoid.configuration.shadows === 1 /*Locked Applets*/
&& (!container.canBeHovered || (container.lockZoom && (applet.pluginName !== "org.kde.store.nowdock.plasmoid"))) )
&& (!container.canBeHovered || (container.lockZoom && (applet.pluginName !== root.plasmoidName))) )
|| (plasmoid.configuration.shadows === 2 /*All Applets*/
&& (applet.pluginName !== "org.kde.store.nowdock.plasmoid")))
&& (applet.pluginName !== root.plasmoidName)))
sourceComponent: DropShadow{
anchors.fill: parent

View File

@ -380,7 +380,7 @@ MouseArea {
visible: currentApplet &&
((currentApplet.applet &&
((currentApplet.applet.pluginName === "org.kde.plasma.systemtray")
|| (currentApplet.applet.pluginName === "org.kde.store.nowdock.plasmoid")) )
|| (currentApplet.applet.pluginName === root.plasmoidName)) )
|| (currentApplet.isInternalViewSplitter))
? false : true

View File

@ -36,32 +36,22 @@ Item{
property int thicknessNormalOriginalValue: statesLineSizeOriginal + plasmoid.configuration.iconSize + iconMarginOriginal + 1
property int thicknessZoomOriginal: statesLineSizeOriginal + ((plasmoid.configuration.iconSize+iconMarginOriginal) * root.zoomFactor) + 2
Binding{
//this is way to avoid warnings for null during initialization phase
target: window ? window.visibility : manager
target: dock ? dock.visibility : manager
property:"panelVisibility"
when: window && window.visibility
when: dock && dock.visibility
value: plasmoid.configuration.panelVisibility
}
Binding{
target: window
target: dock ? dock : manager
property:"maxThickness"
when: window
when: dock
value: thicknessZoomOriginal
}
onWindowChanged: {
if(window) {
window.visibility.onDisableHidingChanged.connect(slotDisableHidingChanged);
window.visibility.onIsHoveredChanged.connect(slotIsHoveredChanged);
window.visibility.onMustBeLowered.connect(slotMustBeLowered);
window.visibility.onMustBeRaised.connect(slotMustBeRaised);
window.visibility.onMustBeRaisedImmediately.connect(slotMustBeRaisedImmediately);
window.visibility.onPanelVisibilityChanged.connect(slotPanelVisibilityChanged);
}
}
onInStartupChanged: {
if (!inStartup) {
delayAnimationTimer.start();
@ -80,20 +70,19 @@ Item{
onThicknessZoomOriginalChanged: updateMaskArea();
function slotDisableHidingChanged() {
if (!window.disableHiding) {
if (!dock.visibility.disableHiding) {
checkListHovered.restart();
}
}
function slotIsHoveredChanged() {
if(window.isHovered) {
if(dock.visibility.isHovered) {
//stop parent window timer for auto hiding
if ((window.visibility.panelVisibility === Latte.Dock.AutoHide)|| window.visibility.isDockWindowType) {
if ((dock.visibility.panelVisibility === Latte.Dock.AutoHide)|| dock.visibility.isDockWindowType) {
if(hideMagicWindowInAutoHide.forcedDisableHiding) {
hideMagicWindowInAutoHide.forcedDisableHiding = false;
window.visibility.disableHiding = false;
dock.visibility.disableHiding = false;
}
hideMagicWindowInAutoHide.stop();
@ -111,12 +100,10 @@ Item{
}
function slotMustBeRaised() {
if (window) {
if ((window.visibility.panelVisibility === Latte.Dock.AutoHide) || window.visibility.isDockWindowType) {
slidingAnimationAutoHiddenIn.init();
} else {
slidingAnimation.init(true,false);
}
if ((dock.visibility.panelVisibility === Latte.Dock.AutoHide) || dock.visibility.isDockWindowType) {
slidingAnimationAutoHiddenIn.init();
} else {
slidingAnimation.init(true,false);
}
}
@ -125,24 +112,22 @@ Item{
}
function slotMustBeLowered() {
if (window) {
if ((window.visibility.panelVisibility === Latte.Dock.AutoHide) || window.visibility.isDockWindowType ) {
if ((dock.visibility.panelVisibility === Latte.Dock.AutoHide) || dock.visibility.isDockWindowType ) {
slidingAnimationAutoHiddenOut.init();
} else {
slidingAnimation.init(false,false);
}
}
}
function slotPanelVisibilityChanged() {
if (window.visibility.panelVisibility !== Latte.Dock.AutoHide) {
window.visibility.isAutoHidden = false;
if (dock.visibility.panelVisibility !== Latte.Dock.AutoHide) {
dock.visibility.isAutoHidden = false;
}
}
///test maskArea
function updateMaskArea() {
if (!windowSystem.compositingActive || !window) {
if (!windowSystem.compositingActive || !dock) {
return;
}
@ -179,42 +164,42 @@ Item{
tempThickness = thicknessMidOriginal;
}
if (window.visibility.isAutoHidden && ((window.visibility.panelVisibility === Latte.Dock.AutoHide) || window.visibility.isDockWindowType)) {
if (dock.visibility.isAutoHidden && ((dock.visibility.panelVisibility === Latte.Dock.AutoHide) || dock.visibility.isDockWindowType)) {
tempThickness = thicknessAutoHidden;
}
//configure x,y based on plasmoid position and root.panelAlignment(Alignment)
if ((plasmoid.location === PlasmaCore.Types.BottomEdge) || (plasmoid.location === PlasmaCore.Types.TopEdge)) {
if (plasmoid.location === PlasmaCore.Types.BottomEdge) {
localY = window.height - tempThickness;
localY = dock.height - tempThickness;
} else if (plasmoid.location === PlasmaCore.Types.TopEdge) {
localY = 0;
}
if (plasmoid.configuration.panelPosition === Latte.Dock.Double) {
localX = (window.width/2) - (layoutsContainer.width/2) - 0.25*space;
localX = (dock.width/2) - (layoutsContainer.width/2) - 0.25*space;
} else if (root.panelAlignment === Latte.Dock.Left) {
localX = 0;
} else if (root.panelAlignment === Latte.Dock.Center) {
localX = (window.width/2) - (mainLayout.width/2) - (space/2);
localX = (dock.width/2) - (mainLayout.width/2) - (space/2);
} else if (root.panelAlignment === Latte.Dock.Right) {
localX = window.width - mainLayout.width - (space/2);
localX = dock.width - mainLayout.width - (space/2);
}
} else if ((plasmoid.location === PlasmaCore.Types.LeftEdge) || (plasmoid.location === PlasmaCore.Types.RightEdge)){
if (plasmoid.location === PlasmaCore.Types.LeftEdge) {
localX = 0;
} else if (plasmoid.location === PlasmaCore.Types.RightEdge) {
localX = window.width - tempThickness;
localX = dock.width - tempThickness;
}
if (plasmoid.configuration.panelPosition === Latte.Dock.Double) {
localY = (window.height/2) - (layoutsContainer.height/2) - 0.25*space;
localY = (dock.height/2) - (layoutsContainer.height/2) - 0.25*space;
} else if (root.panelAlignment === Latte.Dock.Top) {
localY = 0;
} else if (root.panelAlignment === Latte.Dock.Center) {
localY = (window.height/2) - (mainLayout.height/2) - (space/2);
localY = (dock.height/2) - (mainLayout.height/2) - (space/2);
} else if (root.panelAlignment === Latte.Dock.Bottom) {
localY = window.height - mainLayout.height - (space/2);
localY = dock.height - mainLayout.height - (space/2);
}
}
} else {
@ -233,15 +218,15 @@ Item{
//configure the x,y position based on thickness
if(plasmoid.location === PlasmaCore.Types.RightEdge)
localX = window.width - tempThickness;
localX = dock.width - tempThickness;
else if(plasmoid.location === PlasmaCore.Types.BottomEdge)
localY = window.height - tempThickness;
localY = dock.height - tempThickness;
} else{
//use all thickness space
tempThickness = thicknessZoomOriginal;
}
}
var maskArea = window.maskArea;
var maskArea = dock.maskArea;
var maskLength = maskArea.width; //in Horizontal
if (root.isVertical) {
@ -270,7 +255,7 @@ Item{
newMaskArea.height = tempLength;
}
window.maskArea = newMaskArea;
dock.maskArea = newMaskArea;
}
}
@ -290,10 +275,10 @@ Item{
}
Rectangle{
x: window ? window.maskArea.x : 0
y: window ? window.maskArea.y : 0
height: window ? window.maskArea.height : -1
width: window ? window.maskArea.width : -1
x: dock ? dock.maskArea.x : -1
y: dock ? dock.maskArea.y : -1
height: dock ? dock.maskArea.height : 0
width: dock ? dock.maskArea.width : 0
border.color: "green"
border.width: 1
@ -345,9 +330,9 @@ Item{
onInHalfChanged: {
if (inHalf) {
if (raiseFlag) {
window.visibility.showOnTop();
dock.visibility.showOnTop();
} else {
window.visibility.showOnBottom();
dock.visibility.showOnBottom();
}
}
}
@ -373,7 +358,7 @@ Item{
}
onStopped: {
window.visibility.isAutoHidden = true;
dock.visibility.isAutoHidden = true;
updateMaskArea();
}
@ -400,7 +385,7 @@ Item{
}
function init() {
window.visibility.isAutoHidden = false;
dock.visibility.isAutoHidden = false;
updateMaskArea();
start();
}
@ -409,10 +394,10 @@ Item{
///////////// External Connections //////
TaskManager.ActivityInfo {
onCurrentActivityChanged: {
window.visibility.disableHiding = true;
dock.visibility.disableHiding = true;
if (window.visibility.isAutoHidden) {
window.visibility.mustBeRaised();
if (dock.visibility.isAutoHidden) {
dock.visibility.mustBeRaised();
}
hideMagicWindowInAutoHide.forcedDisableHiding = true;
@ -439,7 +424,7 @@ Item{
interval: manager.inStartup ? 1000 : 500
onTriggered: {
layoutsContainer.opacity = 1;
if ((window.visibility.panelVisibility !== Latte.Dock.AutoHide) && !window.visibility.isDockWindowType) {
if ((dock.visibility.panelVisibility !== Latte.Dock.AutoHide) && !dock.visibility.isDockWindowType) {
slidingAnimation.init(true,false);
} else {
slidingAnimationAutoHiddenIn.init();

View File

@ -48,7 +48,7 @@ DragDrop.DropArea {
property bool isHorizontal: plasmoid.formFactor == PlasmaCore.Types.Horizontal
property bool isVertical: !isHorizontal
property bool isHovered: nowDock ? ((nowDockHoveredIndex !== -1) && (layoutsContainer.hoveredIndex !== -1)) //|| wholeArea.containsMouse
: (layoutsContainer.hoveredIndex !== -1) || wholeArea.containsMouse
: (layoutsContainer.hoveredIndex !== -1) //|| wholeArea.containsMouse
property bool normalState : false
property bool onlyAddingStarup: true //is used for the initialization phase in startup where there arent removals, this variable provides a way to grow icon size
//FIXME: possibly this is going to be the default behavior, this user choice
@ -81,9 +81,10 @@ DragDrop.DropArea {
property int panelAlignment: plasmoid.immutable ? plasmoid.configuration.panelPosition : Latte.Dock.Center
// property int panelAlignment: plasmoid.configuration.panelPosition
property real zoomFactor: windowSystem.compositingActive ? ( 1 + (plasmoid.configuration.zoomLevel / 20) ) : 1
readonly property string plasmoidName: "org.kde.latte.plasmoid"
property var iconsArray: [16, 22, 32, 48, 64, 96, 128, 256]
property var layoutManager: LayoutManager
@ -92,7 +93,7 @@ DragDrop.DropArea {
property Item toolBox
property Item nowDockContainer
property Item nowDock
property QtObject dockView
property QtObject dock
// TO BE DELETED, if not needed: property int counter:0;
@ -387,6 +388,17 @@ DragDrop.DropArea {
//////////////START OF CONNECTIONS
onAppletsAnimationsChanged: visibilityManager.updateMaskArea();
onDockChanged: {
if (dock) {
dock.visibility.onDisableHidingChanged.connect(visibilityManager.slotDisableHidingChanged);
dock.visibility.onIsHoveredChanged.connect(visibilityManager.slotIsHoveredChanged);
dock.visibility.onMustBeLowered.connect(visibilityManager.slotMustBeLowered);
dock.visibility.onMustBeRaised.connect(visibilityManager.slotMustBeRaised);
dock.visibility.onMustBeRaisedImmediately.connect(visibilityManager.slotMustBeRaisedImmediately);
dock.visibility.onPanelVisibilityChanged.connect(visibilityManager.slotPanelVisibilityChanged);
}
}
onDragEnter: {
if (plasmoid.immutable) {
event.ignore();
@ -420,7 +432,7 @@ DragDrop.DropArea {
onIsHoveredChanged: {
if (isHovered){
dockView.visibility.showOnTopCheck();
dock.visibility.showOnTopCheck();
}
}
@ -502,7 +514,6 @@ DragDrop.DropArea {
}
Plasmoid.onUserConfiguringChanged: {
console.log("user configuring:"+plasmoid.userConfiguring + " immutable:"+plasmoid.immutable);
if (plasmoid.immutable) {
if (dragOverlay) {
dragOverlay.destroy();
@ -539,7 +550,6 @@ DragDrop.DropArea {
Plasmoid.onFormFactorChanged: containmentSizeSyncTimer.restart();
Plasmoid.onImmutableChanged: {
console.log("plasmoid immutable state: "+plasmoid.immutable);
containmentSizeSyncTimer.restart();
plasmoid.action("configure").visible = !plasmoid.immutable;
plasmoid.action("configure").enabled = !plasmoid.immutable;
@ -571,10 +581,10 @@ DragDrop.DropArea {
// magicWin.initialize();
}
dockView.visibility.disableHiding = false;
dock.visibility.disableHiding = false;
} else {
dockView.visibility.disableHiding = true;
dockView.visibility.mustBeRaised();
dock.visibility.disableHiding = true;
dock.visibility.mustBeRaised();
}
@ -731,7 +741,7 @@ DragDrop.DropArea {
animatedLengthTimer.start();
}
if (!dockView.visibility.isHovered && (root.animationsNeedBothAxis === 0)
if (!dock.visibility.isHovered && (root.animationsNeedBothAxis === 0)
&& (root.animationsNeedLength===0) && (root.appletsAnimations === 0)) {
mainLayout.animatedLength = true;
} else {
@ -743,7 +753,7 @@ DragDrop.DropArea {
function clearZoom(){
//console.log("Panel clear....");
if (dockView.visibility.disableHiding) {
if (dock.visibility.disableHiding) {
return;
}
@ -853,14 +863,14 @@ DragDrop.DropArea {
}
function slotDisableHiding(value) {
dockView.visibility.disableHiding = value;
dock.visibility.disableHiding = value;
}
function updateAutomaticIconSize() {
if (visibilityManager.normalState && !animatedLengthTimer.running && plasmoid.immutable
&& (iconSize===plasmoid.configuration.iconSize || iconSize === automaticIconSizeBasedSize) ) {
var layoutLength;
var maxLength = dockView.maxLength;
var maxLength = dock.maxLength;
// console.log("------Entered check-----");
if (root.isVertical) {
@ -1040,8 +1050,7 @@ DragDrop.DropArea {
VisibilityManager{
id: visibilityManager
window: dockView
// window: dock
}
Item{
@ -1057,14 +1066,14 @@ DragDrop.DropArea {
x: (plasmoid.configuration.panelPosition === Latte.Dock.Double) && root.isHorizontal
&& plasmoid.immutable && windowSystem.compositingActive ?
(dockView.width/2) - (dockView.visibility.maxLength/2): 0
(dock.width/2) - (dock.visibility.maxLength/2): 0
y: (plasmoid.configuration.panelPosition === Latte.Dock.Double) && root.isVertical
&& plasmoid.immutable && windowSystem.compositingActive ?
(dockView.height/2) - (dockView.visibility.maxLength/2): 0
(dock.height/2) - (dock.visibility.maxLength/2): 0
width: (plasmoid.configuration.panelPosition === Latte.Dock.Double) && root.isHorizontal && plasmoid.immutable ?
dockView.visibility.maxLength : parent.width
dock.visibility.maxLength : parent.width
height: (plasmoid.configuration.panelPosition === Latte.Dock.Double) && root.isVertical && plasmoid.immutable ?
dockView.visibility.maxLength : parent.height
dock.visibility.maxLength : parent.height
Component.onCompleted: {
if(plasmoid.immutable) {
@ -1226,10 +1235,10 @@ DragDrop.DropArea {
onTriggered: {
if (forcedDisableHiding) {
forcedDisableHiding = false;
dockView.visibility.disableHiding = false;
dock.visibility.disableHiding = false;
}
var visibility = dockView.visibility;
var visibility = dock.visibility;
if (plasmoid.immutable && !visibility.isHovered //&& !wholeArea.containsMouse
&& ((visibility.panelVisibility === Latte.Dock.AutoHide) || visibility.isDockWindowType) ) {

View File

@ -1,16 +0,0 @@
[Desktop Entry]
Name=Latte Dock
Comment=Latte Dock Application
Exec=latte-dock %u
Hidden=true
Icon=plasma
InitialPreference=1
Path=
StartupNotify=true
Terminal=false
TerminalOptions=
Type=Application
X-DBUS-ServiceName=
X-DBUS-StartupType=unique
X-KDE-SubstituteUID=false
X-KDE-Username=

View File

@ -0,0 +1,228 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 16 16"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="latte-dock16.svg">
<defs
id="defs4">
<linearGradient
id="d-5"
y1="531.78998"
y2="544.78998"
x2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.70711,-0.70711,0.70711,0.70711,-273.44,450.74)">
<stop
id="stop4286" />
<stop
offset="1"
stop-opacity="0"
id="stop4288" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient4162">
<stop
style="stop-color:#f3e0c1;stop-opacity:1"
offset="0"
id="stop4164" />
<stop
style="stop-color:#fff7eb;stop-opacity:1"
offset="1"
id="stop4166" />
</linearGradient>
<linearGradient
gradientTransform="matrix(1.45455,0,0,1,-198.81,-31)"
gradientUnits="userSpaceOnUse"
x2="0"
y2="505.79999"
y1="538.79999"
id="linearGradient4386">
<stop
offset="0"
stop-color="#e8b971"
id="stop4390" />
<stop
offset="1"
stop-color="#bd8d48"
id="stop4388" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4386"
id="linearGradient4209"
x1="8.2241678"
y1="1037.4008"
x2="8.2241678"
y2="1051.2361"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4250"
x1="7.0382609"
y1="4.7331176"
x2="14.162993"
y2="11.85785"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1036.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4274"
x1="5.0996366"
y1="12.126575"
x2="7.9566026"
y2="14.983541"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1036.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4282"
x1="7.1396418"
y1="13.175166"
x2="8.8903942"
y2="14.925919"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1036.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4291"
x1="9.1318426"
y1="12.142071"
x2="11.178883"
y2="14.189111"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1036.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4162"
id="linearGradient4299"
x1="7.4154735"
y1="1047.3792"
x2="7.4154735"
y2="1039.3811"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="7.54"
inkscape:cx="7.0131653"
inkscape:cy="4.3605491"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1600"
inkscape:window-height="844"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1"
showguides="false">
<inkscape:grid
type="xygrid"
id="grid4246" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1036.3622)">
<path
cx="12"
cy="1040.3622"
r="10"
id="path4230"
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d=""
inkscape:connector-curvature="0" />
<g
id="g4366">
<circle
r="7"
cy="1044.3622"
cx="8"
id="path4136"
style="opacity:1;fill:url(#linearGradient4209);fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="rect4253"
d="m 5.8671875,1048.536 -0.7011719,0.7032 2.078125,2.08 A 7,7 0 0 0 8,1051.3622 a 7,7 0 0 0 0.65625,-0.037 l -2.7890625,-2.7891 z"
style="opacity:0.2;fill:url(#linearGradient4274);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4149"
d="m 5.5,1048.3622 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 0.5,0.5 0 0 0 0.5,-0.5 0.5,0.5 0 0 0 -0.5,-0.5 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="rect4255"
d="m 7.8261719,1049.4813 -0.703125,0.7032 1.1679687,1.1679 a 7,7 0 0 0 1.2382813,-0.1679 l -1.703125,-1.7032 z"
style="opacity:0.2;fill:url(#linearGradient4282);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4159"
d="M 7.4999999,1049.3622 A 0.5,0.5 0 0 0 7,1049.8622 a 0.5,0.5 0 0 0 0.4999999,0.5 0.5,0.5 0 0 0 0.5000001,-0.5 0.5,0.5 0 0 0 -0.5000001,-0.5 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="rect4257"
d="m 9.8496094,1048.5028 -0.7011719,0.7032 1.5898435,1.5898 a 7,7 0 0 0 0.927735,-0.4766 l -1.8164066,-1.8164 z"
style="opacity:0.2;fill:url(#linearGradient4291);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 9.5,1048.3622 a 0.5,0.5 0 0 0 -0.5,0.5 0.5,0.5 0 0 0 0.5,0.5 0.5,0.5 0 0 0 0.5,-0.5 0.5,0.5 0 0 0 -0.5,-0.5 z"
id="path4156"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="circle4211"
d="M 14.994141,1044.2157 A 7,7 0 0 1 8,1051.1122 7,7 0 0 1 1.0058594,1044.2587 7,7 0 0 0 1,1044.3622 a 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -0.0059,-0.1465 z"
style="opacity:1;fill:#a37836;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="rect4238"
d="m 11.509766,1039.581 -2.0488285,1.2167 -1.8242187,3.0508 -1.2695313,1.4883 -2.2929687,-0.2363 -0.8085938,1.5176 4.7441406,4.7441 a 7,7 0 0 0 6.9902344,-7 7,7 0 0 0 -0.585938,-2.7812 l -1.892578,-1.8926 -1.011718,-0.1074 z"
style="opacity:0.2;fill:url(#linearGradient4250);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
sodipodi:nodetypes="csczczc"
inkscape:connector-curvature="0"
id="path4160"
d="m 12,1045.8622 c 0,0 -1.945907,1 -3,1 -1.0540926,0 -2.5,-1.5 -2.5,-1.5 0,0 -2.8354854,-0.7138 -3,0.3 -0.1645146,1.0138 1.3244536,1.4869 2.5,1 1.9060103,-1.8679 1.9944572,-5.5774 4.3,-6.5 2.305543,-0.9226 2.408279,0.2987 2,2.2"
style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient4299);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -0,0 +1,229 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="22"
height="22"
viewBox="0 0 22 22"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="latte-dock22.svg">
<defs
id="defs4">
<linearGradient
gradientTransform="matrix(0.70711,-0.70711,0.70711,0.70711,-273.44,450.74)"
gradientUnits="userSpaceOnUse"
x2="0"
y2="544.78998"
y1="531.78998"
id="d-5">
<stop
id="stop4286" />
<stop
id="stop4288"
stop-opacity="0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient4162"
inkscape:collect="always">
<stop
id="stop4164"
offset="0"
style="stop-color:#f3e0c1;stop-opacity:1" />
<stop
id="stop4166"
offset="1"
style="stop-color:#fff7eb;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4190"
x1="22.385242"
y1="18.387005"
x2="39.823719"
y2="35.825481"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.48630197,0,0,0.48630197,0.22875799,1028.3465)" />
<linearGradient
id="linearGradient4386"
y1="538.79999"
y2="505.79999"
x2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.45455,0,0,1,-198.81,-31)">
<stop
id="stop4390"
stop-color="#e8b971"
offset="0" />
<stop
id="stop4388"
stop-color="#bd8d48"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4386"
id="linearGradient4228"
x1="12.037523"
y1="1030.4185"
x2="12.037523"
y2="1050.5873"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4162"
id="linearGradient4243"
x1="11.913291"
y1="16.028769"
x2="11.913291"
y2="5.3345847"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1028.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4269"
x1="8.324194"
y1="17.418642"
x2="12.806447"
y2="21.900896"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1028.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4277"
x1="11.199268"
y1="18.281603"
x2="14.462165"
y2="21.544498"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1028.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4285"
x1="14.240234"
y1="17.299181"
x2="17.361467"
y2="20.420414"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1028.3622)" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="6.1300268"
inkscape:cx="5.2583684"
inkscape:cy="5.1088474"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1600"
inkscape:window-height="844"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid4246" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1030.3622)">
<path
cx="12"
cy="1040.3622"
r="10"
id="path4230"
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d=""
inkscape:connector-curvature="0" />
<g
id="g4260"
transform="translate(-1,0.99975869)">
<circle
cx="12"
cy="1040.3622"
r="10"
id="path4136"
style="opacity:1;fill:url(#linearGradient4228);fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="circle4232"
d="M 21.990234,1040.0692 A 10,10 0 0 1 12,1049.8622 10,10 0 0 1 2.0097656,1040.1552 10,10 0 0 0 2,1040.3622 a 10,10 0 0 0 10,10 10,10 0 0 0 10,-10 10,10 0 0 0 -0.0098,-0.293 z"
style="opacity:1;fill:#a37836;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="rect4248"
d="m 9.7070312,1045.6454 -1.4160156,1.416 3.2792964,3.2793 a 10,10 0 0 0 0.429688,0.022 10,10 0 0 0 2.169922,-0.252 l -4.4628908,-4.4648 z"
style="opacity:0.2;fill:url(#linearGradient4269);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4215"
d="m 9,1045.3622 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="rect4250"
d="m 12.681641,1046.6278 -1.416016,1.4141 2.201172,2.2012 a 10,10 0 0 0 2.234375,-0.5957 l -3.019531,-3.0196 z"
style="opacity:0.2;fill:url(#linearGradient4277);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="rect4252"
d="m 15.65625,1045.6161 -1.416016,1.416 2.257813,2.2578 a 10,10 0 0 0 1.728515,-1.1035 l -2.570312,-2.5703 z"
style="opacity:0.2;fill:url(#linearGradient4285);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4213"
d="m 15,1045.3622 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4149"
d="m 12,1046.3622 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="rect4152"
d="m 17.369141,1033.5243 -1.033203,0.082 -1.871094,0.834 -1.302735,1.5176 -1.27539,2.8984 -1.117188,2.1114 -0.724609,1.1425 -1.6562501,-0.4355 -1.3457031,0.1309 -0.59375,0.6679 -0.041016,0.8282 0.011719,0.4199 6.6835942,6.5664 A 10,10 0 0 0 22,1040.3622 a 10,10 0 0 0 -0.326172,-2.5 l -4.304687,-4.334 0,0 z"
style="opacity:0.2;fill:url(#linearGradient4190);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path4219"
d="m 16.675781,1033.3505 c -0.445236,-0.02 -0.937879,0.1023 -1.550781,0.3476 -0.74629,0.2986 -1.337985,0.9663 -1.912109,1.7891 -0.574125,0.8229 -1.118905,1.8223 -1.646485,2.8418 -0.745807,1.4412 -1.398016,2.4856 -2.0527341,3.5176 -0.1566,-0.068 -0.639264,-0.2909 -1.3457031,-0.4063 -0.4060099,-0.066 -0.8409035,-0.096 -1.265625,0.051 -0.4226215,0.1463 -0.8090129,0.5632 -0.8828126,1.1016 -0.057606,0.3737 0.041701,0.749 0.2480469,1.0234 0.2082956,0.2771 0.5002198,0.4606 0.8183594,0.5781 0.6362793,0.2349 1.4075661,0.2249 2.1171875,-0.068 l 0.087891,-0.037 0.070312,-0.066 c 0.1700201,-0.1666 0.3206494,-0.4865 0.484375,-0.6993 0.105813,0.09 0.091696,0.092 0.216797,0.1875 0.52739,0.4009 1.185002,0.8535 1.949219,0.8535 0.68516,0 1.65206,-0.2658 2.533203,-0.5195 0.881143,-0.2537 1.626953,-0.5058 1.626953,-0.5058 l -0.322266,-0.9493 c 0,0 -0.72674,0.2459 -1.582031,0.4922 -0.855291,0.2462 -1.886927,0.4824 -2.255859,0.4824 -0.289875,0 -0.884664,-0.2973 -1.34375,-0.6464 -0.145046,-0.1102 -0.137887,-0.1213 -0.251953,-0.2207 0.681715,-1.1002 1.347765,-2.3712 2.039062,-3.7071 0.520955,-1.0067 1.050733,-1.9755 1.576172,-2.7285 0.525439,-0.7531 1.058362,-1.271 1.464844,-1.4336 0.539869,-0.2161 0.925063,-0.2847 1.134765,-0.2754 0.209703,0.01 0.22244,0.035 0.271485,0.1153 0.09809,0.1596 0.117644,0.8722 -0.08008,1.7929 l 0.978515,0.209 c 0.210561,-0.9806 0.38071,-1.8297 -0.04687,-2.5254 -0.2138,-0.3479 -0.632892,-0.5721 -1.078128,-0.5918 l 0,0 z m -9.1191404,9.0351 c 0.1349064,0 0.2898877,0.01 0.4492188,0.035 l 0,0.01 c 0.4871855,0.08 0.7843753,0.2167 0.9941406,0.3008 -0.082459,0.1043 -0.2010181,0.3975 -0.2792969,0.4785 -0.4437671,0.1532 -0.9539914,0.174 -1.2890625,0.051 -0.1804813,-0.067 -0.3038823,-0.1606 -0.3652344,-0.2422 -0.061352,-0.082 -0.083542,-0.1418 -0.0625,-0.2715 l 0.00195,-0.01 0.00195,-0.012 c 0.030301,-0.2314 0.063929,-0.2367 0.2207031,-0.291 0.078387,-0.027 0.1932186,-0.043 0.328125,-0.045 l 0,0 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4243);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,226 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 24 24"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="latte-dock24.svg">
<defs
id="defs4">
<linearGradient
gradientTransform="matrix(0.70711,-0.70711,0.70711,0.70711,-273.44,450.74)"
gradientUnits="userSpaceOnUse"
x2="0"
y2="544.78998"
y1="531.78998"
id="d-5">
<stop
id="stop4286" />
<stop
id="stop4288"
stop-opacity="0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient4162"
inkscape:collect="always">
<stop
id="stop4164"
offset="0"
style="stop-color:#f3e0c1;stop-opacity:1" />
<stop
id="stop4166"
offset="1"
style="stop-color:#fff7eb;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4190"
x1="22.385242"
y1="18.387005"
x2="39.823719"
y2="35.825481"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.48630197,0,0,0.48630197,0.22875799,1028.3465)" />
<linearGradient
id="linearGradient4386"
y1="538.79999"
y2="505.79999"
x2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.45455,0,0,1,-198.81,-31)">
<stop
id="stop4390"
stop-color="#e8b971"
offset="0" />
<stop
id="stop4388"
stop-color="#bd8d48"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4386"
id="linearGradient4228"
x1="12.037523"
y1="1030.4185"
x2="12.037523"
y2="1050.5873"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4162"
id="linearGradient4243"
x1="11.913291"
y1="16.028769"
x2="11.913291"
y2="5.3345847"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1028.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4269"
x1="8.324194"
y1="17.418642"
x2="12.806447"
y2="21.900896"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1028.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4277"
x1="11.199268"
y1="18.281603"
x2="14.462165"
y2="21.544498"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1028.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4285"
x1="14.240234"
y1="17.299181"
x2="17.361467"
y2="20.420414"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1028.3622)" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="6.1300268"
inkscape:cx="5.2583684"
inkscape:cy="5.1088474"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1600"
inkscape:window-height="844"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1"
inkscape:snap-grids="false">
<inkscape:grid
type="xygrid"
id="grid4246" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1028.3622)">
<path
cx="12"
cy="1040.3622"
r="10"
id="path4230"
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
id="g4260">
<circle
cx="12"
cy="1040.3622"
r="10"
id="path4136"
style="opacity:1;fill:url(#linearGradient4228);fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;" />
<path
inkscape:connector-curvature="0"
id="circle4232"
d="M 21.990234,1040.0692 A 10,10 0 0 1 12,1049.8622 10,10 0 0 1 2.0097656,1040.1552 10,10 0 0 0 2,1040.3622 a 10,10 0 0 0 10,10 10,10 0 0 0 10,-10 10,10 0 0 0 -0.0098,-0.293 z"
style="opacity:1;fill:#a37836;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;" />
<path
inkscape:connector-curvature="0"
id="rect4248"
d="m 9.7070312,1045.6454 -1.4160156,1.416 3.2792964,3.2793 a 10,10 0 0 0 0.429688,0.022 10,10 0 0 0 2.169922,-0.252 l -4.4628908,-4.4648 z"
style="opacity:0.2;fill:url(#linearGradient4269);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;" />
<path
inkscape:connector-curvature="0"
id="path4215"
d="m 9,1045.3622 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
<path
inkscape:connector-curvature="0"
id="rect4250"
d="m 12.681641,1046.6278 -1.416016,1.4141 2.201172,2.2012 a 10,10 0 0 0 2.234375,-0.5957 l -3.019531,-3.0196 z"
style="opacity:0.2;fill:url(#linearGradient4277);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;" />
<path
inkscape:connector-curvature="0"
id="rect4252"
d="m 15.65625,1045.6161 -1.416016,1.416 2.257813,2.2578 a 10,10 0 0 0 1.728515,-1.1035 l -2.570312,-2.5703 z"
style="opacity:0.2;fill:url(#linearGradient4285);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;" />
<path
inkscape:connector-curvature="0"
id="path4213"
d="m 15,1045.3622 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
<path
inkscape:connector-curvature="0"
id="path4149"
d="m 12,1046.3622 a 1,1 0 0 0 -1,1 1,1 0 0 0 1,1 1,1 0 0 0 1,-1 1,1 0 0 0 -1,-1 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
<path
inkscape:connector-curvature="0"
id="rect4152"
d="m 17.369141,1033.5243 -1.033203,0.082 -1.871094,0.834 -1.302735,1.5176 -1.27539,2.8984 -1.117188,2.1114 -0.724609,1.1425 -1.6562501,-0.4355 -1.3457031,0.1309 -0.59375,0.6679 -0.041016,0.8282 0.011719,0.4199 6.6835942,6.5664 A 10,10 0 0 0 22,1040.3622 a 10,10 0 0 0 -0.326172,-2.5 l -4.304687,-4.334 0,-0 z"
style="opacity:0.2;fill:url(#linearGradient4190);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;" />
<path
inkscape:connector-curvature="0"
id="path4219"
d="m 16.675781,1033.3505 c -0.445236,-0.02 -0.937879,0.1023 -1.550781,0.3476 -0.74629,0.2986 -1.337985,0.9663 -1.912109,1.7891 -0.574125,0.8229 -1.118905,1.8223 -1.646485,2.8418 -0.745807,1.4412 -1.398016,2.4856 -2.0527341,3.5176 -0.1566,-0.068 -0.639264,-0.2909 -1.3457031,-0.4063 -0.4060099,-0.066 -0.8409035,-0.096 -1.265625,0.051 -0.4226215,0.1463 -0.8090129,0.5632 -0.8828126,1.1016 -0.057606,0.3737 0.041701,0.749 0.2480469,1.0234 0.2082956,0.2771 0.5002198,0.4606 0.8183594,0.5781 0.6362793,0.2349 1.4075661,0.2249 2.1171875,-0.068 l 0.087891,-0.037 0.070312,-0.066 c 0.1700201,-0.1666 0.3206494,-0.4865 0.484375,-0.6993 0.105813,0.09 0.091696,0.092 0.216797,0.1875 0.52739,0.4009 1.185002,0.8535 1.949219,0.8535 0.68516,0 1.65206,-0.2658 2.533203,-0.5195 0.881143,-0.2537 1.626953,-0.5058 1.626953,-0.5058 l -0.322266,-0.9493 c 0,0 -0.72674,0.2459 -1.582031,0.4922 -0.855291,0.2462 -1.886927,0.4824 -2.255859,0.4824 -0.289875,0 -0.884664,-0.2973 -1.34375,-0.6464 -0.145046,-0.1102 -0.137887,-0.1213 -0.251953,-0.2207 0.681715,-1.1002 1.347765,-2.3712 2.039062,-3.7071 0.520955,-1.0067 1.050733,-1.9755 1.576172,-2.7285 0.525439,-0.7531 1.058362,-1.271 1.464844,-1.4336 0.539869,-0.2161 0.925063,-0.2847 1.134765,-0.2754 0.209703,0.01 0.22244,0.035 0.271485,0.1153 0.09809,0.1596 0.117644,0.8722 -0.08008,1.7929 l 0.978515,0.209 c 0.210561,-0.9806 0.38071,-1.8297 -0.04687,-2.5254 -0.2138,-0.3479 -0.632892,-0.5721 -1.078128,-0.5918 l 0,-0 z m -9.1191404,9.0351 c 0.1349064,0 0.2898877,0.01 0.4492188,0.035 l 0,0.01 c 0.4871855,0.08 0.7843753,0.2167 0.9941406,0.3008 -0.082459,0.1043 -0.2010181,0.3975 -0.2792969,0.4785 -0.4437671,0.1532 -0.9539914,0.174 -1.2890625,0.051 -0.1804813,-0.067 -0.3038823,-0.1606 -0.3652344,-0.2422 -0.061352,-0.082 -0.083542,-0.1418 -0.0625,-0.2715 l 0.00195,-0.01 0.00195,-0.012 c 0.030301,-0.2314 0.063929,-0.2367 0.2207031,-0.291 0.078387,-0.027 0.1932186,-0.043 0.328125,-0.045 l 0,-0 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4243);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,216 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32"
height="32"
viewBox="0 0 32 32.000001"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="latte-dock32.svg">
<defs
id="defs4">
<linearGradient
id="linearGradient4162"
inkscape:collect="always">
<stop
id="stop4164"
offset="0"
style="stop-color:#f3e0c1;stop-opacity:1" />
<stop
id="stop4166"
offset="1"
style="stop-color:#fff7eb;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4190"
x1="22.385242"
y1="18.387005"
x2="39.823719"
y2="35.825481"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.75248844,0,0,0.75248844,-2.19148,1019.1599)" />
<linearGradient
gradientTransform="matrix(0.70711,-0.70711,0.70711,0.70711,-273.44,450.74)"
gradientUnits="userSpaceOnUse"
x2="0"
y2="544.78998"
y1="531.78998"
id="d-5">
<stop
id="stop4286" />
<stop
id="stop4288"
stop-opacity="0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient4386"
y1="538.79999"
y2="505.79999"
x2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.45455,0,0,1,-198.81,-31)">
<stop
id="stop4390"
stop-color="#e8b971"
offset="0" />
<stop
id="stop4388"
stop-color="#bd8d48"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4386"
id="linearGradient4221"
x1="16.114807"
y1="1021.4925"
x2="16.114807"
y2="1051.0685"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4162"
id="linearGradient4240"
x1="15.006763"
y1="23.084547"
x2="15.006763"
y2="6.6625118"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1020.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4266"
x1="18.462507"
y1="24.650295"
x2="22.927013"
y2="29.114801"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1020.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4268"
x1="14.621103"
y1="26.453819"
x2="18.822126"
y2="30.654842"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1020.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4270"
x1="10.661341"
y1="24.648125"
x2="16.828993"
y2="30.815777"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1020.3622)" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="10.66"
inkscape:cx="8.2415352"
inkscape:cy="10.417742"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1600"
inkscape:window-height="844"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid4246" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1020.3622)">
<circle
style="opacity:1;fill:url(#linearGradient4221);fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;"
id="path4136"
cx="16"
cy="1036.3622"
r="15" />
<path
style="opacity:1;fill:#a37836;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;"
d="M 30.980469,1035.7763 A 15,15 0 0 1 16,1050.3622 15,15 0 0 1 1.0195312,1035.9481 15,15 0 0 0 1,1036.3622 a 15,15 0 0 0 15,15 15,15 0 0 0 15,-15 15,15 0 0 0 -0.01953,-0.5859 z"
id="circle4191"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4270);fill-opacity:1.0;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 12.464844,1044.6962 -2.126953,2.1269 4.480468,4.4805 a 15,15 0 0 0 1.181641,0.059 15,15 0 0 0 2.845703,-0.2852 l -6.380859,-6.3808 z"
id="rect4245" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
d="m 11.5,1044.3622 a 1.4999999,1.4999999 0 0 0 -1.5,1.5 1.4999999,1.4999999 0 0 0 1.5,1.5 1.4999999,1.4999999 0 0 0 1.5,-1.5 1.4999999,1.4999999 0 0 0 -1.5,-1.5 z"
id="path4227" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4266);fill-opacity:1.0;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 20.427734,1044.663 -2.126953,2.1289 3.421875,3.4219 a 15,15 0 0 0 2.757813,-1.4981 l -4.052735,-4.0527 z"
id="rect4249" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
d="m 19.5,1044.3622 a 1.4999999,1.4999999 0 0 0 -1.5,1.5 1.4999999,1.4999999 0 0 0 1.5,1.5 1.4999999,1.4999999 0 0 0 1.5,-1.5 1.4999999,1.4999999 0 0 0 -1.5,-1.5 z"
id="path4225" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4268);fill-opacity:1.0;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.480469,1046.7196 -2.128907,2.1289 2.484376,2.4844 a 15,15 0 0 0 3.599609,-0.6582 l -3.955078,-3.9551 z"
id="rect4247" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
d="m 15.5,1046.3622 a 1.5000004,1.5000004 0 0 0 -1.5,1.5 1.5000004,1.5000004 0 0 0 1.5,1.5 1.5000004,1.5000004 0 0 0 1.5,-1.5 1.5000004,1.5000004 0 0 0 -1.5,-1.5 z"
id="path4201" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4190);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;"
d="m 24.330078,1027.1727 -1.597656,0.127 -2.894531,1.291 -2.015625,2.3457 -1.460938,4.5879 -1.523437,3.8828 -1.22461,1.8731 -3.177734,-1.4981 -2.0820314,0.2031 -0.9199218,1.0352 -0.0625,1.2793 0.017578,0.6523 8.4003902,8.4004 a 15,15 0 0 0 0.210938,0.01 15,15 0 0 0 15,-15 15,15 0 0 0 -0.289062,-2.8633 l -6.38086,-6.3262 z"
id="rect4152" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4240);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
d="m 23.261719,1026.8642 c -0.839079,0 -1.644064,0.2206 -2.416016,0.664 -0.755172,0.4264 -1.469362,1.0488 -2.140625,1.8672 -0.654481,0.8015 -1.250098,1.79 -1.787109,2.9668 -0.537009,1.1594 -0.996835,2.4729 -1.382813,3.9395 -0.268504,1.0402 -0.538135,1.9185 -0.80664,2.6347 -0.268505,0.7163 -0.544792,1.3117 -0.830078,1.7891 -0.62092,-0.2387 -1.233753,-0.958 -1.837891,-1.1113 -0.587355,-0.1706 -1.191582,-0.2559 -1.8125,-0.2559 -0.4866656,0 -0.9312273,0.077 -1.3339845,0.2305 -0.3859775,0.1534 -0.720573,0.3407 -1.0058594,0.5625 -0.285288,0.2216 -0.5118726,0.459 -0.6796875,0.7148 C 7.0774812,1041.1237 7,1041.8885 7,1042.1102 c 0,0.3581 0.168275,0.656 0.5039062,0.8946 0.3356321,0.2388 0.8404557,0.3574 1.5117188,0.3574 1.778847,0 3.280803,-0.4682 4.505859,-1.4062 0.771953,0.3413 1.55972,0.6638 2.365235,0.9707 0.822298,0.2899 1.728636,0.4355 2.71875,0.4355 1.124365,0 2.022096,-0.2373 2.693359,-0.7148 0.671264,-0.4944 1.056227,-1.126 1.458984,-2.0469 0.01678,-0.1029 -0.0051,-0.1714 -0.07227,-0.2051 -0.05034,-0.051 -0.110607,-0.051 -0.177735,0 -0.285284,0.5798 -0.495318,0.9468 -0.93164,1.2539 -0.436322,0.3068 -1.074985,0.4609 -1.914063,0.4609 -1.006895,0 -1.928498,-0.1122 -2.767578,-0.3339 -0.822298,-0.2387 -1.612016,-0.5032 -2.367187,-0.793 1.040458,-1.2448 1.856004,-3.0099 2.443359,-5.2949 0.352414,-1.4325 0.695618,-2.6252 1.03125,-3.5801 0.335632,-0.9549 0.696055,-1.7125 1.082031,-2.2754 0.385976,-0.5798 0.806663,-0.9073 1.259766,-1.1289 0.469884,-0.2388 1.022457,-0.3555 1.660156,-0.3555 0.469885,0 0.854184,0.086 1.15625,0.2559 0.318851,0.1534 0.554043,0.3575 0.705078,0.6133 0.151039,0.2558 0.237131,0.4627 0.253907,0.7695 0.01679,0.307 -0.02627,0.9119 -0.126953,1.2188 -0.01679,0.086 0.0071,0.1458 0.07422,0.1796 0.08391,0.035 0.16139,0.027 0.228516,-0.025 0.167816,-0.2899 0.325528,-0.957 0.476562,-1.4003 0.151036,-0.4606 0.228519,-0.864 0.228519,-1.2051 0,-0.5287 -0.161619,-0.9701 -0.480469,-1.3281 -0.318849,-0.3753 -0.737583,-0.5625 -1.257812,-0.5625 z M 9.140625,1040.204 c 0.7216081,0 1.401364,0.1004 2.039063,0.3047 0.6377,0.2047 1.267752,0.9714 1.888671,1.2441 -0.385976,0.3752 -0.82388,0.6292 -1.310547,0.7657 -0.469884,0.1191 -1.005237,0.1796 -1.609374,0.1796 -0.6880457,0 -1.2273049,-0.1102 -1.6132818,-0.332 -0.3691949,-0.2217 -0.5527342,-1.0279 -0.5527343,-1.3691 0,-0.5285 0.3862503,-0.793 1.1582031,-0.793 z"
id="path4231" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,217 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
height="48"
viewBox="0 0 48 48.000001"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="latte-dock.svg">
<defs
id="defs4">
<linearGradient
id="linearGradient4386"
y1="538.8"
y2="505.8"
x2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.45455 0 0 1-198.81-31)">
<stop
id="stop4390"
stop-color="#e8b971"
offset="0" />
<stop
id="stop4388"
stop-color="#bd8d48"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient4162"
inkscape:collect="always">
<stop
id="stop4164"
offset="0"
style="stop-color:#f3e0c1;stop-opacity:1" />
<stop
id="stop4166"
offset="1"
style="stop-color:#fff7eb;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4386"
id="linearGradient4145"
x1="24.80402"
y1="1008.3622"
x2="24.80402"
y2="1048.3622"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4190"
x1="22.385242"
y1="18.387005"
x2="39.823719"
y2="35.825481"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1004.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4198"
x1="16.625048"
y1="35.569645"
x2="24.901201"
y2="43.845798"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1004.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4206"
x1="22.681784"
y1="37.628952"
x2="28.684929"
y2="43.632095"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1004.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4214"
x1="28.656393"
y1="35.532131"
x2="34.209293"
y2="41.085033"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1004.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4162"
id="linearGradient4222"
x1="20.16135"
y1="31.694183"
x2="20.16135"
y2="10.212008"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1004.3622)" />
<linearGradient
gradientTransform="matrix(0.70711,-0.70711,0.70711,0.70711,-273.44,450.74)"
gradientUnits="userSpaceOnUse"
x2="0"
y2="544.79"
y1="531.79"
id="d-5">
<stop
id="stop4286" />
<stop
id="stop4288"
stop-opacity="0"
offset="1" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="5.3437834"
inkscape:cy="15.785391"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1600"
inkscape:window-height="844"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1"
showborder="false">
<inkscape:grid
type="xygrid"
id="grid4246" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1004.3622)">
<circle
style="opacity:1;fill:url(#linearGradient4145);fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4136"
cx="24"
cy="1028.3622"
r="20" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4214);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 31.261719,1039.8153 -2.833985,2.8321 3.88086,3.8808 a 20,20 0 0 0 3.566406,-2.0996 l -4.613281,-4.6133 z"
id="rect4173" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4206);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 25.287109,1041.8407 -2.833984,2.834 3.564453,3.5645 a 20,20 0 0 0 4.63086,-1.0372 l -5.361329,-5.3613 z"
id="rect4171" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4198);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 19.382812,1039.8856 -2.833984,2.834 5.546875,5.5469 a 20,20 0 0 0 1.904297,0.096 20,20 0 0 0 3.537109,-0.3223 l -8.154297,-8.1543 z"
id="rect4169" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 18,1039.3622 a 2,2 0 0 0 -2,2 2,2 0 0 0 2,2 2,2 0 0 0 2,-2 2,2 0 0 0 -2,-2 z"
id="path4162" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 30,1039.3622 a 2,2 0 0 0 -2,2 2,2 0 0 0 2,2 2,2 0 0 0 2,-2 2,2 0 0 0 -2,-2 z"
id="path4160" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 24,1041.3622 a 2,2 0 0 0 -2,2 2,2 0 0 0 2,2 2,2 0 0 0 2,-2 2,2 0 0 0 -2,-2 z"
id="path4159" />
<path
inkscape:connector-curvature="0"
style="opacity:1;fill:#a37836;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 43.978516,1027.7802 A 20,20 0 0 1 24,1047.3622 20,20 0 0 1 4.0214844,1027.9442 20,20 0 0 0 4,1028.3622 a 20,20 0 0 0 20,20 20,20 0 0 0 20,-20 20,20 0 0 0 -0.02148,-0.582 z"
id="circle4147" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4190);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 35.246094,1015.0106 -2.123047,0.168 -4,1.4102 -2.527344,3.4238 -1.939453,6.0976 -2.025391,5.1583 -1.626953,2.4902 -4.222656,-1.9922 -2.767578,0.2715 -1.222656,1.375 -0.542969,2.084 12.826172,12.8261 A 20,20 0 0 0 44,1028.3622 a 20,20 0 0 0 -0.722656,-5.3203 l -8.03125,-8.0313 z"
id="rect4152" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4222);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 33.683594,1014.3622 c -1.118881,0 -2.193285,0.2954 -3.222656,0.8867 -1.006994,0.5685 -1.958411,1.399 -2.853516,2.4903 -0.872727,1.0688 -1.666728,2.3879 -2.382813,3.957 -0.716083,1.546 -1.331016,3.2962 -1.845703,5.2519 -0.358041,1.387 -0.716178,2.5587 -1.074218,3.5137 -0.358043,0.9551 -0.727002,1.7502 -1.107422,2.3867 -0.827973,-0.3183 -1.645577,-0.8795 -2.451172,-1.084 -0.783217,-0.2274 -1.588045,-0.3398 -2.416016,-0.3398 -0.648951,0 -1.242235,0.1019 -1.779297,0.3066 -0.514687,0.2046 -0.961378,0.4543 -1.341797,0.75 -0.380421,0.2956 -0.682475,0.6139 -0.90625,0.9551 C 12.101335,1033.7773 12,1034.3946 12,1034.6903 c 0,0.4775 0.224323,0.877 0.671875,1.1953 0.447553,0.3183 1.118567,0.4766 2.013672,0.4766 2.372027,0 4.374245,-0.6263 6.007812,-1.877 1.029371,0.4549 2.082125,0.8877 3.15625,1.2969 1.096504,0.3866 2.30472,0.5801 3.625,0.5801 1.499301,0 2.696692,-0.3184 3.591797,-0.9551 0.895105,-0.6593 1.410203,-1.5025 1.947266,-2.7304 0.02237,-0.1373 -0.0101,-0.2285 -0.09961,-0.2735 -0.06713,-0.068 -0.146818,-0.068 -0.236328,0 -0.380419,0.7731 -0.660368,1.2644 -1.242187,1.6738 -0.581819,0.4091 -1.4319,0.6133 -2.550781,0.6133 -1.342657,0 -2.574479,-0.1477 -3.69336,-0.4433 -1.096504,-0.3183 -2.147304,-0.6702 -3.154297,-1.0567 1.387413,-1.6599 2.472643,-4.0135 3.25586,-7.0605 0.46993,-1.9101 0.927447,-3.5021 1.375,-4.7754 0.447553,-1.2734 0.928674,-2.2847 1.443359,-3.0352 0.514685,-0.7731 1.075491,-1.2083 1.679688,-1.5039 0.626573,-0.3183 1.364494,-0.4765 2.214843,-0.4765 0.626575,0 1.140174,0.1143 1.542969,0.3418 0.425175,0.2046 0.740007,0.4772 0.941406,0.8183 0.201403,0.3411 0.311615,0.6163 0.333985,1.0254 0.02238,0.4094 -0.03175,1.2177 -0.166016,1.627 -0.02238,0.1144 0.0101,0.1932 0.09961,0.2382 0.111889,0.046 0.213225,0.035 0.302735,-0.033 0.223777,-0.3865 0.435321,-1.2759 0.636719,-1.8671 C 35.898663,1017.8751 36,1017.3403 36,1016.8856 c 0,-0.705 -0.213497,-1.2959 -0.638672,-1.7734 -0.425174,-0.5003 -0.984027,-0.75 -1.677734,-0.75 z m -18.830078,18.1875 c 0.962238,0 1.868401,0.1353 2.71875,0.4082 0.85035,0.273 1.689605,0.8922 2.517578,1.2559 -0.514685,0.5002 -1.097143,0.8413 -1.746094,1.0234 -0.626573,0.1588 -1.342842,0.2383 -2.148438,0.2383 -0.917481,0 -1.633751,-0.1476 -2.148437,-0.4434 -0.492308,-0.2955 -0.738281,-0.9709 -0.738281,-1.4258 0,-0.7048 0.515551,-1.0566 1.544922,-1.0566 z"
id="path4166" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

14
icons/CMakeLists.txt Normal file
View File

@ -0,0 +1,14 @@
include(ECMInstallIcons)
ecm_install_icons(ICONS
16-apps-latte-dock.svg
22-apps-latte-dock.svg
24-apps-latte-dock.svg
32-apps-latte-dock.svg
48-apps-latte-dock.svg
sc-apps-latte-dock.svg
THEME hicolor
DESTINATION ${ICON_INSTALL_DIR} )
install(FILES org.kde.latte.plasmoid.svg DESTINATION ${ICON_INSTALL_DIR}/breeze/applets/256)

View File

@ -0,0 +1,874 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 256 256"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="org.kde.latte.containment.svg">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#414141"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1600"
inkscape:window-height="844"
id="namedview8"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="147.61098"
inkscape:cy="69.536536"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
showborder="true" />
<defs
id="defs4">
<style
id="current-color-scheme"
type="text/css">
.ColorScheme-Text {
color:#4d4d4d;
}
.ColorScheme-Background {
color:#eff0f1;
}
.ColorScheme-Highlight {
color:#3daee9;
}
.ColorScheme-ViewText {
color:#31363b;
}
.ColorScheme-ViewBackground {
color:#fcfcfc;
}
.ColorScheme-ViewHover {
color:#93cee9;
}
.ColorScheme-ViewFocus{
color:#3daee9;
}
.ColorScheme-ButtonText {
color:#31363b;
}
.ColorScheme-ButtonBackground {
color:#eff0f1;
}
.ColorScheme-ButtonHover {
color:#93cee9;
}
.ColorScheme-ButtonFocus{
color:#3daee9;
}
</style>
<linearGradient
inkscape:collect="always"
id="linearGradient4162-7">
<stop
style="stop-color:#f3e0c1;stop-opacity:1"
offset="0"
id="stop4164" />
<stop
style="stop-color:#fff7eb;stop-opacity:1"
offset="1"
id="stop4166" />
</linearGradient>
<linearGradient
gradientTransform="matrix(3.0099538,0,0,3.0099538,55.23408,13.1892)"
gradientUnits="userSpaceOnUse"
y2="35.825481"
x2="39.823719"
y1="18.387005"
x1="22.385242"
id="linearGradient4190-5"
xlink:href="#d-5-3"
inkscape:collect="always" />
<linearGradient
id="d-5-3"
y1="531.78998"
y2="544.78998"
x2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.70711,-0.70711,0.70711,0.70711,-273.44,450.74)">
<stop
id="stop4286" />
<stop
offset="1"
stop-opacity="0"
id="stop4288" />
</linearGradient>
<linearGradient
gradientTransform="matrix(1.45455,0,0,1,-198.81,-31)"
gradientUnits="userSpaceOnUse"
x2="0"
y2="505.79999"
y1="538.79999"
id="linearGradient4386-5">
<stop
offset="0"
stop-color="#e8b971"
id="stop4390" />
<stop
offset="1"
stop-color="#bd8d48"
id="stop4388" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
y2="1051.0685"
x2="16.114807"
y1="1021.4925"
x1="16.114807"
id="linearGradient4221"
xlink:href="#linearGradient4386-5"
inkscape:collect="always"
gradientTransform="matrix(4,0,0,4,64,-4063.4504)" />
<linearGradient
gradientTransform="matrix(4,0,0,4,64,17.9984)"
gradientUnits="userSpaceOnUse"
y2="6.6625118"
x2="15.006763"
y1="23.084547"
x1="15.006763"
id="linearGradient4240"
xlink:href="#linearGradient4162-7"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(4,0,0,4,64,17.9984)"
gradientUnits="userSpaceOnUse"
y2="29.114801"
x2="22.927013"
y1="24.650295"
x1="18.462507"
id="linearGradient4266"
xlink:href="#d-5-3"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(4,0,0,4,64,17.9984)"
gradientUnits="userSpaceOnUse"
y2="30.654842"
x2="18.822126"
y1="26.453819"
x1="14.621103"
id="linearGradient4268"
xlink:href="#d-5-3"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(4,0,0,4,64,17.9984)"
gradientUnits="userSpaceOnUse"
y2="30.815777"
x2="16.828993"
y1="24.648125"
x1="10.661341"
id="linearGradient4270"
xlink:href="#d-5-3"
inkscape:collect="always" />
<linearGradient
gradientTransform="translate(-1.01,-1.022)"
gradientUnits="userSpaceOnUse"
x2="-2.994"
y2="37.956001"
x1="-41.259998"
y1="-0.88300002"
id="e-0">
<stop
id="stop4589"
stop-color="#66b036" />
<stop
id="stop4591"
stop-color="#239161"
offset="1" />
</linearGradient>
<linearGradient
gradientTransform="translate(0,-1.022)"
gradientUnits="userSpaceOnUse"
x2="-10.858"
y2="27.436001"
x1="-28.756001"
y1="9.2679996"
id="d-6"
xlink:href="#a" />
<linearGradient
gradientTransform="translate(1.01,-1.022)"
gradientUnits="userSpaceOnUse"
x2="-6.4299998"
y2="17.521999"
x1="-14.65"
y1="9.1780005"
id="a">
<stop
id="stop4426" />
<stop
id="stop4428"
stop-opacity="0"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#a"
id="linearGradient4649"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(1.01,-1.022)"
x1="-14.65"
y1="9.1780005"
x2="-6.4299998"
y2="17.521999" />
<linearGradient
gradientTransform="translate(0,-1.022)"
gradientUnits="userSpaceOnUse"
x2="-41.259998"
y2="-0.88300002"
x1="-2.994"
y1="37.956001"
id="b-9">
<stop
id="stop4578"
stop-color="#34495e" />
<stop
id="stop4580"
stop-color="#1c7865"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#a-0"
id="linearGradient4655"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.13274,0,0,1.14985,-19.481,18.15)"
x1="14.556"
y1="16.333"
x2="0.333"
y2="5.6669998" />
<linearGradient
gradientTransform="matrix(1.13274,0,0,1.14985,-19.481,18.15)"
gradientUnits="userSpaceOnUse"
x2="0.333"
y2="5.6669998"
x1="14.556"
y1="16.333"
id="a-0">
<stop
id="stop4573"
stop-color="#197cf1" />
<stop
id="stop4575"
stop-color="#20bcfa"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#b-1"
id="linearGradient4566"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(58.788,33.941)"
x1="-44.389999"
x2="-14.394" />
<linearGradient
gradientTransform="translate(58.788,33.941)"
gradientUnits="userSpaceOnUse"
x2="-14.394"
x1="-44.389999"
id="b-1">
<stop
id="stop4488"
stop-color="#b0b8b8" />
<stop
id="stop4490"
stop-color="#eff1f1"
offset="1" />
</linearGradient>
<linearGradient
gradientTransform="matrix(-0.96593,-0.25882,0.25882,-0.96593,40.971,53.39)"
gradientUnits="userSpaceOnUse"
x2="40"
y2="37"
x1="3.2420001"
y1="15.778"
id="f"
xlink:href="#b-1" />
<linearGradient
gradientUnits="userSpaceOnUse"
x2="40"
y2="39"
x1="24"
y1="23"
id="e">
<stop
id="stop4503"
stop-color="#292c2f" />
<stop
id="stop4505"
stop-opacity="0"
offset="1" />
</linearGradient>
<linearGradient
gradientTransform="translate(-53.39,-40.971)"
gradientUnits="userSpaceOnUse"
x2="34.764"
y2="29.398001"
x1="17.030001"
y1="13.444"
id="a-9">
<stop
id="stop4483"
stop-color="#375a7d" />
<stop
id="stop4485"
stop-color="#377d50"
offset="1" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
x2="-18.1"
y2="-11.201"
x1="-42.778999"
y1="-25.452999"
id="c-2">
<stop
id="stop4493"
stop-color="#338173" />
<stop
id="stop4495"
stop-color="#54d883"
offset="1" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
x2="27.049999"
x1="13.864"
id="d-7">
<stop
id="stop4498"
stop-color="#7ceca4" />
<stop
id="stop4500"
stop-color="#e5fbf7"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#a-0"
id="linearGradient4536"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.13274,0,0,1.14985,-19.481,18.15)"
x1="14.556"
y1="16.333"
x2="0.333"
y2="5.6669998" />
<linearGradient
inkscape:collect="always"
xlink:href="#a-0"
id="linearGradient4538"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.13274,0,0,1.14985,-19.481,18.15)"
x1="14.556"
y1="16.333"
x2="0.333"
y2="5.6669998" />
<linearGradient
gradientTransform="translate(0,-1.022)"
gradientUnits="userSpaceOnUse"
x2="-10.858"
y2="27.436"
x1="-28.756"
y1="9.268"
id="b"
xlink:href="#a" />
<linearGradient
gradientTransform="matrix(0.99317,0,0,0.97839,44.973,3.864)"
gradientUnits="userSpaceOnUse"
x2="-2.994"
y2="37.956"
x1="-41.26"
y1="-.883"
id="c-3">
<stop
id="stop4551"
stop-color="#21c9fb" />
<stop
id="stop4553"
stop-color="#1a86f2"
offset="1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#a"
id="linearGradient4581"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(1.01,-1.022)"
x1="-14.65"
y1="9.1780005"
x2="-6.4299998"
y2="17.521999" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4697"
id="linearGradient4703"
y1="503.07938"
x1="418.16971"
y2="531.45813"
x2="384.57144"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.87499944,0,0,1.1611102,51.071658,-81.167008)" />
<linearGradient
inkscape:collect="always"
id="linearGradient4697">
<stop
style="stop-color:#4ce0c6"
id="stop4699" />
<stop
offset="1"
style="stop-color:#3b85b5"
id="stop4701" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4526"
id="linearGradient4532"
y1="521.63281"
x1="404.0452"
y2="528.35034"
x2="430.73611"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.87499944,0,0,1.1611102,51.071658,-81.167008)" />
<linearGradient
inkscape:collect="always"
id="linearGradient4526">
<stop
style="stop-color:#ffc169"
id="stop4528" />
<stop
offset="1"
style="stop-color:#ffa92d"
id="stop4530" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4468"
id="linearGradient4474"
y1="542.22382"
x1="398.09201"
y2="524.89966"
x2="394.00299"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.87499944,0,0,1.1611102,51.071658,-81.167008)" />
<linearGradient
inkscape:collect="always"
id="linearGradient4468">
<stop
style="stop-color:#334545"
id="stop4470" />
<stop
offset="1"
style="stop-color:#536161"
id="stop4472" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4468"
id="linearGradient4500"
y1="568.79803"
x1="431.57141"
y2="562.79803"
x2="439.57141"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.8749994,0,0,1.1611101,785.32116,-127.61138)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4468"
id="linearGradient4498"
y1="581.87024"
x1="406.53735"
y2="572.67786"
x2="423.31955"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.87499944,0,0,1.1611102,785.32118,-127.61143)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4468"
id="linearGradient4496"
y1="572.33411"
x1="423.05438"
y2="566.76562"
x2="431.22452"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.87499944,0,0,1.1611102,785.32118,-127.61143)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4468"
id="linearGradient4492"
y1="577.10217"
x1="431.3129"
y2="571.44531"
x2="440.63208"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.87499944,0,0,1.1611102,785.32118,-127.61143)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4468"
id="linearGradient4490"
y1="577.36243"
x1="430.56738"
y2="591.32782"
x2="423.74994"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.87499944,0,0,1.1611102,785.32118,-127.61143)" />
</defs>
<path
style="color:#31363b;fill:currentColor;fill-opacity:0.5;stroke:none"
d="m 16,162 224,0 c 3.324,0 6,2.676 6,6 l 0,72 c 0,3.324 -2.676,6 -6,6 l -224,0 c -3.324,0 -6,-2.676 -6,-6 l 0,-72 c 0,-3.324 2.676,-6 6,-6 z"
class="ColorScheme-ButtonText"
id="rect4240"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<path
style="color:#eff0f1;fill:currentColor;fill-opacity:1;stroke:none"
d="m 16,164 224,0 c 2.216,0 4,1.784 4,4 l 0,72 c 0,2.216 -1.784,4 -4,4 l -224,0 c -2.216,0 -4,-1.784 -4,-4 l 0,-72 c 0,-2.216 1.784,-4 4,-4 z"
class="ColorScheme-Background"
id="rect4238"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssssssss" />
<g
id="g4672"
transform="translate(0,2)">
<circle
r="60"
cy="81.998329"
cx="128"
id="path4136"
style="opacity:1;fill:url(#linearGradient4221);fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="circle4191-6"
d="M 187.96484,80.96875 A 60,60 0 0 1 128,140 60,60 0 0 1 68.048828,80.970703 60,60 0 0 0 68,81.998047 a 60,60 0 0 0 60,60.000003 60,60 0 0 0 60,-60.000003 60,60 0 0 0 -0.0352,-1.029297 z"
style="opacity:1;fill:#a37836;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="rect4245"
d="m 113.85938,115.3344 -8.50782,8.5076 17.92188,17.922 A 60,60 0 0 0 128,142 60,60 0 0 0 139.38281,140.8592 L 113.85938,115.336 Z"
style="opacity:0.2;fill:url(#linearGradient4270);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path4227"
d="m 110,113.9984 a 5.9999996,5.9999996 0 0 0 -6,6 5.9999996,5.9999996 0 0 0 6,6 5.9999996,5.9999996 0 0 0 6,-6 5.9999996,5.9999996 0 0 0 -6,-6 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="rect4249"
d="m 145.71094,115.2016 -8.50782,8.5156 13.6875,13.6876 a 60,60 0 0 0 11.03126,-5.9924 l -16.21094,-16.2108 z"
style="opacity:0.2;fill:url(#linearGradient4266);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path4225"
d="m 142,113.9984 a 5.9999996,5.9999996 0 0 0 -6,6 5.9999996,5.9999996 0 0 0 6,6 5.9999996,5.9999996 0 0 0 6,-6 5.9999996,5.9999996 0 0 0 -6,-6 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="rect4247"
d="m 129.92188,123.428 -8.51563,8.5156 9.9375,9.9376 a 60,60 0 0 0 14.39844,-2.6328 L 129.92188,123.428 Z"
style="opacity:0.2;fill:url(#linearGradient4268);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path4201"
d="m 126,121.9984 a 6.0000016,6.0000016 0 0 0 -6,6 6.0000016,6.0000016 0 0 0 6,6 6.0000016,6.0000016 0 0 0 6,-6 6.0000016,6.0000016 0 0 0 -6,-6 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="rect4152"
d="m 161.32031,45.2404 -6.39062,0.508 -11.57813,5.164 -8.0625,9.3828 -5.84375,18.3516 -6.09375,15.5312 -4.89844,7.4924 -12.71093,-5.9924 -8.328128,0.8124 -3.679687,4.1408 -0.25,5.1172 0.07031,2.6092 33.601565,33.6016 a 60,60 0 0 0 0.84375,0.04 60,60 0 0 0 60,-60 60,60 0 0 0 -1.15625,-11.4532 L 161.32031,45.2412 Z"
style="opacity:0.2;fill:url(#linearGradient4190-5);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path4231"
d="m 157.04688,44.0064 c -3.35632,0 -6.57626,0.8824 -9.66407,2.656 -3.02069,1.7056 -5.87745,4.1952 -8.5625,7.4688 -2.61792,3.206 -5.00039,7.16 -7.14843,11.8672 -2.14804,4.6376 -3.98734,9.8916 -5.53126,15.758 -1.07401,4.1608 -2.15254,7.674 -3.22656,10.5388 -1.07402,2.8652 -2.17916,5.2468 -3.32031,7.1564 -2.48368,-0.9548 -4.93501,-3.832 -7.35156,-4.4452 -2.34942,-0.6824 -4.76633,-1.0236 -7.25,-1.0236 -1.94666,0 -3.72491,0.308 -5.33594,0.922 -1.54391,0.6136 -2.882292,1.3628 -4.023438,2.25 -1.141152,0.8864 -2.04749,1.836 -2.71875,2.8592 C 92.309925,101.0444 92,104.1036 92,104.9904 c 0,1.4324 0.6731,2.624 2.015625,3.5784 1.342528,0.9552 3.361823,1.4296 6.046875,1.4296 7.11539,0 13.12321,-1.8728 18.02344,-5.6248 3.08781,1.3652 6.23888,2.6552 9.46094,3.8828 3.28919,1.1596 6.91454,1.742 10.875,1.742 4.49746,0 8.08838,-0.9492 10.77343,-2.8592 2.68506,-1.9776 4.22491,-4.504 5.83594,-8.1876 0.0671,-0.4116 -0.0204,-0.6856 -0.28908,-0.8204 -0.20136,-0.204 -0.44243,-0.204 -0.71094,0 -1.14114,2.3192 -1.98127,3.7872 -3.72656,5.0156 -1.74529,1.2272 -4.29994,1.8436 -7.65625,1.8436 -4.02758,0 -7.714,-0.4488 -11.07032,-1.3356 -3.28919,-0.9548 -6.44806,-2.0128 -9.46874,-3.172 4.16183,-4.9792 7.42401,-12.0396 9.77343,-21.1796 1.40966,-5.73 2.78247,-10.5008 4.125,-14.3204 1.34253,-3.8196 2.78422,-6.85 4.32813,-9.1016 1.5439,-2.3192 3.22665,-3.6292 5.03906,-4.5156 1.87954,-0.9552 4.08983,-1.422 6.64062,-1.422 1.87954,0 3.41674,0.344 4.625,1.0236 1.27541,0.6136 2.21618,1.43 2.82032,2.4532 0.60415,1.0232 0.94852,1.8508 1.01562,3.078 0.0672,1.228 -0.10508,3.6476 -0.50781,4.8752 -0.0672,0.344 0.0284,0.5832 0.29688,0.7184 0.33564,0.14 0.64556,0.108 0.91407,-0.1 0.67126,-1.1596 1.30211,-3.828 1.90624,-5.6012 C 163.69007,54.5484 164,52.9348 164,51.5704 c 0,-2.1148 -0.64648,-3.8804 -1.92188,-5.3124 -1.27539,-1.5012 -2.95033,-2.25 -5.03124,-2.25 z M 100.5625,97.3656 c 2.88643,0 5.60546,0.4016 8.15625,1.2188 2.5508,0.8188 5.07101,3.8856 7.55469,4.9764 -1.54391,1.5008 -3.29552,2.5168 -5.24219,3.0628 -1.87954,0.4764 -4.02095,0.7184 -6.4375,0.7184 -2.75218,0 -4.909218,-0.4408 -6.453125,-1.328 -1.47678,-0.8868 -2.210937,-4.1116 -2.210937,-5.4764 0,-2.114 1.545001,-3.172 4.632812,-3.172 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4240);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
<circle
style="opacity:0.5;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4367"
cx="155"
cy="233"
r="3" />
<circle
r="3"
cy="233"
cx="45"
id="circle4371"
style="opacity:1;fill:#3daee9;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<circle
style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle4373"
cx="100.99995"
cy="233"
r="3" />
<g
id="g4552"
transform="translate(132.9922,177.00808)">
<g
id="g4508"
style="color:#000000">
<g
id="g4510"
style="stroke-width:3;stroke-linejoin:round">
<circle
style="fill:url(#linearGradient4566);stroke-linecap:round"
id="circle4512"
transform="matrix(0.96592583,0.25881905,-0.25881905,0.96592583,0,0)"
r="15"
cy="16.971001"
cx="29.393999" />
<path
id="path4514"
d="m 21.951885,43.88376 a 20,20 0 0 0 4.097059,0.0059 l 0.475,-3.1 a 17,17 0 0 0 3.687344,-0.985474 l 1.956,2.441 a 20,20 0 0 0 3.54897,-2.053782 l -1.135,-2.911 a 17,17 0 0 0 2.709819,-2.695171 l 2.893,1.127 a 20,20 0 0 0 2.050081,-3.553369 l -2.422,-1.941 a 17,17 0 0 0 0.608591,-1.818511 17,17 0 0 0 0.369366,-1.876546 l 3.094,-0.475 a 20,20 0 0 0 0.0059,-4.097059 l -3.1,-0.475 a 17,17 0 0 0 -0.985474,-3.687344 l 2.441,-1.956 a 20,20 0 0 0 -2.053782,-3.54897 l -2.911,1.135 a 17,17 0 0 0 -2.694886,-2.70962 L 35.713,7.816 A 20,20 0 0 0 32.15947,5.765905 L 30.22,8.188 A 17,17 0 0 0 28.399924,7.579261 17,17 0 0 0 26.523378,7.209895 L 26.05,4.116 A 20,20 0 0 0 21.952942,4.11009 L 21.476,7.21 A 17,17 0 0 0 17.788962,8.195745 L 15.833,5.755 a 20,20 0 0 0 -3.54897,2.053784 l 1.135,2.911 a 17,17 0 0 0 -2.709819,2.695171 L 7.816,12.287 a 20,20 0 0 0 -2.050081,3.553369 l 2.422,1.941 A 17,17 0 0 0 7.579328,19.59988 17,17 0 0 0 7.209962,21.476426 l -3.094,0.475 a 20,20 0 0 0 -0.00591,4.097058 l 3.1,0.475 a 17,17 0 0 0 0.985475,3.687344 l -2.441,1.956 a 20,20 0 0 0 2.053784,3.54897 l 2.911,-1.135 a 17,17 0 0 0 2.695171,2.709819 l -1.127,2.893 a 20,20 0 0 0 3.553369,2.050081 l 1.941,-2.422 a 17,17 0 0 0 1.818511,0.608591 17,17 0 0 0 1.876546,0.369366 z m -1.575352,-6.360798 a 14,14 0 0 1 -9.899495,-17.14643 14,14 0 0 1 17.14643,-9.899495 14,14 0 0 1 9.899495,17.14643 14,14 0 0 1 -17.14643,9.899495"
inkscape:connector-curvature="0"
style="fill:url(#f)" />
</g>
<path
id="path4516"
d="M 33.19,14.807 14.803,33.194 25.539,43.928 c 0.169,-0.013 0.338,-0.02 0.506,-0.037 l 0.475,-3.102 c 1.262,-0.189 2.499,-0.519 3.688,-0.984 l 1.957,2.441 c 1.25,-0.561 2.439,-1.25 3.549,-2.055 l -1.135,-2.91 c 1,-0.794 1.91,-1.698 2.709,-2.695 l 2.893,1.127 c 0.803,-1.111 1.491,-2.301 2.051,-3.553 L 39.81,30.219 c 0.237,-0.594 0.439,-1.201 0.607,-1.818 0.158,-0.618 0.283,-1.245 0.371,-1.877 l 3.092,-0.475 c 0.018,-0.17 0.028,-0.34 0.041,-0.51 z"
inkscape:connector-curvature="0"
style="opacity:0.2;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:url(#e);fill-rule:evenodd;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" />
<g
id="g4518"
style="stroke-width:3;stroke-linejoin:round">
<path
id="path4520"
d="m 41.883,15.12 -2.078,1.666 c 0.096,0.259 0.186,0.52 0.27,0.783 l 2.172,-1.74 C 42.131,15.59 42.01,15.354 41.884,15.12 M 6.126,15.126 c -0.124,0.235 -0.244,0.472 -0.359,0.711 l 2.154,1.727 C 8.004,17.3 8.093,17.038 8.189,16.779 Z M 4.034,23.487 C 4.005,24.341 4.03,25.195 4.11,26.046 l 3.102,0.475 c 0.152,0.987 0.392,1.959 0.715,2.904 l 0.27,-0.217 C 7.731,28.02 7.401,26.783 7.213,25.52 L 4.111,25.045 C 4.065,24.527 4.04,24.007 4.035,23.486 m 39.934,0.02 c -0.008,0.514 -0.036,1.027 -0.084,1.539 l -3.092,0.475 c -0.088,0.632 -0.212,1.259 -0.371,1.877 -0.168,0.617 -0.371,1.224 -0.607,1.818 l 0.268,0.215 c 0.124,-0.341 0.238,-0.685 0.34,-1.033 0.159,-0.618 0.283,-1.245 0.371,-1.877 l 3.092,-0.475 c 0.082,-0.844 0.11,-1.692 0.084,-2.539 m -2.092,8.361 c -0.484,0.992 -1.05,1.943 -1.691,2.842 l -2.893,-1.127 c -0.799,0.997 -1.708,1.902 -2.709,2.695 l 0.291,0.744 c 0.886,-0.729 1.696,-1.547 2.418,-2.439 l 2.893,1.127 c 0.804,-1.111 1.491,-2.301 2.051,-3.553 z M 6.12,31.873 5.757,32.164 c 0.561,1.25 1.25,2.439 2.055,3.549 l 2.91,-1.135 c 0.715,0.901 1.519,1.728 2.4,2.467 l 0.295,-0.758 C 12.42,35.488 11.515,34.579 10.722,33.578 l -2.91,1.135 C 7.171,33.815 6.605,32.865 6.121,31.873 m 24.09,6.928 c -1.188,0.465 -2.425,0.796 -3.688,0.984 l -0.475,3.102 c -1.363,0.138 -2.736,0.135 -4.098,-0.008 L 21.475,39.787 C 20.843,39.699 20.216,39.575 19.598,39.416 18.981,39.248 18.374,39.045 17.78,38.809 l -1.941,2.422 c -1.136,-0.513 -2.221,-1.132 -3.242,-1.848 l -0.311,0.797 c 1.111,0.804 2.301,1.491 3.553,2.051 l 1.941,-2.422 c 0.594,0.237 1.201,0.439 1.818,0.607 0.618,0.159 1.245,0.283 1.877,0.371 l 0.475,3.092 c 1.362,0.143 2.735,0.145 4.098,0.008 l 0.475,-3.102 c 1.262,-0.189 2.499,-0.519 3.688,-0.984 l 1.957,2.441 c 1.25,-0.561 2.439,-1.25 3.549,-2.055 l -0.311,-0.795 c -1.019,0.716 -2.104,1.335 -3.238,1.85 z"
inkscape:connector-curvature="0"
style="opacity:0.2;fill:#172525" />
<g
id="g4522"
style="stroke-linecap:round">
<circle
style="fill:url(#a-9)"
id="circle4524"
transform="matrix(-0.96593,-0.25882,0.25882,-0.96593,0,0)"
r="13"
cy="-16.971001"
cx="-29.393999" />
<circle
style="fill:url(#c-2)"
id="circle4526"
transform="matrix(-0.96593,-0.25882,0.25882,-0.96593,0,0)"
r="12"
cy="-16.971001"
cx="-29.393999" />
</g>
<path
style="fill:url(#d-7)"
id="path4528"
d="m 24.17,24.21 c 2.858,3.724 3.309,8.175 1.01,9.942 -2.302,1.766 -6.965,0.288 -9.823,-3.437 -2.858,-3.724 -2.828,-8.284 -0.526,-10.05 2.302,-1.766 6.484,-0.179 9.342,3.546"
inkscape:connector-curvature="0" />
</g>
</g>
<path
id="path4530"
d="m 15,28 4,4 2,-6 z"
inkscape:connector-curvature="0"
style="fill:#334545;fill-rule:evenodd" />
</g>
<g
id="g4593"
transform="matrix(0.99317,0,0,0.97839,66.975215,182.8644)">
<path
style="fill:url(#e-0);stroke-width:2;stroke-linejoin:bevel"
id="path4595"
d="m -36.03,-0.883 c -2.894,0 -5.137,2.332 -5.223,5.224 l 0,33.615 33.04,0 c 2.894,0 5.223,-2.331 5.223,-5.224 l 0,-33.615 z"
inkscape:connector-curvature="0" />
<g
id="g4597"
style="fill-rule:evenodd;stroke-width:1.01400006">
<path
style="opacity:0.2;fill:url(#d-6)"
id="path4599"
d="m -29.17,6.271 -3.02,4.088 2.458,17.375 3.02,2.044 -1.074,2.044 4.332,4.398 13.01,-1.912 c 0.487,-0.085 0.946,-0.297 1.363,-0.603 l -5.54,-8.686 0.794,-9.199 -9.06,-9.199 z"
inkscape:connector-curvature="0" />
<path
style="opacity:0.2;fill:url(#linearGradient4649)"
id="path4601"
d="m -12.06,7.293 -3.02,20.442 6.751,6.853 c 1.063,-0.939 2.311,-3.634 2.311,-5.304 l 0,-15.858 z"
inkscape:connector-curvature="0" />
</g>
<g
id="g4603"
style="stroke-width:2;stroke-linejoin:bevel">
<path
id="path4605"
d="m -27.16,5.249 c -4.03,0 -7.05,2.044 -7.05,11.754 0,8.01 2.149,10.798 5.086,11.53 0.524,6.17 6.997,4.312 6.997,4.312 l 0,-2.044 c 0,0 -2.611,0.88 -2.975,-2.29 2.888,-0.769 4.989,-3.586 4.989,-11.508 0,-9.71 -3.02,-11.754 -7.05,-11.754 m 0,2.044 c 2.01,0 3.02,1.689 3.02,9.71 0,8.02 -1.01,9.71 -3.02,9.71 -2.01,0 -3.02,-1.689 -3.02,-9.71 0,-8.02 1.01,-9.71 3.02,-9.71"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
<path
style="fill:url(#b-9)"
id="path4607"
d="m -2.994,31.71 c 0,2.894 -2.329,5.224 -5.223,5.224 l -33.04,0 0,1.022 33.04,0 c 2.894,0 5.223,-2.331 5.223,-5.224 z"
inkscape:connector-curvature="0" />
</g>
<path
id="path4609"
d="m -15.08,7.293 3.02,0 0,4.088 2.01,0 0,2.044 -2.01,0 0,11.243 c 0,2.044 2.01,0.511 2.01,0.511 l 0,2.044 c 0,0 -6.04,3.577 -6.04,-2.555 l 0,-11.243 -1.01,0 0,-2.044 1.01,0 z"
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-rule:evenodd;stroke-width:1.01400006" />
<g
id="g4611"
style="color:#4d4d4d">
<g
style="fill:url(#linearGradient4655)"
id="g4613">
<path
style="fill:url(#linearGradient4536)"
id="path4615"
d="m -2.495,21.603 -13.584,13.789 -0.004,0 0,4.608 4.54,0 0,-0.005 L 2.041,26.206 2.039,26.204 2.041,26.202 -2.49,21.603 -2.492,21.605 Z"
inkscape:connector-curvature="0" />
<path
style="fill:url(#linearGradient4538)"
id="path4617"
d="m -2.495,21.603 -13.584,13.789 -0.004,0 0,4.608 4.54,0 0,-0.005 L 2.041,26.206 2.039,26.204 2.041,26.202 -2.49,21.603 -2.492,21.605 Z m -2.263,3.923 2.934,2.978 -8.595,8.725 0,-1.828 -2.265,0 0,-1.828 z m -9.06,9.197 0,1.828 2.265,0 0,1.828 -0.465,0.472 -1.801,0 -1.133,-1.15 0,-1.828 z"
inkscape:connector-curvature="0" />
</g>
<path
id="path4619"
d="m 1.246,25.419 -13.259,13.465 -4.071,0 0,1.116 4.541,0 0,-0.004 L 2.04,26.206 2.038,26.204 2.04,26.202 Z"
inkscape:connector-curvature="0"
style="fill:#0c69cf" />
</g>
</g>
<g
id="g4555"
transform="matrix(0.99317,0,0,0.97839,230.97372,183.86444)">
<path
style="fill:url(#c-3);stroke-width:2;stroke-linejoin:bevel"
id="path4557"
transform="matrix(1.0069,0,0,1.02209,-46.29,-4.972)"
d="M 10.188,4 C 7.314,4 5.087,6.281 5,9.111 L 5,37 c 0,2.77 2.264,5 5.076,5 l 27.736,0 C 40.686,42 43,39.72 43,36.889 L 43,9 C 43,6.23 40.736,4 37.924,4 Z"
inkscape:connector-curvature="0" />
<g
id="g4559"
style="fill-rule:evenodd">
<path
id="path4561"
d="m -24.775,5.723 0.07,7.128 -1,-1.017 -5.218,4.057 -0.26,3.668 -5.03,2.238 5.03,4.916 0,4.152 5.03,5.05 15.709,-1.603 c 0.487,-0.085 0.946,-0.297 1.363,-0.603 l -5.54,-8.686 -1.463,-15.683 -3.693,-4.088 z"
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#b)" />
<path
id="path4563"
d="m -8.02,6.618 -6.81,8.428 6.509,19.542 c 1.063,-0.939 2.311,-3.634 2.311,-5.304 l 3.02,-17.902 z"
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4581)" />
</g>
<path
id="path4565"
transform="matrix(1.76438,0,0,1.79103,-41.547,-1845.53)"
d="m 12.339,1033.36 -2.833,0.265 0,10.94 2.802,-0.382 0,-4.676 3.735,5.176 2.926,-0.882 -3.829,-4.97 3.86,-4.705 -2.988,-0.647 -3.704,4.705 z m -6.381,2.676 c -0.032,0 -0.07,0.017 -0.093,0.03 l -1.089,1.059 c -0.046,0.046 -0.065,0.123 -0.031,0.177 l 1.276,2 c -0.229,0.364 -0.398,0.762 -0.529,1.176 l -2.366,0.471 c -0.066,0.017 -0.124,0.054 -0.124,0.118 l 0,1.47 c 0,0.062 0.061,0.131 0.124,0.147 l 2.303,0.529 c 0.123,0.479 0.309,0.935 0.56,1.353 l -1.339,1.912 c -0.037,0.054 -0.018,0.131 0.031,0.177 l 1.09,1.029 c 0.046,0.042 0.13,0.064 0.187,0.03 l 2.086,-1.206 c 0.41,0.224 0.84,0.41 1.307,0.529 l 0.498,2.206 c 0.014,0.064 0.057,0.118 0.124,0.118 l 1.556,0 c 0.066,0 0.14,-0.057 0.156,-0.118 l 0.56,-2.206 c 0.482,-0.123 0.95,-0.325 1.37,-0.559 l 2.054,1.294 c 0.057,0.034 0.139,0.017 0.187,-0.03 l 1.089,-1.029 c 0.047,-0.046 0.065,-0.123 0.031,-0.176 l -0.747,-1.176 -0.249,0.088 c -0.036,0.017 -0.073,0 -0.093,-0.03 0,0 -0.471,-0.674 -1.089,-1.529 -0.74,1.368 -2.247,2.294 -3.984,2.294 -2.469,0 -4.482,-1.873 -4.482,-4.206 0,-1.716 1.091,-3.191 2.646,-3.852 l 0,-1.088 c -0.283,0.094 -0.549,0.19 -0.809,0.324 0,0 -0.03,0 -0.031,0 l -2.086,-1.294 c -0.028,-0.017 -0.062,-0.032 -0.093,-0.029"
inkscape:connector-curvature="0"
style="color:#000000;fill:#ffffff" />
</g>
<g
transform="translate(-307.57144,-320.798)"
id="g4189">
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient4703)"
id="path4589"
d="m 387.57144,503.79799 0,37.99998 41.99999,0 0,-37.99998 -41.99999,0 z" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient4532);stroke-width:2;stroke-linecap:round"
id="path4284"
d="m 429.57143,503.79799 -28.90482,22.14439 20.69611,15.85559 8.20871,0 0,-37.99998 z" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient4474);stroke-width:2;stroke-linecap:round"
id="path4284-5-6"
d="m 400.69644,525.85827 -13.125,10.05663 0,5.88307 33.98703,0 -20.86203,-15.9397 z" />
<path
inkscape:transform-center-x="-5.5056915"
inkscape:connector-curvature="0"
style="fill:url(#linearGradient4500);stroke-width:2;stroke-linecap:round"
id="path4284-5-6-2-2"
d="m 407.92263,531.39531 -7.2262,-5.53624 0,11.07247 z" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient4498);stroke-width:2;stroke-linecap:round"
id="path4284-5-6-2-0"
d="m 415.14885,536.92922 0,4.86875 6.35369,0 -6.35369,-4.86875 z" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient4496);stroke-width:2;stroke-linecap:round"
id="path4284-5-6-2-6"
d="m 407.92264,531.39498 0,10.40299 0.87438,0 6.35183,-4.86627 -7.22621,-5.53672 z" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient4492);stroke-width:2;stroke-linecap:round"
id="path4284-5-6-2-6-50"
d="m 400.69644,536.9317 0,4.86627 6.35183,0 -6.35183,-4.86627 z" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient4490);stroke-width:2;stroke-linecap:round"
id="path4284-5-6-2-0-6"
d="m 415.14885,536.92922 -6.35369,4.86875 6.35369,0 0,-4.86875 z" />
<path
inkscape:transform-center-x="5.5056789"
inkscape:connector-curvature="0"
style="fill:#ffa92d;stroke-width:2;stroke-linecap:round"
id="path4284-1"
d="m 400.66663,525.94295 28.9048,-22.14496 -2e-5,10.8182 z" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:0.78431396"
id="rect4128"
d="m 387.57144,538.798 0,2.40001 0,0.59999 0.72413,0 40.55172,0 0.72414,0 0,-0.59999 0,-2.40001 -41.99999,0 z" />
<g
id="text4213"
transform="matrix(0.46945723,0,0,0.47375629,219.61515,284.75928)">
<path
inkscape:connector-curvature="0"
id="path4218"
d="m 434.23853,537.83412 c -0.15893,0.11003 -0.36677,0.22414 -0.54201,0.30157 l 0.0734,0.28934 c 0.14264,-0.0448 0.27305,-0.12225 0.43198,-0.22414 l 0,2.60819 0.35455,0 0,-2.97496 -0.31787,0 z" />
<path
inkscape:connector-curvature="0"
id="path4220"
d="m 435.20119,538.03381 0.11819,0.29749 c 0.16708,-0.17116 0.41568,-0.24452 0.66427,-0.24452 0.33825,0 0.52571,0.18747 0.52571,0.51757 l 0,0.0204 c -0.004,0.2323 -0.15486,0.46051 -0.38715,0.71726 l -1.02697,1.14108 0.0448,0.32602 1.74016,0 0.0245,-0.30565 -1.38153,0 0.83951,-0.89656 c 0.32603,-0.35048 0.52572,-0.63575 0.52979,-1.01067 l 0,-0.0122 c 0,-0.48904 -0.34232,-0.81098 -0.88434,-0.81098 -0.38715,0 -0.63982,0.10595 -0.80691,0.26082 z" />
<path
inkscape:connector-curvature="0"
id="path4222"
d="m 437.42599,540.85799 0.4116,0 0,-0.46459 -0.4116,0 0,0.46459 z m 0,-1.82574 0.4116,0 0,-0.46051 -0.4116,0 0,0.46051 z" />
<path
inkscape:connector-curvature="0"
id="path4224"
d="m 439.75394,539.98995 c 0,0.3627 -0.2649,0.56239 -0.65613,0.56239 -0.30157,0 -0.50941,-0.0978 -0.6602,-0.21599 l -0.1141,0.28934 c 0.11003,0.10596 0.39122,0.22822 0.77838,0.22822 0.57869,0 1.00252,-0.3301 1.00252,-0.85989 0,-0.41975 -0.23229,-0.68872 -0.59499,-0.77023 0.32195,-0.0978 0.52164,-0.3301 0.52164,-0.71317 0,-0.47681 -0.41161,-0.73763 -0.85174,-0.73763 -0.41161,0 -0.6765,0.0897 -0.85581,0.22821 l 0.1141,0.28935 c 0.15894,-0.12634 0.39123,-0.21192 0.66428,-0.21192 0.35047,0 0.54609,0.14671 0.54609,0.47681 0,0.46866 -0.43198,0.52164 -0.88842,0.52164 l 0,0.29342 c 0.55424,0 0.99438,0.0856 0.99438,0.61945 z" />
<path
inkscape:connector-curvature="0"
id="path4226"
d="m 441.86538,538.2824 0,1.49971 -0.99437,0 0.99437,-1.49971 z m 0.67243,1.78905 0.0285,-0.28934 -0.36678,0 0,-1.94799 -0.37085,0 -1.30817,1.93169 0,0.30564 1.34484,0 0,0.73763 0.33418,0 0,-0.73763 0.33825,0 z" />
</g>
<path
inkscape:connector-curvature="0"
style="color:#000000"
id="path2994"
d="m 390.10592,539.5329 a 0.12068962,0.12179484 0 0 0 -0.12069,0.1218 0.12068962,0.12179484 0 0 0 0.12069,0.1218 0.12068962,0.12179484 0 0 0 0.12068,-0.1218 0.12068962,0.12179484 0 0 0 -0.12068,-0.1218 z m 0.60345,0 -0.23384,0.19031 0.31303,0.39203 -0.29418,0.29687 0.21499,0.21695 0.48276,-0.48719 -0.48276,-0.60897 z m -0.78449,0.48718 a 0.18103444,0.18269227 0 0 0 -0.18103,0.1827 0.18103444,0.18269227 0 0 0 0.18103,0.18269 0.18103444,0.18269227 0 0 0 0.18104,-0.18269 0.18103444,0.18269227 0 0 0 -0.18104,-0.1827 z m 0.36207,0.60898 a 0.18103444,0.18269227 0 0 0 -0.18103,0.18269 0.18103444,0.18269227 0 0 0 0.18103,0.18269 0.18103444,0.18269227 0 0 0 0.18104,-0.18269 0.18103444,0.18269227 0 0 0 -0.18104,-0.18269 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -0,0 +1,217 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="48"
height="48"
viewBox="0 0 48 48.000001"
id="svg2"
version="1.1"
inkscape:version="0.91 r13725"
sodipodi:docname="latte-dock.svg">
<defs
id="defs4">
<linearGradient
id="linearGradient4386"
y1="538.8"
y2="505.8"
x2="0"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.45455 0 0 1-198.81-31)">
<stop
id="stop4390"
stop-color="#e8b971"
offset="0" />
<stop
id="stop4388"
stop-color="#bd8d48"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient4162"
inkscape:collect="always">
<stop
id="stop4164"
offset="0"
style="stop-color:#f3e0c1;stop-opacity:1" />
<stop
id="stop4166"
offset="1"
style="stop-color:#fff7eb;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4386"
id="linearGradient4145"
x1="24.80402"
y1="1008.3622"
x2="24.80402"
y2="1048.3622"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4190"
x1="22.385242"
y1="18.387005"
x2="39.823719"
y2="35.825481"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1004.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4198"
x1="16.625048"
y1="35.569645"
x2="24.901201"
y2="43.845798"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1004.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4206"
x1="22.681784"
y1="37.628952"
x2="28.684929"
y2="43.632095"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1004.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#d-5"
id="linearGradient4214"
x1="28.656393"
y1="35.532131"
x2="34.209293"
y2="41.085033"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1004.3622)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4162"
id="linearGradient4222"
x1="20.16135"
y1="31.694183"
x2="20.16135"
y2="10.212008"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,1004.3622)" />
<linearGradient
gradientTransform="matrix(0.70711,-0.70711,0.70711,0.70711,-273.44,450.74)"
gradientUnits="userSpaceOnUse"
x2="0"
y2="544.79"
y1="531.79"
id="d-5">
<stop
id="stop4286" />
<stop
id="stop4288"
stop-opacity="0"
offset="1" />
</linearGradient>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="5.3437834"
inkscape:cy="15.785391"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1600"
inkscape:window-height="844"
inkscape:window-x="0"
inkscape:window-y="30"
inkscape:window-maximized="1"
showborder="false">
<inkscape:grid
type="xygrid"
id="grid4246" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1004.3622)">
<circle
style="opacity:1;fill:url(#linearGradient4145);fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4136"
cx="24"
cy="1028.3622"
r="20" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4214);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 31.261719,1039.8153 -2.833985,2.8321 3.88086,3.8808 a 20,20 0 0 0 3.566406,-2.0996 l -4.613281,-4.6133 z"
id="rect4173" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4206);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 25.287109,1041.8407 -2.833984,2.834 3.564453,3.5645 a 20,20 0 0 0 4.63086,-1.0372 l -5.361329,-5.3613 z"
id="rect4171" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4198);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 19.382812,1039.8856 -2.833984,2.834 5.546875,5.5469 a 20,20 0 0 0 1.904297,0.096 20,20 0 0 0 3.537109,-0.3223 l -8.154297,-8.1543 z"
id="rect4169" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 18,1039.3622 a 2,2 0 0 0 -2,2 2,2 0 0 0 2,2 2,2 0 0 0 2,-2 2,2 0 0 0 -2,-2 z"
id="path4162" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 30,1039.3622 a 2,2 0 0 0 -2,2 2,2 0 0 0 2,2 2,2 0 0 0 2,-2 2,2 0 0 0 -2,-2 z"
id="path4160" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:#eddbbc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 24,1041.3622 a 2,2 0 0 0 -2,2 2,2 0 0 0 2,2 2,2 0 0 0 2,-2 2,2 0 0 0 -2,-2 z"
id="path4159" />
<path
inkscape:connector-curvature="0"
style="opacity:1;fill:#a37836;fill-opacity:1;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 43.978516,1027.7802 A 20,20 0 0 1 24,1047.3622 20,20 0 0 1 4.0214844,1027.9442 20,20 0 0 0 4,1028.3622 a 20,20 0 0 0 20,20 20,20 0 0 0 20,-20 20,20 0 0 0 -0.02148,-0.582 z"
id="circle4147" />
<path
inkscape:connector-curvature="0"
style="opacity:0.2;fill:url(#linearGradient4190);fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 35.246094,1015.0106 -2.123047,0.168 -4,1.4102 -2.527344,3.4238 -1.939453,6.0976 -2.025391,5.1583 -1.626953,2.4902 -4.222656,-1.9922 -2.767578,0.2715 -1.222656,1.375 -0.542969,2.084 12.826172,12.8261 A 20,20 0 0 0 44,1028.3622 a 20,20 0 0 0 -0.722656,-5.3203 l -8.03125,-8.0313 z"
id="rect4152" />
<path
inkscape:connector-curvature="0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:medium;line-height:125%;font-family:Tangerine;-inkscape-font-specification:'Tangerine Bold';letter-spacing:0px;word-spacing:0px;fill:url(#linearGradient4222);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 33.683594,1014.3622 c -1.118881,0 -2.193285,0.2954 -3.222656,0.8867 -1.006994,0.5685 -1.958411,1.399 -2.853516,2.4903 -0.872727,1.0688 -1.666728,2.3879 -2.382813,3.957 -0.716083,1.546 -1.331016,3.2962 -1.845703,5.2519 -0.358041,1.387 -0.716178,2.5587 -1.074218,3.5137 -0.358043,0.9551 -0.727002,1.7502 -1.107422,2.3867 -0.827973,-0.3183 -1.645577,-0.8795 -2.451172,-1.084 -0.783217,-0.2274 -1.588045,-0.3398 -2.416016,-0.3398 -0.648951,0 -1.242235,0.1019 -1.779297,0.3066 -0.514687,0.2046 -0.961378,0.4543 -1.341797,0.75 -0.380421,0.2956 -0.682475,0.6139 -0.90625,0.9551 C 12.101335,1033.7773 12,1034.3946 12,1034.6903 c 0,0.4775 0.224323,0.877 0.671875,1.1953 0.447553,0.3183 1.118567,0.4766 2.013672,0.4766 2.372027,0 4.374245,-0.6263 6.007812,-1.877 1.029371,0.4549 2.082125,0.8877 3.15625,1.2969 1.096504,0.3866 2.30472,0.5801 3.625,0.5801 1.499301,0 2.696692,-0.3184 3.591797,-0.9551 0.895105,-0.6593 1.410203,-1.5025 1.947266,-2.7304 0.02237,-0.1373 -0.0101,-0.2285 -0.09961,-0.2735 -0.06713,-0.068 -0.146818,-0.068 -0.236328,0 -0.380419,0.7731 -0.660368,1.2644 -1.242187,1.6738 -0.581819,0.4091 -1.4319,0.6133 -2.550781,0.6133 -1.342657,0 -2.574479,-0.1477 -3.69336,-0.4433 -1.096504,-0.3183 -2.147304,-0.6702 -3.154297,-1.0567 1.387413,-1.6599 2.472643,-4.0135 3.25586,-7.0605 0.46993,-1.9101 0.927447,-3.5021 1.375,-4.7754 0.447553,-1.2734 0.928674,-2.2847 1.443359,-3.0352 0.514685,-0.7731 1.075491,-1.2083 1.679688,-1.5039 0.626573,-0.3183 1.364494,-0.4765 2.214843,-0.4765 0.626575,0 1.140174,0.1143 1.542969,0.3418 0.425175,0.2046 0.740007,0.4772 0.941406,0.8183 0.201403,0.3411 0.311615,0.6163 0.333985,1.0254 0.02238,0.4094 -0.03175,1.2177 -0.166016,1.627 -0.02238,0.1144 0.0101,0.1932 0.09961,0.2382 0.111889,0.046 0.213225,0.035 0.302735,-0.033 0.223777,-0.3865 0.435321,-1.2759 0.636719,-1.8671 C 35.898663,1017.8751 36,1017.3403 36,1016.8856 c 0,-0.705 -0.213497,-1.2959 -0.638672,-1.7734 -0.425174,-0.5003 -0.984027,-0.75 -1.677734,-0.75 z m -18.830078,18.1875 c 0.962238,0 1.868401,0.1353 2.71875,0.4082 0.85035,0.273 1.689605,0.8922 2.517578,1.2559 -0.514685,0.5002 -1.097143,0.8413 -1.746094,1.0234 -0.626573,0.1588 -1.342842,0.2383 -2.148438,0.2383 -0.917481,0 -1.633751,-0.1476 -2.148437,-0.4434 -0.492308,-0.2955 -0.738281,-0.9709 -0.738281,-1.4258 0,-0.7048 0.515551,-1.0566 1.544922,-1.0566 z"
id="path4166" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,13 @@
[Desktop Entry]
_Name=Latte
_Comment=Dock for the masses
_GenericName=Dock
Categories=Utility;
Exec=latte-dock %u
Icon=latte-dock
InitialPreference=1
StartupNotify=true
Terminal=false
Type=Application

View File

@ -1,17 +1,17 @@
[Desktop Entry]
_Name=Now Dock
_Comment=Switch between running applications
_Name=Latte Plasmoid
_Comment=Plasmoid from the Latte Dock
Type=Service
Icon=preferences-system-windows
Icon=latte-dock
X-KDE-ServiceTypes=Plasma/Applet
X-Plasma-API=declarativeappletscript
X-Plasma-MainScript=ui/main.qml
X-Plasma-Provides=org.kde.plasma.multitasking
X-KDE-PluginInfo-Author=@AUTHOR@
X-KDE-PluginInfo-Email=@EMAIL@
X-KDE-PluginInfo-Name=org.kde.store.nowdock.plasmoid
X-KDE-PluginInfo-Name=org.kde.latte.plasmoid
X-KDE-PluginInfo-Version=@VERSION@
X-KDE-PluginInfo-Website=@WEBSITE@
X-KDE-PluginInfo-Category=Windows and Tasks

View File

@ -320,7 +320,7 @@ Item {
// anchors.verticalCenterOffset: (mainColumn.height / 4)
width: 0.85 * mainItem.width
text: i18n("For the disabled settings you should use the Now Dock Panel Configuration Window")
text: i18n("For the disabled settings you should use the Latte Dock Configuration Window")
visible: mainItem.isInNowDockPanel
horizontalAlignment: Text.AlignHCenter

View File

@ -166,7 +166,7 @@ Item {
// anchors.verticalCenterOffset: (mainColumn.height / 4)
width: 0.85 * mainItem.width
text: i18n("For the disabled settings you should use the Now Dock Panel Configuration Window")
text: i18n("For the disabled settings you should use the Latte Dock Configuration Window")
visible: mainItem.isInNowDockPanel
horizontalAlignment: Text.AlignHCenter

View File

@ -753,10 +753,10 @@ Item {
onCountChanged: {
if(activityInfo.currentActivity != "00000000-0000-0000-0000-000000000000"){
console.log("----------- Now Dock Signal: Activities number was changed ---------");
console.log("----------- Latte Plasmoid Signal: Activities number was changed ---------");
var allActivities = activities();
ActivitiesTools.cleanupRecords(allActivities);
console.log("----------- Now Dock Signal End ---------");
console.log("----------- Latte Plasmoid Signal End ---------");
}
}
}

View File

@ -1,23 +1,19 @@
[Desktop Entry]
Name=Now Dock
Name[el]=Now Dock
Name[pl]=Now Dock
Name[zh_TW]=Now Dock
Comment=Switch between running applications
Comment[el]=Εναλλαγή μεταξύ ενεργών εφαρμογών
Comment[pl]=Przełączanie między uruchomionymi aplikacjami
Comment[zh_TW]=
Name=Latte Plasmoid
Name[el]=Latte
Comment=Plasmoid from the Latte Dock
Comment[el]=Ένα πλασμoϊδές από τη σουίτα Latte
Type=Service
Icon=preferences-system-windows
Icon=latte-dock
X-KDE-ServiceTypes=Plasma/Applet
X-Plasma-API=declarativeappletscript
X-Plasma-MainScript=ui/main.qml
X-Plasma-Provides=org.kde.plasma.multitasking
X-KDE-PluginInfo-Author=@AUTHOR@
X-KDE-PluginInfo-Email=@EMAIL@
X-KDE-PluginInfo-Name=org.kde.store.nowdock.plasmoid
X-KDE-PluginInfo-Name=org.kde.latte.plasmoid
X-KDE-PluginInfo-Version=@VERSION@
X-KDE-PluginInfo-Website=@WEBSITE@
X-KDE-PluginInfo-Category=Windows and Tasks

View File

@ -6,13 +6,17 @@ PROJECTPATH="../../containment" # project path
BUGADDR="https://github.com/psifidotos/latte-dock/" # MSGID-Bugs
WDIR="`pwd`/containment" # working dir
PROJECTPLASMOID="plasma_applet_org.kde.store.nowdock.plasmoid" # project name
PROJECTPLASMOID="plasma_applet_org.kde.latte.plasmoid" # project name
PROJECTPATHPLASMOID="../../plasmoid" # project path
WDIRPLASMOID="`pwd`/plasmoid" # working di
WDIRPLASMOID="`pwd`/plasmoid" # working dir
PROJECTSHELL="plasma_shell_org.kde.latte.shell" # project name
PROJECTPATHSHELL="../../shell" # project path
WDIRSHELL="`pwd`/shell" # working di
WDIRSHELL="`pwd`/shell" # working dir
PROJECTAPP="latte-dock" # project name
PROJECTPATHAPP="../../app" # project path
WDIRAPP="`pwd`/app" # working dir
echo "Preparing rc files for panel"
@ -150,3 +154,51 @@ rm "${WDIRSHELL}/infiles.list"
rm "${WDIRSHELL}/rc.cpp"
echo "Done"
#---------------------- Corona Section ----------------#
echo "Preparing rc files for app"
cd ../app
# we use simple sorting to make sure the lines do not jump around too much from system to system
find "${PROJECTPATHSHELL}" -name '*.rc' -o -name '*.ui' -o -name '*.kcfg' | sort > "${WDIRAPP}/rcfiles.list"
find "${PROJECTPATHAPP}" -name '*.rc' -o -name '*.ui' -o -name '*.kcfg' | sort >> "${WDIRAPP}/rcfiles.list"
xargs --arg-file="${WDIRAPP}/rcfiles.list" extractrc > "${WDIRAPP}/rc.cpp"
intltool-extract --quiet --type=gettext/ini ../../latte-dock.desktop.template
cat ../../latte-dock.desktop.template.h >> ${WDIRAPP}/rc.cpp
rm ../../latte-dock.desktop.template.h
echo "Done preparing rc files for app"
echo "Extracting messages for app"
# see above on sorting
find "${PROJECTPATHSHELL}" -name '*.cpp' -o -name '*.h' -o -name '*.c' -o -name '*.qml' -o -name '*.qml.cmake' | sort > "${WDIRAPP}/infiles.list"
find "${PROJECTPATHAPP}" -name '*.cpp' -o -name '*.h' -o -name '*.c' -o -name '*.qml' -o -name '*.qml.cmake' | sort >> "${WDIRAPP}/infiles.list"
echo "rc.cpp" >> "${WDIRAPP}/infiles.list"
xgettext --from-code=UTF-8 -C -kde -ci18n -ki18n:1 -ki18nc:1c,2 -ki18np:1,2 -ki18ncp:1c,2,3 \
-ktr2i18n:1 -kI18N_NOOP:1 -kI18N_NOOP2:1c,2 -kN_:1 -kaliasLocale -kki18n:1 -kki18nc:1c,2 \
-kki18np:1,2 -kki18ncp:1c,2,3 --msgid-bugs-address="${BUGADDR}" --files-from=infiles.list \
-D "${BASEDIR}" -D "${WDIRAPP}" -o "${PROJECTAPP}.pot" || \
{ echo "error while calling xgettext. aborting."; exit 1; }
echo "Done extracting messages for app"
echo "Merging translations for app"
catalogs=`find . -name '*.po'`
for cat in $catalogs; do
echo "$cat"
msgmerge -o "$cat.new" "$cat" "${WDIRAPP}/${PROJECTAPP}.pot"
mv "$cat.new" "$cat"
done
intltool-merge --quiet --desktop-style . ../../latte-dock.desktop.template "${PROJECTPATHAPP}"/latte-dock.desktop
echo "Done merging translations for app"
echo "Cleaning up for app"
rm "${WDIRAPP}/rcfiles.list"
rm "${WDIRAPP}/infiles.list"
rm "${WDIRAPP}/rc.cpp"
echo "Done"

217
po/app/el.po Normal file
View File

@ -0,0 +1,217 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Michail Vοurlakos <mvourlakos@gmail.com>, 2016.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-12-28 18:07+0200\n"
"Last-Translator: Michail Vοurlakos <mvourlakos@gmail.com>\n"
"Language-Team: Greek <kde-i18n-doc@kde.org>\n"
"Language: el_GR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 2.0\n"
#: ../../shell/contents/configuration/config.qml:26
msgid "General"
msgstr "Γενικά"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:38
msgid "Applets Alignment"
msgstr "Στοίχιση Εφαρμογών"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:52
msgid "ver: "
msgstr "εκδ: "
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:109
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Top"
msgstr "Πάνω"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:109
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Left"
msgstr "Αριστερά"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:125
msgid "Center"
msgstr "Κέντρο"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:138
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Bottom"
msgstr "Κάτω"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:138
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Right"
msgstr "Δεξιά"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:179
msgid "Visibility"
msgstr "Ορατότητα"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235
msgid "Always Visible"
msgstr "Πάντα Ορατό"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248
msgid "Auto Hide"
msgstr "Αυτόματη Απόκρυψη"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261
msgid "Dodge Active"
msgstr "Αποφυγή Ενεργό"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275
msgid "Dodge Maximized"
msgstr "Αποφυγή Μεγιστοποίησης"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289
msgid "Dodge All Windows"
msgstr "Αποφυγή Παραθύρων"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:322
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:343
msgid "Applets Size"
msgstr "Μέγεθος Εφαρμογών"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:390
msgid "Zoom On Hover"
msgstr "Εστίαση"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:409
msgid "Zoom Factor"
msgstr "Συντελεστής Εστίασης"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:458
msgid "Background"
msgstr "Παρασκήνιο"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:464
msgid "Show Panel Background"
msgstr "Εμφάνιση Παρασκηνίου"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:494
msgid "Size"
msgstr "Μέγεθος"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:540
msgid "Shadows"
msgstr "Σκιές"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:578
msgid "None"
msgstr "Καμία"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:583
msgid "Only for locked applets"
msgstr "Μόνο κλειδωμένες εφαρμογές"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:588
msgid "All applets"
msgstr "Παντού"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:598
msgid "Add New Dock"
msgstr "Προσθήκη Πίνακα"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:604
msgid "Remove Dock"
msgstr "Αφαίρεση Πίνακα"
#: ../../app/packageplugins/shell/nowdockpackage.cpp:21
#, fuzzy
msgid "Now Dock panel"
msgstr "Now Dock Πίνακας"
#: ../../app/packageplugins/shell/nowdockpackage.cpp:23
msgid "Dock configuration UI"
msgstr "Παράθυρο ρυθμίσεων"
#: ../../app/packageplugins/shell/nowdockpackage.cpp:24
msgid "Config model"
msgstr "Μοντέλο ρυθμίσεων"
#: rc.cpp:1
msgid "Latte"
msgstr "Latte"
#: rc.cpp:2
msgid "Dock for the masses"
msgstr "Πίνακας για όλον τον κόσμο"
#: rc.cpp:3
msgid "Dock"
msgstr "Πίνακας"
#~ msgid "Let Windows Cover"
#~ msgstr "Παράθυρα από Πάνω"
#~ msgid "Windows Go Below"
#~ msgstr "Παράθυρα από Κάτω"
#~ msgid "Shell provided for the Latte Dock"
#~ msgstr "Κέλυφος που παρέχεται από το Latte"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Top"
#~ msgstr "Πάνω"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Bottom"
#~ msgstr "Κάτω"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Left"
#~ msgstr "Αριστερά"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Right"
#~ msgstr "Δεξιά"
#, fuzzy
#~ msgctxt "@label:listbox config ui"
#~ msgid "Alignment:"
#~ msgstr "Στοίχιση Εφαρμογών"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, alignment"
#~ msgid "Center"
#~ msgstr "Κέντρο"
#, fuzzy
#~ msgctxt "@label:listbox config ui"
#~ msgid "Visibility:"
#~ msgstr "Ορατότητα"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, visibility"
#~ msgid "Auto hide"
#~ msgstr "Αυτόματη Απόκρυψη"
#~ msgid "A plasma panel that tries to animate its plasmoid on hovering"
#~ msgstr ""
#~ "Ένας πίνακας του Plasma που χρησιμοποιεί ποικίλα εφέ για τις εφαρμογές του"
#~ msgid "Now Dock Default Panel"
#~ msgstr "Προκαθορισμένος Now Dock"
#~ msgid "Empty Now Dock Panel"
#~ msgstr "Κενός Now Dock"
#~ msgid "Automatic"
#~ msgstr "Αυτόματα"
#~ msgid "Small steps for icon sizes in automatic modes"
#~ msgstr "Μικρά βήματα στην αυτόματη εναλλαγή μεγέθους"

151
po/app/latte-dock.pot Normal file
View File

@ -0,0 +1,151 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../shell/contents/configuration/config.qml:26
msgid "General"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:38
msgid "Applets Alignment"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:52
msgid "ver: "
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:109
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Top"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:109
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Left"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:125
msgid "Center"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:138
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Bottom"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:138
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Right"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:179
msgid "Visibility"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235
msgid "Always Visible"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248
msgid "Auto Hide"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261
msgid "Dodge Active"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275
msgid "Dodge Maximized"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289
msgid "Dodge All Windows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:322
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:343
msgid "Applets Size"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:390
msgid "Zoom On Hover"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:409
msgid "Zoom Factor"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:458
msgid "Background"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:464
msgid "Show Panel Background"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:494
msgid "Size"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:540
msgid "Shadows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:578
msgid "None"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:583
msgid "Only for locked applets"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:588
msgid "All applets"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:598
msgid "Add New Dock"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:604
msgid "Remove Dock"
msgstr ""
#: ../../app/packageplugins/shell/nowdockpackage.cpp:21
msgid "Now Dock panel"
msgstr ""
#: ../../app/packageplugins/shell/nowdockpackage.cpp:23
msgid "Dock configuration UI"
msgstr ""
#: ../../app/packageplugins/shell/nowdockpackage.cpp:24
msgid "Config model"
msgstr ""
#: rc.cpp:1
msgid "Latte"
msgstr ""
#: rc.cpp:2
msgid "Dock for the masses"
msgstr ""
#: rc.cpp:3
msgid "Dock"
msgstr ""

199
po/app/pl.po Normal file
View File

@ -0,0 +1,199 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Damian Kopeć <damikope@gmail.com>, 2016.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-10-14 14:20+0100\n"
"Last-Translator: Damian Kopeć <damikope@gmail.com>\n"
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 2.0\n"
#: ../../shell/contents/configuration/config.qml:26
msgid "General"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:38
msgid "Applets Alignment"
msgstr "Wyrównanie Apletów "
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:52
msgid "ver: "
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:109
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Top"
msgstr "Góra"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:109
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Left"
msgstr "Lewa"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:125
msgid "Center"
msgstr "Środek"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:138
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Bottom"
msgstr "Dół"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:138
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Right"
msgstr "Prawa"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:179
msgid "Visibility"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235
msgid "Always Visible"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248
msgid "Auto Hide"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261
msgid "Dodge Active"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275
msgid "Dodge Maximized"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289
msgid "Dodge All Windows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:322
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:343
msgid "Applets Size"
msgstr "Wielkość Apletów"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:390
msgid "Zoom On Hover"
msgstr "Zbliżenie Przy Najechaniu"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:409
msgid "Zoom Factor"
msgstr "Stopień Zbliżenia"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:458
msgid "Background"
msgstr "Tło"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:464
msgid "Show Panel Background"
msgstr "Pokaż Tło Panelu"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:494
msgid "Size"
msgstr "Rozmiar"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:540
msgid "Shadows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:578
msgid "None"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:583
#, fuzzy
msgid "Only for locked applets"
msgstr "Cień dla zablokowanych apletów"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:588
#, fuzzy
msgid "All applets"
msgstr "Wielkość Apletów"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:598
msgid "Add New Dock"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:604
msgid "Remove Dock"
msgstr ""
#: ../../app/packageplugins/shell/nowdockpackage.cpp:21
#, fuzzy
msgid "Now Dock panel"
msgstr "Panel Now Dock"
#: ../../app/packageplugins/shell/nowdockpackage.cpp:23
msgid "Dock configuration UI"
msgstr ""
#: ../../app/packageplugins/shell/nowdockpackage.cpp:24
msgid "Config model"
msgstr ""
#: rc.cpp:1
msgid "Latte"
msgstr ""
#: rc.cpp:2
msgid "Dock for the masses"
msgstr ""
#: rc.cpp:3
msgid "Dock"
msgstr ""
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Top"
#~ msgstr "Góra"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Bottom"
#~ msgstr "Dół"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Left"
#~ msgstr "Lewa"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Right"
#~ msgstr "Prawa"
#, fuzzy
#~ msgctxt "@label:listbox config ui"
#~ msgid "Alignment:"
#~ msgstr "Wyrównanie Apletów "
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, alignment"
#~ msgid "Center"
#~ msgstr "Środek"
#~ msgid "A plasma panel that tries to animate its plasmoid on hovering"
#~ msgstr "Panel plazmy próbujący animowac plazmoidy podczas najechania na nie"
#~ msgid "Now Dock Default Panel"
#~ msgstr "Domyślny Panel Now Dock"
#~ msgid "Empty Now Dock Panel"
#~ msgstr "Pusty Panel Now Dock"
#~ msgid "Automatic"
#~ msgstr "Automatyczna"
#~ msgid "Small steps for icon sizes in automatic modes"
#~ msgstr "Mały skok wielkości ikon w tryb automatycznym"

203
po/app/ro.po Normal file
View File

@ -0,0 +1,203 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Viorel-Cătălin Răpițeanu <rapiteanu.catalin@gmail.com>, 2016.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-09-25 04:15+0300\n"
"Last-Translator: Viorel-Cătălin Răpițeanu <rapiteanu DOT catalin AT gmail "
"DOT com>\n"
"Language-Team: Romanian <kde-i18n-doc@kde.org>\n"
"Language: ro_RO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n"
"X-Generator: Poedit 1.8.9\n"
#: ../../shell/contents/configuration/config.qml:26
msgid "General"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:38
msgid "Applets Alignment"
msgstr "Alinierea miniaplicațiilor"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:52
msgid "ver: "
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:109
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Top"
msgstr "Sus"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:109
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Left"
msgstr "Stânga"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:125
msgid "Center"
msgstr "Centru"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:138
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Bottom"
msgstr "Jos"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:138
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Right"
msgstr "Dreapta"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:179
msgid "Visibility"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235
msgid "Always Visible"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248
msgid "Auto Hide"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261
msgid "Dodge Active"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275
msgid "Dodge Maximized"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289
msgid "Dodge All Windows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:322
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:343
msgid "Applets Size"
msgstr "Dimensiunea miniaplicațiilor"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:390
msgid "Zoom On Hover"
msgstr "Panoramează la trecerea peste"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:409
msgid "Zoom Factor"
msgstr "Factor de panoramare"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:458
msgid "Background"
msgstr "Fundal"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:464
msgid "Show Panel Background"
msgstr "Arată fundalul panoului"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:494
msgid "Size"
msgstr "Dimensiune"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:540
msgid "Shadows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:578
msgid "None"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:583
msgid "Only for locked applets"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:588
#, fuzzy
msgid "All applets"
msgstr "Dimensiunea miniaplicațiilor"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:598
msgid "Add New Dock"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:604
msgid "Remove Dock"
msgstr ""
#: ../../app/packageplugins/shell/nowdockpackage.cpp:21
#, fuzzy
msgid "Now Dock panel"
msgstr "Panou Now Dock"
#: ../../app/packageplugins/shell/nowdockpackage.cpp:23
msgid "Dock configuration UI"
msgstr ""
#: ../../app/packageplugins/shell/nowdockpackage.cpp:24
msgid "Config model"
msgstr ""
#: rc.cpp:1
msgid "Latte"
msgstr ""
#: rc.cpp:2
msgid "Dock for the masses"
msgstr ""
#: rc.cpp:3
msgid "Dock"
msgstr ""
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Top"
#~ msgstr "Sus"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Bottom"
#~ msgstr "Jos"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Left"
#~ msgstr "Stânga"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Right"
#~ msgstr "Dreapta"
#, fuzzy
#~ msgctxt "@label:listbox config ui"
#~ msgid "Alignment:"
#~ msgstr "Alinierea miniaplicațiilor"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, alignment"
#~ msgid "Center"
#~ msgstr "Centru"
#~ msgid "A plasma panel that tries to animate its plasmoid on hovering"
#~ msgstr ""
#~ "Un panou plasma care încearcă să animeze miniaplicațiile la trecerea peste"
#, fuzzy
#~ msgid "Now Dock Default Panel"
#~ msgstr "Panou Now Dock"
#, fuzzy
#~ msgid "Empty Now Dock Panel"
#~ msgstr "Panou Now Dock"
#~ msgid "Automatic"
#~ msgstr "Automat"
#~ msgid "Small steps for icon sizes in automatic modes"
#~ msgstr "Pași mici pentru dimensiunea pictogramelor în modurile automate"

216
po/app/zh_TW.po Normal file
View File

@ -0,0 +1,216 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Jeff Huang <s8321414@gmail.com>, 2016.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-11-26 17:31+0800\n"
"Last-Translator: Jeff Huang <s8321414@gmail.com>\n"
"Language-Team: Chinese <kde-i18n-doc@kde.org>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Lokalize 2.0\n"
#: ../../shell/contents/configuration/config.qml:26
msgid "General"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:38
msgid "Applets Alignment"
msgstr "小程式對齊"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:52
msgid "ver: "
msgstr "版本:"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:109
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Top"
msgstr "頂部"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:109
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Left"
msgstr "左邊"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:125
msgid "Center"
msgstr "置中"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:138
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Bottom"
msgstr "底部"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:138
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:155
msgid "Right"
msgstr "右邊"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:179
msgid "Visibility"
msgstr "可見度"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235
msgid "Always Visible"
msgstr "永遠可見"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248
msgid "Auto Hide"
msgstr "自動隱藏"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261
#, fuzzy
msgid "Dodge Active"
msgstr "在作用中的視窗後"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275
#, fuzzy
msgid "Dodge Maximized"
msgstr "在最大化的視窗後"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289
msgid "Dodge All Windows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:322
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:343
msgid "Applets Size"
msgstr "小程式大小"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:390
msgid "Zoom On Hover"
msgstr "滑鼠游標置於其上時縮放"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:409
msgid "Zoom Factor"
msgstr "縮放係數"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:458
msgid "Background"
msgstr "背景"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:464
msgid "Show Panel Background"
msgstr "顯示面板背景"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:494
msgid "Size"
msgstr "大小"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:540
msgid "Shadows"
msgstr "陰影"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:578
msgid "None"
msgstr "無"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:583
msgid "Only for locked applets"
msgstr "僅鎖定小程式"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:588
msgid "All applets"
msgstr "所有小程式"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:598
msgid "Add New Dock"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:604
msgid "Remove Dock"
msgstr ""
#: ../../app/packageplugins/shell/nowdockpackage.cpp:21
#, fuzzy
msgid "Now Dock panel"
msgstr "Now Dock 面板"
#: ../../app/packageplugins/shell/nowdockpackage.cpp:23
msgid "Dock configuration UI"
msgstr ""
#: ../../app/packageplugins/shell/nowdockpackage.cpp:24
msgid "Config model"
msgstr ""
#: rc.cpp:1
msgid "Latte"
msgstr ""
#: rc.cpp:2
msgid "Dock for the masses"
msgstr ""
#: rc.cpp:3
msgid "Dock"
msgstr ""
#~ msgid "Let Windows Cover"
#~ msgstr " 讓視窗蓋過"
#~ msgid "Windows Go Below"
#~ msgstr "視窗在下面"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Top"
#~ msgstr "頂部"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Bottom"
#~ msgstr "底部"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Left"
#~ msgstr "左邊"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Right"
#~ msgstr "右邊"
#, fuzzy
#~ msgctxt "@label:listbox config ui"
#~ msgid "Alignment:"
#~ msgstr "小程式對齊"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, alignment"
#~ msgid "Center"
#~ msgstr "置中"
#, fuzzy
#~ msgctxt "@label:listbox config ui"
#~ msgid "Visibility:"
#~ msgstr "可見度"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, visibility"
#~ msgid "Auto hide"
#~ msgstr "自動隱藏"
#~ msgid "A plasma panel that tries to animate its plasmoid on hovering"
#~ msgstr ""
#~ "一個嘗試讓滑鼠游標停在上面時會讓它的 plasmoid 產生動畫的 plasma 面板"
#~ msgid "Now Dock Default Panel"
#~ msgstr "Now Dock 預設面板"
#~ msgid "Empty Now Dock Panel"
#~ msgstr "空的 Now Dock 面板"
#~ msgid "Automatic"
#~ msgstr "自動"
#~ msgid "Small steps for icon sizes in automatic modes"
#~ msgstr "自動模式中,圖示大小少量步進"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-25 19:23+0200\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\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"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-25 19:23+0200\n"
"PO-Revision-Date: 2016-11-25 00:01+0200\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-12-28 22:53+0200\n"
"Last-Translator: Michail Vοurlakos <mvourlakos@gmail.com>\n"
"Language-Team: Greek <kde-i18n-doc@kde.org>\n"
"Language: el_GR\n"
@ -356,9 +356,15 @@ msgid "Close"
msgstr "Κλείσιμο"
#: rc.cpp:1
msgid "Now Dock"
msgstr "Now Dock"
msgid "Latte Plasmoid"
msgstr "Latte"
#: rc.cpp:2
msgid "Switch between running applications"
msgstr "Εναλλαγή μεταξύ ενεργών εφαρμογών"
msgid "Plasmoid from the Latte Dock"
msgstr "Ένα πλασμoϊδές από τη σουίτα Latte"
#~ msgid "Now Dock"
#~ msgstr "Now Dock"
#~ msgid "Switch between running applications"
#~ msgstr "Εναλλαγή μεταξύ ενεργών εφαρμογών"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-25 19:23+0200\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-10-16 13:14+0100\n"
"Last-Translator: Damian Kopeć <damikope@gmail.com>\n"
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
@ -356,9 +356,15 @@ msgid "Close"
msgstr "Zamknij"
#: rc.cpp:1
msgid "Now Dock"
msgstr "Now Dock"
msgid "Latte Plasmoid"
msgstr ""
#: rc.cpp:2
msgid "Switch between running applications"
msgstr "Przełączanie między uruchomionymi aplikacjami"
msgid "Plasmoid from the Latte Dock"
msgstr ""
#~ msgid "Now Dock"
#~ msgstr "Now Dock"
#~ msgid "Switch between running applications"
#~ msgstr "Przełączanie między uruchomionymi aplikacjami"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-25 19:23+0200\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\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"
@ -354,9 +354,9 @@ msgid "Close"
msgstr ""
#: rc.cpp:1
msgid "Now Dock"
msgid "Latte Plasmoid"
msgstr ""
#: rc.cpp:2
msgid "Switch between running applications"
msgid "Plasmoid from the Latte Dock"
msgstr ""

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-25 19:23+0200\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-11-26 17:34+0800\n"
"Last-Translator: Jeff Huang <s8321414@gmail.com>\n"
"Language-Team: Chinese <kde-i18n-doc@kde.org>\n"
@ -354,9 +354,15 @@ msgid "Close"
msgstr "關閉"
#: rc.cpp:1
msgid "Now Dock"
msgstr "Now Dock"
msgid "Latte Plasmoid"
msgstr ""
#: rc.cpp:2
msgid "Switch between running applications"
msgstr "在執行中的應用程式間切換"
msgid "Plasmoid from the Latte Dock"
msgstr ""
#~ msgid "Now Dock"
#~ msgstr "Now Dock"
#~ msgid "Switch between running applications"
#~ msgstr "在執行中的應用程式間切換"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-25 19:23+0200\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-12-25 18:54+0200\n"
"Last-Translator: Michail Vοurlakos <mvourlakos@gmail.com>\n"
"Language-Team: Greek <kde-i18n-doc@kde.org>\n"
@ -53,80 +53,78 @@ msgstr "Κάτω"
msgid "Right"
msgstr "Δεξιά"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:181
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:179
msgid "Visibility"
msgstr "Ορατότητα"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:237
msgid "Below Active"
msgstr "Κάτω από Ενεργό"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:250
msgid "Below Maximized"
msgstr "Κάτω από Μεγιστοποίηση"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:263
msgid "Let Windows Cover"
msgstr "Παράθυρα από Πάνω"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:277
msgid "Windows Go Below"
msgstr "Παράθυρα από Κάτω"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:291
msgid "Auto Hide"
msgstr "Αυτόματη Απόκρυψη"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:304
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235
msgid "Always Visible"
msgstr "Πάντα Ορατό"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:324
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:345
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248
msgid "Auto Hide"
msgstr "Αυτόματη Απόκρυψη"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261
#, fuzzy
msgid "Dodge Active"
msgstr "Κάτω από Ενεργό"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275
#, fuzzy
msgid "Dodge Maximized"
msgstr "Κάτω από Μεγιστοποίηση"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289
msgid "Dodge All Windows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:322
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:343
msgid "Applets Size"
msgstr "Μέγεθος Εφαρμογών"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:392
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:390
msgid "Zoom On Hover"
msgstr "Εστίαση"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:411
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:409
msgid "Zoom Factor"
msgstr "Συντελεστής Εστίασης"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:460
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:458
msgid "Background"
msgstr "Παρασκήνιο"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:466
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:464
msgid "Show Panel Background"
msgstr "Εμφάνιση Παρασκηνίου"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:496
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:494
msgid "Size"
msgstr "Μέγεθος"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:542
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:540
msgid "Shadows"
msgstr "Σκιές"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:580
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:578
msgid "None"
msgstr "Καμία"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:585
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:583
msgid "Only for locked applets"
msgstr "Μόνο κλειδωμένες εφαρμογές"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:590
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:588
msgid "All applets"
msgstr "Παντού"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:600
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:598
msgid "Add New Dock"
msgstr "Προσθήκη Πίνακα"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:606
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:604
msgid "Remove Dock"
msgstr "Αφαίρεση Πίνακα"
@ -138,6 +136,12 @@ msgstr "Κέλυφος Latte"
msgid "Shell provided for the Latte Dock"
msgstr "Κέλυφος που παρέχεται από το Latte"
#~ msgid "Let Windows Cover"
#~ msgstr "Παράθυρα από Πάνω"
#~ msgid "Windows Go Below"
#~ msgstr "Παράθυρα από Κάτω"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Top"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-25 19:23+0200\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-10-14 14:20+0100\n"
"Last-Translator: Damian Kopeć <damikope@gmail.com>\n"
"Language-Team: Polish <kde-i18n-doc@kde.org>\n"
@ -53,82 +53,78 @@ msgstr "Dół"
msgid "Right"
msgstr "Prawa"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:181
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:179
msgid "Visibility"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:237
msgid "Below Active"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:250
msgid "Below Maximized"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:263
msgid "Let Windows Cover"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:277
msgid "Windows Go Below"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:291
msgid "Auto Hide"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:304
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235
msgid "Always Visible"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:324
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:345
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248
msgid "Auto Hide"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261
msgid "Dodge Active"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275
msgid "Dodge Maximized"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289
msgid "Dodge All Windows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:322
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:343
msgid "Applets Size"
msgstr "Wielkość Apletów"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:392
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:390
msgid "Zoom On Hover"
msgstr "Zbliżenie Przy Najechaniu"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:411
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:409
msgid "Zoom Factor"
msgstr "Stopień Zbliżenia"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:460
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:458
msgid "Background"
msgstr "Tło"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:466
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:464
msgid "Show Panel Background"
msgstr "Pokaż Tło Panelu"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:496
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:494
msgid "Size"
msgstr "Rozmiar"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:542
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:540
msgid "Shadows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:580
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:578
msgid "None"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:585
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:583
#, fuzzy
msgid "Only for locked applets"
msgstr "Cień dla zablokowanych apletów"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:590
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:588
#, fuzzy
msgid "All applets"
msgstr "Wielkość Apletów"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:600
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:598
msgid "Add New Dock"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:606
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:604
msgid "Remove Dock"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-25 19:23+0200\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\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"
@ -53,80 +53,76 @@ msgstr ""
msgid "Right"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:181
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:179
msgid "Visibility"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:237
msgid "Below Active"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:250
msgid "Below Maximized"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:263
msgid "Let Windows Cover"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:277
msgid "Windows Go Below"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:291
msgid "Auto Hide"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:304
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235
msgid "Always Visible"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:324
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:345
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248
msgid "Auto Hide"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261
msgid "Dodge Active"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275
msgid "Dodge Maximized"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289
msgid "Dodge All Windows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:322
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:343
msgid "Applets Size"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:392
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:390
msgid "Zoom On Hover"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:411
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:409
msgid "Zoom Factor"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:460
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:458
msgid "Background"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:466
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:464
msgid "Show Panel Background"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:496
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:494
msgid "Size"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:542
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:540
msgid "Shadows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:580
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:578
msgid "None"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:585
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:583
msgid "Only for locked applets"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:590
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:588
msgid "All applets"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:600
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:598
msgid "Add New Dock"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:606
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:604
msgid "Remove Dock"
msgstr ""

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-25 19:23+0200\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-09-25 04:15+0300\n"
"Last-Translator: Viorel-Cătălin Răpițeanu <rapiteanu DOT catalin AT gmail "
"DOT com>\n"
@ -55,81 +55,77 @@ msgstr "Jos"
msgid "Right"
msgstr "Dreapta"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:181
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:179
msgid "Visibility"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:237
msgid "Below Active"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:250
msgid "Below Maximized"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:263
msgid "Let Windows Cover"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:277
msgid "Windows Go Below"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:291
msgid "Auto Hide"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:304
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235
msgid "Always Visible"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:324
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:345
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248
msgid "Auto Hide"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261
msgid "Dodge Active"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275
msgid "Dodge Maximized"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289
msgid "Dodge All Windows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:322
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:343
msgid "Applets Size"
msgstr "Dimensiunea miniaplicațiilor"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:392
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:390
msgid "Zoom On Hover"
msgstr "Panoramează la trecerea peste"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:411
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:409
msgid "Zoom Factor"
msgstr "Factor de panoramare"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:460
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:458
msgid "Background"
msgstr "Fundal"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:466
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:464
msgid "Show Panel Background"
msgstr "Arată fundalul panoului"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:496
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:494
msgid "Size"
msgstr "Dimensiune"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:542
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:540
msgid "Shadows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:580
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:578
msgid "None"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:585
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:583
msgid "Only for locked applets"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:590
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:588
#, fuzzy
msgid "All applets"
msgstr "Dimensiunea miniaplicațiilor"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:600
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:598
msgid "Add New Dock"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:606
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:604
msgid "Remove Dock"
msgstr ""

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n"
"POT-Creation-Date: 2016-12-25 19:23+0200\n"
"POT-Creation-Date: 2016-12-28 22:51+0200\n"
"PO-Revision-Date: 2016-11-26 17:31+0800\n"
"Last-Translator: Jeff Huang <s8321414@gmail.com>\n"
"Language-Team: Chinese <kde-i18n-doc@kde.org>\n"
@ -53,80 +53,78 @@ msgstr "底部"
msgid "Right"
msgstr "右邊"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:181
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:179
msgid "Visibility"
msgstr "可見度"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:237
msgid "Below Active"
msgstr "在作用中的視窗後"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:250
msgid "Below Maximized"
msgstr "在最大化的視窗後"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:263
msgid "Let Windows Cover"
msgstr " 讓視窗蓋過"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:277
msgid "Windows Go Below"
msgstr "視窗在下面"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:291
msgid "Auto Hide"
msgstr "自動隱藏"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:304
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235
msgid "Always Visible"
msgstr "永遠可見"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:324
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:345
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248
msgid "Auto Hide"
msgstr "自動隱藏"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261
#, fuzzy
msgid "Dodge Active"
msgstr "在作用中的視窗後"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275
#, fuzzy
msgid "Dodge Maximized"
msgstr "在最大化的視窗後"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289
msgid "Dodge All Windows"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:322
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:343
msgid "Applets Size"
msgstr "小程式大小"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:392
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:390
msgid "Zoom On Hover"
msgstr "滑鼠游標置於其上時縮放"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:411
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:409
msgid "Zoom Factor"
msgstr "縮放係數"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:460
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:458
msgid "Background"
msgstr "背景"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:466
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:464
msgid "Show Panel Background"
msgstr "顯示面板背景"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:496
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:494
msgid "Size"
msgstr "大小"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:542
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:540
msgid "Shadows"
msgstr "陰影"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:580
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:578
msgid "None"
msgstr "無"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:585
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:583
msgid "Only for locked applets"
msgstr "僅鎖定小程式"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:590
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:588
msgid "All applets"
msgstr "所有小程式"
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:600
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:598
msgid "Add New Dock"
msgstr ""
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:606
#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:604
msgid "Remove Dock"
msgstr ""
@ -138,6 +136,12 @@ msgstr ""
msgid "Shell provided for the Latte Dock"
msgstr ""
#~ msgid "Let Windows Cover"
#~ msgstr " 讓視窗蓋過"
#~ msgid "Windows Go Below"
#~ msgstr "視窗在下面"
#, fuzzy
#~ msgctxt "@item:inlistbox config ui, location"
#~ msgid "Top"

View File

@ -3,19 +3,24 @@
PROJECTPATHCONTAINMENT="../../containment" # containment path
PROJECTPATHPLASMOID="../../plasmoid" # plasmoid path
PROJECTPATHSHELL="../../shell" # shell path
PROJECTPATHAPP="../../app" # app path
BUGADDR="https://github.com/psifidotos/latte-dock/" # MSGID-Bugs
cd containment
intltool-merge --quiet --desktop-style . ../../containment.metadata.desktop.template "${PROJECTPATHCONTAINMENT}"/metadata.desktop.cmake
echo "metadata.desktop files for containment were updated..."
echo "metadata.desktop file for containment was updated..."
cd ../plasmoid
intltool-merge --quiet --desktop-style . ../../plasmoid.metadata.desktop.template "${PROJECTPATHPLASMOID}"/metadata.desktop.cmake
echo "metadata.desktop files for plasmoid were updated..."
echo "metadata.desktop file for plasmoid was updated..."
cd ../shell
intltool-merge --quiet --desktop-style . ../../shell.metadata.desktop.template "${PROJECTPATHSHELL}"/metadata.desktop.cmake
echo "metadata.desktop files for shell were updated..."
echo "metadata.desktop file for shell was updated..."
cd ../app
intltool-merge --quiet --desktop-style . ../../latte-dock.desktop.template "${PROJECTPATHAPP}"/latte-dock.desktop
echo "latte-dock.desktop file for app was updated..."

View File

@ -1,4 +1,5 @@
file(COPY "contents" DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/release)
file(COPY "defaults" DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/release)
#update the version number in the configuration window
file(REMOVE ${CMAKE_CURRENT_BINARY_DIR}/release/contents/configuration/LatteDockConfiguration.qml.cmake)
configure_file(metadata.desktop.cmake release/metadata.desktop)

View File

@ -30,8 +30,6 @@ PlasmaCore.FrameSvgItem {
prefix:""
// onRepaintNeeded: adjustPrefix();
//enabledBorders: panel.enabledBorders
property Item containment
property Item dockLayout
@ -85,13 +83,13 @@ PlasmaCore.FrameSvgItem {
for(var i=0; i<containment.children.length; ++i){
if (containment.children[i].objectName === "dockLayoutView") {
dockLayout = containment.children[i];
dockLayout.dockView = panel;
dockLayout.dock = dock;
}
}
}
Binding {
target: panel
target: dock
property: "length"
when: containment
value: {

12
shell/defaults Normal file
View File

@ -0,0 +1,12 @@
[Panel]
Containment=org.kde.latte.containment
# TODO
#ToolBox=audoban.toolbox.candildock
[Panel][ContainmentActions]
# TODO
RightButton;NoModifier=
#MidButton;NoModifier=
[Theme]
Theme=default