Cleaned Creation Dialogs for Channels and Forums and updated german translation.

Fixed small bug in AppearancePage.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3479 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2010-09-13 15:11:20 +00:00
parent a57ebbe623
commit 81ca05e75e
13 changed files with 1111 additions and 1176 deletions

View File

@ -125,7 +125,7 @@ ChannelFeed::ChannelFeed(QWidget *parent)
channelmenu->addSeparator(); channelmenu->addSeparator();
channelpushButton->setMenu(channelmenu); channelpushButton->setMenu(channelmenu);
updateChannelMsgs();
} }
@ -196,12 +196,6 @@ void ChannelFeed::channelListCustomPopupMenu( QPoint point )
void ChannelFeed::createChannel() void ChannelFeed::createChannel()
{ {
CreateChannel cf (this); CreateChannel cf (this);
cf.setWindowTitle(tr("Create a new Channel"));
cf.ui.labelicon->setPixmap(QPixmap(":/images/add_channel64.png"));
QString titleStr("<span style=\"font-size:24pt; font-weight:500;"
"color:#32CD32;\">%1</span>");
cf.ui.textlabelcreatforums->setText( titleStr.arg( tr("New Channel") ) ) ;
cf.exec(); cf.exec();
} }
@ -435,9 +429,9 @@ void ChannelFeed::updateChannelListOwn(std::list<std::string> &ids)
} else { } else {
chNameItem->setData(QVariant(QString("Unknown Channel")), Qt::DisplayRole); chNameItem->setData(QVariant(QString(tr("Unknown Channel"))), Qt::DisplayRole);
chPopItem->setData(QVariant(QString::fromStdString(*iit)), Qt::DisplayRole); chPopItem->setData(QVariant(QString::fromStdString(*iit)), Qt::DisplayRole);
chNameItem->setToolTip("Unknown Channel\nNo Description"); chNameItem->setToolTip(tr("Unknown Channel\nNo Description"));
} }
channel.append(chNameItem); channel.append(chNameItem);
@ -511,9 +505,9 @@ void ChannelFeed::updateChannelListSub(std::list<std::string> &ids)
} else { } else {
chNameItem->setData(QVariant(QString("Unknown Channel")), Qt::DisplayRole); chNameItem->setData(QVariant(QString(tr("Unknown Channel"))), Qt::DisplayRole);
chPopItem->setData(QVariant(QString::fromStdString(*iit)), Qt::DisplayRole); chPopItem->setData(QVariant(QString::fromStdString(*iit)), Qt::DisplayRole);
chNameItem->setToolTip("Unknown Channel\nNo Description"); chNameItem->setToolTip(tr("Unknown Channel\nNo Description"));
} }
channel.append(chNameItem); channel.append(chNameItem);
@ -587,9 +581,9 @@ void ChannelFeed::updateChannelListPop(std::list<std::string> &ids)
} else { } else {
chNameItem->setData(QVariant(QString("Unknown Channel")), Qt::DisplayRole); chNameItem->setData(QVariant(QString(tr("Unknown Channel"))), Qt::DisplayRole);
chPopItem->setData(QVariant(QString::fromStdString(*iit)), Qt::DisplayRole); chPopItem->setData(QVariant(QString::fromStdString(*iit)), Qt::DisplayRole);
chNameItem->setToolTip("Unknown Channel\nNo Description"); chNameItem->setToolTip(tr("Unknown Channel\nNo Description"));
} }
channel.append(chNameItem); channel.append(chNameItem);
@ -663,9 +657,9 @@ void ChannelFeed::updateChannelListOther(std::list<std::string> &ids)
} else { } else {
chNameItem->setData(QVariant(QString("Unknown Channel")), Qt::DisplayRole); chNameItem->setData(QVariant(QString(tr("Unknown Channel"))), Qt::DisplayRole);
chPopItem->setData(QVariant(QString::fromStdString(*iit)), Qt::DisplayRole); chPopItem->setData(QVariant(QString::fromStdString(*iit)), Qt::DisplayRole);
chNameItem->setToolTip("Unknown Channel\nNo Description"); chNameItem->setToolTip(tr("Unknown Channel\nNo Description"));
} }
channel.append(chNameItem); channel.append(chNameItem);
@ -686,7 +680,7 @@ void ChannelFeed::updateChannelMsgs()
postButton->setEnabled(false); postButton->setEnabled(false);
subscribeButton->setEnabled(false); subscribeButton->setEnabled(false);
unsubscribeButton->setEnabled(false); unsubscribeButton->setEnabled(false);
nameLabel->setText("No Channel Selected"); nameLabel->setText(tr("No Channel Selected"));
iconLabel->setPixmap(QPixmap(":/images/channels.png")); iconLabel->setPixmap(QPixmap(":/images/channels.png"));
iconLabel->setEnabled(false); iconLabel->setEnabled(false);
return; return;

File diff suppressed because it is too large Load Diff

View File

@ -471,11 +471,11 @@ void ForumsDialog::togglethreadview_internal()
if (ui.expandButton->isChecked()) { if (ui.expandButton->isChecked()) {
ui.postText->setVisible(true); ui.postText->setVisible(true);
ui.expandButton->setIcon(QIcon(QString(":/images/edit_remove24.png"))); ui.expandButton->setIcon(QIcon(QString(":/images/edit_remove24.png")));
ui.expandButton->setToolTip("Hide"); ui.expandButton->setToolTip(tr("Hide"));
} else { } else {
ui.postText->setVisible(false); ui.postText->setVisible(false);
ui.expandButton->setIcon(QIcon(QString(":/images/edit_add24.png"))); ui.expandButton->setIcon(QIcon(QString(":/images/edit_add24.png")));
ui.expandButton->setToolTip("Expand"); ui.expandButton->setToolTip(tr("Expand"));
} }
} }

View File

@ -1497,11 +1497,6 @@ void PeersDialog::on_actionCreate_New_Channel_activated()
MainWindow::activatePage (MainWindow::Channels); MainWindow::activatePage (MainWindow::Channels);
CreateChannel cf (this); CreateChannel cf (this);
cf.setWindowTitle(tr("Create a new Channel"));
cf.ui.labelicon->setPixmap(QPixmap(":/images/add_channel64.png"));
QString titleStr("<span style=\"font-size:24pt; font-weight:500;"
"color:#32CD32;\">%1</span>");
cf.ui.textlabelcreatforums->setText( titleStr.arg( tr("New Channel") ) ) ;
cf.exec(); cf.exec();
#endif #endif
} }

View File

