From: Manuel Nickschas Date: Tue, 25 Aug 2009 23:58:49 +0000 (+0200) Subject: Fix some strings still containing 'Buffer' X-Git-Tag: 0.5-rc1~6 X-Git-Url: https://git.quassel-irc.org/?a=commitdiff_plain;h=9e4b88026d93cc866e4aaf323e77e8975a60e0d7;p=quassel.git Fix some strings still containing 'Buffer' --- diff --git a/src/uisupport/bufferviewfilter.cpp b/src/uisupport/bufferviewfilter.cpp index 2af25157..c2cac9bf 100644 --- a/src/uisupport/bufferviewfilter.cpp +++ b/src/uisupport/bufferviewfilter.cpp @@ -49,7 +49,7 @@ BufferViewFilter::BufferViewFilter(QAbstractItemModel *model, BufferViewConfig * _sortOrder(Qt::AscendingOrder), _showServerQueries(false), _editMode(false), - _enableEditMode(tr("Show / Hide buffers"), this) + _enableEditMode(tr("Show / Hide Chats"), this) { setConfig(config); setSourceModel(model); diff --git a/src/uisupport/contextmenuactionprovider.cpp b/src/uisupport/contextmenuactionprovider.cpp index 068b84cd..af2e2dd8 100644 --- a/src/uisupport/contextmenuactionprovider.cpp +++ b/src/uisupport/contextmenuactionprovider.cpp @@ -69,8 +69,8 @@ ContextMenuActionProvider::ContextMenuActionProvider(QObject *parent) : NetworkM registerAction(NickBan, SmallIcon("im-ban-user"), tr("Ban From Channel")); registerAction(NickKickBan, SmallIcon("im-ban-kick-user"), tr("Kick && Ban")); - registerAction(HideBufferTemporarily, tr("Hide Buffer(s) Temporarily")); - registerAction(HideBufferPermanently, tr("Hide Buffer(s) Permanently")); + registerAction(HideBufferTemporarily, tr("Hide Chat(s) Temporarily")); + registerAction(HideBufferPermanently, tr("Hide Chat(s) Permanently")); registerAction(ShowChannelList, tr("Show Channel List")); registerAction(ShowIgnoreList, tr("Show Ignore List"));