mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-09-02 23:55:12 +00:00
Remove some unused langpack keys.
This commit is contained in:
@@ -1260,7 +1260,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
"lng_user_action_upload_file" = "{user} is sending a file";
|
"lng_user_action_upload_file" = "{user} is sending a file";
|
||||||
"lng_unread_bar#one" = "{count} unread message";
|
"lng_unread_bar#one" = "{count} unread message";
|
||||||
"lng_unread_bar#other" = "{count} unread messages";
|
"lng_unread_bar#other" = "{count} unread messages";
|
||||||
"lng_unread_bar_some" = "Unread messages";
|
//"lng_unread_bar_some" = "Unread messages";
|
||||||
|
|
||||||
"lng_maps_point" = "Location";
|
"lng_maps_point" = "Location";
|
||||||
"lng_save_photo" = "Save image";
|
"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_yesterday" = "Yesterday at {time}";
|
||||||
"lng_player_message_date" = "{date} 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_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" = "Manage permissions";
|
||||||
"lng_rights_edit_admin_header" = "What can this admin do?";
|
"lng_rights_edit_admin_header" = "What can this admin do?";
|
||||||
|
@@ -80,9 +80,9 @@ void UnreadBar::init(int newCount) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
count = newCount;
|
count = newCount;
|
||||||
text = (count == kCountUnknown)
|
text = /*(count == kCountUnknown) // #feed
|
||||||
? lang(lng_unread_bar_some)
|
? lang(lng_unread_bar_some)
|
||||||
: lng_unread_bar(lt_count, count);
|
: */lng_unread_bar(lt_count, count);
|
||||||
width = st::semiboldFont->width(text);
|
width = st::semiboldFont->width(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user