Hi,<br><br>I had similar problem, I think that this is because consts are "filled" when compiling and there is no way to change them at runtime. Try this trick with pointers:<br><br>resourcestring<br>
  SSunday = "Sunday";<br>
<br>
const<br>
  SWeek: array[0..0] of PString = (@SSunday);<br>
<br>
begin<br>
  WriteLn(SWeek[0]^);<br>
end;<br><br>Regards<br><br><div class="gmail_quote">2011/6/24 Marco van de Voort <span dir="ltr"><<a href="mailto:marcov@stack.nl">marcov@stack.nl</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">In our previous episode, Craig Peterson said:<br>
> In Delphi I can use resource strings with const arrays and everything<br>
> works correctly.  For example, if I have a resource DLL with translated<br>
> strings and this will work:<br>
><br>
> resourcestring<br>
>    SSunday = "Sunday";<br>
><br>
> const<br>
>    SWeek: array[0..0] of string = (SSunday);<br>
><br>
> begin<br>
>    WriteLn(SWeek[0]);<br>
> end;<br>
><br>
> I've tried doing the same with FPC's GetText unit and<br>
> SetResourceStrings.  SSunday gets translated correctly, but SWeek doesn't.<br>
><br>
> Is that something that should work if I'm early enough in the<br>
> initialization order, an unimplemented feature, or something that's<br>
> unlikely to changed?<br>
<br>
</div>No, this is a problem of gettext. If you use dxgettext on Delphi instead of<br>
Windows built in resourcesystem there is the same problem.<br>
<br>
For this to work you really need resource types that work based on replacing<br>
memory areas, or use _()<br>
<div><div></div><div class="h5">_______________________________________________<br>
fpc-pascal maillist  -  <a href="mailto:fpc-pascal@lists.freepascal.org">fpc-pascal@lists.freepascal.org</a><br>
<a href="http://lists.freepascal.org/mailman/listinfo/fpc-pascal" target="_blank">http://lists.freepascal.org/mailman/listinfo/fpc-pascal</a><br>
<br>
</div></div></blockquote></div><br>