提问人:Brad Lanam 提问时间:11/16/2023 最后编辑:Ken WhiteBrad Lanam 更新时间:11/18/2023 访问量:38
gettext 不适用于带有国际字符的帐户名称
gettext does not work with account names with international characters
问:
我正在使用已安装的区域设置文件夹来获取我的应用程序的消息。 使用带有国际字符的帐户名称时,gettext 库无法加载和转换文本字符串。
以前有人遇到过这种情况吗?有解决方法吗?
我在 msys2 中使用 UCRT64 环境。
创建一个名为 的用户帐户:并设置 msys2。test Gergő
在帐户中:test Gergő
cd "/c/Users/test Gergő"
mkdir -p locale/nl/LC_MESSAGES
cp /usr/share/locale/nl/LC_MESSAGES/sed.mo locale/nl/LC_MESSAGES/
cd
使用以下测试代码:(我将其命名为tt.c)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include <libintl.h>
#include <wchar.h>
#include <windows.h>
#define DOM "sed"
int
main (int argc, char *argv [])
{
wchar_t *wtmp;
char buff [512];
char tbuff [512];
char *tmp;
size_t len;
wtmp = _wgetenv (L"USERPROFILE");
// wtmp = _wgetenv (L"HOME");
len = WideCharToMultiByte (CP_UTF8, 0, wtmp, -1, NULL, 0, NULL, NULL);
WideCharToMultiByte (CP_UTF8, 0, wtmp, -1, buff, len + 1, NULL, NULL);
wtmp [len] = L'\0';
sprintf (tbuff, "%s/locale", buff);
// or vice-versa. fails both ways.
// just to be sure the path is consistent.
for (int i = 0; i < strlen (tbuff); ++i) {
if (tbuff [i] == '\\') {
tbuff [i] = '/';
}
}
tmp = bindtextdomain (DOM, tbuff);
fprintf (stderr, "bind: %s\n", tmp);
tmp = textdomain (DOM);
fprintf (stderr, "text-dom: %s\n", tmp);
if (setlocale (LC_MESSAGES, tbuff) == NULL) {
fprintf (stderr, "set-locale failed\n");
}
_wputenv_s (L"LC_MESSAGES", L"nl.UTF-8");
tmp = gettext ("No match");
if (strcmp (tmp, "No match") == 0) {
fprintf (stderr, "NG %s\n", tmp);
} else {
fprintf (stderr, "OK %s\n", tmp);
}
return 0;
}
编译:
cc -o tt tt.c -static -lintl -liconv
在 cmd.exe 窗口中运行程序:
C:\msys64\home\test Gergő\tt.exe
找不到来自 sed.mo 的字符串“No match”。
bind: C:\Users\test Gergő\locale
text-dom: sed
NG No match
这使用 和 的帐户名起作用。bll
test user
还可以编译该程序以检索 HOME 环境变量并在 msys2 中运行(示例 locale/ 目录安装在 msys2 home 中)。同样,它使用帐户失败,并使用 和 帐户。test Gergő
bll
test user
答:
1赞
Brad Lanam
11/17/2023
#1
事实证明,libintl 包含一个函数。我正在挖掘gettext源代码并找到了这个。它没有记录在手册页中,而是记录在 gettext info 文件中。wbindtextdomain
为了让 cmake 找到这个函数,我检查了函数名称。libintl_wbindtextdomain
评论