From f132f061460aada3067a7ddf671ab6dca6a64d53 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Wed, 28 Dec 2016 16:58:18 +0200 Subject: [PATCH] added translations for corona --- CMakeLists.txt | 23 ++ corona/latte-dock.desktop | 2 +- .../packageplugins/shell/nowdockpackage.cpp | 2 +- latte-dock.desktop.template | 13 ++ po/Messages.sh | 56 ++++- ...lasma_applet_org.kde.latte.containment.pot | 2 +- po/corona/el.po | 220 ++++++++++++++++++ po/corona/infiles.list | 22 ++ po/corona/latte-dock.pot | 151 ++++++++++++ po/corona/pl.po | 199 ++++++++++++++++ po/corona/rc.cpp | 3 + po/corona/rcfiles.list | 0 po/corona/ro.po | 203 ++++++++++++++++ po/corona/zh_TW.po | 216 +++++++++++++++++ po/plasmoid/el.po | 2 +- po/plasmoid/pl.po | 2 +- ..._applet_org.kde.store.nowdock.plasmoid.pot | 2 +- po/plasmoid/zh_TW.po | 2 +- po/shell/el.po | 72 +++--- po/shell/pl.po | 54 ++--- po/shell/plasma_shell_org.kde.latte.shell.pot | 54 ++--- po/shell/ro.po | 54 ++--- po/shell/zh_TW.po | 72 +++--- po/update-metadata.sh | 11 +- 24 files changed, 1270 insertions(+), 167 deletions(-) create mode 100644 latte-dock.desktop.template create mode 100644 po/corona/el.po create mode 100644 po/corona/infiles.list create mode 100644 po/corona/latte-dock.pot create mode 100644 po/corona/pl.po create mode 100644 po/corona/rc.cpp create mode 100644 po/corona/rcfiles.list create mode 100644 po/corona/ro.po create mode 100644 po/corona/zh_TW.po diff --git a/CMakeLists.txt b/CMakeLists.txt index c12a83cf3..657ab5c1a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -95,6 +95,29 @@ ELSE(NOT GETTEXT_MSGFMT_EXECUTABLE) INSTALL(FILES ${_gmoFile} DESTINATION ${LOCALE_INSTALL_DIR}/kf5/${_langCode}/LC_MESSAGES/ RENAME ${catalogname-shell}.mo) ENDIF( _langCode ) ENDFOREACH(_poFile ${PO_FILES}) + + #corona translations + SET(catalogname-corona latte-dock) + ADD_CUSTOM_TARGET(translations-corona ALL) + + FILE(GLOB PO_FILES_CORONA po/corona/*.po) + + FOREACH(_poFile ${PO_FILES_CORONA}) + GET_FILENAME_COMPONENT(_poFileName ${_poFile} NAME) + STRING(REGEX REPLACE "^${catalogname-corona}_?" "" _langCode ${_poFileName} ) + STRING(REGEX REPLACE "\\.po$" "" _langCode ${_langCode} ) + + IF( _langCode ) + GET_FILENAME_COMPONENT(_lang ${_poFile} NAME_WE) + SET(_gmoFile ${CMAKE_CURRENT_BINARY_DIR}/corona/${_lang}.gmo) + + ADD_CUSTOM_COMMAND(TARGET translations-corona + COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} --check -o ${_gmoFile} ${_poFile} + DEPENDS ${_poFile}) + INSTALL(FILES ${_gmoFile} DESTINATION ${LOCALE_INSTALL_DIR}/${_langCode}/LC_MESSAGES/ RENAME ${catalogname-corona}.mo) + ENDIF( _langCode ) + ENDFOREACH(_poFile ${PO_FILES}) + ENDIF(NOT GETTEXT_MSGFMT_EXECUTABLE) add_subdirectory(liblattedock) diff --git a/corona/latte-dock.desktop b/corona/latte-dock.desktop index 55966283f..b82f2b454 100644 --- a/corona/latte-dock.desktop +++ b/corona/latte-dock.desktop @@ -1,9 +1,9 @@ [Desktop Entry] Name=Latte Comment=Dock for the masses +GenericName=Dock Categories=Utility; -GenericName=Dock Exec=latte-dock %u Icon=latte-dock InitialPreference=1 diff --git a/corona/packageplugins/shell/nowdockpackage.cpp b/corona/packageplugins/shell/nowdockpackage.cpp index 61a2d29fc..b37f4f2fc 100644 --- a/corona/packageplugins/shell/nowdockpackage.cpp +++ b/corona/packageplugins/shell/nowdockpackage.cpp @@ -35,7 +35,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("Latte/Shell", "org.kde.latte.shell"); package->setFallbackPackage(fallback); } else if (pluginName.isEmpty() || pluginName == "org.kde.latte.shell") { package->setFallbackPackage(KPackage::Package()); diff --git a/latte-dock.desktop.template b/latte-dock.desktop.template new file mode 100644 index 000000000..0a531f7dc --- /dev/null +++ b/latte-dock.desktop.template @@ -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 + diff --git a/po/Messages.sh b/po/Messages.sh index 084575ec3..7f4d6ff80 100644 --- a/po/Messages.sh +++ b/po/Messages.sh @@ -8,11 +8,15 @@ WDIR="`pwd`/containment" # working dir PROJECTPLASMOID="plasma_applet_org.kde.store.nowdock.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 + +PROJECTCORONA="latte-dock" # project name +PROJECTPATHCORONA="../../corona" # project path +WDIRCORONA="`pwd`/corona" # 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 corona" +cd ../corona + +# 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 > "${WDIRSCORONA}/rcfiles.list" +find "${PROJECTPATHCORONA}" -name '*.rc' -o -name '*.ui' -o -name '*.kcfg' | sort >> "${WDIRCORONA}/rcfiles.list" +xargs --arg-file="${WDIRCORONA}/rcfiles.list" extractrc > "${WDIRCORONA}/rc.cpp" + +intltool-extract --quiet --type=gettext/ini ../../latte-dock.desktop.template +cat ../../latte-dock.desktop.template.h >> ${WDIRCORONA}/rc.cpp +rm ../../latte-dock.desktop.template.h + +echo "Done preparing rc files for corona" +echo "Extracting messages for corona" + +# see above on sorting + +find "${PROJECTPATHSHELL}" -name '*.cpp' -o -name '*.h' -o -name '*.c' -o -name '*.qml' -o -name '*.qml.cmake' | sort > "${WDIRCORONA}/infiles.list" +find "${PROJECTPATHCORONA}" -name '*.cpp' -o -name '*.h' -o -name '*.c' -o -name '*.qml' -o -name '*.qml.cmake' | sort >> "${WDIRCORONA}/infiles.list" +echo "rc.cpp" >> "${WDIRCORONA}/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 "${WDIRCORONA}" -o "${PROJECTCORONA}.pot" || \ + { echo "error while calling xgettext. aborting."; exit 1; } +echo "Done extracting messages for corona" + +echo "Merging translations for corona" +catalogs=`find . -name '*.po'` +for cat in $catalogs; do + echo "$cat" + msgmerge -o "$cat.new" "$cat" "${WDIRCORONA}/${PROJECTCORONA}.pot" + mv "$cat.new" "$cat" +done + +intltool-merge --quiet --desktop-style . ../../latte-dock.desktop.template "${PROJECTPATHCORONA}"/latte-dock.desktop + +echo "Done merging translations for corona" +echo "Cleaning up for corona" +#rm "${WDIRCORONA}/rcfiles.list" +#rm "${WDIRCORONA}/infiles.list" +#rm "${WDIRCORONA}/rc.cpp" +echo "Done" + + diff --git a/po/containment/plasma_applet_org.kde.latte.containment.pot b/po/containment/plasma_applet_org.kde.latte.containment.pot index 68b6f3343..1535ae638 100644 --- a/po/containment/plasma_applet_org.kde.latte.containment.pot +++ b/po/containment/plasma_applet_org.kde.latte.containment.pot @@ -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 16:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/corona/el.po b/po/corona/el.po new file mode 100644 index 000000000..d757442cf --- /dev/null +++ b/po/corona/el.po @@ -0,0 +1,220 @@ +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Michail Vοurlakos , 2016. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n" +"POT-Creation-Date: 2016-12-28 16:37+0200\n" +"PO-Revision-Date: 2016-12-25 18:54+0200\n" +"Last-Translator: Michail Vοurlakos \n" +"Language-Team: Greek \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 +#, 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 "Αφαίρεση Πίνακα" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:22 +#, fuzzy +msgid "Now Dock panel" +msgstr "Now Dock Πίνακας" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:24 +msgid "Dock configuration UI" +msgstr "" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:25 +msgid "Config model" +msgstr "" + +#: rc.cpp:1 +#, fuzzy +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 "Μικρά βήματα στην αυτόματη εναλλαγή μεγέθους" diff --git a/po/corona/infiles.list b/po/corona/infiles.list new file mode 100644 index 000000000..8db7b4db7 --- /dev/null +++ b/po/corona/infiles.list @@ -0,0 +1,22 @@ +../../shell/contents/configuration/config.qml +../../shell/contents/configuration/LatteDockConfiguration.qml.cmake +../../shell/contents/views/Panel.qml +../../corona/abstractinterface.cpp +../../corona/abstractinterface.h +../../corona/main.cpp +../../corona/nowdockconfigview.cpp +../../corona/nowdockconfigview.h +../../corona/nowdockcorona.cpp +../../corona/nowdockcorona.h +../../corona/nowdockview.cpp +../../corona/nowdockview.h +../../corona/packageplugins/shell/nowdockpackage.cpp +../../corona/packageplugins/shell/nowdockpackage.h +../../corona/plasmaquick/configview.h +../../corona/plasmaquick/containmentview.h +../../corona/plasmaquick/view.h +../../corona/visibilitymanager.cpp +../../corona/visibilitymanager.h +../../corona/xwindowinterface.cpp +../../corona/xwindowinterface.h +rc.cpp diff --git a/po/corona/latte-dock.pot b/po/corona/latte-dock.pot new file mode 100644 index 000000000..4aa286b7a --- /dev/null +++ b/po/corona/latte-dock.pot @@ -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 , 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 16:37+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \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 "" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:22 +msgid "Now Dock panel" +msgstr "" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:24 +msgid "Dock configuration UI" +msgstr "" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:25 +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 "" diff --git a/po/corona/pl.po b/po/corona/pl.po new file mode 100644 index 000000000..ef973b257 --- /dev/null +++ b/po/corona/pl.po @@ -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ć , 2016. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n" +"POT-Creation-Date: 2016-12-28 16:37+0200\n" +"PO-Revision-Date: 2016-10-14 14:20+0100\n" +"Last-Translator: Damian Kopeć \n" +"Language-Team: Polish \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 "" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:22 +#, fuzzy +msgid "Now Dock panel" +msgstr "Panel Now Dock" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:24 +msgid "Dock configuration UI" +msgstr "" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:25 +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" diff --git a/po/corona/rc.cpp b/po/corona/rc.cpp new file mode 100644 index 000000000..72b3e934b --- /dev/null +++ b/po/corona/rc.cpp @@ -0,0 +1,3 @@ +char *s = N_("Latte"); +char *s = N_("Dock for the masses"); +char *s = N_("Dock"); diff --git a/po/corona/rcfiles.list b/po/corona/rcfiles.list new file mode 100644 index 000000000..e69de29bb diff --git a/po/corona/ro.po b/po/corona/ro.po new file mode 100644 index 000000000..c9de87c1c --- /dev/null +++ b/po/corona/ro.po @@ -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 , 2016. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n" +"POT-Creation-Date: 2016-12-28 16:37+0200\n" +"PO-Revision-Date: 2016-09-25 04:15+0300\n" +"Last-Translator: Viorel-Cătălin Răpițeanu \n" +"Language-Team: Romanian \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 "" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:22 +#, fuzzy +msgid "Now Dock panel" +msgstr "Panou Now Dock" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:24 +msgid "Dock configuration UI" +msgstr "" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:25 +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" diff --git a/po/corona/zh_TW.po b/po/corona/zh_TW.po new file mode 100644 index 000000000..bf8451094 --- /dev/null +++ b/po/corona/zh_TW.po @@ -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 , 2016. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: https://github.com/psifidotos/latte-dock/\n" +"POT-Creation-Date: 2016-12-28 16:37+0200\n" +"PO-Revision-Date: 2016-11-26 17:31+0800\n" +"Last-Translator: Jeff Huang \n" +"Language-Team: Chinese \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 "" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:22 +#, fuzzy +msgid "Now Dock panel" +msgstr "Now Dock 面板" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:24 +msgid "Dock configuration UI" +msgstr "" + +#: ../../corona/packageplugins/shell/nowdockpackage.cpp:25 +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 "自動模式中,圖示大小少量步進" diff --git a/po/plasmoid/el.po b/po/plasmoid/el.po index 3fed6370f..06171344f 100644 --- a/po/plasmoid/el.po +++ b/po/plasmoid/el.po @@ -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 16:37+0200\n" "PO-Revision-Date: 2016-11-25 00:01+0200\n" "Last-Translator: Michail Vοurlakos \n" "Language-Team: Greek \n" diff --git a/po/plasmoid/pl.po b/po/plasmoid/pl.po index 3e584a7ec..8cf73c304 100644 --- a/po/plasmoid/pl.po +++ b/po/plasmoid/pl.po @@ -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 16:37+0200\n" "PO-Revision-Date: 2016-10-16 13:14+0100\n" "Last-Translator: Damian Kopeć \n" "Language-Team: Polish \n" diff --git a/po/plasmoid/plasma_applet_org.kde.store.nowdock.plasmoid.pot b/po/plasmoid/plasma_applet_org.kde.store.nowdock.plasmoid.pot index aa3d023e7..a7d0a2868 100644 --- a/po/plasmoid/plasma_applet_org.kde.store.nowdock.plasmoid.pot +++ b/po/plasmoid/plasma_applet_org.kde.store.nowdock.plasmoid.pot @@ -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 16:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/plasmoid/zh_TW.po b/po/plasmoid/zh_TW.po index cbc3a7e70..066ab225d 100644 --- a/po/plasmoid/zh_TW.po +++ b/po/plasmoid/zh_TW.po @@ -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 16:37+0200\n" "PO-Revision-Date: 2016-11-26 17:34+0800\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese \n" diff --git a/po/shell/el.po b/po/shell/el.po index 81fc5fd01..e91d7a82a 100644 --- a/po/shell/el.po +++ b/po/shell/el.po @@ -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 16:37+0200\n" "PO-Revision-Date: 2016-12-25 18:54+0200\n" "Last-Translator: Michail Vοurlakos \n" "Language-Team: Greek \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:235 +msgid "Always Visible" +msgstr "Πάντα Ορατό" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:291 +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248 msgid "Auto Hide" msgstr "Αυτόματη Απόκρυψη" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:304 -msgid "Always Visible" -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:324 -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:345 +#: ../../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" diff --git a/po/shell/pl.po b/po/shell/pl.po index b809e86ae..84b114de9 100644 --- a/po/shell/pl.po +++ b/po/shell/pl.po @@ -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 16:37+0200\n" "PO-Revision-Date: 2016-10-14 14:20+0100\n" "Last-Translator: Damian Kopeć \n" "Language-Team: Polish \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" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235 +msgid "Always Visible" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:263 -msgid "Let Windows Cover" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248 +msgid "Auto Hide" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:277 -msgid "Windows Go Below" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261 +msgid "Dodge Active" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:291 -msgid "Auto Hide" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275 +msgid "Dodge Maximized" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:304 -msgid "Always Visible" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289 +msgid "Dodge All Windows" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:324 -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:345 +#: ../../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 "" diff --git a/po/shell/plasma_shell_org.kde.latte.shell.pot b/po/shell/plasma_shell_org.kde.latte.shell.pot index 787a2796f..4844c36a0 100644 --- a/po/shell/plasma_shell_org.kde.latte.shell.pot +++ b/po/shell/plasma_shell_org.kde.latte.shell.pot @@ -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 16:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \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" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235 +msgid "Always Visible" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:263 -msgid "Let Windows Cover" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248 +msgid "Auto Hide" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:277 -msgid "Windows Go Below" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261 +msgid "Dodge Active" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:291 -msgid "Auto Hide" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275 +msgid "Dodge Maximized" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:304 -msgid "Always Visible" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289 +msgid "Dodge All Windows" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:324 -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:345 +#: ../../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 "" diff --git a/po/shell/ro.po b/po/shell/ro.po index 5044f8d04..0ee140627 100644 --- a/po/shell/ro.po +++ b/po/shell/ro.po @@ -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 16:37+0200\n" "PO-Revision-Date: 2016-09-25 04:15+0300\n" "Last-Translator: Viorel-Cătălin Răpițeanu \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" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:235 +msgid "Always Visible" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:263 -msgid "Let Windows Cover" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248 +msgid "Auto Hide" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:277 -msgid "Windows Go Below" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:261 +msgid "Dodge Active" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:291 -msgid "Auto Hide" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:275 +msgid "Dodge Maximized" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:304 -msgid "Always Visible" +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:289 +msgid "Dodge All Windows" msgstr "" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:324 -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:345 +#: ../../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 "" diff --git a/po/shell/zh_TW.po b/po/shell/zh_TW.po index b1aeb0a8f..3d01d6e32 100644 --- a/po/shell/zh_TW.po +++ b/po/shell/zh_TW.po @@ -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 16:37+0200\n" "PO-Revision-Date: 2016-11-26 17:31+0800\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese \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:235 +msgid "Always Visible" +msgstr "永遠可見" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:291 +#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:248 msgid "Auto Hide" msgstr "自動隱藏" -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:304 -msgid "Always Visible" -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:324 -#: ../../shell/contents/configuration/LatteDockConfiguration.qml.cmake:345 +#: ../../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" diff --git a/po/update-metadata.sh b/po/update-metadata.sh index 4c73dcd98..cc95d94fa 100644 --- a/po/update-metadata.sh +++ b/po/update-metadata.sh @@ -3,19 +3,24 @@ PROJECTPATHCONTAINMENT="../../containment" # containment path PROJECTPATHPLASMOID="../../plasmoid" # plasmoid path PROJECTPATHSHELL="../../shell" # shell path +PROJECTPATHCORONA="../../corona" # corona 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 ../corona +intltool-merge --quiet --desktop-style . ../../latte-dock.desktop.template "${PROJECTPATHCORONA}"/latte-dock.desktop +echo "latte-dock.desktop file for corona was updated..."