[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2019-07-01 Thread Egmont Koblinger
GNOME Terminal 3.33.3 (VTE 0.57.3) implements BiDi support, according to
the proposal at https://terminal-wg.pages.freedesktop.org/bidi/ .

In alignment with Diego's comments and my responses to them, it
implements multiple modes. Shuffling the characters according to the
BiDi algorithm is enabled by default, this is required for simple
utilities such as "echo", "cat" and friends. An escape sequence can turn
off BiDi in the terminal, to be used if BiDi is performed by the
application running inside.

As mentioned, this won't magically make fullscreen apps (e.g. "mc")
BiDi-aware, it's impossible without adding this feature to all those
applications.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  Confirmed
Status in vte package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg & apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2016-05-19 Thread Egmont Koblinger
A few other issues:

In implicit BiDi mode, how should BiDi control characters
(LRE/RLE/LRO/RLO/PDF; LRM/RLM) be handled? We need to remember them.
Which cell should they belong to? How to later override the displayed
string to remove any of these, or insert new ones?

In explicit BiDi mode, copy-pasting would reverse the strings.

Some people prefer their text editor not to switch to the alternate
screen, so that e.g. upon exiting the contents of the file is still
visible. However, exiting would switch off the explicit mode. Would
there be one global flag for the terminal to state the BiDi mode: then
the screen (showing a part of the file) be repainted with incorrect
BiDi? Or would this flag be remembered for each character cell?

Also note that Arabic font rendering on fixed width grid is another
quite troublesome issue.

I'm pretty sure that many other bugs would arise upon implementing a
proof of concept.

I guess I'd second Diego's "TL.DR." conclusion.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  Confirmed
Status in vte package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg & apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2016-05-19 Thread Egmont Koblinger
Re Diego:

You are basically right. I'd like to add a couple of points.

As for complex apps such as mc, your approach (2) cannot work. This is
because the BiDi algorithm would not just need to shuffle around
characters that are visible in the terminal; it might need to pull
offscreen chars onscreen and vice versa. E.g. think of mcview's
unwrapped display mode, and long lines so that you need to scroll
horizontally to read the file. In order to properly display the BiDi
text, the terminal would need to be aware of the entire logical line of
the file, however, the application (e.g. mcview) simply doesn't give
this data to the terminal. So, for complex apps it's solely your
approach (1), that is, BiDi done in the applications that can work.

On the other hand, it's a reasonable expectation that a simple "cat"
produces readable text. Hence a terminal emulator should, by default,
probably perform a BiDi for each logical line (that is, between explicit
newlines). Which brings in a further question about how further cursor
positioning or character overriding should work in this case. I've
discussed it in https://bugzilla.gnome.org/show_bug.cgi?id=321490#c29, I
believe #2 there would be the right thing to do (and the one that does
not terribly break the look of ncurses apps).

So, we would already need two terminal modes, probably controllable via
an escape sequence. Implicit BiDi (the default) is when VTE applies the
BiDi algorithm (this is I guess what konsole does), which fixes simple
utilities, whereas probably breaks complex apps big time. And an
explicit BiDi where VTE reverts to its current behavior, that is, does
not do any BiDi, to be used by apps that perform the BiDi algorithm
themselves.

I _guess_ this is what ECMA TR53 (also discussed in the aforementioned
link) might be about, although I haven't had the chance to study it.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  Confirmed
Status in vte package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg & apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2016-04-18 Thread uwe
Um; It would, as we know, mostly ignore RTL reading users.

now RTL works in kde/konsole beautifully, with shaping and everything,
so I'm not sure how problems mentioned in #46 are handeled there, and
I'm sure its not perfect either, but works better than BiCon for example
but if softwares have been using functions to count characters to know
width, maybe *that* is broken, and language specific functions should be
replaced with language agnostic functions ...

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  Confirmed
Status in vte package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg & apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2016-02-13 Thread Yaron
So enforcing LC_MESSAGES=C or en_US.UTF-8 as a global override will
ignore this issue completely.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  Confirmed
Status in vte package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg & apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2016-01-22 Thread Usama Akkad
Tested on Ubuntu Xenial Xerus (development branch)  16.04  Gnome
Terminal Ubuntu 3.18.2-1ubuntu2.

See also: bug #1537064

A related bug is bug #1537064 to fix the situation when apt and possibly
other software show garbled translated scripts in terminal.

Example when running: "apt-cache policy gnome-terminal" will returned
garbled text from translated script on RTL local

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  Confirmed
Status in vte package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg & apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2016-01-15 Thread Reza Saidafkan
** Changed in: vte (Ubuntu)
   Status: Incomplete => Confirmed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  Confirmed
Status in vte package in Ubuntu:
  Confirmed

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg & apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2015-12-05 Thread Bug Watch Updater
** Changed in: vte
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  Confirmed
Status in vte package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg & apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2013-04-30 Thread bar
This helps a little : http://askubuntu.com/questions/77657/how-to-
enable-arabic-support-in-gnome-terminal

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  New
Status in “vte” package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg  apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2013-01-23 Thread uwe
mlterm also supports rtl+bidi i guess

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  New
Status in “vte” package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg  apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2012-11-03 Thread Sary Muhammad
I like gnome really! but what's the point of translating Gnome to Arabic
if one of the basics piece of software doesn't support the language!
like really does tha make sense!

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  New
Status in “vte” package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg  apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2012-11-03 Thread Sary Muhammad
+1 to uwe suggestion .

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  New
Status in “vte” package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg  apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2012-11-03 Thread Sary Muhammad
KDE Konsole , to my knowledge .. seems to be the only Console that
suupport RTL+BiDi .

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  New
Status in “vte” package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg  apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 263822] Re: RTL (right to left) support in terminal (BiDi)

2012-07-06 Thread uwe
It would be great if there is a blueprint for what the plan is regarding
this issue, so we can start testing it maybe

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to vte in Ubuntu.
https://bugs.launchpad.net/bugs/263822

Title:
  RTL (right to left) support in terminal (BiDi)

Status in Gnome Virtual Terminal Emulator:
  New
Status in “vte” package in Ubuntu:
  Incomplete

Bug description:
  Binary package hint: gnome-terminal

  The program fails to display bi-directional text correctly. For example,
   the Arabic  word Went (راح) should be spelled raa (ر) Alif (ا) haa (ح)
   from right to left. The program displays the Arabic text in the opposite 
direction.

  examples:
  ا ب ج
  become
  ج ب ا

  if the problem with numbers (and it's not) it will look like:
  123
  become
  321

  that makes many translated terminal applications messages unreadable
  like dpkg  apt-get

  ProblemT
  ype: Bug
  Architecture: i386
  Date: Tue Sep  2 04:44:06 2008
  DistroRelease: Ubuntu 8.04
  ExecutablePath: /usr/bin/gnome-terminal
  Package: gnome-terminal 2.22.1-0ubuntu2
  PackageArchitecture: i386
  ProcEnviron:
   
PATH=/usr/locusernamel/sbin:/usr/locusernamel/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/gusernamemes
   LANG=en_US.UTF-8
   SHELL=/bin/busernamesh
  SourcePackage: gnome-terminal
  Uname: Linux 2.6.24-19-generic i586

To manage notifications about this bug go to:
https://bugs.launchpad.net/vte/+bug/263822/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp