From 067138f1bfc9a31382306cd7de7b5f84d18d09bf Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 4 Dec 2017 13:54:38 +0400 Subject: [PATCH] Alpha version 1.1.27: Update lang phrases. --- Telegram/Resources/langs/lang.strings | 16 +++++++------- Telegram/Resources/langs/refresh.py | 30 +++++++++++++++++++++++++++ Telegram/Resources/langs/refresh.sh | 30 +++++++++++++++++++++++++++ 3 files changed, 68 insertions(+), 8 deletions(-) create mode 100644 Telegram/Resources/langs/refresh.py create mode 100755 Telegram/Resources/langs/refresh.sh diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 0f0ff77e1..f63aaa046 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -19,7 +19,7 @@ Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org */ "lng_language_name" = "English"; -"lng_switch_to_this" = "Switch to English"; +"lng_switch_to_this" = "Continue in English"; "lng_menu_contacts" = "Contacts"; "lng_menu_calls" = "Calls"; @@ -302,7 +302,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_settings_workmode_window" = "Show taskbar icon"; "lng_settings_auto_start" = "Launch Telegram when system starts"; "lng_settings_start_min" = "Launch minimized"; -"lng_settings_add_sendto" = "Place Telegram in «Send to» menu"; +"lng_settings_add_sendto" = "Place Telegram in \"Send to\" menu"; "lng_settings_section_scale" = "Interface Scale"; "lng_settings_scale_auto" = "Auto ({cur})"; @@ -532,7 +532,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_mute_duration_hours#one" = "For {count} hour"; "lng_mute_duration_hours#other" = "For {count} hours"; -"lng_mute_box_tip" = "Choose duration of turning off notifications from the following chat"; +"lng_mute_box_tip" = "Choose for how long you would like to turn off notifications for the following chat"; "lng_preview_loading" = "Getting Link Info..."; @@ -567,7 +567,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_profile_block_bot" = "Stop and block bot"; "lng_profile_unblock_bot" = "Unblock bot"; "lng_profile_invite_to_group" = "Add to Group"; -"lng_profile_delete_contact" = "Delete Contact"; +"lng_profile_delete_contact" = "Delete"; "lng_profile_set_group_photo" = "Set Photo"; "lng_profile_add_participant" = "Add Members"; "lng_profile_view_channel" = "View Channel"; @@ -933,7 +933,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_stickers_group_set" = "Group sticker set"; "lng_stickers_remove_group_set" = "Remove group sticker set?"; "lng_stickers_group_from_your" = "Choose from your stickers"; -"lng_stickers_group_from_featured" = "Choose from featured stickers"; +"lng_stickers_group_from_featured" = "Choose from trending stickers"; "lng_in_dlg_photo" = "Photo"; "lng_in_dlg_video" = "Video"; @@ -977,7 +977,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_channel_mute" = "Mute"; "lng_channel_unmute" = "Unmute"; "lng_saved_messages" = "Saved Messages"; -"lng_saved_short" = "Saved"; +"lng_saved_short" = "Save"; "lng_saved_forward_here" = "Forward messages here for quick access"; "lng_dialogs_text_with_from" = "{from_part} {message}"; @@ -1108,8 +1108,8 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org "lng_forward_cant" = "Sorry, no way to forward here :("; "lng_forward_share_contact" = "Share contact to {recipient}?"; "lng_forward_share_cant" = "Sorry, no way to share contact here :("; -"lng_forward_send_file_confirm" = "Send «{name}» to {recipient}?"; -"lng_forward_send_files_confirm" = "Send selected files to {recipient}?"; + + "lng_forward_send_files_cant" = "Sorry, no way to send media here :("; "lng_forward_send" = "Send"; "lng_forward_messages#one" = "{count} forwarded message"; diff --git a/Telegram/Resources/langs/refresh.py b/Telegram/Resources/langs/refresh.py new file mode 100644 index 000000000..94449f1dc --- /dev/null +++ b/Telegram/Resources/langs/refresh.py @@ -0,0 +1,30 @@ +import os, sys, requests, re +from os.path import expanduser + +filename = '' +for arg in sys.argv: + if re.match(r'.*\.strings$', arg): + filename = expanduser(arg) + +result = '' +if not os.path.isfile(filename): + print("File not found.") + sys.exit(1) + +with open(filename) as f: + for line in f: + if re.match(r'\s*\/\* new from [a-zA-Z0-9\.]+ \*\/\s*', line): + continue + if re.match(r'\"lng_[a-z_]+\#(zero|two|few|many)\".+', line): + continue + result = result + line + +remove = 0 +while (len(result) > remove + 1) and (result[len(result) - remove - 1] == '\n') and (result[len(result) - remove - 2] == '\n'): + remove = remove + 1 +result = result[:len(result) - remove] + +with open('lang.strings', 'w') as out: + out.write(result) + +sys.exit() diff --git a/Telegram/Resources/langs/refresh.sh b/Telegram/Resources/langs/refresh.sh new file mode 100755 index 000000000..033b37382 --- /dev/null +++ b/Telegram/Resources/langs/refresh.sh @@ -0,0 +1,30 @@ +set -e +FullExecPath=$PWD +pushd `dirname $0` > /dev/null +FullScriptPath=`pwd` +popd > /dev/null + +FileName="$1" + +if [ ! -d "$FullScriptPath/../../../../TelegramPrivate" ]; then + echo "" + echo "This script is for building the production version of Telegram Desktop." + echo "" + echo "For building custom versions please visit the build instructions page at:" + echo "https://github.com/telegramdesktop/tdesktop/#build-instructions" + exit +fi + +Error () { + cd $FullExecPath + echo "$1" + exit 1 +} + +if [ ! -f "$FileName" ]; then + Error "File '$FileName' not found." +fi + +cd "$FullScriptPath" +python refresh.py $FileName +