hebrew

Convert text from English characters to Hebrew characters

Using C#, when a user types a text in a normal textbox, how can you see the Hebrew equivalent of that text? I want to use this feature on a data entry form, when the secretary puts in the customer name using English characters to have it converted automatically in another textbox to the hebrew representation. Maybe something with Cultu...

Why does \w match only English words in javascript regex?

I'm trying to find URLs in some text, using javascript code. The problem is, the regular expression I'm using uses \w to match letters and digits inside the URL, but it doesn't match non-english characters (in my case - Hebrew letters). So what can I use instead of \w to match all letters in all languages? ...

Python's os.path choking on Hebrew filenames

Hello, I'm writing a script that has to move some file around, but unfortunately it doesn't seem os.path plays with internationalization very well. When I have files named in Hebrew, there are problems. Here's a screenshot of the contents of a directory: Now consider this code that goes over the files in this directory: files = os.l...

hebrew appears as question marks in netbeans

Hi, I am using netbeans 6.1 on 2 computers. on one of them the program: public static void main(String argv[]) { System.out.println("שלום"); } prints normally, and the on the other question marks. what can be the difference between the 2 environments? edit: on both computers Control Panel \ Regional and Language Options \...

YUI support of rtl languages

Does YUI support rtl languages? (rtl: right to left, such as hebrew or arabic). If so, how? I want to display a MenuBar where the different menu items start near the right margin and go to the left. ...

Hebrew chars in email sent with JavaMail appears as question marks

What can be done? ...

AJAX+hebrew

I send by XMLRequest hebrew letters to Servlet ,at xmlRequest it's still hebrew ,in servlet i receive wired letters,.Java works on Unicode how to convert letters from textarea to Unicode t send to servlet ...

send sms in hebrew with clickatell

how can I send sms in hebrew with clickatell ? it arrives as giberish. ...

writing text with diacritic ("nikud", vocalization marks) using PIL (python image library)

writing simple text on an image using PIL is easy. draw = ImageDraw.Draw(img) draw.text((10, y), text2, font=font, fill=forecolor ) however, when I try to write Hebrew punctuation marks (called "nikud" or ניקוד), the characters does not overlap as it should. I guess this question is relevant also to Arabic and other similar lang...

Converting hebrew text to an image using imagemagick

Hi, I need to convert text to an image. Using imagemagick I can get this done. However, part or all of the text could be in Hebrew (an RTL language). This means the words in Hebrew are rendered backwards. If I was assured that the text was only Hebrew, I would have just reversed the text before sending it to ImageMagick. However, this so...

C# Reading Hebrew?

Hi all, My program reads a CSV file that contains hebrew text, it then displays the values in a form but the text is unredable. What am I doing wrong? Thanks James ...

Lucene Hebrew analyzer

Does anybody know whether one exists? I've been googling this for monthes... Thanks ...

Hebrew support in a C ncurses application

We have a C nurses based application (runs on most flavours of Unix, but we favour RHEL). We've got Unicode support in there, but now we have to provide a Hebrew version of the application. Does anyone know a process we could go through to convert the program? It mainly gets and stores data from Oracle, which can support Hebrew, so there...

Where can I find a list of Hebrew stop words?

Where can I find a list of Hebrew stop words? Edit: edit my answer to add more, if there are more... ...

Localize current time in PHP

Trying to display current time with PHP (using this): $date = date('m/d/Y h:i:s a', time()); echo $date; As simple as it gets. How do I localize it? I want to translate the months and days to Hebrew. Thanks. ...

This is asking a lot, I know, but: Help me translate this Glossary plugin for WP

In my search for a good glossary plugin for WordPress, I came across Natan Olsen's WP-SNAP. Which is brilliant. Only I need it to work with Hebrew. I know this is asking a lot, but if you could take a look at the source code (PHP) and tell me where to start altering this plugin to work with Hebrew letters, I will be forever thankful. ...

How can I make Twitter from the terminal display Hebrew characters correctly?

I've been using the Perl solution for Twitter via Terminal: IRSSI + TWIRSSI for the past couple of days. Amazing. The feeling so nostalgic yet so futuristic; beautiful. However, one problem still stands: Hebrew letters result as gibberish: Any idea how or where to I can modify the script to work in a readable Hebrew? Thanks, and G*d ...

non english (hebrew) chars in hostname

Is it official? Where is it defined? How can I transform between the english and non-english version, programmatically? I see domains that google recognizes as hebrew, but the browser does not. Examples: http://www.xn----ogc3ffxd2br0d.com/ http://www.xn------wpehbcibg3bcah2ftaym6h.com/ http://www.xn----6hcesc7ap3c.ws/ ...

Can CSS stylesheets be bidirectional?

Can CSS be bidirectional or is a stylesheet inherently tied to the direction of script (RTL vs. LTR)? I.e. can one and a single stylesheet work for both left-to-right (English) and right-to-left (Hebrew) languages? If so, what are guidelines to take into account? If no, how can a ltr stylesheet be transformed to rtl? ...

Can I generate a PDF file in Perl using Hebrew and English text?

Do you know if Perl's PDF::API2 module can generate documents with both English and Hebrew text? I have searched for a while and cannot seem to find how to handle right-to-left language text. Eventually I will want to list English in one column and Hebrew in the other. But I would be happy to have the two texts on different lines for ...