/**\r
* Set the UI components up\r
*/\r
- this.controlbox = new _kiwi.view.ControlBox({el: $('#kiwi .controlbox')[0]});\r
+ this.controlbox = (new _kiwi.view.ControlBox({el: $('#kiwi .controlbox')[0]})).render();\r
this.client_ui_commands = new _kiwi.misc.ClientUiCommands(this, this.controlbox);\r
\r
this.rightbar = new _kiwi.view.RightBar({el: this.view.$('.right_bar')[0]});\r
"Project-Id-Version: Kiwi\n"
"Language: en\n"
+#:
+msgid "client_views_controlbox_message"
+msgstr "Send message..."
+
#: client/assets/src/applets/chanlist.js
msgid "client_applets_chanlist_channelname"
msgstr "Channel Name"
});
},
+ render: function() {
+ var send_message_text = translateText('client_views_controlbox_message');
+ this.$('.inp').attr('placeholder', send_message_text);
+
+ return this;
+ },
+
showNickChange: function (ev) {
// Nick box already open? Don't do it again
if (this.nick_change)