mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-29 22:15:21 -04:00
[loc] fix additional right-to-left issues
* Fix mishandling of spaces after period, comma, colon, etc. * Fix Test/Alpha notifications not displaying properly in RTL mode * Part of #621
This commit is contained in:
parent
5e85d4e47a
commit
805d44a5b8
8 changed files with 38 additions and 29 deletions
|
@ -37,6 +37,9 @@
|
|||
// the translation will be ignored
|
||||
#define LOC_FRAMEWORK_VERSION 1
|
||||
|
||||
#define MSG_RTF 0x10000000
|
||||
#define MSG_MASK 0x0FFFFFFF
|
||||
|
||||
#define luprint(msg) uprintf("%s(%d): " msg "\n", loc_filename, loc_line_nr)
|
||||
#define luprintf(msg, ...) uprintf("%s(%d): " msg "\n", loc_filename, loc_line_nr, __VA_ARGS__)
|
||||
|
||||
|
@ -166,7 +169,7 @@ void _exit_localization(BOOL reinit);
|
|||
void apply_localization(int dlg_id, HWND hDlg);
|
||||
void reset_localization(int dlg_id);
|
||||
void free_dialog_list(void);
|
||||
char* lmprintf(int msg_id, ...);
|
||||
char* lmprintf(uint32_t msg_id, ...);
|
||||
BOOL get_supported_locales(const char* filename);
|
||||
BOOL get_loc_data_file(const char* filename, loc_cmd* lcmd);
|
||||
void free_locale_list(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue