mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-31 23:08:26 -04:00
[loc] display a note in the log when a translation is behind
* Also make sure the messages regarding language pack availability are visible to the users in the log * Also fix a typo in the Malay translation
This commit is contained in:
parent
5e8a459828
commit
140236acd6
8 changed files with 26 additions and 14 deletions
|
@ -113,6 +113,9 @@
|
|||
#ifdef RUFUS_DEBUG
|
||||
extern void _uprintf(const char *format, ...);
|
||||
#define uprintf(...) _uprintf(__VA_ARGS__)
|
||||
#define ubclear() do { ubuffer[0] = 0; } while (0);
|
||||
#define ubpushf(...) static_sprintf(ubuffer, __VA_ARGS__)
|
||||
#define ubpop() uprintf("%s", ubuffer)
|
||||
#define vuprintf(...) if (verbose) _uprintf(__VA_ARGS__)
|
||||
#define vvuprintf(...) if (verbose > 1) _uprintf(__VA_ARGS__)
|
||||
#define suprintf(...) if (!bSilent) _uprintf(__VA_ARGS__)
|
||||
|
@ -375,6 +378,7 @@ extern int64_t iso_blocking_status;
|
|||
extern uint16_t rufus_version[3], embedded_sl_version[2];
|
||||
extern int nWindowsVersion;
|
||||
extern char WindowsVersionStr[128];
|
||||
extern char ubuffer[256];
|
||||
extern char embedded_sl_version_str[2][12];
|
||||
extern RUFUS_UPDATE update;
|
||||
extern int dialog_showing;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue