Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • akiraohgaki/ocs-url
  • ab3875o/ocs-url
  • dembego3/ocs-url
  • arakun/ocs-url
  • longviauroy/ocs-url
  • rolfen/ocs-url
  • hemm/ocs-url
  • simonsvw0000/ocs-url
  • dfn2/ocs-url
  • rws77/ocs-url
  • bitwalk/ocs-url
  • visdom/ocs-url
  • ricatfarker/ocs-url
  • mussah/ocs-url
  • tigefa/ocs-url
  • cobalt2727/ocs-url
  • ammark226/ocs-url
  • violethaze74/ocs-url
  • armedssault/ocs-url
  • billflick/ocs-url
  • kimblejeremy/ocs-url
  • yuvrajsm/ocs-url
  • wawmart/ocs-url
  • jhefry/ocs-url
  • robcdntruckin/ocs-url
  • bigmake2266/ocs-url
  • kamil-chbeir/ocs-url
  • jocker73/ocs-url
  • laboties/ocs-url
  • smekke61279-522014/ocs-url
  • coolduck/ocs-url
  • zulfikar-lahiya/ocs-url
  • faz-83/ocs-url
  • dado105/ocs-url
34 results
Show changes
Showing
with 697 additions and 92 deletions
......@@ -3,16 +3,17 @@
#include <QUrlQuery>
#include <QDesktopServices>
#include "qtlib_file.h"
#include "qtlib_dir.h"
#include "qtlib_networkresource.h"
#include "qtlib_package.h"
#include "qtil_file.h"
#include "qtil_dir.h"
#include "qtil_networkresource.h"
#include "qtil_package.h"
OcsUrlHandler::OcsUrlHandler(const QString &ocsUrl, const qtlib::Config &config, QObject *parent)
: QObject(parent), ocsUrl_(ocsUrl), config_(config)
#include "handlers/confighandler.h"
OcsUrlHandler::OcsUrlHandler(const QString &ocsUrl, ConfigHandler *configHandler, QObject *parent)
: QObject(parent), ocsUrl_(ocsUrl), configHandler_(configHandler)
{
parse();
loadDestinations();
}
QString OcsUrlHandler::ocsUrl() const
......@@ -33,20 +34,20 @@ void OcsUrlHandler::process()
if (!isValid()) {
QJsonObject result;
result["status"] = QString("error_validation");
result["message"] = QString("Invalid OCS-URL " + ocsUrl_);
result["message"] = tr("Invalid OCS-URL");
emit finishedWithError(result);
return;
}
QString url = metadata_["url"].toString();
qtlib::NetworkResource *resource = new qtlib::NetworkResource(url, QUrl(url), true, this);
connect(resource, &qtlib::NetworkResource::downloadProgress, this, &OcsUrlHandler::downloadProgress);
connect(resource, &qtlib::NetworkResource::finished, this, &OcsUrlHandler::networkResourceFinished);
auto url = metadata_["url"].toString();
auto *resource = new Qtil::NetworkResource(url, QUrl(url), true, this);
connect(resource, &Qtil::NetworkResource::downloadProgress, this, &OcsUrlHandler::downloadProgress);
connect(resource, &Qtil::NetworkResource::finished, this, &OcsUrlHandler::networkResourceFinished);
resource->get();
emit started();
}
bool OcsUrlHandler::isValid()
bool OcsUrlHandler::isValid() const
{
QString scheme = metadata_["scheme"].toString();
QString command = metadata_["command"].toString();
......@@ -54,24 +55,23 @@ bool OcsUrlHandler::isValid()
QString type = metadata_["type"].toString();
QString filename = metadata_["filename"].toString();
// Still support xdg and xdgs schemes for backward compatibility
if ((scheme == "ocs" || scheme == "ocss" || scheme == "xdg" || scheme == "xdgs")
if ((scheme == "ocs" || scheme == "ocss")
&& (command == "download" || command == "install")
&& QUrl(url).isValid()
&& destinations_.contains(type)
&& configHandler_->getAppConfigInstallTypes().contains(type)
&& !filename.isEmpty()) {
return true;
}
return false;
}
void OcsUrlHandler::openDestination()
void OcsUrlHandler::openDestination() const
{
QString type = metadata_["type"].toString();
QDesktopServices::openUrl(QUrl("file://" + destinations_[type].toString()));
auto type = metadata_["type"].toString();
QDesktopServices::openUrl(QUrl("file://" + configHandler_->getAppConfigInstallTypes()[type].toObject()["destination"].toString()));
}
void OcsUrlHandler::networkResourceFinished(qtlib::NetworkResource *resource)
void OcsUrlHandler::networkResourceFinished(Qtil::NetworkResource *resource)
{
if (!resource->isFinishedWithNoError()) {
QJsonObject result;
......@@ -126,121 +126,87 @@ void OcsUrlHandler::parse()
}
}
void OcsUrlHandler::loadDestinations()
{
QJsonObject configDestinations = config_.get("destinations");
QJsonObject configDestinationsAlias = config_.get("destinations_alias");
foreach (const QString &key, configDestinations.keys()) {
destinations_[key] = convertPathString(configDestinations[key].toString());
}
foreach (const QString &key, configDestinationsAlias.keys()) {
QString value = configDestinationsAlias[key].toString();
if (destinations_.contains(value)) {
destinations_[key] = destinations_.value(value);
}
}
}
QString OcsUrlHandler::convertPathString(const QString &path)
{
QString newPath = path;
if (newPath.contains("$HOME")) {
newPath.replace("$HOME", qtlib::Dir::homePath());
}
else if (newPath.contains("$XDG_DATA_HOME")) {
newPath.replace("$XDG_DATA_HOME", qtlib::Dir::genericDataPath());
}
else if (newPath.contains("$KDEHOME")) {
newPath.replace("$KDEHOME", qtlib::Dir::kdehomePath());
}
return newPath;
}
void OcsUrlHandler::saveDownloadedFile(qtlib::NetworkResource *resource)
void OcsUrlHandler::saveDownloadedFile(Qtil::NetworkResource *resource)
{
QJsonObject result;
QString type = metadata_["type"].toString();
qtlib::Dir destDir(destinations_[type].toString());
auto type = metadata_["type"].toString();
Qtil::Dir destDir(configHandler_->getAppConfigInstallTypes()[type].toObject()["destination"].toString());
destDir.make();
qtlib::File destFile(destDir.path() + "/" + metadata_["filename"].toString());
Qtil::File destFile(destDir.path() + "/" + metadata_["filename"].toString());
if (!resource->saveData(destFile.path())) {
result["status"] = QString("error_save");
result["message"] = QString("Failed to save data as " + destFile.path());
result["message"] = tr("Failed to save data");
emit finishedWithError(result);
resource->deleteLater();
return;
}
result["status"] = QString("success_download");
result["message"] = QString("The file has been stored into " + destDir.path());
result["message"] = tr("The file has been downloaded");
emit finishedWithSuccess(result);
resource->deleteLater();
}
void OcsUrlHandler::installDownloadedFile(qtlib::NetworkResource *resource)
void OcsUrlHandler::installDownloadedFile(Qtil::NetworkResource *resource)
{
QJsonObject result;
qtlib::File tempFile(qtlib::Dir::tempPath() + "/" + metadata_["filename"].toString());
Qtil::File tempFile(Qtil::Dir::tempPath() + "/" + metadata_["filename"].toString());
if (!resource->saveData(tempFile.path())) {
result["status"] = QString("error_save");
result["message"] = QString("Failed to save data as " + tempFile.path());
result["message"] = tr("Failed to save data");
emit finishedWithError(result);
resource->deleteLater();
return;
}
qtlib::Package package(tempFile.path());
QString type = metadata_["type"].toString();
qtlib::Dir destDir(destinations_[type].toString());
Qtil::Package package(tempFile.path());
auto type = metadata_["type"].toString();
Qtil::Dir destDir(configHandler_->getAppConfigInstallTypes()[type].toObject()["destination"].toString());
destDir.make();
qtlib::File destFile(destDir.path() + "/" + metadata_["filename"].toString());
Qtil::File destFile(destDir.path() + "/" + metadata_["filename"].toString());
if (type == "bin"
&& package.installAsProgram(destFile.path())) {
result["message"] = QString("The file has been installed into " + destDir.path());
result["message"] = tr("The file has been installed as program");
}
else if ((type == "plasma_plasmoids" || type == "plasma4_plasmoids" || type == "plasma5_plasmoids")
&& package.installAsPlasmapkg("plasmoid")) {
result["message"] = QString("The plasmoid has been installed");
result["message"] = tr("The plasmoid has been installed");
}
else if ((type == "plasma_look_and_feel" || type == "plasma5_look_and_feel")
&& package.installAsPlasmapkg("lookandfeel")) {
result["message"] = QString("The plasma look and feel has been installed");
result["message"] = tr("The plasma look and feel has been installed");
}
else if ((type == "plasma_desktopthemes" || type == "plasma5_desktopthemes")
&& package.installAsPlasmapkg("theme")) {
result["message"] = QString("The plasma desktop theme has been installed");
result["message"] = tr("The plasma desktop theme has been installed");
}
else if (type == "kwin_effects"
&& package.installAsPlasmapkg("kwineffect")) {
result["message"] = QString("The KWin effect has been installed");
result["message"] = tr("The KWin effect has been installed");
}
else if (type == "kwin_scripts"
&& package.installAsPlasmapkg("kwinscript")) {
result["message"] = QString("The KWin script has been installed");
result["message"] = tr("The KWin script has been installed");
}
else if (type == "kwin_tabbox"
&& package.installAsPlasmapkg("windowswitcher")) {
result["message"] = QString("The KWin window switcher has been installed");
result["message"] = tr("The KWin window switcher has been installed");
}
else if (package.installAsArchive(destDir.path())) {
result["message"] = QString("The archive file has been extracted into " + destDir.path());
result["message"] = tr("The archive file has been extracted");
}
else if (package.installAsFile(destFile.path())) {
result["message"] = QString("The file has been installed into " + destDir.path());
result["message"] = tr("The file has been installed");
}
else {
result["status"] = QString("error_install");
result["message"] = QString("Failed to installation");
result["message"] = tr("Failed to installation");
emit finishedWithError(result);
tempFile.remove();
return;
......
......@@ -3,18 +3,18 @@
#include <QObject>
#include <QJsonObject>
#include "qtlib_config.h"
namespace qtlib {
namespace Qtil {
class NetworkResource;
}
class ConfigHandler;
class OcsUrlHandler : public QObject
{
Q_OBJECT
public:
explicit OcsUrlHandler(const QString &ocsUrl, const qtlib::Config &config, QObject *parent = 0);
explicit OcsUrlHandler(const QString &ocsUrl, ConfigHandler *configHandler, QObject *parent = nullptr);
signals:
void started();
......@@ -27,21 +27,18 @@ public slots:
QJsonObject metadata() const;
void process();
bool isValid();
void openDestination();
bool isValid() const;
void openDestination() const;
private slots:
void networkResourceFinished(qtlib::NetworkResource *resource);
void networkResourceFinished(Qtil::NetworkResource *resource);
private:
void parse();
void loadDestinations();
QString convertPathString(const QString &path);
void saveDownloadedFile(qtlib::NetworkResource *resource);
void installDownloadedFile(qtlib::NetworkResource *resource);
void saveDownloadedFile(Qtil::NetworkResource *resource);
void installDownloadedFile(Qtil::NetworkResource *resource);
QString ocsUrl_;
qtlib::Config config_;
ConfigHandler *configHandler_;
QJsonObject metadata_;
QJsonObject destinations_;
};
......@@ -2,50 +2,59 @@
#include <QStringList>
#include <QUrl>
#include <QJsonObject>
#include <QTranslator>
#include <QLocale>
#include <QCommandLineParser>
#include <QGuiApplication>
#include <QApplication>
#include <QIcon>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include "qtlib_config.h"
#include "handlers/confighandler.h"
#include "handlers/ocsurlhandler.h"
int main(int argc, char *argv[])
{
// Init
QGuiApplication app(argc, argv);
QApplication app(argc, argv);
auto *configHandler = new ConfigHandler();
auto appConfigApplication = configHandler->getAppConfigApplication();
qtlib::Config config(":/configs");
QJsonObject configApplication = config.get("application");
app.setApplicationName(appConfigApplication["name"].toString());
app.setApplicationVersion(appConfigApplication["version"].toString());
app.setOrganizationName(appConfigApplication["organization"].toString());
app.setOrganizationDomain(appConfigApplication["domain"].toString());
app.setWindowIcon(QIcon::fromTheme(appConfigApplication["id"].toString(), QIcon(appConfigApplication["icon"].toString())));
app.setApplicationName(configApplication["name"].toString());
app.setApplicationVersion(configApplication["version"].toString());
app.setOrganizationName(configApplication["organization"].toString());
app.setOrganizationDomain(configApplication["domain"].toString());
app.setWindowIcon(QIcon::fromTheme(configApplication["id"].toString(), QIcon(configApplication["icon"].toString())));
// Setup translator
QTranslator translator;
if (translator.load(QLocale(), "messages", ".", ":/i18n")) {
app.installTranslator(&translator);
}
// Setup CLI
QCommandLineParser clParser;
clParser.setApplicationDescription(configApplication["description"].toString());
clParser.setApplicationDescription(appConfigApplication["description"].toString());
clParser.addHelpOption();
clParser.addVersionOption();
clParser.addPositionalArgument("ocsurl", "OCS-URL");
clParser.addPositionalArgument("OCS-URL", "OCS-URL that starts with ocs://");
clParser.process(app);
QStringList args = clParser.positionalArguments();
auto args = clParser.positionalArguments();
if (args.size() != 1) {
clParser.showHelp(1);
}
QString ocsUrl = args.at(0);
auto ocsUrl = QString(args.at(0));
// Setup QML
QQmlApplicationEngine qmlAppEngine;
QQmlContext *qmlContext = qmlAppEngine.rootContext();
qmlContext->setContextProperty("ocsUrlHandler", new OcsUrlHandler(ocsUrl, config, &qmlAppEngine));
auto *qmlContext = qmlAppEngine.rootContext();
configHandler->setParent(&qmlAppEngine);
qmlContext->setContextProperty("configHandler", configHandler);
qmlContext->setContextProperty("ocsUrlHandler", new OcsUrlHandler(ocsUrl, configHandler, &qmlAppEngine));
qmlAppEngine.load(QUrl("qrc:/qml/main.qml"));
return app.exec();
......
......@@ -3,7 +3,7 @@ unix:!ios:!android {
PREFIX = /usr/local
}
SRCDIR = $${PWD}/src
SRCDIR = $${PWD}
BINDIR = $${PREFIX}/bin
DATADIR = $${PREFIX}/share
......
RESOURCES += $${PWD}/desktop.qrc
DISTFILES += $${PWD}/ocs-url.desktop
File moved
......@@ -6,4 +6,4 @@ Type=Application
Terminal=false
NoDisplay=true
Categories=Network;Utility;
MimeType=x-scheme-handler/ocs;x-scheme-handler/ocss;x-scheme-handler/xdg;x-scheme-handler/xdgs;
MimeType=x-scheme-handler/ocs;x-scheme-handler/ocss;
File moved
# How to install
## Install from package
Download Linux package from: https://www.opendesktop.org/p/1136805/
Then click the downloaded package and continue to installation with package manager.
Or install the downloaded package using terminal:
Ubuntu 14.04
$ sudo apt install libqt5svg5 qtdeclarative5-qtquick2-plugin qtdeclarative5-window-plugin qtdeclarative5-controls-plugin
$ sudo dpkg -i /path/to/ocs-url*.deb
Ubuntu 16.04
$ sudo apt install libqt5svg5 qml-module-qtquick-controls
$ sudo dpkg -i /path/to/ocs-url*.deb
Fedora 20
# yum insall qt5-qtbase qt5-qtbase-gui qt5-qtsvg qt5-qtdeclarative qt5-qtquickcontrols
# rpm -i /path/to/ocs-url*.rpm
Fedora 22
# dnf insall qt5-qtbase qt5-qtbase-gui qt5-qtsvg qt5-qtdeclarative qt5-qtquickcontrols
# rpm -i /path/to/ocs-url*.rpm
openSUSE 42.1
# zypper install libQt5Svg5 libqt5-qtquickcontrols
# rpm -i /path/to/ocs-url*.rpm
Arch Linux
# pacman -S qt5-base qt5-svg qt5-declarative qt5-quickcontrols
# pacman -U /path/to/ocs-url*.pkg.tar.xz
## Install from source
Make git clone, or download the source archive and extract it.
Build and install
$ cd /path/to/ocs-url
$ ./scripts/prepare
$ qmake PREFIX=/usr
$ make
$ sudo make install
Uninstall
$ sudo make uninstall
# How to use
## Web browser
Just click a OCS-URL (ocs://) links, or type OCS-URL in browser's address bar.
If you use Firefox, a program selection window opens the first time you open OCS-URL,
and you can choose "ocs-url" as custom URL handler.
If you don't get the program selection window or you are using another browser,
please set the ocs-url program as custom URL handler for ocs:// scheme in the browser's settings.
## Command-line
Execute ocs-url program with argument OCS-URL.
$ ocs-url "ocs://install?url=http%3A%2F%2Fexample.com%2Ficons.tar.gz&type=icons"
# Internationalization
ocs-url/i18n/ is sub project for program internationalization.
## Localization for program
Using two tools lupdate and lrelease to make translation.
Text is gathered from program source files and included in QM files for translation along with other resource files.
### Creating TS (Translation Source) files
To generate TS files, sets TS file name to definition TRANSLATIONS in i18n.pro and run lupdate with i18n.pro.
$ cd /path/to/ocs-url/i18n/
$ lupdate i18n.pro
Then adds translations to the generated TS files using Qt Linguist or text editor.
### Creating QM (Qt Message) files
To generate QM files, run lrelease with i18n.pro.
$ cd /path/to/ocs-url/i18n/
$ lrelease i18n.pro
Then adds the path of the generated QM files to i18n.qrc.
# OCS-URL specification
OCS-URL is a custom URL that represent the installation method of items served on OpenCollaborationServices (OCS).
## URL structure
[scheme]://[command]?[query string]
For example:
ocs://install?url=http%3A%2F%2Fexample.com%2Ficons.tar.gz&type=icons
## Scheme
Scheme | Description
-------|------------
ocs | ocs scheme
ocss | ocs scheme for secure protocol
"ocss" scheme is the same of the ocs scheme for now,
it's a reserved name for secure protocol in the future.
## Command
Command | Description
--------|------------
download | Download the file from specified URL to the installation destination of specified install-type.
install | Make file downloading and trigger installation process.
## Query string
OCS-URL's query string is an option of command.
*All query string values should be urlencoded.*
Parameter | Required | Default | Description
----------|----------|---------|------------
url | Yes | - | File URL
type | - | downloads | Install-type
filename | - | File name from URL | Alternative file name
"filename" option is useful if the file URL does not represent a file name.
### Install-type
Available install-type:
Install-type | Installation destination
-------------|------------------
bin | $HOME/.local/bin
downloads | $HOME/Downloads
documents | $HOME/Documents
pictures | $HOME/Pictures
music | $HOME/Music
videos | $HOME/Videos
wallpapers | $XDG_DATA_HOME/wallpapers
fonts | $HOME/.fonts
cursors | $HOME/.icons
icons | $XDG_DATA_HOME/icons
emoticons | $XDG_DATA_HOME/emoticons
themes | $HOME/.themes
emerald_themes | $HOME/.emerald/themes
enlightenment_themes | $HOME/.e/e/themes
enlightenment_backgrounds | $HOME/.e/e/backgrounds
fluxbox_styles | $HOME/.fluxbox/styles
pekwm_themes | $HOME/.pekwm/themes
icewm_themes | $HOME/.icewm/themes
plasma_plasmoids | $XDG_DATA_HOME/plasma/plasmoids
plasma_look_and_feel | $XDG_DATA_HOME/plasma/look-and-feel
plasma_desktopthemes | $XDG_DATA_HOME/plasma/desktoptheme
kwin_effects | $XDG_DATA_HOME/kwin/effects
kwin_scripts | $XDG_DATA_HOME/kwin/scripts
kwin_tabbox | $XDG_DATA_HOME/kwin/tabbox
aurorae_themes | $XDG_DATA_HOME/aurorae/themes
dekorator_themes | $XDG_DATA_HOME/deKorator/themes
qtcurve | $XDG_DATA_HOME/QtCurve
color_schemes | $XDG_DATA_HOME/color-schemes
gnome_shell_extensions | $XDG_DATA_HOME/gnome-shell/extensions
cinnamon_applets | $XDG_DATA_HOME/cinnamon/applets
cinnamon_desklets | $XDG_DATA_HOME/cinnamon/desklets
cinnamon_extensions | $XDG_DATA_HOME/cinnamon/extensions
nautilus_scripts | $XDG_DATA_HOME/nautilus/scripts
amarok_scripts | $KDEHOME/share/apps/amarok/scripts
yakuake_skins | $KDEHOME/share/apps/yakuake/skins
cairo_clock_themes | $HOME/.cairo-clock/themes
books | $APP_DATA/books
comics | $APP_DATA/comics
$APP_DATA is not environment variable, it's internal variable in the program and expressed to $XDG_DATA_HOME/{application ID or name}.
Available alias name of the install-type:
Alias | Install-type
------|-------------
gnome_shell_themes | themes
cinnamon_themes | themes
gtk2_themes | themes
gtk3_themes | themes
metacity_themes | themes
xfwm4_themes | themes
openbox_themes | themes
kvantum_themes | themes
compiz_themes | emerald_themes
beryl_themes | emerald_themes
plasma4_plasmoids | plasma_plasmoids
plasma5_plasmoids | plasma_plasmoids
plasma5_look_and_feel | plasma_look_and_feel
plasma5_desktopthemes | plasma_desktopthemes
plasma_color_schemes | color_schemes
RESOURCES += $${PWD}/i18n.qrc
SOURCES += $$system(find $${PWD}/../app -type f -name "*.cpp" -or -name "*.qml" -or -name "*.js")
TRANSLATIONS += \
$${PWD}/messages.ts \
$${PWD}/messages.en_US.ts \
$${PWD}/messages.ja_JP.ts \
$${PWD}/messages.tr_TR.ts \
$${PWD}/messages.zh_TW.ts
include($${PWD}/i18n.pri)
<RCC>
<qresource prefix="/i18n">
<file>messages.qm</file>
<file>messages.en_US.qm</file>
<file>messages.ja_JP.qm</file>
<file>messages.tr_TR.qm</file>
<file>messages.zh_TW.qm</file>
</qresource>
</RCC>
File added
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="en_US">
<context>
<name>OcsUrlHandler</name>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="37"/>
<source>Invalid OCS-URL</source>
<translation>Invalid OCS-URL</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="141"/>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="162"/>
<source>Failed to save data</source>
<translation>Failed to save data</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="148"/>
<source>The file has been downloaded</source>
<translation>The file has been downloaded</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="176"/>
<source>The file has been installed as program</source>
<translation>The file has been installed as program</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="180"/>
<source>The plasmoid has been installed</source>
<translation>The plasmoid has been installed</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="184"/>
<source>The plasma look and feel has been installed</source>
<translation>The plasma look and feel has been installed</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="188"/>
<source>The plasma desktop theme has been installed</source>
<translation>The plasma desktop theme has been installed</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="192"/>
<source>The KWin effect has been installed</source>
<translation>The KWin effect has been installed</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="196"/>
<source>The KWin script has been installed</source>
<translation>The KWin script has been installed</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="200"/>
<source>The KWin window switcher has been installed</source>
<translation>The KWin window switcher has been installed</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="203"/>
<source>The archive file has been extracted</source>
<translation>The archive file has been extracted</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="206"/>
<source>The file has been installed</source>
<translation>The file has been installed</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="210"/>
<source>Failed to installation</source>
<translation>Failed to installation</translation>
</message>
</context>
<context>
<name>main</name>
<message>
<location filename="../app/qml/main.qml" line="26"/>
<source>Download successful</source>
<translation>Download successful</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="27"/>
<source>Installation successful</source>
<translation>Installation successful</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="28"/>
<source>Validation error</source>
<translation>Validation error</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="29"/>
<source>Network error</source>
<translation>Network error</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="30"/>
<source>Saving file failed</source>
<translation>Saving file failed</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="31"/>
<source>Installation failed</source>
<translation>Installation failed</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="56"/>
<source>Downloading</source>
<translation>Downloading</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="66"/>
<source>Do you want to download?</source>
<translation>Do you want to download?</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="69"/>
<source>Do you want to install?</source>
<translation>Do you want to install?</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="73"/>
<source>URL</source>
<translation>URL</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="74"/>
<source>File</source>
<translation>File</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="75"/>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="80"/>
<source>Invalid OCS-URL</source>
<translation>Invalid OCS-URL</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="96"/>
<location filename="../app/qml/main.qml" line="109"/>
<location filename="../app/qml/main.qml" line="125"/>
<source>Details</source>
<translation>Details</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="98"/>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="100"/>
<location filename="../app/qml/main.qml" line="160"/>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="111"/>
<source>Open</source>
<translation>Open</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="116"/>
<location filename="../app/qml/main.qml" line="127"/>
<source>Close</source>
<translation>Close</translation>
</message>
</context>
</TS>
File added
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ja_JP">
<context>
<name>OcsUrlHandler</name>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="37"/>
<source>Invalid OCS-URL</source>
<translation>無効なOCS-URL</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="141"/>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="162"/>
<source>Failed to save data</source>
<translation>ファイルの保存に失敗</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="148"/>
<source>The file has been downloaded</source>
<translation>ファイルがダウンロードされました</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="176"/>
<source>The file has been installed as program</source>
<translation>ファイルがプログラムとしてインストールされました</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="180"/>
<source>The plasmoid has been installed</source>
<translation>plasmoidがインストールされました</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="184"/>
<source>The plasma look and feel has been installed</source>
<translation>plasma look and feelがインストールされました</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="188"/>
<source>The plasma desktop theme has been installed</source>
<translation>plasma desktop themeがインストールされました</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="192"/>
<source>The KWin effect has been installed</source>
<translation>KWin effectがインストールされました</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="196"/>
<source>The KWin script has been installed</source>
<translation>KWin scriptがインストールされました</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="200"/>
<source>The KWin window switcher has been installed</source>
<translation>KWin window switcherがインストールされました</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="203"/>
<source>The archive file has been extracted</source>
<translation>圧縮ファイルが展開されました</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="206"/>
<source>The file has been installed</source>
<translation>ファイルがインストールされました</translation>
</message>
<message>
<location filename="../app/src/handlers/ocsurlhandler.cpp" line="210"/>
<source>Failed to installation</source>
<translation>インストールに失敗</translation>
</message>
</context>
<context>
<name>main</name>
<message>
<location filename="../app/qml/main.qml" line="26"/>
<source>Download successful</source>
<translation>ダウンロード成功</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="27"/>
<source>Installation successful</source>
<translation>インストール成功</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="28"/>
<source>Validation error</source>
<translation>検証エラー</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="29"/>
<source>Network error</source>
<translation>通信エラー</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="30"/>
<source>Saving file failed</source>
<translation>ファイル保存失敗</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="31"/>
<source>Installation failed</source>
<translation>インストール失敗</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="56"/>
<source>Downloading</source>
<translation>ダウンロード中</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="66"/>
<source>Do you want to download?</source>
<translation>ダウンロードしますか?</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="69"/>
<source>Do you want to install?</source>
<translation>インストールしますか?</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="73"/>
<source>URL</source>
<translation>URL</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="74"/>
<source>File</source>
<translation>ファイル</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="75"/>
<source>Type</source>
<translation>タイプ</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="80"/>
<source>Invalid OCS-URL</source>
<translation>無効なOCS-URL</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="96"/>
<location filename="../app/qml/main.qml" line="109"/>
<location filename="../app/qml/main.qml" line="125"/>
<source>Details</source>
<translation>詳細</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="98"/>
<source>OK</source>
<translation>OK</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="100"/>
<location filename="../app/qml/main.qml" line="160"/>
<source>Cancel</source>
<translation>キャンセル</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="111"/>
<source>Open</source>
<translation>開く</translation>
</message>
<message>
<location filename="../app/qml/main.qml" line="116"/>
<location filename="../app/qml/main.qml" line="127"/>
<source>Close</source>
<translation>閉じる</translation>
</message>
</context>
</TS>
<d!`
\ No newline at end of file