Skip to content

Commit

Permalink
some langs added
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Nov 24, 2015
1 parent d6bcab0 commit 15d5f33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Telegram/Resources/lang.strings
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,9 @@ Copyright (c) 2014-2015 John Preston, https://desktop.telegram.org
"lng_action_add_user" = "{from} added {user}";
"lng_action_add_user_and_user" = "{from} added {user} and {second_user}";
"lng_action_add_users" = "{from} added {user} and {count:_not_used|# more member|# more members}";
"lng_action_add_users_many" = "{from} added {users}";
"lng_action_add_users_and_one" = "{accumulated}, {user}";
"lng_action_add_users_and_last" = "{accumulated} and {user}";
"lng_action_add_you" = "{from} added you to this channel";
"lng_action_you_joined" = "You joined this channel";
"lng_action_add_you_group" = "{from} added you to this group";
Expand Down Expand Up @@ -613,7 +616,6 @@ Copyright (c) 2014-2015 John Preston, https://desktop.telegram.org
"lng_bot_description" = "What can this bot do?";
"lng_unblock_button" = "Unblock";
"lng_channel_join" = "Join Channel";
"lng_group_join" = "Join Group";
"lng_channel_mute" = "Mute";
"lng_channel_unmute" = "Unmute";

Expand Down
2 changes: 1 addition & 1 deletion Telegram/SourceFiles/historywidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3289,7 +3289,7 @@ void HistoryWidget::showHistory(const PeerId &peerId, MsgId showAtMsgId, bool re
_canSendMessages = canSendMessages(_peer);
if (_peer && _peer->isChannel()) {
_peer->asChannel()->updateFull();
_joinChannel.setText(lang(_peer->isMegagroup() ? lng_group_join : lng_channel_join));
_joinChannel.setText(lang(lng_channel_join));
}

_unblockRequest = _reportSpamRequest = 0;
Expand Down

0 comments on commit 15d5f33

Please sign in to comment.