Browse Source

Added Translation for error message on sending a file. Also included the German Version.

pull/912/head
Lednerb 11 years ago
parent
commit
dfb51d7d29
  1. 2
      src/widget/form/chatform.cpp
  2. 5
      translations/de.ts

2
src/widget/form/chatform.cpp

@ -673,7 +673,7 @@ void ChatForm::onFileSendFailed(int FriendId, const QString &fname)
if (FriendId != f->getFriendID()) if (FriendId != f->getFriendID())
return; return;
addSystemInfoMessage("File: \"" + fname + "\" failed to send.", "red", QDateTime::currentDateTime()); addSystemInfoMessage(tr("Failed to send file") + ": \"" + fname + "\"", "red", QDateTime::currentDateTime());
} }
void ChatForm::onAvatarChange(int FriendId, const QPixmap &pic) void ChatForm::onAvatarChange(int FriendId, const QPixmap &pic)

5
translations/de.ts vendored

@ -257,6 +257,11 @@ Soll der Proxy ignoriert und eine direkte Internetverbindung genutzt werden?</tr
<source>Call rejected</source> <source>Call rejected</source>
<translation>Anruf abgewiesen</translation> <translation>Anruf abgewiesen</translation>
</message> </message>
<message>
<location filename="../src/widget/form/chatform.cpp" line="676"/>
<source>Failed to send file</source>
<translation>Fehler beim Senden der Datei</translation>
</message>
<message> <message>
<location filename="../src/widget/form/chatform.cpp" line="804"/> <location filename="../src/widget/form/chatform.cpp" line="804"/>
<source>Call with %1 ended. %2</source> <source>Call with %1 ended. %2</source>

Loading…
Cancel
Save