Hello community, here is the log from the commit of package kapptemplate for openSUSE:Factory checked in at 2014-08-25 11:01:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kapptemplate (Old) and /work/SRC/openSUSE:Factory/.kapptemplate.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kapptemplate" Changes: -------- --- /work/SRC/openSUSE:Factory/kapptemplate/kapptemplate.changes 2014-07-16 16:16:58.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kapptemplate.new/kapptemplate.changes 2014-08-25 11:02:50.000000000 +0200 @@ -1,0 +2,14 @@ +Fri Aug 15 09:08:04 UTC 2014 - [email protected] + +- Update to 4.14.0 + * KDE 4.14.0 SC Final Release + * See http://www.kde.org/announcements/4.13/ + +------------------------------------------------------------------- +Thu Jul 17 16:43:59 UTC 2014 - [email protected] + +- Update to 4.13.90 + * KDE 4.14 Beta 2 release + * See http://www.kde.org/announcements/announce-4.14-beta2.php + +------------------------------------------------------------------- Old: ---- kapptemplate-4.13.80.tar.xz New: ---- kapptemplate-4.14.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kapptemplate.spec ++++++ --- /var/tmp/diff_new_pack.eO9WaV/_old 2014-08-25 11:02:50.000000000 +0200 +++ /var/tmp/diff_new_pack.eO9WaV/_new 2014-08-25 11:02:50.000000000 +0200 @@ -22,7 +22,7 @@ License: GPL-2.0 and GFDL-1.2 Group: Development/Tools/IDE Url: http://www.kde.org/ -Version: 4.13.80 +Version: 4.14.0 Release: 0 Source0: %{name}-%{version}.tar.xz Patch1: desktop-files.diff ++++++ kapptemplate-4.13.80.tar.xz -> kapptemplate-4.14.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/CMakeLists.txt new/kapptemplate-4.14.0/CMakeLists.txt --- old/kapptemplate-4.13.80/CMakeLists.txt 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/CMakeLists.txt 2014-08-13 09:43:18.000000000 +0200 @@ -49,6 +49,7 @@ install(FILES default.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) install(FILES templates/C++/kapp4/kapp4.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) install(FILES templates/C++/kde-simple/kde-simple.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) +install(FILES templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) install(FILES templates/C++/plasmoid/plasma-applet.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) install(FILES templates/ruby/kderubyapp/kderubyapp.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) install(FILES templates/Python/pyqt4app/pyqt4app.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/index.html new/kapptemplate-4.14.0/index.html --- old/kapptemplate-4.13.80/index.html 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/index.html 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,357 @@ +diff --git a/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.ui b/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.ui +new file mode 100644 +index 0000000..adf8109 +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.ui +@@ -0,0 +1,28 @@ ++<?xml version="1.0" encoding="UTF-8"?> ++<ui version="4.0"> ++ <class>mainWidget</class> ++ <widget class="QWidget" name="mainWidget"> ++ <property name="geometry"> ++ <rect> ++ <x>0</x> ++ <y>0</y> ++ <width>400</width> ++ <height>300</height> ++ </rect> ++ </property> ++ <property name="windowTitle"> ++ <string>Form</string> ++ </property> ++ <layout class="QVBoxLayout" name="verticalLayout"> ++ <item> ++ <widget class="QLabel" name="label"> ++ <property name="text"> ++ <string>Hello KDE!</string> ++ </property> ++ </widget> ++ </item> ++ </layout> ++ </widget> ++ <resources/> ++ <connections/> ++</ui> +diff --git a/templates/C++/kde-frameworks5-simple/src/CMakeLists.txt b/templates/C++/kde-frameworks5-simple/src/CMakeLists.txt +new file mode 100644 +index 0000000..0b62376 +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/src/CMakeLists.txt +@@ -0,0 +1,17 @@ ++set( %{APPNAMELC}_SRCS ++ main.cpp ++ %{APPNAMELC}.cpp ++) ++ ++ki18n_wrap_ui(%{APPNAMELC}_SRCS %{APPNAMELC}.ui) ++ ++add_executable( %{APPNAMELC} ${%{APPNAMELC}_SRCS} ) ++ ++target_link_libraries( %{APPNAMELC} ++ Qt5::Widgets ++ KF5::CoreAddons ++ KF5::I18n ++) ++ ++install( TARGETS %{APPNAMELC} ${INSTALL_TARGETS_DEFAULT_ARGS} ) ++install( PROGRAMS %{APPNAMELC}.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) +diff --git a/templates/C++/kde-frameworks5-simple/src/main.cpp b/templates/C++/kde-frameworks5-simple/src/main.cpp +new file mode 100644 +index 0000000..305ee34 +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/src/main.cpp +@@ -0,0 +1,52 @@ ++/*************************************************************************** ++ * Copyright (C) %{CURRENT_YEAR} by %{AUTHOR} <%{EMAIL}> * ++ * * ++ * This program is free software; you can redistribute it and/or modify * ++ * it under the terms of the GNU General Public License as published by * ++ * the Free Software Foundation; either version 2 of the License, or * ++ * (at your option) any later version. * ++ * * ++ * This program is distributed in the hope that it will be useful, * ++ * but WITHOUT ANY WARRANTY; without even the implied warranty of * ++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * ++ * GNU General Public License for more details. * ++ * * ++ * You should have received a copy of the GNU General Public License * ++ * along with this program; if not, write to the * ++ * Free Software Foundation, Inc., * ++ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ++ ***************************************************************************/ ++ ++// application header ++#include "%{APPNAMELC}.h" ++// KDE headers ++#include <QApplication> ++#include <QCommandLineParser> ++#include <KAboutData> ++#include <KLocalizedString> ++ ++int main(int argc, char **argv) ++{ ++ QApplication application(argc, argv); ++ ++ KLocalizedString::setApplicationDomain("%{APPNAMELC}"); ++ KAboutData aboutData( QStringLiteral("%{APPNAMELC}"), ++ i18n("Simple App"), ++ QStringLiteral("0.1"), ++ i18n("A Simple Application written with KDE Frameworks"), ++ KAboutLicense::GPL, ++ i18n("(c) 20013-2014, %{AUTHOR} <%{EMAIL}>")); ++ ++ aboutData.addAuthor(i18n("%{AUTHOR}"),i18n("Author"), QStringLiteral("%{EMAIL}")); ++ aboutData.setProgramIconName("%{APPNAMELC}"); ++ QCommandLineParser parser; ++ parser.addHelpOption(); ++ parser.addVersionOption(); ++ aboutData.setupCommandLine(&parser); ++ parser.process(application); ++ aboutData.processCommandLine(&parser); ++ ++ %{APPNAME} *appwindow = new %{APPNAME}; ++ appwindow->show(); ++ return application.exec(); ++} +diff --git a/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.kdevtemplate b/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.kdevtemplate +new file mode 100644 +index 0000000..17042c0 +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.kdevtemplate +@@ -0,0 +1,7 @@ ++# KDE Config File ++[General] ++Name=Minimal C++ KDE Frameworks ++Comment=A very basic KDE Frameworks 5 GUI Application in C++ ++Category=KDE/Graphical ++Icon=kde-frameworks5-simple.png ++ShowFilesAfterGeneration=%{dest}/src/%{APPNAMELC}.cpp +diff --git a/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.png b/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.png +new file mode 100644 +index 0000000..0786edd +Binary files /dev/null and b/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.png differ +diff --git a/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.cpp b/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.cpp +new file mode 100644 +index 0000000..c99989a +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.cpp +@@ -0,0 +1,35 @@ ++/* ++ Copyright (C) %{CURRENT_YEAR} by %{AUTHOR} <%{EMAIL}> ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of ++ the License or (at your option) version 3 or any later version ++ accepted by the membership of KDE e.V. (or its successor approved ++ by the membership of KDE e.V.), which shall act as a proxy ++ defined in Section 14 of version 3 of the license. ++ ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program. If not, see <http://www.gnu.org/licenses/>. ++*/ ++ ++#include "%{APPNAMELC}.h" ++ ++%{APPNAME}::%{APPNAME}() ++ : QMainWindow() ++{ ++ QWidget *widget = new QWidget(this); ++ setCentralWidget(widget); ++ m_ui.setupUi(widget); ++} ++ ++%{APPNAME}::~%{APPNAME}() ++{ ++} ++ ++#include "%{APPNAMELC}.moc" +diff --git a/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.desktop b/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.desktop +new file mode 100644 +index 0000000..8ab9411 +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.desktop +@@ -0,0 +1,7 @@ ++[Desktop Entry] ++Name=%{APPNAME} ++Exec=%{APPNAMELC} ++Icon=%{APPNAMELC} ++Type=Application ++X-DocPath=%{APPNAMELC}/index.html ++GenericName=A Simple KDE Application +diff --git a/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.h b/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.h +new file mode 100644 +index 0000000..73d0b2b +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.h +@@ -0,0 +1,58 @@ ++/* ++ Copyright (C) %{CURRENT_YEAR} by %{AUTHOR} <%{EMAIL}> ++ ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of ++ the License or (at your option) version 3 or any later version ++ accepted by the membership of KDE e.V. (or its successor approved ++ by the membership of KDE e.V.), which shall act as a proxy ++ defined in Section 14 of version 3 of the license. ++ ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program. If not, see <http://www.gnu.org/licenses/>. ++*/ ++ ++#ifndef %{APPNAMEUC}_H ++#define %{APPNAMEUC}_H ++ ++ ++#include <QMainWindow> ++ ++#include "ui_%{APPNAMELC}.h" ++ ++ ++/** ++ * This class serves as the main window for %{APPNAME}. It handles the ++ * menus, toolbars and status bars. ++ * ++ * @short Main window class ++ * @author Your Name <[email protected]> ++ * @version 0.1 ++ */ ++class %{APPNAME} : public QMainWindow ++{ ++ Q_OBJECT ++public: ++ /** ++ * Default Constructor ++ */ ++ %{APPNAME}(); ++ ++ /** ++ * Default Destructor ++ */ ++ virtual ~%{APPNAME}(); ++ ++private: ++ // this is the name of the root widget inside our Ui file ++ // you can rename it in designer and then change it here ++ Ui::mainWidget m_ui; ++}; ++ ++#endif // _%{APPNAMEUC}_H_ +diff --git a/templates/C++/kde-frameworks5-simple/CMakeLists.txt b/templates/C++/kde-frameworks5-simple/CMakeLists.txt +new file mode 100644 +index 0000000..0da779c +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/CMakeLists.txt +@@ -0,0 +1,25 @@ ++project(%{APPNAMELC}) ++ ++cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR) ++set(QT_MIN_VERSION "5.3.0") ++ ++find_package(ECM 1.0.0 REQUIRED NO_MODULE) ++set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) ++ ++include(ECMInstallIcons) ++include(KDEInstallDirs) ++include(KDECMakeSettings) ++include(KDECompilerSettings) ++include(FeatureSummary) ++ ++find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Core Gui Widgets) ++ ++find_package(KF5 REQUIRED COMPONENTS ++ CoreAddons ++ I18n ++) ++ ++feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) ++ ++add_subdirectory(src) ++add_subdirectory(icons) +diff --git a/templates/C++/kde-frameworks5-simple/Messages.sh b/templates/C++/kde-frameworks5-simple/Messages.sh +new file mode 100644 +index 0000000..75a840b +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/Messages.sh +@@ -0,0 +1,4 @@ ++#! /usr/bin/env bash ++$EXTRACTRC `find . -name \*.ui -o -name \*.rc -o -name \*.kcfg` >> rc.cpp ++$XGETTEXT `find . -name \*.cpp` -o $podir/%{APPNAMELC}.pot ++rm -f rc.cpp +diff --git a/templates/C++/kde-frameworks5-simple/README b/templates/C++/kde-frameworks5-simple/README +new file mode 100644 +index 0000000..21a8f91 +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/README +@@ -0,0 +1,17 @@ ++How To Build This Template ++-=-=-=-=-=-=-=-=-=-=-=-=-= ++ ++--- On Unix: ++ ++cd <project_name_path> ++mkdir build ++cd build ++cmake -DCMAKE_INSTALL_PREFIX=$KDEDIRS -DCMAKE_BUILD_TYPE=Debug .. ++make ++make install or su -c 'make install' or sudo make install ++ ++where $KDEDIRS points to your KDE installation prefix. ++ ++Note: you can use another build path. Then cd in your build dir and: ++export KDE_SRC=path_to_your_src ++cmake $KDE_SRC -DCMAKE_INSTALL_PREFIX=$KDEDIRS -DCMAKE_BUILD_TYPE=Debug +diff --git a/templates/C++/kde-frameworks5-simple/icons/CMakeLists.txt b/templates/C++/kde-frameworks5-simple/icons/CMakeLists.txt +new file mode 100644 +index 0000000..832a8e5 +--- /dev/null ++++ b/templates/C++/kde-frameworks5-simple/icons/CMakeLists.txt +@@ -0,0 +1 @@ ++ecm_install_icons( ${ICON_INSTALL_DIR} ) +diff --git a/templates/C++/kde-frameworks5-simple/icons/hi16-apps-%{APPNAMELC}.png b/templates/C++/kde-frameworks5-simple/icons/hi16-apps-%{APPNAMELC}.png +new file mode 100644 +index 0000000..3d812df +Binary files /dev/null and b/templates/C++/kde-frameworks5-simple/icons/hi16-apps-%{APPNAMELC}.png differ +diff --git a/templates/C++/kde-frameworks5-simple/icons/hi32-apps-%{APPNAMELC}.png b/templates/C++/kde-frameworks5-simple/icons/hi32-apps-%{APPNAMELC}.png +new file mode 100644 +index 0000000..3f6bb9e +Binary files /dev/null and b/templates/C++/kde-frameworks5-simple/icons/hi32-apps-%{APPNAMELC}.png differ +diff --git a/templates/C++/kde-frameworks5-simple/icons/hi48-apps-%{APPNAMELC}.png b/templates/C++/kde-frameworks5-simple/icons/hi48-apps-%{APPNAMELC}.png +new file mode 100644 +index 0000000..4bd7f0c +Binary files /dev/null and b/templates/C++/kde-frameworks5-simple/icons/hi48-apps-%{APPNAMELC}.png differ +diff --git a/templates/C++/CMakeLists.txt b/templates/C++/CMakeLists.txt +index 668af48..6f31aa3 100644 +--- a/templates/C++/CMakeLists.txt ++++ b/templates/C++/CMakeLists.txt +@@ -2,6 +2,7 @@ set(apptemplate_DIRS + kapp4 + kapp4-qml + kde-simple ++ kde-frameworks5-simple + plasmoid + runner + flake +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 726f8ad..0c162c4 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -49,6 +49,7 @@ install( FILES kapptemplate.kcfg DESTINATION ${KCFG_INSTALL_DIR} ) + install(FILES default.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) + install(FILES templates/C++/kapp4/kapp4.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) + install(FILES templates/C++/kde-simple/kde-simple.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) ++install(FILES templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) + install(FILES templates/C++/plasmoid/plasma-applet.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) + install(FILES templates/ruby/kderubyapp/kderubyapp.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) + install(FILES templates/Python/pyqt4app/pyqt4app.png DESTINATION ${DATA_INSTALL_DIR}/kdevappwizard/template_previews) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/CMakeLists.txt new/kapptemplate-4.14.0/templates/C++/CMakeLists.txt --- old/kapptemplate-4.13.80/templates/C++/CMakeLists.txt 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/CMakeLists.txt 2014-08-13 09:43:18.000000000 +0200 @@ -2,6 +2,7 @@ kapp4 kapp4-qml kde-simple + kde-frameworks5-simple plasmoid runner flake diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/akonadiresource/akonadiresource.kdevtemplate new/kapptemplate-4.14.0/templates/C++/akonadiresource/akonadiresource.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/akonadiresource/akonadiresource.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/akonadiresource/akonadiresource.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=C++ Name[de]=C++ Name[el]=C++ +Name[en_GB]=C++ Name[es]=C++ Name[et]=C++ Name[fi]=C++ @@ -48,6 +49,7 @@ Comment[da]=Skabelon til Akonadi-ressource. En skabelon til en Akonadi PIM-dataressource Comment[de]=Vorlage für Akonadi-Ressource. Vorlage für eine Datenressource für das Akonadi-PIM-Framework Comment[el]=Akonadi Resource Template. Ένα πρότυπο για έναν πόρο δεδομένων Akonadi PIM +Comment[en_GB]=Akonadi Resource Template. A template for an Akonadi PIM data resource Comment[es]=Plantilla de recurso de Akonadi. Una plantilla para un recurso de datos PIM de Akonadi Comment[et]=Akonadi ressursi mall. Akonadi PIM andmete ressursi mall. Comment[fi]=Akonadi-resurssimalli. Malli Akonadin PIM-dataresurssille. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/akonadiserializer/akonadiserializer.kdevtemplate new/kapptemplate-4.14.0/templates/C++/akonadiserializer/akonadiserializer.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/akonadiserializer/akonadiserializer.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/akonadiserializer/akonadiserializer.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=C++ Name[de]=C++ Name[el]=C++ +Name[en_GB]=C++ Name[es]=C++ Name[et]=C++ Name[fi]=C++ @@ -48,6 +49,7 @@ Comment[da]=Skabelon til Akonadi-serializer. En skabelon til et Akonadi data-serializer-plugin Comment[de]=Vorlage für Akonadi-Serialisierer. Eine Vorlage für einen Datenserialisierer für das Akonadi-PIM-Framework Comment[el]=Akonadi Serializer Template. Ένα πρότυπο για ένα πρόσθετο διαχειριστή του Akonadi +Comment[en_GB]=Akonadi Serializer Template. A template for an Akonadi data serializer plugin Comment[es]=Plantilla de serializador de Akonadi. Una plantilla para un complemento serializador de datos de Akonadi Comment[et]=Akonadi jadasti mall. Akonadi andmete jadasti plugina mall Comment[fi]=Akonadi-serialisointimalli. Malli Akonadin datan serialisointiliitännäiselle. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/flake/flake.kdevtemplate new/kapptemplate-4.14.0/templates/C++/flake/flake.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/flake/flake.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/flake/flake.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=C++ Name[de]=C++ Name[el]=C++ +Name[en_GB]=C++ Name[es]=C++ Name[et]=C++ Name[fi]=C++ @@ -48,6 +49,7 @@ Comment[da]=Skabelon til KOffice-form (flake). En skabelon til KOffice-plugin med en form, et værktøj og en dokker (brug venligst DetteFormat til projektnavnet) Comment[de]=KOffice-Objektvorlage (Flake). Eine Vorlage für KOffice-Module mit einem Objekt, einem Werkzeug und einer Anzeige („DiesesFormat“ für Projektnamen verwenden) Comment[el]=KOffice Shape Template (Flake). Ένα πρότυπο προσθέτου KOffice με σχήμα, εργαλείο και προσάρτηση (χρησιμοποιήστε ThisFormat ως όνομα του έργου) +Comment[en_GB]=KOffice Shape Template (Flake). A KOffice plugin template with a shape, a tool and a docker (please use ThisFormat for the project name) Comment[es]=Plantilla de forma para KOffice (Flake). Una plantilla de complemento para KOffice con una forma, una herramienta y un anclaje (use EsteFormato para el nombre del proyecto) Comment[et]=KOffice'i kujundi mall (Flake). KOffice'i plugina mall kujundi, tööriista ja dokiga (palun kasuta projekti nime puhul kuju SeeVorming) Comment[fi]=KOffice-muotomalli (Flake). KOffice-liitännäismalli muodolla, työkalulla ja telakalla (kirjoita projektin nimi TälläTavalla). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kapp4/kapp4.kdevtemplate new/kapptemplate-4.14.0/templates/C++/kapp4/kapp4.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/kapp4/kapp4.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/kapp4/kapp4.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -9,6 +9,7 @@ Name[da]=C++ KDE Name[de]=C++ KDE Name[el]=C++ KDE +Name[en_GB]=C++ KDE Name[es]=C++ KDE Name[et]=C++ KDE Name[fi]=KDE C++-sovellus @@ -47,6 +48,7 @@ Comment[da]=Grafisk KDE 4-program. Simpel KDE4-skabelon baseret på CMake. Den nedarver fra XMLGuiWindow og demonstrerer hvordan KConfig XT bruges Comment[de]=Grafische KDE-4-Anwendung. Einfache KDE-4-Vorlage basierend auf CMake. Abgeleitet von XMLGuiWindow und demonstriert, wie KConfig XT zu verwenden ist. Comment[el]=KDE 4 GUI Application. Απλό πρότυπο του KDE4 βασισμένο στο CMake, προέρχεται από το XMLGuiWindow και δείχνει πως χρησιμοποιείται το KConfig XT +Comment[en_GB]=KDE 4 GUI Application. KDE4 simple template based on CMake, inherits from XMLGuiWindow and demonstrates how to use KConfig XT Comment[es]=Aplicación de interfaz gráfica para KDE 4. Sencilla plantilla para KDE 4 basada en CMake, que hereda de XMLGuiWindow y demuestra cómo usar KConfig XT Comment[et]=KDE4 GUI rakendus. Lihtne KDE4 mall CMake'i põhjal, XMLGuiWindow järglane, mis näitab, kuidas kasutada KConfig XT-d Comment[fi]=KDE 4 GUI-sovellus. CMakeen perustuva yksinkertainen KDE4-malli, joka periytyy XMLGuiWindow’sta. Esittelee, miten käyttää KConfig XT:tä. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kapp4-qml/kapp4-qml.kdevtemplate new/kapptemplate-4.14.0/templates/C++/kapp4-qml/kapp4-qml.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/kapp4-qml/kapp4-qml.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/kapp4-qml/kapp4-qml.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=QML-program Name[de]=QML-Anwendung Name[el]=Εφαρμογή QML +Name[en_GB]=QML Application Name[es]=Aplicación QML Name[et]=QML rakendus Name[fi]=QML-sovellus @@ -45,6 +46,7 @@ Comment[da]=Simpel KDE4-skabelon baseret på CMake. Den nedarver fra XMLGuiWindow og demonstrerer hvordan KConfig XT og QML bruges Comment[de]=Einfache KDE-4-Vorlage basierend auf CMake. Abgeleitet von XMLGuiWindow und demonstriert, wie KConfig XT und QML zu verwenden sind. Comment[el]=Απλό πρότυπο του KDE4 βασισμένο στο CMake, προέρχεται από το XMLGuiWindow και δείχνει πώς χρησιμοποιείται το KConfig XT και το QML +Comment[en_GB]=KDE4 simple template based on CMake, inherits from XMLGuiWindow and demonstrates how to use KConfig XT and QML Comment[es]=Sencilla plantilla para KDE 4 basada en CMake, que hereda de XMLGuiWindow y demuestra cómo usar KConfig XT y QML Comment[et]=Lihtne KDE4 mall CMake'i põhjal, XMLGuiWindow järglane, mis näitab, kuidas kasutada KConfig XT-d ja QML-i Comment[fi]=CMakeen perustuva yksinkertainen KDE4-malli, joka periytyy XMLGuiWindow’sta. Esittelee, miten käyttää KConfig XT:tä ja QML:ää. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/CMakeLists.txt new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/CMakeLists.txt --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/CMakeLists.txt 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,25 @@ +project(%{APPNAMELC}) + +cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR) +set(QT_MIN_VERSION "5.3.0") + +find_package(ECM 1.0.0 REQUIRED NO_MODULE) +set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake) + +include(ECMInstallIcons) +include(KDEInstallDirs) +include(KDECMakeSettings) +include(KDECompilerSettings) +include(FeatureSummary) + +find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Core Gui Widgets) + +find_package(KF5 REQUIRED COMPONENTS + CoreAddons + I18n +) + +feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) + +add_subdirectory(src) +add_subdirectory(icons) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/Messages.sh new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/Messages.sh --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/Messages.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/Messages.sh 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,4 @@ +#! /usr/bin/env bash +$EXTRACTRC `find . -name \*.ui -o -name \*.rc -o -name \*.kcfg` >> rc.cpp +$XGETTEXT `find . -name \*.cpp` -o $podir/%{APPNAMELC}.pot +rm -f rc.cpp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/README new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/README --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/README 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/README 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,17 @@ +How To Build This Template +-=-=-=-=-=-=-=-=-=-=-=-=-= + +--- On Unix: + +cd <project_name_path> +mkdir build +cd build +cmake -DCMAKE_INSTALL_PREFIX=$KDEDIRS -DCMAKE_BUILD_TYPE=Debug .. +make +make install or su -c 'make install' or sudo make install + +where $KDEDIRS points to your KDE installation prefix. + +Note: you can use another build path. Then cd in your build dir and: +export KDE_SRC=path_to_your_src +cmake $KDE_SRC -DCMAKE_INSTALL_PREFIX=$KDEDIRS -DCMAKE_BUILD_TYPE=Debug diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/icons/CMakeLists.txt new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/icons/CMakeLists.txt --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/icons/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/icons/CMakeLists.txt 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1 @@ +ecm_install_icons( ${ICON_INSTALL_DIR} ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.kdevtemplate new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.kdevtemplate 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,40 @@ +# KDE Config File +[General] +Name=Minimal C++ KDE Frameworks +Name[ca]=C++ mínim de KDE Frameworks +Name[da]=Minimalt C++ KDE Frameworks +Name[de]=Einfache KDE-Frameworks C++-Anwendung +Name[en_GB]=Minimal C++ KDE Frameworks +Name[es]=Frameworks de KDE en C++ mínimo +Name[et]=Minimaalne C++ KDE Frameworks +Name[fi]=Minimaalinen C++ KDE Frameworks -sovellus +Name[it]=C++ KDE Frameworks minimo +Name[nl]=Minimale C++ KDE Frameworks +Name[pl]=Minimalny C++ Szkieletów KDE +Name[pt]=C++ para as Plataformas do KDE Mínima +Name[pt_BR]=C++ mínimo para KDE Frameworks +Name[sk]=Minimálne C++ KDE Frameworks +Name[sv]=Minimal C++ KDE Ramverk +Name[uk]=Мінімальна C++, KDE Frameworks +Name[x-test]=xxMinimal C++ KDE Frameworksxx +Comment=A very basic KDE Frameworks 5 GUI Application in C++ +Comment[ca]=Una aplicació IGU molt bàsica de les Frameworks 5 del KDE en C++ +Comment[cs]=Úplně základní GUI aplikace KDE Frameworks 5 v C++ +Comment[da]=Et meget basalt grafisk KDE Frameworks 5-program i C++ +Comment[de]=Eine sehr einfache KDE Frameworks 5 mit grafischer Oberfläche in C++ +Comment[en_GB]=A very basic KDE Frameworks 5 GUI Application in C++ +Comment[es]=Una aplicación en C++ muy básica con interfaz gráfica de Frameworks 5 para KDE +Comment[et]=Väga lihtne KDE Frameworks 5 GUI rakendus C++ keeles +Comment[fi]=Erittäin yksinkertainen KDE Frameworks 5 GUI-sovellus C++:lla +Comment[it]=Una semplicissima applicazione grafica di KDE Frameworks in C++ +Comment[nl]=Een zeer basale KDE Frameworks 5 GUI-toepassing in C++ +Comment[pl]=Bardzo podstawowy program graficznego interfejsu użytkownika dla Szkieletów KDE 5 w C++ +Comment[pt]=Uma aplicação gráfica muito básica das Plataformas do KDE em C++ +Comment[pt_BR]=Um aplicativo gráfico muito básico do KDE Frameworks 5 em C++ +Comment[sk]=Veľmi základná KDE Frameworks 5 GUI aplikácia v C++ +Comment[sv]=Ett mycket enkelt KDE Ramverk 5 grafiskt gränssnitt i C++ +Comment[uk]=Мінімалістична програма з графічним інтерфейсом KDE Frameworks 5 на C++ +Comment[x-test]=xxA very basic KDE Frameworks 5 GUI Application in C++xx +Category=KDE/Graphical +Icon=kde-frameworks5-simple.png +ShowFilesAfterGeneration=%{dest}/src/%{APPNAMELC}.cpp Files old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.png and new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/kde-frameworks5-simple.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.cpp new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.cpp --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.cpp 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.cpp 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,35 @@ +/* + Copyright (C) %{CURRENT_YEAR} by %{AUTHOR} <%{EMAIL}> + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License or (at your option) version 3 or any later version + accepted by the membership of KDE e.V. (or its successor approved + by the membership of KDE e.V.), which shall act as a proxy + defined in Section 14 of version 3 of the license. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#include "%{APPNAMELC}.h" + +%{APPNAME}::%{APPNAME}() + : QMainWindow() +{ + QWidget *widget = new QWidget(this); + setCentralWidget(widget); + m_ui.setupUi(widget); +} + +%{APPNAME}::~%{APPNAME}() +{ +} + +#include "%{APPNAMELC}.moc" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.desktop new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.desktop --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.desktop 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.desktop 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,94 @@ +[Desktop Entry] +Name=%{APPNAME} +Name[ast]=%{APPNAME} +Name[bg]=%{APPNAME} +Name[bs]=%{APPNAME} +Name[ca]=%{APPNAME} +Name[ca@valencia]=%{APPNAME} +Name[cs]=%{APPNAME} +Name[da]=%{APPNAME} +Name[de]=%{APPNAME} +Name[el]=%{APPNAME} +Name[en_GB]=%{APPNAME} +Name[eo]=%{APPNAME} +Name[es]=%{APPNAME} +Name[et]=%{APPNAME} +Name[fi]=%{APPNAME} +Name[fr]=%{APPNAME} +Name[ga]=%{APPNAME} +Name[gl]=%{APPNAME} +Name[hu]=%{APPNAME} +Name[it]=%{APPNAME} +Name[ja]=%{APPNAME} +Name[kk]=%{APPNAME} +Name[km]=%{APPNAME} +Name[ko]=%{APPNAME} +Name[lt]=%{APPNAME} +Name[lv]=%{APPNAME} +Name[nb]=%{APPNAME} +Name[nds]=%{APPNAME} +Name[nl]=%{APPNAME} +Name[nn]=%{APPNAME} +Name[pa]=%{APPNAME} +Name[pl]=%{APPNAME} +Name[pt]=%{APPNAME} +Name[pt_BR]=%{APPNAME} +Name[ro]=%{APPNAME} +Name[ru]=%{APPNAME} +Name[sk]=%{APPNAME} +Name[sl]=%{APPNAME} +Name[sq]=%{APPNAME} +Name[sr]=%{APPNAME} +Name[sr@ijekavian]=%{APPNAME} +Name[sr@ijekavianlatin]=%{APPNAME} +Name[sr@latin]=%{APPNAME} +Name[sv]=%{APPNAME} +Name[tr]=%{APPNAME} +Name[ug]=%{APPNAME} +Name[uk]=%{APPNAME} +Name[x-test]=xx%{APPNAME}xx +Name[zh_CN]=%{APPNAME} +Name[zh_TW]=%{APPNAME} +Exec=%{APPNAMELC} +Icon=%{APPNAMELC} +Type=Application +X-DocPath=%{APPNAMELC}/index.html +GenericName=A Simple KDE Application +GenericName[bs]=Prosti KDE program +GenericName[ca]=Una aplicació senzilla del KDE +GenericName[ca@valencia]=Una aplicació senzilla del KDE +GenericName[cs]=Jednoduchá aplikace KDE +GenericName[da]=Et simpelt KDE-program +GenericName[de]=Eine einfache KDE-Anwendung +GenericName[el]=Μια απλή εφαρμογή KDE +GenericName[en_GB]=A Simple KDE Application +GenericName[es]=Una aplicación sencilla para KDE +GenericName[et]=Lihtne KDE rakendus +GenericName[fi]=Yksinkertainen KDE-sovellus +GenericName[fr]=Une application simple pour KDE +GenericName[ga]=Feidhmchlár Simplí KDE +GenericName[gl]=Aplicativo de KDE sinxelo +GenericName[hu]=Egyszerű KDE alkalmazás +GenericName[it]=Una semplice applicazione di KDE +GenericName[kk]=Қарапайым KDE қолданбасы +GenericName[ko]=간단한 KDE 프로그램 +GenericName[lt]=Paprasta KDE programa +GenericName[nb]=Et enkelt KDE4-program +GenericName[nl]=Een eenvoudige KDE-toepassing +GenericName[pa]=ਸਧਾਰਨ KDE ਐਪਲੀਕੇਸ਼ਨ +GenericName[pl]=Prosty program KDE +GenericName[pt]=Uma Aplicação Simples do KDE +GenericName[pt_BR]=Um aplicativo simples do KDE +GenericName[ru]=Простое приложение KDE +GenericName[sk]=Jednoduchá KDE aplikácia +GenericName[sl]=Preprost program za KDE +GenericName[sr]=Једноставни КДЕ програм +GenericName[sr@ijekavian]=Једноставни КДЕ програм +GenericName[sr@ijekavianlatin]=Jednostavni KDE program +GenericName[sr@latin]=Jednostavni KDE program +GenericName[sv]=Ett enkelt KDE-program +GenericName[tr]=Baist bir KDE4 Uygulaması +GenericName[uk]=Проста програма для KDE +GenericName[x-test]=xxA Simple KDE Applicationxx +GenericName[zh_CN]=简单的 KDE 应用程序 +GenericName[zh_TW]=簡單的 KDE 應用程式 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.h new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.h --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.h 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.h 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,58 @@ +/* + Copyright (C) %{CURRENT_YEAR} by %{AUTHOR} <%{EMAIL}> + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License or (at your option) version 3 or any later version + accepted by the membership of KDE e.V. (or its successor approved + by the membership of KDE e.V.), which shall act as a proxy + defined in Section 14 of version 3 of the license. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#ifndef %{APPNAMEUC}_H +#define %{APPNAMEUC}_H + + +#include <QMainWindow> + +#include "ui_%{APPNAMELC}.h" + + +/** + * This class serves as the main window for %{APPNAME}. It handles the + * menus, toolbars and status bars. + * + * @short Main window class + * @author Your Name <[email protected]> + * @version 0.1 + */ +class %{APPNAME} : public QMainWindow +{ + Q_OBJECT +public: + /** + * Default Constructor + */ + %{APPNAME}(); + + /** + * Default Destructor + */ + virtual ~%{APPNAME}(); + +private: + // this is the name of the root widget inside our Ui file + // you can rename it in designer and then change it here + Ui::mainWidget m_ui; +}; + +#endif // _%{APPNAMEUC}_H_ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.ui new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.ui --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.ui 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/%{APPNAMELC}.ui 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>mainWidget</class> + <widget class="QWidget" name="mainWidget"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>400</width> + <height>300</height> + </rect> + </property> + <property name="windowTitle"> + <string>Form</string> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QLabel" name="label"> + <property name="text"> + <string>Hello KDE!</string> + </property> + </widget> + </item> + </layout> + </widget> + <resources/> + <connections/> +</ui> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/CMakeLists.txt new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/CMakeLists.txt --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/CMakeLists.txt 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,17 @@ +set( %{APPNAMELC}_SRCS + main.cpp + %{APPNAMELC}.cpp +) + +ki18n_wrap_ui(%{APPNAMELC}_SRCS %{APPNAMELC}.ui) + +add_executable( %{APPNAMELC} ${%{APPNAMELC}_SRCS} ) + +target_link_libraries( %{APPNAMELC} + Qt5::Widgets + KF5::CoreAddons + KF5::I18n +) + +install( TARGETS %{APPNAMELC} ${INSTALL_TARGETS_DEFAULT_ARGS} ) +install( PROGRAMS %{APPNAMELC}.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/main.cpp new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/main.cpp --- old/kapptemplate-4.13.80/templates/C++/kde-frameworks5-simple/src/main.cpp 1970-01-01 01:00:00.000000000 +0100 +++ new/kapptemplate-4.14.0/templates/C++/kde-frameworks5-simple/src/main.cpp 2014-08-13 09:43:18.000000000 +0200 @@ -0,0 +1,52 @@ +/*************************************************************************** + * Copyright (C) %{CURRENT_YEAR} by %{AUTHOR} <%{EMAIL}> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * + ***************************************************************************/ + +// application header +#include "%{APPNAMELC}.h" +// KDE headers +#include <QApplication> +#include <QCommandLineParser> +#include <KAboutData> +#include <KLocalizedString> + +int main(int argc, char **argv) +{ + QApplication application(argc, argv); + + KLocalizedString::setApplicationDomain("%{APPNAMELC}"); + KAboutData aboutData( QStringLiteral("%{APPNAMELC}"), + i18n("Simple App"), + QStringLiteral("0.1"), + i18n("A Simple Application written with KDE Frameworks"), + KAboutLicense::GPL, + i18n("(c) 20013-2014, %{AUTHOR} <%{EMAIL}>")); + + aboutData.addAuthor(i18n("%{AUTHOR}"),i18n("Author"), QStringLiteral("%{EMAIL}")); + aboutData.setProgramIconName("%{APPNAMELC}"); + QCommandLineParser parser; + parser.addHelpOption(); + parser.addVersionOption(); + aboutData.setupCommandLine(&parser); + parser.process(application); + aboutData.processCommandLine(&parser); + + %{APPNAME} *appwindow = new %{APPNAME}; + appwindow->show(); + return application.exec(); +} diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-simple/kde-simple.kdevtemplate new/kapptemplate-4.14.0/templates/C++/kde-simple/kde-simple.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/kde-simple/kde-simple.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/kde-simple/kde-simple.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -7,6 +7,7 @@ Name[da]=Minimalt C++ KDE Name[de]=Einfache KDE-C++-Anwendung Name[el]=Minimal C++ KDE +Name[en_GB]=Minimal C++ KDE Name[es]=C++ KDE mínimo Name[et]=Minimaalne C++ KDE Name[fi]=Minimaalinen KDE C++-sovellus @@ -44,6 +45,7 @@ Comment[da]=Et meget basalt grafisk KDE-program i C++ Comment[de]=Eine sehr einfache KDE-Anwendung mit grafischer Oberfläche in C++ Comment[el]=Μια βασικού επιπέδου GUI εφαρμογή για το KDE σε C++ +Comment[en_GB]=A very basic KDE GUI Application in C++ Comment[es]=Una aplicación en C++ muy básica con interfaz gráfica para KDE Comment[et]=Väga lihtne KDE GUI rakendus C++ keeles Comment[fi]=Erittäin yksinkertainen KDE GUI-sovellus C++:lla diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kde-simple/src/%{APPNAMELC}.desktop new/kapptemplate-4.14.0/templates/C++/kde-simple/src/%{APPNAMELC}.desktop --- old/kapptemplate-4.13.80/templates/C++/kde-simple/src/%{APPNAMELC}.desktop 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/kde-simple/src/%{APPNAMELC}.desktop 2014-08-13 09:43:18.000000000 +0200 @@ -61,6 +61,7 @@ GenericName[da]=Et simpelt KDE-program GenericName[de]=Eine einfache KDE-Anwendung GenericName[el]=Μια απλή εφαρμογή KDE +GenericName[en_GB]=A Simple KDE Application GenericName[es]=Una aplicación sencilla para KDE GenericName[et]=Lihtne KDE rakendus GenericName[fi]=Yksinkertainen KDE-sovellus diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kofficetext/kofficetext.kdevtemplate new/kapptemplate-4.14.0/templates/C++/kofficetext/kofficetext.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/kofficetext/kofficetext.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/kofficetext/kofficetext.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=C++ Name[de]=C++ Name[el]=C++ +Name[en_GB]=C++ Name[es]=C++ Name[et]=C++ Name[fi]=C++ @@ -48,6 +49,7 @@ Comment[da]=Skabelon til KOffice tekst-plugin. En skabelon til KOffice-plugin til at tilføje nye funktioner til at ændre tekst (brug DetteFormat til projektnavnet) Comment[de]=Vorlage für KOffice-Text-Modul. Eine Vorlage für KOffice-Module zum Hinzufügen neuer Funktionen zur Textänderung („DiesesFormat“ für den Projektnamen verwenden) Comment[el]=KOffice Text-Plugin Template. Ένα πρότυπο πρόσθετου του KOffice για την προσθήκη νέων λειτουργιών τροποποίησης κειμένου (χρησιμοποιήστε ThisFormat ως όνομα του έργου) +Comment[en_GB]=KOffice Text-Plugin Template. A KOffice plugin template to add new features for modifying text (use ThisFormat for the project name) Comment[es]=Plantilla de complemento de texto para KOffice. Una plantilla de complemento para KOffice que añade nuevas funciones de modificación de texto (use EsteFormato en el nombre del proyecto) Comment[et]=KOffice'i tekstiplugina mall. KOffice'i plugina mall uute omaduste lisamiseks teksti muutmiseks (palun kasuta projekti nime puhul kuju SeeVorming) Comment[fi]=KOffice tekstiliitännäismalli. KOffice-liitännäismalli uusien tekstin muokkaamisominaisuuksien lisäämiseksi (kirjoita projektin nimi TälläTavalla). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/konqplugin/konqplugin.kdevtemplate new/kapptemplate-4.14.0/templates/C++/konqplugin/konqplugin.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/konqplugin/konqplugin.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/konqplugin/konqplugin.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=C++ Name[de]=C++ Name[el]=C++ +Name[en_GB]=C++ Name[es]=C++ Name[et]=C++ Name[fi]=C++ @@ -48,6 +49,7 @@ Comment[da]=KDE 4 Konqueror-plugin. Simpel KDE4-skabelon baseret på CMake. Den nedarver fra KParts::Plugin og demonstrerer hvordan et konqueror-plugin skrives Comment[de]=Vorlage für KDE-4-Konqueror-Modul. Einfache KDE-4-Vorlage basierend auf CMake. Abgeleitet von KParts::Plugin und demonstriert, wie ein Konqueror-Modul zu schreiben ist. Comment[el]=KDE 4 Konqueror plugin. Απλό πρότυπο του KDE4 βασισμένο στο CMake, προέρχεται από το KParts::Plugin και δείχνει πώς να γράψετε ένα πρόσθετο για τον konqueror +Comment[en_GB]=KDE 4 Konqueror plugin. KDE4 simple template based on CMake, inherits from KParts::Plugin and demonstrates how to write a konqueror plugin Comment[es]=Complemento de Konqueror para KDE 4. Sencilla plantilla para KDE4 basada en CMake, que hereda de KParts::Plugin y demuestra cómo escribir un complemento para Konqueror Comment[et]=KDE4 Konquerori plugin. Lihtne KDE4 mall CMake'i põhjal, KParts::Plugin järglane, mis näitab, kuidas kirjutada Konquerori pluginat Comment[fi]=KDE 4 Konqueror-liitännäinen. CMakeen perustuva yksinkertainen KDE4-malli, joka periytyy KParts::Plugin-luokasta ja esittelee, kuinka konqueror-liitännäinen kirjoitetaan. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/kpartapp/kpartapp.kdevtemplate new/kapptemplate-4.14.0/templates/C++/kpartapp/kpartapp.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/kpartapp/kpartapp.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/kpartapp/kpartapp.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=C++ Name[de]=C++ Name[el]=C++ +Name[en_GB]=C++ Name[es]=C++ Name[et]=C++ Name[fi]=C++ @@ -48,6 +49,7 @@ Comment[da]=KDE4 KPart-program. Simpel KDE4-skabelon baseret på CMake. Den nedarver fra XMLGuiWindow og demonstrerer hvordan KPart bruges Comment[de]=Vorlage für KDE-4-KPart-Anwendung. Einfache KDE-4-Vorlage basierend auf CMake. Abgeleitet von XMLGuiWindow und demonstriert, wie KPart zu verwenden ist. Comment[el]=KDE 4 KPart Application. Απλό πρότυπο του KDE4 βασισμένο στο CMake, προέρχεται από το XMLGuiWindow και δείχνει πώς χρησιμοποιείται το KPart +Comment[en_GB]=KDE 4 KPart Application. KDE4 simple template based on CMake, inherits from XMLGuiWindow and demonstrates how to use KPart Comment[es]=Aplicación KPart para KDE 4. Sencilla plantilla para KDE4 basada en CMake, que hereda de XMLGuiWindow y demuestra cómo usar KPart Comment[et]=KDE4 KParti rakendus. Lihtne KDE4 rakendus CMake'i põhjal, XMLGuiWindow järglane, mis näitab, kuidas kasutada KParti Comment[fi]=KDE 4 KPart-sovellus. CMakeen perustuva yksinkertainen KDE4-malli, joka periytyy XMLGuiWindow’sta ja esittelee, miten käyttää KPartia. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/ktexteditor/ktexteditor.kdevtemplate new/kapptemplate-4.14.0/templates/C++/ktexteditor/ktexteditor.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/ktexteditor/ktexteditor.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/ktexteditor/ktexteditor.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=C++ Name[de]=C++ Name[el]=C++ +Name[en_GB]=C++ Name[es]=C++ Name[et]=C++ Name[fi]=C++ @@ -48,6 +49,7 @@ Comment[da]=Skabelon til KTextEditor-plugin. En skabelon til KTextEditor-plugin til at udføre særlige handlinger på tekst i KWrite, Kate, KDevelop osv. (brug DetteFormat til projektnavnet) Comment[de]=Vorlage für KTextEditor-Modul. Eine Vorlage für KTextEditor-Module zur Ausführung spezieller Aufgaben an Texten in KWrite, Kate, KDevelop usw. („DiesesFormat“ für den Projektnamen verwenden) Comment[el]=KTextEditor Plugin Template. Ένα πρότυπο προσθέτου KTextEditor για την πραγματοποίηση ειδικών λειτουργιών σε κείμενο με KWrite, Kate, KDevelop κτλ. (χρησιμοποιήστε ThisFormat ως όνομα του έργου) +Comment[en_GB]=KTextEditor Plugin Template. A KTextEditor plugin template to perform special operations on text in KWrite, Kate, KDevelop etc. (use ThisFormat for the project name) Comment[es]=Plantilla de complemento para KTextEditor. Un complemento de KTextEditor para realizar operaciones especiales sobre el texto en KWrite, Kate, KDevelop, etc. (use EsteFormato para el nombre del proyecto) Comment[et]=KTextEditori plugina mall. KTextEditori plugina mall eritoimingute sooritamiseks tekstiga rakendustes KWrite, Kate, KDevelop jne. (palun kasuta projekti nime puhul kuju SeeVorming) Comment[fi]=KTextEditor-liitännäismalli. KTextEditor-liitännäismalli erikoistoimintojen suorittamiseksi KWritessa, Katessa, KDevelopissa jne. (kirjoita projektin nimi TälläTavalla). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/plasmoid/plasmoid.kdevtemplate new/kapptemplate-4.14.0/templates/C++/plasmoid/plasmoid.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/plasmoid/plasmoid.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/plasmoid/plasmoid.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=C++ Name[de]=C++ Name[el]=C++ +Name[en_GB]=C++ Name[es]=C++ Name[et]=C++ Name[fi]=C++ @@ -48,6 +49,7 @@ Comment[da]=Skabelon til Plasma-applet. En skabelon til en Plasma-applet, som viser et ikon og en tekst Comment[de]=Vorlage für Plasma-Miniprogramm. Eine Vorlage für ein Plasma-Miniprogramm, das ein Symbol und einen Text anzeigt Comment[el]=Plasma Applet Template. Ένα πρότυπο ενός πλασμοειδούς που εμφανίζει ένα εικονίδιο και ένα κείμενο +Comment[en_GB]=Plasma Applet Template. A plasma applet template displaying an icon and a text Comment[es]=Plantilla de miniaplicación para Plasma. Una plantilla de miniaplicación para Plasma que muestra un icono y un texto Comment[et]=Plasma apleti mall. Plasma apleti mall, näitab ikooni ja teksti Comment[fi]=Plasma-sovelmamalli. Plasma-sovelmamalli, joka näyttää kuvakkeen ja tekstiä. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/qmake_qt4guiapp/qmake_qt4guiapp.kdevtemplate new/kapptemplate-4.14.0/templates/C++/qmake_qt4guiapp/qmake_qt4guiapp.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/qmake_qt4guiapp/qmake_qt4guiapp.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/qmake_qt4guiapp/qmake_qt4guiapp.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=Qt - QMake C++ Name[de]=Qt - QMake C++ Name[el]=Qt - QMake C++ +Name[en_GB]=Qt - QMake C++ Name[es]=Qt - QMake C++ Name[et]=Qt - QMake C++ Name[fi]=Qt – QMake C++ -sovellus @@ -44,6 +45,7 @@ Comment[da]=Grafisk Qt4-program. Genererer et QMake-/Qt4-baseret program med grafisk brugerflade (kompatibel på tværs af platforme) Comment[de]=Vorlage für grafische Qt-4-Anwendung. Erstellt eine auf QMake/Qt 4 basierende Anwendung mit grafischer Benutzeroberfläche (plattformübergreifend) Comment[el]=Qt4 GUI Application. Δημιουργεί μια εφαρμογή βασισμένη στο QMake/Qt4 με γραφικό περιβάλλον (συμβατή με πολλαπλές πλατφόρμες) +Comment[en_GB]=Qt4 GUI Application. Generate a QMake/Qt4 based application with graphical user interface (crossplatform compatible) Comment[es]=Aplicación con interfaz gráfica en Qt4. Genera una aplicación basada en QMake/Qt4 con interfaz gráfica de usuario (compatible multiplataforma) Comment[et]=Qt4 GUI rakendus. QMake/Qt4 põhise rakenduse loomine graafilise kasutajaliidesega (ühildub paljude platvormidega) Comment[fi]=Qt4 GUI-sovellus. Tuottaa QMake/Qt4-perustaisen sovelluksen graafisella käyttöliittymällä (toimii useissa käyttöjärjestelmissä). diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/C++/runner/runner.kdevtemplate new/kapptemplate-4.14.0/templates/C++/runner/runner.kdevtemplate --- old/kapptemplate-4.13.80/templates/C++/runner/runner.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/C++/runner/runner.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=C++ Name[de]=C++ Name[el]=C++ +Name[en_GB]=C++ Name[es]=C++ Name[et]=C++ Name[fi]=C++ @@ -48,6 +49,7 @@ Comment[da]=Skabelon til Plasma-runner. En skabelon til plasma-runner Comment[de]=Eine Vorlage für einen Plasma-Runner Comment[el]=Plasma Runner Template. Ένα πρότυπο εκτελεστή plasma +Comment[en_GB]=Plasma Runner Template. A plasma runner template Comment[es]=Plantilla de lanzador para Plasma. Una plantilla de lanzador para Plasma Comment[et]=Plasma käivitaja mall. Plasma käivitaja mall Comment[fi]=Plasma-suoritusohjelmamalli. Plasma-suoritusohjelmamalli (engl. Plasma Runner) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/Python/pykde4app/pykde4app.kdevtemplate new/kapptemplate-4.14.0/templates/Python/pykde4app/pykde4app.kdevtemplate --- old/kapptemplate-4.13.80/templates/Python/pykde4app/pykde4app.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/Python/pykde4app/pykde4app.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -9,6 +9,7 @@ Name[da]=Python Name[de]=Python Name[el]=Python +Name[en_GB]=Python Name[es]=Python Name[et]=Python Name[fi]=Python @@ -48,6 +49,7 @@ Comment[da]=Grafisk PyKDE4-program. PyKDE4-skabelon - kræver PyKDE4 Comment[de]=Grafische PyKDE4-Anwendung. Vorlage für PyKDE4 – benötigt PyKDE4 Comment[el]=PyKDE4 GUI Application. Πρότυπο του PyKDE4 - απαιτείται το PyKDE4 +Comment[en_GB]=PyKDE4 GUI Application. PyKDE4 template - needs PyKDE4 Comment[es]=Aplicación con interfaz gráfica en PyKDE4. Plantilla PyKDE4 (necesita PyKDE4) Comment[et]=PyKDE4 GUI rakendus. PyKDE4 mall - vajalik on PyKDE4 Comment[fi]=PyKDE4 GUI-sovellus. PyKDE4-malli, joka tarvitsee PyKDE4:n. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/Python/pyqt4app/pyqt4app.kdevtemplate new/kapptemplate-4.14.0/templates/Python/pyqt4app/pyqt4app.kdevtemplate --- old/kapptemplate-4.13.80/templates/Python/pyqt4app/pyqt4app.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/Python/pyqt4app/pyqt4app.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -4,9 +4,11 @@ Name[bs]=Python Qt-samo Name[ca]=Python només Qt Name[ca@valencia]=Python només Qt +Name[cs]=Pouze Python Qt Name[da]=Python, kun Qt Name[de]=Python (reines Qt) Name[el]=Python Qt-only +Name[en_GB]=Python Qt-only Name[es]=Python (solo Qt) Name[et]=Python Qt-only Name[fi]=Python vain Qt:lla @@ -44,6 +46,7 @@ Comment[da]=Grafisk PyQt-program. PyQt-skabelon som bruger en Designer-fil - kræver PyQt4 Comment[de]=Grafische PyQt4-Anwendung. Vorlage für PyQt mit Qt-Designer-Datei – benötigt PyQt4 Comment[el]=PyQt4 GUI Application. Πρότυπο της PyQt που χρησιμοποιεί αρχείο του Designer - απαιτείται η PyQt4 +Comment[en_GB]=PyQt4 GUI Application. PyQt template using a Designer file - needs PyQt4 Comment[es]=Aplicación con interfaz gráfica en PyQt4. Plantilla PyQt que usa un archivo de Designer (necesita PyQt4) Comment[et]=PyQt4 GUI rakendus. PyQt mall Disaineri faili põhjal - vajalik on PyQt4 Comment[fi]=PyQt4 GUI-sovellus. Designer-tiedostoa käyttävä PyQt-malli, joka tarvitsee PyQt4:n. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/QML/qml-plasmoid/package/metadata.desktop new/kapptemplate-4.14.0/templates/QML/qml-plasmoid/package/metadata.desktop --- old/kapptemplate-4.13.80/templates/QML/qml-plasmoid/package/metadata.desktop 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/QML/qml-plasmoid/package/metadata.desktop 2014-08-13 09:43:18.000000000 +0200 @@ -56,6 +56,7 @@ Comment[da]=nogle få ord om hvad din app gør Comment[de]=Kurze Bescheibung, was Ihre Anwendung tut Comment[el]=με λίγα λόγια,τι κάνει η εφαρμογή σας +Comment[en_GB]=what your app does in a few words Comment[es]=lo que hace su aplicación, en pocas palabras Comment[et]=Mõne sõnaga, mida rakendus teeb Comment[fi]=ohjelmasi toiminta muutamalla sanalla diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/QML/qml-plasmoid/qml-plasmoid.kdevtemplate new/kapptemplate-4.14.0/templates/QML/qml-plasmoid/qml-plasmoid.kdevtemplate --- old/kapptemplate-4.13.80/templates/QML/qml-plasmoid/qml-plasmoid.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/QML/qml-plasmoid/qml-plasmoid.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -4,9 +4,11 @@ Name[bs]=Plasma QML Applet Name[ca]=Miniaplicació QML del Plasma Name[ca@valencia]=Miniaplicació QML del Plasma +Name[cs]=Aplet QML Plasma Name[da]=Plasma QML-applet Name[de]=Plasma-QML-Miniprogramm Name[el]=Μικροεφαρμογή Plasma QML +Name[en_GB]=Plasma QML Applet Name[es]=Miniaplicación QML para Plasma Name[et]=Plasma QML aplett Name[fi]=Plasma QML-sovelma @@ -40,6 +42,7 @@ Comment[da]=Skabelon til Plasma QML-applet. En skabelon til en Plasma-applet, som viser et SVG-billede og en tekst. Comment[de]=Vorlage für Plasma-QML-Miniprogramm. Eine Vorlage für ein Plasma-Miniprogramm, das ein SVG-Symbol und einen Text anzeigt Comment[el]=Πρότυπο μικροεφαρμογής Plasma QML: ένα πρότυπο μικροεφαρμογής plasma που εμφανίζει μια εικόνα svg και ένα κείμενο. +Comment[en_GB]=Plasma QML Applet Template: a plasma applet template displaying a svg picture and a text. Comment[es]=Plantilla de miniaplicación QML para Plasma: una plantilla de miniaplicación para Plasma que muestra una imagen SVG y un texto. Comment[et]=Plasma QML apleti mall. Plasma apleti mall, näitab SVG-pilti ja teksti Comment[fi]=Plasman QML-sovelmamalli: Plasma-sovelmamalli, joka näyttää kuvakkeen ja tekstiä. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/QML/qt5-qml2/qt5-qml2.kdevtemplate new/kapptemplate-4.14.0/templates/QML/qt5-qml2/qt5-qml2.kdevtemplate --- old/kapptemplate-4.13.80/templates/QML/qt5-qml2/qt5-qml2.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/QML/qt5-qml2/qt5-qml2.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=Qt5 QML2-applikation Name[de]=Qt5-QML2-Anwendung Name[el]=Εφαρμογή Qt5 QML2 +Name[en_GB]=Qt5 QML2 Application Name[es]=Aplicación QML2 para Qt5 Name[et]=Qt5 QML2 rakendus Name[fi]=Qt5 QML2-sovellus @@ -42,6 +43,7 @@ Comment[da]=Et basalt Qt5- og QML2-program med brug af QMake. Advarsel, du skal bruge Qt5 til det, ikke Qt4. Comment[de]=Eine einfache Qt5- und QML2-Anwendung basierend auf QMake. Achtung: Sie benötigen hier Qt5. Comment[el]=Μια βασική εφαρμογή Qt5 και QML2 με το QMake. Προειδοποίηση, χρειάζεστε το Qt5 για αυτό, όχι το Qt4. +Comment[en_GB]=A Qt5 and QML2 basic application using QMake. Warning, you need Qt5 for it, not Qt4. Comment[es]=Una aplicación QML2 básica para Qt5 que usa QMake. Advertencia: necesita Qt5 para ella, no Qt4. Comment[et]=Qt5 ja QML2 põhine rakendus QMake'i abil. Hoiatus: selleks on vajalik Qt5, mitte enam Qt4. Comment[fi]=Yksinkertainen QMakea käyttävä Qt5- ja QML2-sovellus. Varoitus: Qt5 tarvitaan, ei Qt4. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/ruby/kderubyapp/kderubyapp.kdevtemplate new/kapptemplate-4.14.0/templates/ruby/kderubyapp/kderubyapp.kdevtemplate --- old/kapptemplate-4.13.80/templates/ruby/kderubyapp/kderubyapp.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/ruby/kderubyapp/kderubyapp.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=Ruby Name[de]=Ruby Name[el]=Ruby +Name[en_GB]=Ruby Name[es]=Ruby Name[et]=Ruby Name[fi]=Ruby @@ -47,6 +48,7 @@ Comment[da]=Grafisk KDE 4-program i Ruby. Simpel Ruby-skabelon til KDE 4. Den nedarver fra XMLGuiWindows - kræver korundum4 Comment[de]=Grafische KDE-4-Ruby-Anwendung. Vorlage für einfache KDE-4-Ruby-Anwendung. Abgeleitet von XMLGuiWindow – benötigt Korundum 4 Comment[el]=KDE 4 Ruby GUI Application. Απλό πρότυπο ruby του KDE4 που προέρχεται από το XMLGuiWindow - απαιτείται το korundum4 +Comment[en_GB]=KDE 4 Ruby GUI Application. KDE4 simple ruby template, inherits from XMLGuiWindow - needs korundum4 Comment[es]=Aplicación Ruby con interfaz gráfica para KDE 4. Sencilla plantilla Ruby para KDE4, que hereda de XMLGuiWindow (necesita korundum4) Comment[et]=KDE4 Ruby GUI rakendus. Lihtne KDE4 Ruby mall, XMLGuiWindow järglane - vajalik on korundum4 Comment[fi]=KDE 4 Ruby GUI -sovellus. Yksinkertainen KDE 4 ruby-malli, joka periytyy XMLGuiWindow’sta sekä tarvitsee korundum4:n. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/ruby/kderubyapp/src/%{APPNAMELC}.desktop new/kapptemplate-4.14.0/templates/ruby/kderubyapp/src/%{APPNAMELC}.desktop --- old/kapptemplate-4.13.80/templates/ruby/kderubyapp/src/%{APPNAMELC}.desktop 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/ruby/kderubyapp/src/%{APPNAMELC}.desktop 2014-08-13 09:43:18.000000000 +0200 @@ -58,6 +58,7 @@ GenericName[bs]=KDE4 Ruby aplikacija GenericName[ca]=Una aplicació Ruby del KDE4 GenericName[ca@valencia]=Una aplicació Ruby del KDE4 +GenericName[cs]=Aplikace prostředí KDE4 Ruby GenericName[da]=Et KDE4 Ruby-program GenericName[de]=KDE-4-Ruby-Anwendung GenericName[el]=Μια εφαρμογή KDE4 Ruby diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kapptemplate-4.13.80/templates/ruby/rubykonqplugin/rubykonqplugin.kdevtemplate new/kapptemplate-4.14.0/templates/ruby/rubykonqplugin/rubykonqplugin.kdevtemplate --- old/kapptemplate-4.13.80/templates/ruby/rubykonqplugin/rubykonqplugin.kdevtemplate 2014-06-03 07:12:37.000000000 +0200 +++ new/kapptemplate-4.14.0/templates/ruby/rubykonqplugin/rubykonqplugin.kdevtemplate 2014-08-13 09:43:18.000000000 +0200 @@ -8,6 +8,7 @@ Name[da]=Ruby Name[de]=Ruby Name[el]=Ruby +Name[en_GB]=Ruby Name[es]=Ruby Name[et]=Ruby Name[fi]=Ruby @@ -47,6 +48,7 @@ Comment[da]=KDE 4 Konqueror-plugin i Ruby. Simpel KDE4-skabelon baseret på CMake. Den nedarver fra KParts::Plugin og demonstrerer hvordan et konqueror-plugin skrives i Ruby Comment[de]=Vorlage für KDE-4-Konqueror-Modul in Ruby. Einfache KDE-4-Vorlage basierend auf CMake. Abgeleitet von KParts::Plugin und demonstriert, wie ein Konqueror-Modul in Ruby zu schreiben ist. Comment[el]=KDE 4 Ruby Konqueror plugin. Απλό πρότυπο του KDE4 βασισμένο στο CMake, προέρχεται από το KParts::Plugin και δείχνει πώς να γράψετε ένα πρόσθετο για τον konqueror σε Ruby +Comment[en_GB]=KDE 4 Ruby Konqueror plugin. KDE4 simple template based on CMake, inherits from KParts::Plugin and demonstrates how to write a konqueror plugin in Ruby Comment[es]=Complemento de Konqueror en Ruby para KDE 4. Sencilla plantilla para KDE 4 basada en CMake, que hereda de KParts::Plugin y demuestra cómo escribir un complemento para Konqueror en Ruby Comment[et]=KDE4 Ruby Konquerori plugin. Lihtne KDE4 mall CMake'i põhjal, KParts::Plugin järglane, mis näitab, kuidas kirjutada Konquerori pluginat Ruby abil Comment[fi]=KDE 4 Ruby Konqueror -liitännäinen. CMakeen perustuva yksinkertainen KDE4-malli, joka periytyy KParts::Plugin-liitännäisestä ja esittelee, miten kirjoitetaan konqueror-liitännäinen Rubylla. -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
