tg_cli: better locale changing.

GitOrigin-RevId: 1c8c5290c49687174df5a77d50bf9398b3c285c6
This commit is contained in:
levlam 2018-02-09 20:02:01 +03:00
parent 3abe871746
commit 6277672f3e
1 changed files with 8 additions and 1 deletions

View File

@ -28,6 +28,7 @@
#include "td/utils/port/Stat.h"
#include "td/utils/port/thread_local.h"
#include "td/utils/Random.h"
#include "td/utils/ScopeGuard.h"
#include "td/utils/Slice.h"
#include "td/utils/Status.h"
#include "td/utils/StringBuilder.h"
@ -46,6 +47,7 @@
#include <ctime>
#include <iostream>
#include <limits>
#include <locale>
#include <memory>
#include <queue>
#include <tuple>
@ -2955,7 +2957,12 @@ void main(int argc, char **argv) {
set_signal_handler(SignalType::Abort, fail_signal).ensure();
td::Log::set_fatal_error_callback(on_fatal_error);
std::setlocale(LC_ALL, "fr-FR");
std::string locale_name = (std::setlocale(LC_ALL, "fr-FR") == nullptr ? "C" : "fr-FR");
std::locale locale_fr(locale_name);
std::locale::global(locale_fr);
SCOPE_EXIT {
std::locale::global(std::locale::classic());
};
CliLog cli_log;
log_interface = &cli_log;