mirror of
https://github.com/vale981/tdesktop
synced 2025-03-05 17:51:41 -05:00
Remove some unused langpack keys.
This commit is contained in:
parent
4e8c57a861
commit
9b430147c0
2 changed files with 4 additions and 4 deletions
|
@ -1260,7 +1260,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
"lng_user_action_upload_file" = "{user} is sending a file";
|
||||
"lng_unread_bar#one" = "{count} unread message";
|
||||
"lng_unread_bar#other" = "{count} unread messages";
|
||||
"lng_unread_bar_some" = "Unread messages";
|
||||
//"lng_unread_bar_some" = "Unread messages";
|
||||
|
||||
"lng_maps_point" = "Location";
|
||||
"lng_save_photo" = "Save image";
|
||||
|
@ -1552,7 +1552,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
"lng_player_message_yesterday" = "Yesterday at {time}";
|
||||
"lng_player_message_date" = "{date} at {time}";
|
||||
//"lng_player_cant_stream" = "This file can't be played before it is fully downloaded.\n\nWould you like to download it?";
|
||||
"lng_player_download" = "Download";
|
||||
//"lng_player_download" = "Download";
|
||||
|
||||
"lng_rights_edit_admin" = "Manage permissions";
|
||||
"lng_rights_edit_admin_header" = "What can this admin do?";
|
||||
|
|
|
@ -80,9 +80,9 @@ void UnreadBar::init(int newCount) {
|
|||
return;
|
||||
}
|
||||
count = newCount;
|
||||
text = (count == kCountUnknown)
|
||||
text = /*(count == kCountUnknown) // #feed
|
||||
? lang(lng_unread_bar_some)
|
||||
: lng_unread_bar(lt_count, count);
|
||||
: */lng_unread_bar(lt_count, count);
|
||||
width = st::semiboldFont->width(text);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue