Flex 西里尔文本地化

发布于 2024-09-07 12:30:36 字数 111 浏览 1 评论 0原文

我已经定义了一个俄语本地化文件,但是在设置区域设置时我得到的只是?符号... 当使用西里尔字符创建示例 Flex 应用程序时,它们显示得很好,但不知何故设置区域设置不起作用。

有什么想法吗?

I've defined a Russian localization file but when setting the locale all I get is ? symbols...
When creating a sample flex app with Cyrillic characters they are displayed just fine, but somehow setting the locale does no work.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

穿越时光隧道 2024-09-14 12:30:36

修好了...
我的本地化文件没有以 UTF8 编码,这是导致问题的原因。

Fixed it...
My localization files were not encoded in UTF8, that was causing the problem.

梦过后 2024-09-14 12:30:36

听起来您正在使用嵌入字体,但您尝试显示的字符不包含在字体中。

来自文档

<?xml version="1.0"?>
<!-- fonts/EmbeddedFontCharacterRange.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
  <mx:Style>
  @font-face {
    src:url("../assets/MyriadWebPro.ttf");
    fontFamily: myFontFamily;
    advancedAntiAliasing: true;
    unicodeRange:
       U+0041-U+005A, /* Upper-Case [A..Z] */
       U+0061-U+007A, /* Lower-Case a-z */
       U+0030-U+0039, /* Numbers [0..9] */
       U+002E-U+002E; /* Period [.] */
 }

 TextArea {
    fontFamily: myFontFamily;
    fontSize: 32;
 }     

It sounds like you're using embedded fonts, but the characters you're trying to display aren't included in the font.

From the docs:

<?xml version="1.0"?>
<!-- fonts/EmbeddedFontCharacterRange.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
  <mx:Style>
  @font-face {
    src:url("../assets/MyriadWebPro.ttf");
    fontFamily: myFontFamily;
    advancedAntiAliasing: true;
    unicodeRange:
       U+0041-U+005A, /* Upper-Case [A..Z] */
       U+0061-U+007A, /* Lower-Case a-z */
       U+0030-U+0039, /* Numbers [0..9] */
       U+002E-U+002E; /* Period [.] */
 }

 TextArea {
    fontFamily: myFontFamily;
    fontSize: 32;
 }     

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文