diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index aa0919c03..962b40c5a 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -1665,6 +1665,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_passport_error_cant_read" = "Can't read this file. Please choose an image."; "lng_passport_bad_name" = "Please use latin characters only."; "lng_passport_wait_upload" = "Please wait while upload is finished."; +"lng_passport_fix_errors" = "Please correct errors."; "lng_passport_app_out_of_date" = "Sorry, your Telegram app is out of date and can't handle this request. Please update Telegram."; "lng_export_title" = "Export Personal Data"; diff --git a/Telegram/SourceFiles/passport/passport_form_view_controller.cpp b/Telegram/SourceFiles/passport/passport_form_view_controller.cpp index fb119f9d3..e566cb862 100644 --- a/Telegram/SourceFiles/passport/passport_form_view_controller.cpp +++ b/Telegram/SourceFiles/passport/passport_form_view_controller.cpp @@ -263,7 +263,9 @@ ScopeRow ComputeScopeRow(const Scope &scope) { }; ranges::for_each(scope.documents, addValueErrors); addValueErrors(scope.fields); - row.error = errors.join('\n'); + if (!errors.isEmpty()) { + row.error = lang(lng_passport_fix_errors);// errors.join('\n'); + } if (row.error.isEmpty() && row.ready.isEmpty() && scope.type == Scope::Type::Identity