From 74db157b9406594a549a70415668dd6cbe17d1d3 Mon Sep 17 00:00:00 2001 From: Ethan Yonker Date: Wed, 28 Oct 2015 12:44:49 -0500 Subject: Multiple Language Support This is similar to https://gerrit.omnirom.org/#/c/14014 A lot of the features built in the older patch set have been split out into separate patches, most of which have already been merged. The remaining functionality here should all be directly related to language selection and loading. We always load English as a base before loading other languages over the top of the base. The idea is that if another language is missing a translation, then we will still display the English. Maybe still to do: read the /cache/recovery/last_locale file and load a language based on that. For me, this file contains just: en_US We probably won't bother with region specific translations so we would have to look at either trimming off the _US or using some other method like perhaps a symlink or a combination of the two. Thanks to _that for twmsg.cpp class Change-Id: I9647a22e47883a3ddd2de1da51f64aab7c328f74 --- twrpDigest.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'twrpDigest.cpp') diff --git a/twrpDigest.cpp b/twrpDigest.cpp index 8380d2c8b..fe0e06778 100644 --- a/twrpDigest.cpp +++ b/twrpDigest.cpp @@ -19,7 +19,6 @@ extern "C" { #include "digest/md5.h" - #include "gui/gui.h" #include "libcrecovery/common.h" } @@ -41,6 +40,7 @@ extern "C" #include "twrp-functions.hpp" #include "twrpDigest.hpp" #include "set_metadata.h" +#include "gui/gui.hpp" using namespace std; @@ -103,10 +103,10 @@ int twrpDigest::read_md5digest(void) { } if (!foundMd5File) { - gui_print("Skipping MD5 check: no MD5 file found\n"); + gui_msg("no_md5=Skipping MD5 check: no MD5 file found"); return -1; } else if (TWFunc::read_file(md5file, line) != 0) { - gui_print("Skipping MD5 check: MD5 file unreadable\n"); + LOGERR("Skipping MD5 check: MD5 file unreadable %s\n", strerror(errno)); return 1; } @@ -139,10 +139,10 @@ int twrpDigest::verify_md5digest(void) { md5string += hex; } if (tokens.at(0) != md5string) { - LOGERR("MD5 does not match\n"); + gui_err("md5_fail=MD5 does not match"); return -2; } - gui_print("MD5 matched\n"); + gui_msg("md5_match=MD5 matched"); return 0; } -- cgit v1.2.3