1
0
mirror of https://github.com/KDE/krfb synced 2026-07-01 07:41:17 -07:00

Merge remote-tracking branch 'origin/Applications/15.12'

This commit is contained in:
Albert Astals Cid
2016-01-07 00:33:40 +01:00
4 changed files with 12 additions and 7 deletions

View File

@@ -57,4 +57,4 @@
"Version": "0.1",
"Website": "http://www.kde.org"
}
}
}

View File

@@ -50,10 +50,11 @@
"Name[uk]": "Буфер кадрів X11 для KRfb",
"Name[x-test]": "xxX11 Framebuffer for KRfbxx",
"Name[zh_CN]": "XRfb 的 X11 帧缓冲",
"Name[zh_TW]": "KRfb 的 X11 Framebuffer",
"ServiceTypes": [
"krfb/framebuffer"
],
"Version": "0.1",
"Website": "http://www.kde.org"
}
}
}

View File

@@ -23,7 +23,8 @@
"Description[sv]": "Insticksprogram med rambuffert för Krfb",
"Description[uk]": "Додатки буфера кадрів для KRfb",
"Description[x-test]": "xxFrame Buffer plugins for KRfbxx",
"Description[zh_CN]": "KRfb 的帧缓冲插件"
"Description[zh_CN]": "KRfb 的帧缓冲插件",
"Description[zh_TW]": "KRfb 的 Frame Buffer 外掛程式"
},
"X-KDE-ServiceType": "krfb/framebuffer"
}

View File

@@ -35,7 +35,7 @@
#include <QCommandLineParser>
#include <QCommandLineOption>
static const char KRFB_VERSION[] = I18N_NOOP("5.0");
static const char KRFB_VERSION[] = "5.0";
static const char description[] = I18N_NOOP("VNC-compatible server to share "
"KDE desktops");
@@ -58,9 +58,13 @@ static bool checkX11Capabilities()
int main(int argc, char *argv[])
{
KAboutData aboutData(I18N_NOOP("krfb"),
QApplication app(argc, argv);
KLocalizedString::setApplicationDomain("krfb");
KAboutData aboutData("krfb",
i18n("Desktop Sharing"),
I18N_NOOP(KRFB_VERSION),
KRFB_VERSION,
i18n(description),
KAboutLicense::GPL,
i18n("(c) 2009-2010, Collabora Ltd.\n"
@@ -87,7 +91,6 @@ int main(int argc, char *argv[])
aboutData.addCredit(i18n("AT&T Laboratories Boston"),
i18n("original VNC encoders and "
"protocol design"));
QApplication app(argc, argv);
QCommandLineParser parser;
KAboutData::setApplicationData(aboutData);
parser.addVersionOption();