@ -242,7 +242,7 @@ void CreateChannel::cancelChannel()
void CreateChannel::addChannelLogo() void CreateChannel::addChannelLogo()
{ {
QString fileName = QFileDialog::getOpenFileName(this, "Load File", QDir::homePath(), "Pictures (*.png *.xpm *.jpg)"); QString fileName = QFileDialog::getOpenFileName(this, tr("Load File"), QDir::homePath(), tr("Pictures (*.png *.xpm *.jpg)"));
if(!fileName.isEmpty()) if(!fileName.isEmpty())
{ {
picture = QPixmap(fileName).scaled(64,64, Qt::IgnoreAspectRatio,Qt::SmoothTransformation); picture = QPixmap(fileName).scaled(64,64, Qt::IgnoreAspectRatio,Qt::SmoothTransformation);

View File

@ -69,7 +69,7 @@
<string/> <string/>
</property> </property>
<property name="pixmap"> <property name="pixmap">
<pixmap resource="../images.qrc">:/images/konversation64.png</pixmap> <pixmap resource="../images.qrc">:/images/add_channel64.png</pixmap>
</property> </property>
<property name="scaledContents"> <property name="scaledContents">
<bool>true</bool> <bool>true</bool>
@ -78,15 +78,8 @@
</item> </item>
<item row="0" column="1"> <item row="0" column="1">
<widget class="QLabel" name="textlabelcreatforums"> <widget class="QLabel" name="textlabelcreatforums">
<property name="styleSheet">
<string notr="true">color: rgb(255, 255, 255);</string>
</property>
<property name="text"> <property name="text">
<string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt; <string>&lt;span style=&quot;font-size:24pt; font-weight:500;color:#32CD32;&quot;&gt;New Channel&lt;/span&gt;</string>
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'Sans'; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:'Arial'; font-size:24pt; font-weight:600; color:#ffffff;&quot;&gt;New Channel&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -276,7 +269,7 @@ p, li { white-space: pre-wrap; }
<item> <item>
<widget class="QRadioButton" name="msgAuth"> <widget class="QRadioButton" name="msgAuth">
<property name="text"> <property name="text">
<string>Authemticated Messages</string> <string>Authenticated Messages</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -481,17 +474,6 @@ border-radius: 10px;
</widget> </widget>
<resources> <resources>
<include location="../images.qrc"/> <include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
</resources> </resources>
<connections/> <connections/>
</ui> </ui>

View File

@ -494,7 +494,7 @@ void CreateChannelMsg::sendMessage(std::wstring subject, std::wstring msg, std::
void CreateChannelMsg::addThumbnail() void CreateChannelMsg::addThumbnail()
{ {
QString fileName = QFileDialog::getOpenFileName(this, "Load File", QDir::homePath(), "Pictures (*.png *.xpm *.jpg)"); QString fileName = QFileDialog::getOpenFileName(this, tr("Load File"), QDir::homePath(), tr("Pictures (*.png *.xpm *.jpg)"));
if(!fileName.isEmpty()) if(!fileName.isEmpty())
{ {
picture = QPixmap(fileName).scaled(156,107, Qt::IgnoreAspectRatio,Qt::SmoothTransformation); picture = QPixmap(fileName).scaled(156,107, Qt::IgnoreAspectRatio,Qt::SmoothTransformation);
@ -517,8 +517,3 @@ void CreateChannelMsg::addThumbnail()
//updateThumbnail() ; //updateThumbnail() ;
} }
} }

View File

@ -73,7 +73,7 @@ void CreateForum::createForum()
if(name.isEmpty()) if(name.isEmpty())
{ /* error message */ { /* error message */
int ret = QMessageBox::warning(this, tr("RetroShare"), QMessageBox::warning(this, tr("RetroShare"),
tr("Please add a Name"), tr("Please add a Name"),
QMessageBox::Ok, QMessageBox::Ok); QMessageBox::Ok, QMessageBox::Ok);

View File

@ -175,7 +175,7 @@ p, li { white-space: pre-wrap; }
<item> <item>
<widget class="QRadioButton" name="msgAuth"> <widget class="QRadioButton" name="msgAuth">
<property name="text"> <property name="text">
<string>Authemticated Messages</string> <string>Authenticated Messages</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -239,17 +239,6 @@ p, li { white-space: pre-wrap; }
</widget> </widget>
<resources> <resources>
<include location="../images.qrc"/> <include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
<include location="../images.qrc"/>
</resources> </resources>
<connections/> <connections/>
</ui> </ui>

View File

@ -1,331 +1,338 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>CreateForumMsg</class> <class>CreateForumMsg</class>
<widget class="QMainWindow" name="CreateForumMsg"> <widget class="QMainWindow" name="CreateForumMsg">
<property name="windowModality"> <property name="windowModality">
<enum>Qt::NonModal</enum> <enum>Qt::NonModal</enum>
</property> </property>
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>482</width> <width>482</width>
<height>448</height> <height>448</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>Post Forum Message</string> <string>Post Forum Message</string>
</property> </property>
<property name="windowIcon"> <property name="windowIcon">
<iconset resource="../images.qrc"> <iconset resource="../images.qrc">
<normaloff>:/images/rstray3.png</normaloff>:/images/rstray3.png</iconset> <normaloff>:/images/rstray3.png</normaloff>:/images/rstray3.png</iconset>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">QToolBar#toolBar{background-image: url(:/images/connect/connectFriendBanner.png)}</string> <string notr="true">QToolBar#toolBar{background-image: url(:/images/connect/connectFriendBanner.png)}</string>
</property> </property>
<property name="toolButtonStyle"> <property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum> <enum>Qt::ToolButtonTextUnderIcon</enum>
</property> </property>
<widget class="QWidget" name="centralwidget"> <widget class="QWidget" name="centralwidget">
<layout class="QGridLayout" name="gridLayout_5"> <layout class="QGridLayout" name="gridLayout_5">
<property name="margin"> <property name="margin">
<number>0</number> <number>0</number>
</property> </property>
<property name="spacing"> <property name="spacing">
<number>0</number> <number>0</number>
</property> </property>
<item row="0" column="0"> <item row="0" column="0">
<layout class="QGridLayout" name="gridLayout_4"> <layout class="QGridLayout" name="gridLayout_4">
<item row="0" column="0"> <item row="0" column="0">
<widget class="QFrame" name="frame_4"> <widget class="QFrame" name="frame_4">
<property name="frameShape"> <property name="frameShape">
<enum>QFrame::NoFrame</enum> <enum>QFrame::NoFrame</enum>
</property> </property>
<property name="frameShadow"> <property name="frameShadow">
<enum>QFrame::Raised</enum> <enum>QFrame::Raised</enum>
</property> </property>
<layout class="QGridLayout" name="gridLayout_3"> <layout class="QGridLayout" name="gridLayout_3">
<property name="topMargin"> <property name="topMargin">
<number>6</number> <number>6</number>
</property> </property>
<property name="bottomMargin"> <property name="bottomMargin">
<number>6</number> <number>6</number>
</property> </property>
<item row="0" column="0"> <item row="0" column="0">
<layout class="QHBoxLayout"> <layout class="QHBoxLayout">
<item> <item>
<widget class="QLabel" name="label_2"> <widget class="QLabel" name="label_2">
<property name="text"> <property name="text">
<string>Forum</string> <string>Forum</string>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QLineEdit" name="forumName"> <widget class="QLineEdit" name="forumName">
<property name="enabled"> <property name="enabled">
<bool>false</bool> <bool>false</bool>
</property> </property>
</widget> </widget>
</item> </item>
</layout> </layout>
</item> </item>
<item row="1" column="0"> <item row="1" column="0">
<layout class="QHBoxLayout"> <layout class="QHBoxLayout">
<item> <item>
<widget class="QLabel" name="label"> <widget class="QLabel" name="label">
<property name="text"> <property name="text">
<string>Forum Post Subject</string> <string>Subject</string>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QLineEdit" name="forumSubject"/> <widget class="QLineEdit" name="forumSubject"/>
</item> </item>
</layout> </layout>
</item> </item>
</layout> </layout>
</widget> </widget>
</item> </item>
<item row="1" column="0"> <item row="1" column="0">
<widget class="QFrame" name="frame_2"> <widget class="QFrame" name="frame_2">
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>16777215</width> <width>16777215</width>
<height>48</height> <height>48</height>
</size> </size>
</property> </property>
<property name="styleSheet"> <property name="styleSheet">
<string notr="true">QFrame#frame_2{ <string notr="true">QFrame#frame_2{
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 #FEFEFE, stop:1 #E8E8E8); stop:0 #FEFEFE, stop:1 #E8E8E8);
border: 1px solid #CCCCCC;}</string> border: 1px solid #CCCCCC;}</string>
</property> </property>
<property name="frameShadow"> <property name="frameShadow">
<enum>QFrame::Raised</enum> <enum>QFrame::Raised</enum>
</property> </property>
<layout class="QHBoxLayout"> <layout class="QHBoxLayout">
<property name="margin"> <property name="margin">
<number>6</number> <number>6</number>
</property> </property>
<item> <item>
<widget class="QToolButton" name="attachFileButton"> <widget class="QToolButton" name="attachFileButton">
<property name="toolTip"> <property name="toolTip">
<string>Attach File</string> <string>Attach File</string>
</property> </property>
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../images.qrc">
<normaloff>:/images/add-share24.png</normaloff>:/images/add-share24.png</iconset> <normaloff>:/images/add-share24.png</normaloff>:/images/add-share24.png</iconset>
</property> </property>
<property name="iconSize"> <property name="iconSize">
<size> <size>
<width>24</width> <width>24</width>
<height>24</height> <height>24</height>
</size> </size>
</property> </property>
<property name="autoRaise"> <property name="autoRaise">
<bool>true</bool> <bool>true</bool>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QToolButton" name="emoticonButton"> <widget class="QToolButton" name="emoticonButton">
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../images.qrc">
<normaloff>:/smileys/smile.png</normaloff>:/smileys/smile.png</iconset> <normaloff>:/smileys/smile.png</normaloff>:/smileys/smile.png</iconset>
</property> </property>
<property name="iconSize"> <property name="iconSize">
<size> <size>
<width>24</width> <width>24</width>
<height>24</height> <height>24</height>
</size> </size>
</property> </property>
<property name="autoRaise"> <property name="autoRaise">
<bool>true</bool> <bool>true</bool>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QCheckBox" name="signBox"> <widget class="QCheckBox" name="signBox">
<property name="text"> <property name="text">
<string>Sign Message</string> <string>Sign Message</string>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../images.qrc">
<normaloff>:/images/pgp.png</normaloff>:/images/pgp.png</iconset> <normaloff>:/images/pgp.png</normaloff>:/images/pgp.png</iconset>
</property> </property>
<property name="iconSize"> <property name="iconSize">
<size> <size>
<width>24</width> <width>24</width>
<height>24</height> <height>24</height>
</size> </size>
</property> </property>
<property name="checked"> <property name="checked">
<bool>true</bool> <bool>true</bool>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<spacer> <spacer>
<property name="orientation"> <property name="orientation">
<enum>Qt::Horizontal</enum> <enum>Qt::Horizontal</enum>
</property> </property>
<property name="sizeHint" stdset="0"> <property name="sizeHint" stdset="0">
<size> <size>
<width>40</width> <width>40</width>
<height>15</height> <height>15</height>
</size> </size>
</property> </property>
</spacer> </spacer>
</item> </item>
<item> <item>
<widget class="QToolButton" name="pastersButton"> <widget class="QToolButton" name="pastersButton">
<property name="toolTip"> <property name="toolTip">
<string>Paste retroshare link</string> <string>Paste retroshare link</string>
</property> </property>
<property name="text"> <property name="text">
<string/> <string/>
</property> </property>
<property name="icon"> <property name="icon">
<iconset resource="../images.qrc"> <iconset resource="../images.qrc">
<normaloff>:/images/pasterslink.png</normaloff>:/images/pasterslink.png</iconset> <normaloff>:/images/pasterslink.png</normaloff>:/images/pasterslink.png</iconset>
</property> </property>
<property name="autoRaise"> <property name="autoRaise">
<bool>true</bool> <bool>true</bool>
</property> </property>
</widget> </widget>
</item> </item>
</layout> </layout>
</widget> </widget>
</item> </item>
<item row="2" column="0"> <item row="2" column="0">
<widget class="QFrame" name="frame_3"> <widget class="QFrame" name="frame_3">
<property name="frameShape"> <property name="frameShape">
<enum>QFrame::NoFrame</enum> <enum>QFrame::NoFrame</enum>
</property> </property>
<property name="frameShadow"> <property name="frameShadow">
<enum>QFrame::Raised</enum> <enum>QFrame::Raised</enum>
</property> </property>
<layout class="QGridLayout" name="gridLayout_2"> <layout class="QGridLayout" name="gridLayout_2">
<property name="topMargin"> <property name="topMargin">
<number>6</number> <number>6</number>
</property> </property>
<property name="bottomMargin"> <property name="bottomMargin">
<number>6</number> <number>6</number>
</property> </property>
<item row="0" column="0"> <item row="0" column="0">
<widget class="QGroupBox" name="groupBox"> <widget class="QGroupBox" name="groupBox">
<property name="title"> <property name="title">
<string>Forum Post</string> <string>Forum Post</string>
</property> </property>
<layout class="QGridLayout" name="gridLayout"> <layout class="QGridLayout" name="gridLayout">
<item row="0" column="0"> <item row="0" column="0">
<widget class="QTextEdit" name="forumMessage"> <widget class="QTextEdit" name="forumMessage">
<property name="contextMenuPolicy"> <property name="contextMenuPolicy">
<enum>Qt::CustomContextMenu</enum> <enum>Qt::CustomContextMenu</enum>
</property> </property>
</widget> <property name="html">
</item> <string notr="true">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
</layout> &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
</widget> p, li { white-space: pre-wrap; }
</item> &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
<item row="1" column="0"> &lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<widget class="QGroupBox" name="groupBox_2"> </property>
<property name="title"> </widget>
<string>Attach files via drag and drop</string> </item>
</property> </layout>
<layout class="QGridLayout" name="gridLayout_7"> </widget>
<item row="0" column="0"> </item>
<widget class="QScrollArea" name="scrollArea"> <item row="1" column="0">
<property name="toolTip"> <widget class="QGroupBox" name="groupBox_2">
<string>You can attach files via drag and drop here in this window</string> <property name="title">
</property> <string>Attach files via drag and drop</string>
<property name="widgetResizable"> </property>
<bool>true</bool> <layout class="QGridLayout" name="gridLayout_7">
</property> <item row="0" column="0">
<widget class="QWidget" name="scrollAreaWidgetContents"> <widget class="QScrollArea" name="scrollArea">
<property name="geometry"> <property name="toolTip">
<rect> <string>You can attach files via drag and drop here in this window</string>
<x>0</x> </property>
<y>0</y> <property name="widgetResizable">
<width>440</width> <bool>true</bool>
<height>60</height> </property>
</rect> <widget class="QWidget" name="scrollAreaWidgetContents">
</property> <property name="geometry">
<layout class="QGridLayout" name="gridLayout_6"> <rect>
<property name="margin"> <x>0</x>
<number>0</number> <y>0</y>
</property> <width>440</width>
<item row="1" column="0"> <height>57</height>
<layout class="QVBoxLayout" name="verticalLayout"/> </rect>
</item> </property>
<item row="2" column="0"> <layout class="QGridLayout" name="gridLayout_6">
<spacer name="verticalSpacer"> <property name="margin">
<property name="orientation"> <number>0</number>
<enum>Qt::Vertical</enum> </property>
</property> <item row="1" column="0">
<property name="sizeHint" stdset="0"> <layout class="QVBoxLayout" name="verticalLayout"/>
<size> </item>
<width>20</width> <item row="2" column="0">
<height>40</height> <spacer name="verticalSpacer">
</size> <property name="orientation">
</property> <enum>Qt::Vertical</enum>
</spacer> </property>
</item> <property name="sizeHint" stdset="0">
</layout> <size>
</widget> <width>20</width>
</widget> <height>40</height>
</item> </size>
</layout> </property>
</widget> </spacer>
</item> </item>
</layout> </layout>
</widget> </widget>
</item> </widget>
</layout> </item>
</item> </layout>
</layout> </widget>
</widget> </item>
<widget class="QToolBar" name="toolBar"> </layout>
<property name="windowTitle"> </widget>
<string>toolBar</string> </item>
</property> </layout>
<attribute name="toolBarArea"> </item>
<enum>TopToolBarArea</enum> </layout>
</attribute> </widget>
<attribute name="toolBarBreak"> <widget class="QToolBar" name="toolBar">
<bool>false</bool> <property name="windowTitle">
</attribute> <string notr="true">toolBar</string>
<addaction name="postmessage_action"/> </property>
<addaction name="close_action"/> <attribute name="toolBarArea">
</widget> <enum>TopToolBarArea</enum>
<action name="postmessage_action"> </attribute>
<property name="icon"> <attribute name="toolBarBreak">
<iconset resource="../images.qrc"> <bool>false</bool>
<normaloff>:/images/mail_send24.png</normaloff>:/images/mail_send24.png</iconset> </attribute>
</property> <addaction name="postmessage_action"/>
<property name="text"> <addaction name="close_action"/>
<string>Post Forum Msg</string> </widget>
</property> <action name="postmessage_action">
</action> <property name="icon">
<action name="close_action"> <iconset resource="../images.qrc">
<property name="icon"> <normaloff>:/images/mail_send24.png</normaloff>:/images/mail_send24.png</iconset>
<iconset resource="../images.qrc"> </property>
<normaloff>:/images/button_cancel.png</normaloff>:/images/button_cancel.png</iconset> <property name="text">
</property> <string>Post Forum Msg</string>
<property name="text"> </property>
<string>Close</string> </action>
</property> <action name="close_action">
</action> <property name="icon">
</widget> <iconset resource="../images.qrc">
<resources> <normaloff>:/images/button_cancel.png</normaloff>:/images/button_cancel.png</iconset>
<include location="../images.qrc"/> </property>
</resources> <property name="text">
<connections/> <string>Close</string>
</ui> </property>
</action>
</widget>
<resources>
<include location="../images.qrc"/>
</resources>
<connections/>
</ui>

View File

@ -48,13 +48,9 @@ AppearancePage::AppearancePage(QWidget * parent, Qt::WFlags flags)
ui.cmboStyle->addItem(style, style.toLower()); ui.cmboStyle->addItem(style, style.toLower());
} }
ui.styleSheetCombo->setCurrentIndex(ui.styleSheetCombo->findText("Default"));
//loadStyleSheet("Default"); //loadStyleSheet("Default");
loadqss(); loadqss();
//load();
/* Hide platform specific features */ /* Hide platform specific features */
#ifdef Q_WS_WIN #ifdef Q_WS_WIN
@ -69,32 +65,33 @@ AppearancePage::~AppearancePage()
bool bool
AppearancePage::save(QString &errmsg) AppearancePage::save(QString &errmsg)
{ {
Q_UNUSED(errmsg); Q_UNUSED(errmsg);
QString languageCode = QString languageCode = LanguageSupport::languageCode(ui.cmboLanguage->currentText());
LanguageSupport::languageCode(ui.cmboLanguage->currentText());
Settings->setLanguageCode(languageCode); Settings->setLanguageCode(languageCode);
Settings->setInterfaceStyle(ui.cmboStyle->currentText()); Settings->setInterfaceStyle(ui.cmboStyle->currentText());
Settings->setSheetName(ui.styleSheetCombo->currentText()); Settings->setSheetName(ui.styleSheetCombo->currentText());
/* Set to new style */ /* Set to new style */
Rshare::setStyle(ui.cmboStyle->currentText()); Rshare::setStyle(ui.cmboStyle->currentText());
return true; return true;
} }
/** Loads the settings for this page */ /** Loads the settings for this page */
void void
AppearancePage::load() AppearancePage::load()
{ {
int index = ui.cmboLanguage->findData(Settings->getLanguageCode()); int index = ui.cmboLanguage->findData(Settings->getLanguageCode());
ui.cmboLanguage->setCurrentIndex(index); ui.cmboLanguage->setCurrentIndex(index);
index = ui.cmboStyle->findData(Rshare::style().toLower()); index = ui.cmboStyle->findData(Rshare::style().toLower());
ui.cmboStyle->setCurrentIndex(index); ui.cmboStyle->setCurrentIndex(index);
ui.styleSheetCombo->setCurrentIndex(ui.styleSheetCombo->findText(Settings->getSheetName())); index = ui.styleSheetCombo->findText(Settings->getSheetName());
if (index == -1) {
index = ui.styleSheetCombo->findText("noskin");
}
ui.styleSheetCombo->setCurrentIndex(index);
/** load saved internal styleSheet **/ /** load saved internal styleSheet **/
//QFile file(":/qss/" + (settings.getSheetName().toLower()) + ".qss"); //QFile file(":/qss/" + (settings.getSheetName().toLower()) + ".qss");
@ -105,7 +102,6 @@ AppearancePage::load()
file.open(QFile::ReadOnly); file.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(file.readAll()); QString styleSheet = QLatin1String(file.readAll());
qApp->setStyleSheet(styleSheet); qApp->setStyleSheet(styleSheet);
} }
void AppearancePage::on_styleSheetCombo_activated(const QString &sheetName) void AppearancePage::on_styleSheetCombo_activated(const QString &sheetName)

View File

@ -207,12 +207,15 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Arial&apos;; font-size:10pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt; &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Arial&apos;; font-size:10pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Choose the language used in RetroShare&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source> &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Choose the language used in RetroShare&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation> <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Arial&apos;; font-size:10pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Wähle die Sprache für RetroShare aus&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message> </message>
<message> <message>
<location line="+31"/> <location line="+31"/>
<source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:Arial; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Changes to language will only take effect after restarting RetroShare!&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source> <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:Arial; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Changes to language will only take effect after restarting RetroShare!&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished">&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:Arial; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Änderungen in der Sprachwahl wirken sich erst nach einem Neustart von Retroshare aus!&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation> <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:Arial; font-size:8pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Änderungen in der Sprachwahl wirken sich erst nach einem Neustart von Retroshare aus!&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message> </message>
<message> <message>
<location line="+20"/> <location line="+20"/>
@ -225,7 +228,10 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Arial&apos;; font-size:10pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt; &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Arial&apos;; font-size:10pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Choose RetroShare&apos;s interface style&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source> &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Choose RetroShare&apos;s interface style&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation> <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Arial&apos;; font-size:10pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Wähle die Oberfläche für RetroShare aus&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message> </message>
<message> <message>
<location line="+36"/> <location line="+36"/>
@ -822,7 +828,7 @@ p, li { white-space: pre-wrap; }
<message> <message>
<location line="+3"/> <location line="+3"/>
<source>Drag and Drop your friends&apos;s certificate in this Window or specify path in the box below </source> <source>Drag and Drop your friends&apos;s certificate in this Window or specify path in the box below </source>
<translation>Per Drag and Drop können Sie Freundes Zertifikat ins Fenster ziehen oder geben sie den Pfad unten in der Box an</translation> <translation>Per Drag&apos;n&apos;Drop können Sie Freundes Zertifikat ins Fenster ziehen oder geben sie den Pfad unten in der Box an</translation>
</message> </message>
<message> <message>
<location line="+26"/> <location line="+26"/>
@ -973,25 +979,7 @@ p, li { white-space: pre-wrap; }
<translation>Kanal erstellen</translation> <translation>Kanal erstellen</translation>
</message> </message>
<message> <message>
<location line="-231"/> <location line="-165"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Sans&apos;; font-size:9pt; font-weight:600; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:14pt;&quot;&gt;Channel Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Sans&apos;; font-size:9pt; font-weight:600; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:14pt;&quot;&gt;Kanal Name&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location line="-104"/>
<source>Post To Channel</source>
<translation>In Kanal schreiben</translation>
</message>
<message>
<location line="+170"/>
<source>Unsubscribe</source> <source>Unsubscribe</source>
<translation>Abbestellen</translation> <translation>Abbestellen</translation>
</message> </message>
@ -1046,12 +1034,13 @@ p, li { white-space: pre-wrap; }
<translation>Andere Kanäle</translation> <translation>Andere Kanäle</translation>
</message> </message>
<message> <message>
<location line="+36"/> <location filename="../gui/ChannelFeed.ui" line="-147"/>
<location filename="../gui/ChannelFeed.cpp" line="+36"/>
<source>Post to Channel</source> <source>Post to Channel</source>
<translation>Schreibe in den Kanal</translation> <translation>Kanalbeitrag erstellen</translation>
</message> </message>
<message> <message>
<location line="+3"/> <location filename="../gui/ChannelFeed.cpp" line="+3"/>
<source>Subscribe to Channel</source> <source>Subscribe to Channel</source>
<translation>Kanal abonnieren</translation> <translation>Kanal abonnieren</translation>
</message> </message>
@ -1066,17 +1055,7 @@ p, li { white-space: pre-wrap; }
<translation>Zeige Kanal-Details</translation> <translation>Zeige Kanal-Details</translation>
</message> </message>
<message> <message>
<location line="+49"/> <location line="+241"/>
<source>Create a new Channel</source>
<translation>Erstelle einen neuen Kanal</translation>
</message>
<message>
<location line="+4"/>
<source>New Channel</source>
<translation>Neuer Kanal</translation>
</message>
<message>
<location line="+194"/>
<location line="+74"/> <location line="+74"/>
<location line="+77"/> <location line="+77"/>
<location line="+75"/> <location line="+75"/>
@ -1088,7 +1067,30 @@ Abgeholt: %2
Verfügbar: %3</translation> Verfügbar: %3</translation>
</message> </message>
<message> <message>
<location line="-470"/> <location line="-186"/>
<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>
<translation>Keinen Kanal gewählt</translation>
</message>
<message>
<location line="-529"/>
<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>
@ -1458,7 +1460,7 @@ Verfügbar: %3</translation>
<message> <message>
<location line="+23"/> <location line="+23"/>
<source>Marginal </source> <source>Marginal </source>
<translation>Geringfügig</translation> <translation>Geringfügig </translation>
</message> </message>
<message> <message>
<location line="+23"/> <location line="+23"/>
@ -1468,7 +1470,7 @@ Verfügbar: %3</translation>
<message> <message>
<location filename="../gui/connect/ConfCertDialog.cpp" line="+61"/> <location filename="../gui/connect/ConfCertDialog.cpp" line="+61"/>
<source>Apply and Close</source> <source>Apply and Close</source>
<translation>Annehmen und Schliessen</translation> <translation>Übernehmen und Schliessen</translation>
</message> </message>
<message> <message>
<location line="+68"/> <location line="+68"/>
@ -1485,12 +1487,12 @@ Verfügbar: %3</translation>
<message> <message>
<location line="-128"/> <location line="-128"/>
<source>Your key is signed by : </source> <source>Your key is signed by : </source>
<translation>Ihr Schlüssel ist unterzeichnet von:</translation> <translation>Ihr Schlüssel ist unterzeichnet von: </translation>
</message> </message>
<message> <message>
<location line="+14"/> <location line="+14"/>
<source>Peer key is signed by : </source> <source>Peer key is signed by : </source>
<translation>Peer Schlüssel ist unterzeichnet von:</translation> <translation>Peer Schlüssel ist unterzeichnet von: </translation>
</message> </message>
<message> <message>
<location line="+29"/> <location line="+29"/>
@ -1510,7 +1512,7 @@ Verfügbar: %3</translation>
<message> <message>
<location line="+6"/> <location line="+6"/>
<source>Your trust in this peer is none.</source> <source>Your trust in this peer is none.</source>
<translation>Sie Vertrauen diesem Peer nicht.</translation> <translation>Sie vertrauen diesem Peer nicht.</translation>
</message> </message>
<message> <message>
<location line="+6"/> <location line="+6"/>
@ -1562,7 +1564,7 @@ und meinen GPG Schlüssel nicht unterzeichnet</translation>
<message> <message>
<location filename="../gui/connect/ConfCertDialog.cpp" line="+29"/> <location filename="../gui/connect/ConfCertDialog.cpp" line="+29"/>
<source>Copy Peer</source> <source>Copy Peer</source>
<translation type="unfinished"></translation> <translation>Kopiere Peer</translation>
</message> </message>
<message> <message>
<location filename="../gui/connect/ConfCertDialog.ui" line="+471"/> <location filename="../gui/connect/ConfCertDialog.ui" line="+471"/>
@ -1988,111 +1990,117 @@ Möchten Sie die Änderungen speichern?</translation>
<message> <message>
<location filename="../gui/channels/CreateChannel.ui" line="+20"/> <location filename="../gui/channels/CreateChannel.ui" line="+20"/>
<source>Create a new Channel</source> <source>Create a new Channel</source>
<translation type="unfinished">Erstelle neuen Kanal</translation> <translation>Erstelle einen neuen Kanal</translation>
</message> </message>
<message> <message>
<location line="+65"/> <location line="+62"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt; <source>&lt;span style=&quot;font-size:24pt; font-weight:500;color:#32CD32;&quot;&gt;New Channel&lt;/span&gt;</source>
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt; <translation>&lt;span style=&quot;font-size:24pt; font-weight:500;color:#32CD32;&quot;&gt;Neuer Kanal&lt;/span&gt;</translation>
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Arial&apos;; font-size:24pt; font-weight:600; color:#ffffff;&quot;&gt;New Channel&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location line="+25"/> <location line="+21"/>
<source>Name</source> <source>Name</source>
<translation type="unfinished">Name</translation> <translation>Name</translation>
</message> </message>
<message> <message>
<location line="+39"/> <location line="+39"/>
<source>check peers you would like to share private publish key with</source> <source>check peers you would like to share private publish key with</source>
<translation type="unfinished"></translation> <translation>Wähle die Nachbarn, an die du den privaten Schlüssel verteilen möchtest</translation>
</message> </message>
<message> <message>
<location line="+9"/> <location line="+9"/>
<source>Share Key With</source> <source>Share Key With</source>
<translation type="unfinished"></translation> <translation>Schlüssel verteilen an</translation>
</message> </message>
<message> <message>
<location line="+47"/> <location line="+47"/>
<source>Contacts:</source> <source>Contacts:</source>
<translation type="unfinished">Kontakte:</translation> <translation>Kontakte:</translation>
</message> </message>
<message> <message>
<location line="+14"/> <location line="+14"/>
<source>Description</source> <source>Description</source>
<translation type="unfinished">Beschreibung</translation> <translation>Beschreibung</translation>
</message> </message>
<message> <message>
<location line="+12"/> <location line="+12"/>
<source>Type:</source> <source>Type:</source>
<translation type="unfinished">Typ:</translation> <translation>Typ:</translation>
</message> </message>
<message> <message>
<location line="+12"/> <location line="+12"/>
<source>Restricted - Anyone can read, limited publishing (Private Publish Key)</source> <source>Restricted - Anyone can read, limited publishing (Private Publish Key)</source>
<translation type="unfinished">Beschränkt - Jeder kann lesen, aber nicht jeder schreiben (Privater Veröffentlichungs-Schlüssel)</translation> <translation>Beschränkt - Jeder kann lesen, aber nicht jeder schreiben (Privater Veröffentlichungs-Schlüssel)</translation>
</message> </message>
<message> <message>
<location line="+7"/> <location line="+7"/>
<source>Private - (Private Publish Key required to view Messages)</source> <source>Private - (Private Publish Key required to view Messages)</source>
<translation type="unfinished">Privat - (Privater Veröffentlichungsschlüssel erforderlich, um Nachrichten zu lesen)</translation> <translation>Privat - (Privater Veröffentlichungsschlüssel erforderlich, um Nachrichten zu lesen)</translation>
</message> </message>
<message> <message>
<location line="+10"/> <location line="+10"/>
<source>Allowed Messages</source> <source>Allowed Messages</source>
<translation type="unfinished">Erlaubte Nachrichten</translation> <translation>Erlaubte Nachrichten</translation>
</message> </message>
<message> <message>
<location line="+12"/> <location line="+12"/>
<source>Anonymous Messages</source> <source>Anonymous Messages</source>
<translation type="unfinished">Anonyme Nachrichten</translation> <translation>Anonyme Nachrichten</translation>
</message> </message>
<message> <message>
<location line="+7"/> <location line="+7"/>
<source>Authemticated Messages</source> <source>Authenticated Messages</source>
<translation type="unfinished">Authentifizierte Nachrichten</translation> <translation>Authentifizierte Nachrichten</translation>
</message> </message>
<message> <message>
<location line="+23"/> <location line="+23"/>
<source>Key Sharing</source> <source>Key Sharing</source>
<translation type="unfinished"></translation> <translation>Schlüsselverteilung</translation>
</message> </message>
<message> <message>
<location line="+12"/> <location line="+12"/>
<source>Share Private Publish Key</source> <source>Share Private Publish Key</source>
<translation type="unfinished"></translation> <translation>Verteile privaten Schlüssel</translation>
</message> </message>
<message> <message>
<location line="+23"/> <location line="+23"/>
<source>Channel Logo</source> <source>Channel Logo</source>
<translation type="unfinished">Kanal Logo</translation> <translation>Kanal Logo</translation>
</message> </message>
<message> <message>
<location line="+58"/> <location line="+58"/>
<source>Add Channel Logo</source> <source>Add Channel Logo</source>
<translation type="unfinished">Kanal Logo hinzufügen</translation> <translation>Kanal Logo hinzufügen</translation>
</message> </message>
<message> <message>
<location line="+68"/> <location line="+68"/>
<source>Cancel</source> <source>Cancel</source>
<translation type="unfinished">Abbrechen</translation> <translation>Abbrechen</translation>
</message> </message>
<message> <message>
<location line="+7"/> <location line="+7"/>
<source>Create</source> <source>Create</source>
<translation type="unfinished">Erstellen</translation> <translation>Erstellen</translation>
</message> </message>
<message> <message>
<location filename="../gui/channels/CreateChannel.cpp" line="+162"/> <location filename="../gui/channels/CreateChannel.cpp" line="+162"/>
<source>RetroShare</source> <source>RetroShare</source>
<translation type="unfinished"></translation> <translation></translation>
</message> </message>
<message> <message>
<location line="+0"/> <location line="+0"/>
<source>Please add a Name</source> <source>Please add a Name</source>
<translation type="unfinished"></translation> <translation>Bitte einen Name hinzufügen</translation>
</message>
<message>
<location line="+83"/>
<source>Load File</source>
<translation>Lade Datei</translation>
</message>
<message>
<location line="+0"/>
<source>Pictures (*.png *.xpm *.jpg)</source>
<translation>Bilder (*.png *.xpm *.jpg)</translation>
</message> </message>
</context> </context>
<context> <context>
@ -2100,7 +2108,7 @@ p, li { white-space: pre-wrap; }
<message> <message>
<location filename="../gui/channels/CreateChannelMsg.ui" line="+17"/> <location filename="../gui/channels/CreateChannelMsg.ui" line="+17"/>
<source>New Channel Post</source> <source>New Channel Post</source>
<translation>Neuer Kanal Post</translation> <translation>Neuer Kanalbeitrag</translation>
</message> </message>
<message> <message>
<location line="+60"/> <location line="+60"/>
@ -2113,17 +2121,17 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt; &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:26pt; color:#ffffff;&quot;&gt;Neuer Kanal Post&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation> &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:26pt; color:#ffffff;&quot;&gt;Neuer Kanalbeitrag&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message> </message>
<message> <message>
<location line="+27"/> <location line="+27"/>
<source>Channel Post</source> <source>Channel Post</source>
<translation>Kanal Post</translation> <translation>Kanalbeitrag</translation>
</message> </message>
<message> <message>
<location line="+14"/> <location line="+14"/>
<source>Channel Post to:</source> <source>Channel Post to:</source>
<translation>Kanal Post zu:</translation> <translation>Kanal:</translation>
</message> </message>
<message> <message>
<location line="+21"/> <location line="+21"/>
@ -2135,27 +2143,34 @@ p, li { white-space: pre-wrap; }
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/images/feedback_arrow.png&quot; /&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; You can use Drap and Drop to Attach Files.&lt;/span&gt;&lt;/p&gt; &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/images/feedback_arrow.png&quot; /&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; You can use Drap and Drop to Attach Files.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/images/feedback_arrow.png&quot; /&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Set your Subject and Description for your Channel Post.&lt;/span&gt;&lt;/p&gt; &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/images/feedback_arrow.png&quot; /&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Set your Subject and Description for your Channel Post.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/images/feedback_arrow.png&quot; /&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; You can View your Attached Files on Attachments Tab.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source> &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/images/feedback_arrow.png&quot; /&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; You can View your Attached Files on Attachments Tab.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="unfinished"></translation> <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/images/feedback_arrow.png&quot; /&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Du kannst dein Miniaturbild für deinen Kanalbeitrag setzen.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/images/feedback_arrow.png&quot; /&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Du kannst Dateien mit Drag&apos;n&apos;Drop einfügen.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/images/feedback_arrow.png&quot; /&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Schreibe deinen Betreff und die Beschreibung deines Beitrages.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/images/feedback_arrow.png&quot; /&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt; Du kannst die angehängten Dateien in Reiter Anhang anschauen.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message> </message>
<message> <message>
<location line="+14"/> <location line="+14"/>
<source>Add File to Attach</source> <source>Add File to Attach</source>
<translation>Dateien hinzufügen zum Anhängen</translation> <translation>Datei hinzufügen</translation>
</message> </message>
<message> <message>
<location line="+11"/> <location line="+11"/>
<source>Add Channel Thumbnail</source> <source>Add Channel Thumbnail</source>
<translation>Kanal Thumbnail hinzufügen</translation> <translation>Miniaturbild hinzufügen</translation>
</message> </message>
<message> <message>
<location line="+48"/> <location line="+48"/>
<source>Message</source> <source>Message</source>
<translation>Nachricht</translation> <translation>Beitrag</translation>
</message> </message>
<message> <message>
<location line="+14"/> <location line="+14"/>
<source>Subject :</source> <source>Subject :</source>
<translation>Betreff:</translation> <translation>Betreff :</translation>
</message> </message>
<message> <message>
<location line="+23"/> <location line="+23"/>
@ -2166,7 +2181,7 @@ p, li { white-space: pre-wrap; }
<message> <message>
<location line="+78"/> <location line="+78"/>
<source>Drag and Drop Files from Search Results</source> <source>Drag and Drop Files from Search Results</source>
<translation>Drag &amp; Drop Dateien aus den Suchergebnissen</translation> <translation>Drag&apos;n&apos;Drop Dateien aus den Suchergebnissen</translation>
</message> </message>
<message> <message>
<location filename="../gui/channels/CreateChannelMsg.cpp" line="+288"/> <location filename="../gui/channels/CreateChannelMsg.cpp" line="+288"/>
@ -2183,6 +2198,16 @@ p, li { white-space: pre-wrap; }
<source>Please add a Subject</source> <source>Please add a Subject</source>
<translation>Bitte Subjekt nicht vergessen</translation> <translation>Bitte Subjekt nicht vergessen</translation>
</message> </message>
<message>
<location line="+46"/>
<source>Load File</source>
<translation>Lade Datei</translation>
</message>
<message>
<location line="+0"/>
<source>Pictures (*.png *.xpm *.jpg)</source>
<translation>Bilder (*.png *.xpm *.jpg)</translation>
</message>
</context> </context>
<context> <context>
<name>CreateForum</name> <name>CreateForum</name>
@ -2241,7 +2266,7 @@ p, li { white-space: pre-wrap; }
</message> </message>
<message> <message>
<location line="+12"/> <location line="+12"/>
<source>Authemticated Messages</source> <source>Authenticated Messages</source>
<translation>Authentifizierte Nachrichten</translation> <translation>Authentifizierte Nachrichten</translation>
</message> </message>
<message> <message>
@ -2273,49 +2298,44 @@ p, li { white-space: pre-wrap; }
<context> <context>
<name>CreateForumMsg</name> <name>CreateForumMsg</name>
<message> <message>
<location filename="../gui/forums/CreateForumMsg.ui" line="+314"/> <location filename="../gui/forums/CreateForumMsg.ui" line="+321"/>
<source>Post Forum Msg</source> <source>Post Forum Msg</source>
<translation>Forum-Nachricht senden</translation> <translation>Forumbeitrag schreiben</translation>
</message> </message>
<message> <message>
<location line="-255"/> <location line="-262"/>
<source>Forum</source> <source>Forum</source>
<translation>Forum</translation> <translation>Forum</translation>
</message> </message>
<message> <message>
<location line="+18"/> <location line="+131"/>
<source>Forum Post Subject</source>
<translation>Forum Betreff</translation>
</message>
<message>
<location line="+113"/>
<source>Paste retroshare link</source> <source>Paste retroshare link</source>
<translation>RetroShare Link einfügen</translation> <translation>RetroShare Link einfügen</translation>
</message> </message>
<message> <message>
<location line="+35"/> <location line="+35"/>
<source>Forum Post</source> <source>Forum Post</source>
<translation>Forum-Nachricht</translation> <translation>Beitrag</translation>
</message> </message>
<message> <message>
<location line="-68"/> <location line="-68"/>
<source>Sign Message</source> <source>Sign Message</source>
<translation>Nachricht unterschreiben</translation> <translation>Beitrag unterschreiben</translation>
</message> </message>
<message> <message>
<location line="+166"/> <location line="-80"/>
<source>Subject</source>
<translation>Betreff</translation>
</message>
<message>
<location line="+253"/>
<source>Close</source> <source>Close</source>
<translation>Schliessen</translation> <translation>Schliessen</translation>
</message> </message>
<message> <message>
<location line="-306"/> <location line="-313"/>
<source>Post Forum Message</source> <source>Post Forum Message</source>
<translation>Post Forum Nachricht</translation> <translation>Erstelle Forumbeitrag</translation>
</message>
<message>
<location line="+280"/>
<source>toolBar</source>
<translation></translation>
</message> </message>
<message> <message>
<location filename="../gui/forums/CreateForumMsg.cpp" line="+71"/> <location filename="../gui/forums/CreateForumMsg.cpp" line="+71"/>
@ -2335,7 +2355,7 @@ p, li { white-space: pre-wrap; }
<message> <message>
<location line="+0"/> <location line="+0"/>
<source>Please set a Forum Subject and Forum Message</source> <source>Please set a Forum Subject and Forum Message</source>
<translation>Bitte Forum Betreff eingeben</translation> <translation>Bitte einen Betreff und eine Beitrag eingeben</translation>
</message> </message>
<message> <message>
<location line="+177"/> <location line="+177"/>
@ -2343,35 +2363,35 @@ p, li { white-space: pre-wrap; }
<translation>Zusätzliche Datei hinzufügen</translation> <translation>Zusätzliche Datei hinzufügen</translation>
</message> </message>
<message> <message>
<location filename="../gui/forums/CreateForumMsg.ui" line="-183"/> <location filename="../gui/forums/CreateForumMsg.ui" line="+97"/>
<source>Attach File</source> <source>Attach File</source>
<translation type="unfinished">Datei Anhängen</translation> <translation>Datei anhängen</translation>
</message> </message>
<message> <message>
<location line="+127"/> <location line="+134"/>
<source>Attach files via drag and drop</source> <source>Attach files via drag and drop</source>
<translation type="unfinished"></translation> <translation>Hänge Dateien mit Drag&apos;n&apos;Drop an</translation>
</message> </message>
<message> <message>
<location line="+6"/> <location line="+6"/>
<source>You can attach files via drag and drop here in this window</source> <source>You can attach files via drag and drop here in this window</source>
<translation type="unfinished"></translation> <translation>Du kannst Dateien mit Drag&apos;n&apos;Drop anhängen</translation>
</message> </message>
<message> <message>
<location filename="../gui/forums/CreateForumMsg.cpp" line="+93"/> <location filename="../gui/forums/CreateForumMsg.cpp" line="+93"/>
<location line="+5"/> <location line="+5"/>
<source>Drop file error.</source> <source>Drop file error.</source>
<translation type="unfinished">Dateifehler bei drag and drop.</translation> <translation>Dateifehler bei Drag&apos;n&apos;Drop.</translation>
</message> </message>
<message> <message>
<location line="-5"/> <location line="-5"/>
<source>File not found or file name not accepted.</source> <source>File not found or file name not accepted.</source>
<translation type="unfinished">Datei nicht gefunden oder Dateiname nicht akzeptiert.</translation> <translation>Datei nicht gefunden oder Dateiname nicht akzeptiert.</translation>
</message> </message>
<message> <message>
<location line="+5"/> <location line="+5"/>
<source>Directory can&apos;t be dropped, only files are accepted.</source> <source>Directory can&apos;t be dropped, only files are accepted.</source>
<translation type="unfinished">Ordner können nicht für Drag und Drop genutzt werden. Nur Dateien werden akzeptiert.</translation> <translation>Ordner können nicht für Drag&apos;n&apos;Drop genutzt werden. Nur Dateien werden akzeptiert.</translation>
</message> </message>
</context> </context>
<context> <context>
@ -3290,12 +3310,12 @@ p, li { white-space: pre-wrap; }
<message> <message>
<location line="+6"/> <location line="+6"/>
<source>Set message to read on activate</source> <source>Set message to read on activate</source>
<translation>Setze Nachricht beim Aktivieren als gelesen</translation> <translation>Setze Beitrag beim Aktivieren als gelesen</translation>
</message> </message>
<message> <message>
<location line="+7"/> <location line="+7"/>
<source>Expand new messages</source> <source>Expand new messages</source>
<translation>Neue Nachrichten erweitern</translation> <translation>Neue Beiträge erweitern</translation>
</message> </message>
</context> </context>
<context> <context>
@ -3341,53 +3361,17 @@ p, li { white-space: pre-wrap; }
<translation>Alle reduzieren</translation> <translation>Alle reduzieren</translation>
</message> </message>
<message> <message>
<location line="+176"/> <location line="+84"/>
<location line="+45"/> <source>Hide</source>
<location line="+82"/> <translation>Verbergen</translation>
<source>Popularity:</source>
<translation>Beliebtheit:</translation>
</message> </message>
<message> <message>
<location line="+332"/> <location line="+4"/>
<location line="+107"/> <source>Expand</source>
<source>Anonymous</source> <translation>Erweitern</translation>
<translation>Anonym</translation>
</message> </message>
<message> <message>
<location line="-102"/> <location line="-243"/>
<location line="+107"/>
<source>signed</source>
<translation>unterzeichnet</translation>
</message>
<message>
<location line="-102"/>
<location line="+107"/>
<source>none</source>
<translation>kein</translation>
</message>
<message>
<location line="+491"/>
<location line="+142"/>
<source>RetroShare</source>
<translation></translation>
</message>
<message>
<location line="-142"/>
<source>No Forum Selected!</source>
<translation>Kein Forum ausgewählt!</translation>
</message>
<message>
<location line="+127"/>
<source>Re:</source>
<translation></translation>
</message>
<message>
<location line="+15"/>
<source>You cant reply a Anonymous Author</source>
<translation>Sie können einem anonymen Autor nicht antworten</translation>
</message>
<message>
<location line="-1540"/>
<source>Your Forums</source> <source>Your Forums</source>
<translation>Deine Foren</translation> <translation>Deine Foren</translation>
</message> </message>
@ -3432,7 +3416,7 @@ p, li { white-space: pre-wrap; }
<message> <message>
<location line="-59"/> <location line="-59"/>
<source>Start new Thread for Selected Forum</source> <source>Start new Thread for Selected Forum</source>
<translation>Starte einen neuen Thread im ausgewählten Forum</translation> <translation>Starte ein neues Thema im ausgewählten Forum</translation>
</message> </message>
<message> <message>
<location line="+109"/> <location line="+109"/>
@ -3446,7 +3430,7 @@ p, li { white-space: pre-wrap; }
<message> <message>
<location line="+42"/> <location line="+42"/>
<source>Last Post</source> <source>Last Post</source>
<translation>Letzter Post</translation> <translation>Letzter Beitrag</translation>
</message> </message>
<message> <message>
<location line="+5"/> <location line="+5"/>
@ -3488,27 +3472,31 @@ p, li { white-space: pre-wrap; }
p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Arial&apos;; font-size:8pt; font-weight:400; font-style:normal;&quot;&gt; &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Arial&apos;; font-size:8pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt; font-weight:600;&quot;&gt;Thread:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source> &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt; font-weight:600;&quot;&gt;Thread:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation></translation> <translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Arial&apos;; font-size:8pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:10pt; font-weight:600;&quot;&gt;Thema:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message> </message>
<message> <message>
<location line="+50"/> <location line="+50"/>
<source>Previous Thread</source> <source>Previous Thread</source>
<translation>Vorheriger Thread</translation> <translation>Vorheriger Beitrag</translation>
</message> </message>
<message> <message>
<location line="+35"/> <location line="+35"/>
<source>Next Thread</source> <source>Next Thread</source>
<translation>Nächster Thread</translation> <translation>Nächster Beitrag</translation>
</message> </message>
<message> <message>
<location line="+178"/> <location line="+178"/>
<source>Reply Message</source> <source>Reply Message</source>
<translation>Auf Nachricht antworten</translation> <translation>Auf Beitrag antworten</translation>
</message> </message>
<message> <message>
<location line="+71"/> <location line="+71"/>
<source>Create Forum</source> <source>Create Forum</source>
<translation>Erstelle Forum</translation> <translation>Forum erstellen</translation>
</message> </message>
<message> <message>
<location line="-14"/> <location line="-14"/>
@ -3522,7 +3510,6 @@ p, li { white-space: pre-wrap; }
</message> </message>
<message> <message>
<location filename="../gui/ForumsDialog.cpp" line="+121"/> <location filename="../gui/ForumsDialog.cpp" line="+121"/>
<location line="+1258"/>
<source>Start New Thread</source> <source>Start New Thread</source>
<translation>Erstelle neues Thema</translation> <translation>Erstelle neues Thema</translation>
</message> </message>
@ -3537,7 +3524,7 @@ p, li { white-space: pre-wrap; }
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt; &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt; &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Suche forum Inhalt&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation> &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Suche Foren&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message> </message>
<message> <message>
<location line="+28"/> <location line="+28"/>
@ -3550,7 +3537,7 @@ p, li { white-space: pre-wrap; }
<translation>Inhalt</translation> <translation>Inhalt</translation>
</message> </message>
<message> <message>
<location filename="../gui/ForumsDialog.cpp" line="-1245"/> <location filename="../gui/ForumsDialog.cpp" line="+13"/>
<location line="+3"/> <location line="+3"/>
<source>Mark as read</source> <source>Mark as read</source>
<translation>Als gelesen markieren</translation> <translation>Als gelesen markieren</translation>
@ -6890,17 +6877,7 @@ p, li { white-space: pre-wrap; }
<translation>Verfügbar</translation> <translation>Verfügbar</translation>
</message> </message>
<message> <message>
<location line="+716"/> <location line="+736"/>
<source>Create a new Channel</source>
<translation>Erstelle neuen Kanal</translation>
</message>
<message>
<location line="+4"/>
<source>New Channel</source>
<translation>Neuer Kanal</translation>
</message>
<message>
<location line="+21"/>
<source>Add Extra File</source> <source>Add Extra File</source>
<translation>Zusätzliche Datei hinzufügen</translation> <translation>Zusätzliche Datei hinzufügen</translation>
</message> </message>
@ -6908,7 +6885,7 @@ p, li { white-space: pre-wrap; }
<location line="+103"/> <location line="+103"/>
<location line="+5"/> <location line="+5"/>
<source>Drop file error.</source> <source>Drop file error.</source>
<translation>Dateifehler bei drag and drop.</translation> <translation>Dateifehler bei Drag&apos;n&apos;Drop.</translation>
</message> </message>
<message> <message>
<location line="-5"/> <location line="-5"/>
@ -6918,10 +6895,10 @@ p, li { white-space: pre-wrap; }
<message> <message>
<location line="+5"/> <location line="+5"/>
<source>Directory can&apos;t be dropped, only files are accepted.</source> <source>Directory can&apos;t be dropped, only files are accepted.</source>
<translation>Ordner können nicht für Drag und Drop genutzt werden. Nur Dateien werden akzeptiert.</translation> <translation>Ordner können nicht für Drag&apos;n&apos;Drop genutzt werden. Nur Dateien werden akzeptiert.</translation>
</message> </message>
<message> <message>
<location line="-1374"/> <location line="-1369"/>
<source> (me)</source> <source> (me)</source>
<translation> (ich)</translation> <translation> (ich)</translation>
</message> </message>
@ -7089,7 +7066,7 @@ p, li { white-space: pre-wrap; }
<translation>Willst du diesen Freund entfernen?</translation> <translation>Willst du diesen Freund entfernen?</translation>
</message> </message>
<message> <message>
<location line="+724"/> <location line="+719"/>
<source>Save as...</source> <source>Save as...</source>
<translation>Speichern als...</translation> <translation>Speichern als...</translation>
</message> </message>
@ -7122,7 +7099,7 @@ p, li { white-space: pre-wrap; }
<translation>Status Spalte ausblenden</translation> <translation>Status Spalte ausblenden</translation>
</message> </message>
<message> <message>
<location filename="../gui/PeersDialog.cpp" line="-1530"/> <location filename="../gui/PeersDialog.cpp" line="-1525"/>
<source>Friends Storm</source> <source>Friends Storm</source>
<translation>Freundes Strom</translation> <translation>Freundes Strom</translation>
</message> </message>
@ -7545,12 +7522,12 @@ p, li { white-space: pre-wrap; }
<location line="+169"/> <location line="+169"/>
<location line="+5"/> <location line="+5"/>
<source>Drop file error.</source> <source>Drop file error.</source>
<translation>Dateifehler bei drag and drop.</translation> <translation>Dateifehler bei Drag&apos;n&apos;Drop.</translation>
</message> </message>
<message> <message>
<location line="+0"/> <location line="+0"/>
<source>Directory can&apos;t be dropped, only files are accepted.</source> <source>Directory can&apos;t be dropped, only files are accepted.</source>
<translation>Ordner können nicht für Drag und Drop genutzt werden. Nur Dateien werden akzeptiert.</translation> <translation>Ordner können nicht für Drag&apos;n&apos;Drop genutzt werden. Nur Dateien werden akzeptiert.</translation>
</message> </message>
<message> <message>
<location filename="../gui/chat/PopupChatDialog.ui" line="-295"/> <location filename="../gui/chat/PopupChatDialog.ui" line="-295"/>
@ -9287,12 +9264,12 @@ p, li { white-space: pre-wrap; }
<message> <message>
<location line="+52"/> <location line="+52"/>
<source>check peers you would like to share private publish key with</source> <source>check peers you would like to share private publish key with</source>
<translation type="unfinished"></translation> <translation type="unfinished">Wähle die Nachbarn, an die du den privaten Schlüssel verteilen möchtest</translation>
</message> </message>
<message> <message>
<location line="+9"/> <location line="+9"/>
<source>Share Key With</source> <source>Share Key With</source>
<translation type="unfinished"></translation> <translation type="unfinished">Schlüssel freigeben mit</translation>
</message> </message>
<message> <message>
<location line="+53"/> <location line="+53"/>