mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-26 07:59:35 -05:00
Added new settings on the NotifyPage to enable or disable the systray icons for messages and posts.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3647 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
51cc1d2b3b
commit
928e236103
@ -446,7 +446,7 @@ void MainWindow::updateMessages()
|
|||||||
messageAction->setIcon(QIcon(QPixmap(":/images/evolution.png"))) ;
|
messageAction->setIcon(QIcon(QPixmap(":/images/evolution.png"))) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (newInboxCount) {
|
if (newInboxCount && (Settings->getTrayNotifyFlags() & TRAYNOTIFY_MESSAGES)) {
|
||||||
if (newInboxCount > 1) {
|
if (newInboxCount > 1) {
|
||||||
trayIconMessages->setToolTip(tr("RetroShare") + "\n" + tr("You have %1 new messages").arg(newInboxCount));
|
trayIconMessages->setToolTip(tr("RetroShare") + "\n" + tr("You have %1 new messages").arg(newInboxCount));
|
||||||
} else {
|
} else {
|
||||||
@ -470,7 +470,7 @@ void MainWindow::updateForums()
|
|||||||
forumAction->setIcon(QIcon(IMAGE_FORUMS)) ;
|
forumAction->setIcon(QIcon(IMAGE_FORUMS)) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (newMessageCount) {
|
if (newMessageCount && (Settings->getTrayNotifyFlags() & TRAYNOTIFY_FORUMS)) {
|
||||||
if (newMessageCount > 1) {
|
if (newMessageCount > 1) {
|
||||||
trayIconForums->setToolTip(tr("RetroShare") + "\n" + tr("You have %1 new messages").arg(newMessageCount));
|
trayIconForums->setToolTip(tr("RetroShare") + "\n" + tr("You have %1 new messages").arg(newMessageCount));
|
||||||
} else {
|
} else {
|
||||||
@ -494,7 +494,7 @@ void MainWindow::updateChannels(int type)
|
|||||||
channelAction->setIcon(QIcon(IMAGE_CHANNELS)) ;
|
channelAction->setIcon(QIcon(IMAGE_CHANNELS)) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (newMessageCount) {
|
if (newMessageCount && (Settings->getTrayNotifyFlags() & TRAYNOTIFY_CHANNELS)) {
|
||||||
if (newMessageCount > 1) {
|
if (newMessageCount > 1) {
|
||||||
trayIconChannels->setToolTip(tr("RetroShare") + "\n" + tr("You have %1 new messages").arg(newMessageCount));
|
trayIconChannels->setToolTip(tr("RetroShare") + "\n" + tr("You have %1 new messages").arg(newMessageCount));
|
||||||
} else {
|
} else {
|
||||||
@ -552,7 +552,7 @@ void MainWindow::privateChatChanged(int list, int type)
|
|||||||
/* than count the chat messages */
|
/* than count the chat messages */
|
||||||
int chatCount = rsMsgs->getPrivateChatQueueCount(true);
|
int chatCount = rsMsgs->getPrivateChatQueueCount(true);
|
||||||
|
|
||||||
if (chatCount) {
|
if (chatCount && (Settings->getTrayNotifyFlags() & TRAYNOTIFY_PRIVATECHAT)) {
|
||||||
trayIconChat->show();
|
trayIconChat->show();
|
||||||
} else {
|
} else {
|
||||||
trayIconChat->hide();
|
trayIconChat->hide();
|
||||||
|
@ -42,9 +42,6 @@ NotifyPage::NotifyPage(QWidget * parent, Qt::WFlags flags)
|
|||||||
setAttribute(Qt::WA_QuitOnClose, false);
|
setAttribute(Qt::WA_QuitOnClose, false);
|
||||||
setWindowTitle(windowTitle() + QLatin1String(" - Notify"));
|
setWindowTitle(windowTitle() + QLatin1String(" - Notify"));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Hide platform specific features */
|
/* Hide platform specific features */
|
||||||
#ifdef Q_WS_WIN
|
#ifdef Q_WS_WIN
|
||||||
|
|
||||||
@ -68,6 +65,7 @@ NotifyPage::save(QString &errmsg)
|
|||||||
/* extract from rsNotify the flags */
|
/* extract from rsNotify the flags */
|
||||||
|
|
||||||
uint notifyflags = 0;
|
uint notifyflags = 0;
|
||||||
|
uint traynotifyflags = 0;
|
||||||
uint newsflags = 0;
|
uint newsflags = 0;
|
||||||
uint chatflags = 0;
|
uint chatflags = 0;
|
||||||
|
|
||||||
@ -106,7 +104,17 @@ NotifyPage::save(QString &errmsg)
|
|||||||
if (ui.chat_Focus->isChecked())
|
if (ui.chat_Focus->isChecked())
|
||||||
chatflags |= RS_CHAT_FOCUS;
|
chatflags |= RS_CHAT_FOCUS;
|
||||||
|
|
||||||
|
if (ui.trayNotify_PrivateChat->isChecked())
|
||||||
|
traynotifyflags |= TRAYNOTIFY_PRIVATECHAT;
|
||||||
|
if (ui.trayNotify_Messages->isChecked())
|
||||||
|
traynotifyflags |= TRAYNOTIFY_MESSAGES;
|
||||||
|
if (ui.trayNotify_Channels->isChecked())
|
||||||
|
traynotifyflags |= TRAYNOTIFY_CHANNELS;
|
||||||
|
if (ui.trayNotify_Forums->isChecked())
|
||||||
|
traynotifyflags |= TRAYNOTIFY_FORUMS;
|
||||||
|
|
||||||
Settings->setNotifyFlags(notifyflags);
|
Settings->setNotifyFlags(notifyflags);
|
||||||
|
Settings->setTrayNotifyFlags(traynotifyflags);
|
||||||
Settings->setNewsFeedFlags(newsflags);
|
Settings->setNewsFeedFlags(newsflags);
|
||||||
Settings->setChatFlags(chatflags);
|
Settings->setChatFlags(chatflags);
|
||||||
|
|
||||||
@ -125,6 +133,7 @@ void NotifyPage::load()
|
|||||||
{
|
{
|
||||||
/* extract from rsNotify the flags */
|
/* extract from rsNotify the flags */
|
||||||
uint notifyflags = Settings->getNotifyFlags();
|
uint notifyflags = Settings->getNotifyFlags();
|
||||||
|
uint traynotifyflags = Settings->getTrayNotifyFlags();
|
||||||
uint newsflags = Settings->getNewsFeedFlags();
|
uint newsflags = Settings->getNewsFeedFlags();
|
||||||
uint chatflags = Settings->getChatFlags();
|
uint chatflags = Settings->getChatFlags();
|
||||||
|
|
||||||
@ -147,6 +156,11 @@ void NotifyPage::load()
|
|||||||
|
|
||||||
ui.systray_GroupChat->setChecked(Settings->getDisplayTrayGroupChat());
|
ui.systray_GroupChat->setChecked(Settings->getDisplayTrayGroupChat());
|
||||||
|
|
||||||
|
ui.trayNotify_PrivateChat->setChecked(traynotifyflags & TRAYNOTIFY_PRIVATECHAT);
|
||||||
|
ui.trayNotify_Messages->setChecked(traynotifyflags & TRAYNOTIFY_MESSAGES);
|
||||||
|
ui.trayNotify_Channels->setChecked(traynotifyflags & TRAYNOTIFY_CHANNELS);
|
||||||
|
ui.trayNotify_Forums->setChecked(traynotifyflags & TRAYNOTIFY_FORUMS);
|
||||||
|
|
||||||
ui.addFeedsAtEnd->setChecked(Settings->getAddFeedsAtEnd());
|
ui.addFeedsAtEnd->setChecked(Settings->getAddFeedsAtEnd());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>388</width>
|
<width>396</width>
|
||||||
<height>425</height>
|
<height>425</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -575,6 +575,43 @@
|
|||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QGroupBox" name="trayNotifyGroupBox">
|
||||||
|
<property name="title">
|
||||||
|
<string>Systray Icon</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_5">
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="trayNotify_PrivateChat">
|
||||||
|
<property name="text">
|
||||||
|
<string>Private Message</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="trayNotify_Messages">
|
||||||
|
<property name="text">
|
||||||
|
<string>Message</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="trayNotify_Channels">
|
||||||
|
<property name="text">
|
||||||
|
<string>Channel Post</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QCheckBox" name="trayNotify_Forums">
|
||||||
|
<property name="text">
|
||||||
|
<string>Forum Post</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<spacer name="verticalSpacer">
|
<spacer name="verticalSpacer">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
@ -686,8 +723,6 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<resources>
|
<resources/>
|
||||||
<include location="../images.qrc"/>
|
|
||||||
</resources>
|
|
||||||
<connections/>
|
<connections/>
|
||||||
</ui>
|
</ui>
|
||||||
|
@ -54,6 +54,7 @@
|
|||||||
#define SETTING_NEWSFEED_FLAGS "NewsFeedFlags"
|
#define SETTING_NEWSFEED_FLAGS "NewsFeedFlags"
|
||||||
#define SETTING_CHAT_FLAGS "ChatFlags"
|
#define SETTING_CHAT_FLAGS "ChatFlags"
|
||||||
#define SETTING_NOTIFY_FLAGS "NotifyFlags"
|
#define SETTING_NOTIFY_FLAGS "NotifyFlags"
|
||||||
|
#define SETTING_TRAYNOTIFY_FLAGS "TrayNotifyFlags"
|
||||||
#define SETTING_CHAT_AVATAR "ChatAvatar"
|
#define SETTING_CHAT_AVATAR "ChatAvatar"
|
||||||
|
|
||||||
/* Default Retroshare Settings */
|
/* Default Retroshare Settings */
|
||||||
@ -269,6 +270,16 @@ void RshareSettings::setNotifyFlags(uint flags)
|
|||||||
setValue(SETTING_NOTIFY_FLAGS, flags);
|
setValue(SETTING_NOTIFY_FLAGS, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint RshareSettings::getTrayNotifyFlags()
|
||||||
|
{
|
||||||
|
return value(SETTING_TRAYNOTIFY_FLAGS, TRAYNOTIFY_ALL).toUInt();
|
||||||
|
}
|
||||||
|
|
||||||
|
void RshareSettings::setTrayNotifyFlags(uint flags)
|
||||||
|
{
|
||||||
|
setValue(SETTING_TRAYNOTIFY_FLAGS, flags);
|
||||||
|
}
|
||||||
|
|
||||||
bool RshareSettings::getDisplayTrayGroupChat()
|
bool RshareSettings::getDisplayTrayGroupChat()
|
||||||
{
|
{
|
||||||
return value("DisplayTrayGroupChat").toBool();
|
return value("DisplayTrayGroupChat").toBool();
|
||||||
|
@ -31,6 +31,12 @@
|
|||||||
#include <gui/linetypes.h>
|
#include <gui/linetypes.h>
|
||||||
#include "rsettings.h"
|
#include "rsettings.h"
|
||||||
|
|
||||||
|
/* Defines for get/setTrayNotifyFlags */
|
||||||
|
#define TRAYNOTIFY_PRIVATECHAT 0x01
|
||||||
|
#define TRAYNOTIFY_MESSAGES 0x02
|
||||||
|
#define TRAYNOTIFY_CHANNELS 0x04
|
||||||
|
#define TRAYNOTIFY_FORUMS 0x08
|
||||||
|
#define TRAYNOTIFY_ALL 0x0F
|
||||||
|
|
||||||
//Forward declaration.
|
//Forward declaration.
|
||||||
class QWidget;
|
class QWidget;
|
||||||
@ -113,6 +119,9 @@ public:
|
|||||||
uint getNotifyFlags();
|
uint getNotifyFlags();
|
||||||
void setNotifyFlags(uint flags);
|
void setNotifyFlags(uint flags);
|
||||||
|
|
||||||
|
uint getTrayNotifyFlags();
|
||||||
|
void setTrayNotifyFlags(uint flags);
|
||||||
|
|
||||||
bool getDisplayTrayGroupChat();
|
bool getDisplayTrayGroupChat();
|
||||||
void setDisplayTrayGroupChat(bool bValue);
|
void setDisplayTrayGroupChat(bool bValue);
|
||||||
|
|
||||||
|
Binary file not shown.
@ -856,13 +856,13 @@ p, li { white-space: pre-wrap; }
|
|||||||
<context>
|
<context>
|
||||||
<name>ChanMsgItem</name>
|
<name>ChanMsgItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/feeds/ChanMsgItem.ui" line="+230"/>
|
<location filename="../gui/feeds/ChanMsgItem.ui" line="+214"/>
|
||||||
<source>Remove Item</source>
|
<source>Remove Item</source>
|
||||||
<translation>Eintrag entfernen</translation>
|
<translation>Eintrag entfernen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+20"/>
|
<location line="+20"/>
|
||||||
<location filename="../gui/feeds/ChanMsgItem.cpp" line="+249"/>
|
<location filename="../gui/feeds/ChanMsgItem.cpp" line="+285"/>
|
||||||
<source>Expand</source>
|
<source>Expand</source>
|
||||||
<translation>Erweitern</translation>
|
<translation>Erweitern</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -877,7 +877,12 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation type="unfinished">Abspielen</translation>
|
<translation type="unfinished">Abspielen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-75"/>
|
<location line="+56"/>
|
||||||
|
<source>New</source>
|
||||||
|
<translation type="unfinished">Neu</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location line="-131"/>
|
||||||
<source>Unsubscribe From Channel</source>
|
<source>Unsubscribe From Channel</source>
|
||||||
<translation>Kanal abbestellen</translation>
|
<translation>Kanal abbestellen</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -1000,12 +1005,17 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Hinzufügen</translation>
|
<translation>Hinzufügen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+407"/>
|
<location line="+340"/>
|
||||||
|
<source>Set all to read</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location line="+100"/>
|
||||||
<source>Create Channel</source>
|
<source>Create Channel</source>
|
||||||
<translation>Kanal erstellen</translation>
|
<translation>Kanal erstellen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-165"/>
|
<location line="-198"/>
|
||||||
<source>Unsubscribe</source>
|
<source>Unsubscribe</source>
|
||||||
<translation>Abbestellen</translation>
|
<translation>Abbestellen</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -1025,7 +1035,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Kanal abbestellen</translation>
|
<translation>Kanal abbestellen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/ChannelFeed.cpp" line="+69"/>
|
<location filename="../gui/ChannelFeed.cpp" line="+77"/>
|
||||||
<source>Name</source>
|
<source>Name</source>
|
||||||
<translation>Name</translation>
|
<translation>Name</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -1035,12 +1045,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Beliebtheit</translation>
|
<translation>Beliebtheit</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+1"/>
|
<location line="+22"/>
|
||||||
<source>ID</source>
|
|
||||||
<translation></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location line="+23"/>
|
|
||||||
<source>Own Channels</source>
|
<source>Own Channels</source>
|
||||||
<translation>Meine Kanäle</translation>
|
<translation>Meine Kanäle</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -1061,7 +1066,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/ChannelFeed.ui" line="-147"/>
|
<location filename="../gui/ChannelFeed.ui" line="-147"/>
|
||||||
<location filename="../gui/ChannelFeed.cpp" line="+39"/>
|
<location filename="../gui/ChannelFeed.cpp" line="+37"/>
|
||||||
<source>Post to Channel</source>
|
<source>Post to Channel</source>
|
||||||
<translation>Kanalbeitrag erstellen</translation>
|
<translation>Kanalbeitrag erstellen</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -1086,10 +1091,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Verteile Kanal</translation>
|
<translation>Verteile Kanal</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+232"/>
|
<location line="+236"/>
|
||||||
<location line="+74"/>
|
|
||||||
<location line="+77"/>
|
|
||||||
<location line="+75"/>
|
|
||||||
<source>Popularity: %1
|
<source>Popularity: %1
|
||||||
Fetches: %2
|
Fetches: %2
|
||||||
Available: %3</source>
|
Available: %3</source>
|
||||||
@ -1098,30 +1100,12 @@ Abgeholt: %2
|
|||||||
Verfügbar: %3</translation>
|
Verfügbar: %3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-186"/>
|
<location line="+125"/>
|
||||||
<location line="+76"/>
|
|
||||||
<location line="+76"/>
|
|
||||||
<location line="+76"/>
|
|
||||||
<source>Unknown Channel</source>
|
|
||||||
<translation>Unbekannter Kanal</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location line="-226"/>
|
|
||||||
<location line="+76"/>
|
|
||||||
<location line="+76"/>
|
|
||||||
<location line="+76"/>
|
|
||||||
<source>Unknown Channel
|
|
||||||
No Description</source>
|
|
||||||
<translation>Unbekannter Kanal
|
|
||||||
Keine Beschreibung</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location line="+21"/>
|
|
||||||
<source>No Channel Selected</source>
|
<source>No Channel Selected</source>
|
||||||
<translation>Keinen Kanal gewählt</translation>
|
<translation>Keinen Kanal gewählt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-529"/>
|
<location line="-367"/>
|
||||||
<source>Restore Publish Rights for Channel</source>
|
<source>Restore Publish Rights for Channel</source>
|
||||||
<translation>Stelle Veröffentlichungsrechte für Kanal wieder her</translation>
|
<translation>Stelle Veröffentlichungsrechte für Kanal wieder her</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -2230,7 +2214,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Drag'n'Drop Dateien aus den Suchergebnissen</translation>
|
<translation>Drag'n'Drop Dateien aus den Suchergebnissen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/channels/CreateChannelMsg.cpp" line="+289"/>
|
<location filename="../gui/channels/CreateChannelMsg.cpp" line="+285"/>
|
||||||
<source>Add Extra File</source>
|
<source>Add Extra File</source>
|
||||||
<translation>Zusätzlich eine Datei hinzufügen</translation>
|
<translation>Zusätzlich eine Datei hinzufügen</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -3550,7 +3534,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Forum:</p></body></html></translation>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Forum:</p></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+42"/>
|
<location line="+44"/>
|
||||||
<source>Last Post</source>
|
<source>Last Post</source>
|
||||||
<translation>Letzter Beitrag</translation>
|
<translation>Letzter Beitrag</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -3566,24 +3550,24 @@ p, li { white-space: pre-wrap; }
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+36"/>
|
<location line="+36"/>
|
||||||
<location line="+260"/>
|
<location line="+261"/>
|
||||||
<source>Date</source>
|
<source>Date</source>
|
||||||
<translation>Datum</translation>
|
<translation>Datum</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-274"/>
|
<location line="-275"/>
|
||||||
<location line="+279"/>
|
<location line="+280"/>
|
||||||
<source>Title</source>
|
<source>Title</source>
|
||||||
<translation>Titel</translation>
|
<translation>Titel</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-260"/>
|
<location line="-261"/>
|
||||||
<location line="+265"/>
|
<location line="+266"/>
|
||||||
<source>Author</source>
|
<source>Author</source>
|
||||||
<translation>Autor</translation>
|
<translation>Autor</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-260"/>
|
<location line="-261"/>
|
||||||
<source>Signed</source>
|
<source>Signed</source>
|
||||||
<translation>Unterzeichnet</translation>
|
<translation>Unterzeichnet</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -3601,7 +3585,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">Thema:</span></p></body></html></translation>
|
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">Thema:</span></p></body></html></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+50"/>
|
<location line="+51"/>
|
||||||
<source>Previous Thread</source>
|
<source>Previous Thread</source>
|
||||||
<translation>Vorheriger Beitrag</translation>
|
<translation>Vorheriger Beitrag</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -4933,7 +4917,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/MainWindow.cpp" line="+198"/>
|
<location filename="../gui/MainWindow.cpp" line="+199"/>
|
||||||
<source>Network</source>
|
<source>Network</source>
|
||||||
<translation>Netzwerk</translation>
|
<translation>Netzwerk</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -4963,7 +4947,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation type="unfinished">Blogs</translation>
|
<translation type="unfinished">Blogs</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+539"/>
|
<location line="+577"/>
|
||||||
<source>Internal Error</source>
|
<source>Internal Error</source>
|
||||||
<translation>Interener Fehler</translation>
|
<translation>Interener Fehler</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -4984,10 +4968,12 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Zeigen</translation>
|
<translation>Zeigen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-408"/>
|
<location line="-445"/>
|
||||||
<location line="+55"/>
|
<location line="+61"/>
|
||||||
<location line="+2"/>
|
<location line="+2"/>
|
||||||
<location line="+22"/>
|
<location line="+24"/>
|
||||||
|
<location line="+2"/>
|
||||||
|
<location line="+24"/>
|
||||||
<location line="+2"/>
|
<location line="+2"/>
|
||||||
<source>RetroShare</source>
|
<source>RetroShare</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
@ -5019,7 +5005,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Schnellstart Assistent</translation>
|
<translation>Schnellstart Assistent</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/MainWindow.cpp" line="-264"/>
|
<location filename="../gui/MainWindow.cpp" line="-299"/>
|
||||||
<source>Search</source>
|
<source>Search</source>
|
||||||
<translation>Suchen</translation>
|
<translation>Suchen</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -5034,7 +5020,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Messenger</translation>
|
<translation>Messenger</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/MainWindow.cpp" line="+151"/>
|
<location filename="../gui/MainWindow.cpp" line="+152"/>
|
||||||
<source>Show/Hide</source>
|
<source>Show/Hide</source>
|
||||||
<translation>Anzeigen/Verbergen</translation>
|
<translation>Anzeigen/Verbergen</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -5044,19 +5030,21 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>&Schliessen</translation>
|
<translation>&Schliessen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+60"/>
|
<location line="+66"/>
|
||||||
<location line="+24"/>
|
<location line="+26"/>
|
||||||
|
<location line="+26"/>
|
||||||
<source>You have %1 new messages</source>
|
<source>You have %1 new messages</source>
|
||||||
<translation>Du hast %1 neue Beiträge</translation>
|
<translation>Du hast %1 neue Beiträge</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-22"/>
|
<location line="-50"/>
|
||||||
<location line="+24"/>
|
<location line="+26"/>
|
||||||
|
<location line="+26"/>
|
||||||
<source>You have %1 new message</source>
|
<source>You have %1 new message</source>
|
||||||
<translation>Du hast %1 neuen Beitrag</translation>
|
<translation>Du hast %1 neuen Beitrag</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+254"/>
|
<location line="+257"/>
|
||||||
<source>Bandwidth Graph</source>
|
<source>Bandwidth Graph</source>
|
||||||
<translation>Bandbreiten-Graph</translation>
|
<translation>Bandbreiten-Graph</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -5071,7 +5059,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Schliessen</translation>
|
<translation>Schliessen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/MainWindow.cpp" line="-346"/>
|
<location filename="../gui/MainWindow.cpp" line="-383"/>
|
||||||
<source>Minimize</source>
|
<source>Minimize</source>
|
||||||
<translation>Minimieren</translation>
|
<translation>Minimieren</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -5081,7 +5069,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Maximieren</translation>
|
<translation>Maximieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-149"/>
|
<location line="-150"/>
|
||||||
<source>Links Cloud</source>
|
<source>Links Cloud</source>
|
||||||
<translation>Verknüpfungs-Wolke</translation>
|
<translation>Verknüpfungs-Wolke</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -5096,7 +5084,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/MainWindow.cpp" line="+486"/>
|
<location filename="../gui/MainWindow.cpp" line="+524"/>
|
||||||
<source>Help</source>
|
<source>Help</source>
|
||||||
<translation>Hilfe</translation>
|
<translation>Hilfe</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -5106,7 +5094,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Über</translation>
|
<translation>Über</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/MainWindow.cpp" line="-507"/>
|
<location filename="../gui/MainWindow.cpp" line="-545"/>
|
||||||
<source>Forums</source>
|
<source>Forums</source>
|
||||||
<translation>Foren</translation>
|
<translation>Foren</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -5116,7 +5104,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>RetroShare %1 eine sichere und dezentralisierte Kommunikationsplattform</translation>
|
<translation>RetroShare %1 eine sichere und dezentralisierte Kommunikationsplattform</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+570"/>
|
<location line="+608"/>
|
||||||
<source>Open Messages</source>
|
<source>Open Messages</source>
|
||||||
<translation>Öffne Nachrichten</translation>
|
<translation>Öffne Nachrichten</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -5126,12 +5114,12 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Anwendungen</translation>
|
<translation>Anwendungen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-494"/>
|
<location line="-532"/>
|
||||||
<source>Plugins</source>
|
<source>Plugins</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+510"/>
|
<location line="+548"/>
|
||||||
<source>Do you really want to exit RetroShare ?</source>
|
<source>Do you really want to exit RetroShare ?</source>
|
||||||
<translation>Wollen Sie RetroShare wirklich beenden?</translation>
|
<translation>Wollen Sie RetroShare wirklich beenden?</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -5141,7 +5129,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Wirklich beenden?</translation>
|
<translation>Wirklich beenden?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-397"/>
|
<location line="-434"/>
|
||||||
<source>Low disk space warning</source>
|
<source>Low disk space warning</source>
|
||||||
<translation>Wenig Festplatenspeicher</translation>
|
<translation>Wenig Festplatenspeicher</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -6180,12 +6168,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Klick zum Ändern deines Avatars</translation>
|
<translation>Klick zum Ändern deines Avatars</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+75"/>
|
<location line="+134"/>
|
||||||
<source>Change your Personal Status here...</source>
|
|
||||||
<translation>Ändere deinen persönlichen Status...</translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location line="+71"/>
|
|
||||||
<source>Add a Friend</source>
|
<source>Add a Friend</source>
|
||||||
<translation>Einen Freund hinzufügen</translation>
|
<translation>Einen Freund hinzufügen</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -6247,7 +6230,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>RetroShare Link einfügen</translation>
|
<translation>RetroShare Link einfügen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/MessengerWindow.ui" line="-486"/>
|
<location filename="../gui/MessengerWindow.ui" line="-474"/>
|
||||||
<source>RetroShare Messenger</source>
|
<source>RetroShare Messenger</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
@ -6842,7 +6825,32 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Nachrichten</translation>
|
<translation>Nachrichten</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+48"/>
|
<location line="+31"/>
|
||||||
|
<source>Systray Icon</source>
|
||||||
|
<translation>Systray Icon</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location line="+6"/>
|
||||||
|
<source>Private Message</source>
|
||||||
|
<translation>Private Nachricht</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location line="+7"/>
|
||||||
|
<source>Message</source>
|
||||||
|
<translation>Nachricht</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location line="+7"/>
|
||||||
|
<source>Channel Post</source>
|
||||||
|
<translation>Kanalbeitrag</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location line="+7"/>
|
||||||
|
<source>Forum Post</source>
|
||||||
|
<translation>Forumbeitrag</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location line="+27"/>
|
||||||
<source>Toasters</source>
|
<source>Toasters</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
@ -6887,7 +6895,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Zeige Systemabschnitts-Nachricht an</translation>
|
<translation>Zeige Systemabschnitts-Nachricht an</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="-92"/>
|
<location line="-129"/>
|
||||||
<source>Add feeds at end</source>
|
<source>Add feeds at end</source>
|
||||||
<translation>Feeds am Ende anfügen</translation>
|
<translation>Feeds am Ende anfügen</translation>
|
||||||
</message>
|
</message>
|
||||||
@ -7063,8 +7071,8 @@ p, li { white-space: pre-wrap; }
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+24"/>
|
<location line="+24"/>
|
||||||
<source><span style="color:#000000"><strong>Friends:</strong></span></source>
|
<source><strong>Friends:</strong></source>
|
||||||
<translation><span style="color:#000000"><strong>Freunde:</strong></span></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+0"/>
|
<location line="+0"/>
|
||||||
@ -10379,7 +10387,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+26"/>
|
<location line="+26"/>
|
||||||
<location filename="../gui/feeds/SubFileItem.cpp" line="+582"/>
|
<location filename="../gui/feeds/SubFileItem.cpp" line="+580"/>
|
||||||
<location line="+6"/>
|
<location line="+6"/>
|
||||||
<source>Play File</source>
|
<source>Play File</source>
|
||||||
<translation>Datei abspielen</translation>
|
<translation>Datei abspielen</translation>
|
||||||
@ -10630,7 +10638,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Fertiggestellt</translation>
|
<translation>Fertiggestellt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../gui/TransfersDialog.ui" line="+582"/>
|
<location filename="../gui/TransfersDialog.ui" line="+573"/>
|
||||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||||
p, li { white-space: pre-wrap; }
|
p, li { white-space: pre-wrap; }
|
||||||
@ -10648,7 +10656,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
<translation>Zeige Cache Übertragungen</translation>
|
<translation>Zeige Cache Übertragungen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location line="+80"/>
|
<location line="+83"/>
|
||||||
<source>Uploads</source>
|
<source>Uploads</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
|
Loading…
Reference in New Issue
Block a user