dts 0 Posted September 8, 2022 (edited) Hello. I want to see variable hints in debug mode. With English characters, hints appear in their proper places. Everything shifts in other languages. The cursor is over one variable and the tooltip comes from another variable. procedure TForm1.FormCreate(Sender: TObject); const મોટી_શરૂઆત: TDateTime = 43866.08334; begin var વીતેલા_દિવસોની_સંખ્યા := DaysBetween(Now,મોટી_શરૂઆત); end; Are there ways to fix this? Edited September 8, 2022 by dts Share this post Link to post
Sherlock 663 Posted September 9, 2022 While it is a nice thing to be able to use your own charset during development, it is something I would never encourage or do myself. You will never be able to have someone outside your language read and understand your code. That said, this is a bug and you should just report it in the Quality Portal: https://quality.embarcadero.com/secure/Dashboard.jspa Share this post Link to post
Uwe Raabe 2056 Posted September 9, 2022 15 hours ago, dts said: Are there ways to fix this? Use English names! Share this post Link to post
dts 0 Posted September 9, 2022 54 minutes ago, Sherlock said: While it is a nice thing to be able to use your own charset during development, it is something I would never encourage or do myself. You will never be able to have someone outside your language read and understand your code. That said, this is a bug and you should just report it in the Quality Portal: https://quality.embarcadero.com/secure/Dashboard.jspa And so he did. Thanks Share this post Link to post
Pat Foley 51 Posted September 10, 2022 (edited) Oops Edited September 10, 2022 by Pat Foley Wanted to comment about if right to left is issue Share this post Link to post
Pat Foley 51 Posted September 14, 2022 The idea is code in English, then use Tool tip comment in local dialect as mnemonic. /// <summary> /// ateB + aplA = ammaG /// </summary> procedure TForm18.AddABtoC; begin var a := 1; var b := 2; var c := -1; c := a + b; end; Share this post Link to post
Sherlock 663 Posted September 14, 2022 Oh! OK, sure, that'll work just fine. 👍 But the underlying point is if a manufacturer chooses to implement a feature, he should fix the bugs. Share this post Link to post
Uwe Raabe 2056 Posted September 14, 2022 In this case the feature is the ability to write identifiers in Unicode, but I would rather call that an abomination than a feature. 2 1 Share this post Link to post
Fr0sT.Brutal 900 Posted September 19, 2022 Translit is another compromise option Share this post Link to post