The Hebrew language is written right to left (RTL), much like Arabic and Farsi, requiring special handling when mixing Roman numerals and Latin characters in order to maintain correct flow.
0
votes
0answers
11 views
Hebrew text in htaccess causing 500 internal
so I have the following rewrite rule which contains the decoded hebrew characters
RewriteRule ^download/(.*)-%D7%9C%D7%94%D7%95%D7%A8%D7%93%D7%94.html?$ search.php?search=$1&page=1 [L]
now it ...
0
votes
1answer
27 views
Change encoding on the fly with jquery or php
I have a problem with my Ajax and PHP querys involving Hebrew.
When I submit a form with a GET method on php with a Hebrew string, lets say "בית", it sends me to a page with this address: ...
0
votes
0answers
22 views
Blackberry hebrew encode - with google maps V3
I have code that run on java script and work.
When I un this JS code within Blackbbery code i have Problem.
I get result at map, but if i asked text in Hebrew like request for map by ...
2
votes
1answer
46 views
Hebrew special charcters in regexp
This is my code:
preg_replace('/[^{Hebrew}a-zA-Z0-9_ %\[\]\.\(\)%&-]/s', '', $q);
It's supposed to accept only a-z, A-Z, 0-9, any number of single white spaces and hebrew charcters.
I tried it ...
2
votes
1answer
39 views
Reading hebrew in python 3.2
I have a conversation log in Hebrew (.txt). I opened the file, using f=open("./WhatsApp.txt",'r',encoding="cp037"). In the file, each line of text consisted a date and a text (for example: ...
0
votes
0answers
84 views
backbone.js shows Hebrew fonts as gibberish
I have a simple backbone.js application that uses router and render different views accordingly.
Everything is working great with English!!!
But, say in the contact.html you change the font from ...
0
votes
2answers
85 views
PHP Cron Script - read from from CSV file and email (UTF-8?)
I am struggling with this issue for few days now, reading and trying whatever I came across with no solution found:
Here is the bottom line of what I want to do: I have a members only system. when a ...
0
votes
1answer
28 views
sql in android-hebrew
I defined a sql table:
...
customersDB2.execSQL("INSERT INTO " + TABLE_NAME + " Values ( 86, 'This ', 'זה ');");
customersDB2.execSQL("INSERT INTO " + TABLE_NAME + " Values ( ...
0
votes
1answer
25 views
Right to left languages in panorama-Windows Phone
I want to make right to left language(Hebrew) in panorama window(So the scroll will be to left instead of right), how can I do that?
Thank you.
0
votes
0answers
25 views
facebook plugin - title hebrew anf english rtl
Is it possible to force css style on facebook meta tag?
I am using facebook plugin (like that opens a post a comment on facebook) on my web page.
I have a title that is mixed with Hebrew and English ...
0
votes
1answer
31 views
Hebrew dictionary for PostgreSQL on Heroku?
Reading Heroku help on enabling full text search in PostgreSQL I see that it doesn't support Hebrew by default. Does anyone know how to add support for Hebrew dictionary in PostgreSQL on Heroku?
...
-2
votes
1answer
59 views
.ENCODING international chars (hebrew,thai,russian,chinese,…)
international html files archived by wget
should contain chars like this
(example hebrew and thai:)
אב
הם
and ยคน
instead they are saved like this:
íäáåãéú and ÃÒ¡à§é
How to get the these ...
2
votes
1answer
130 views
How to handle RTL languages on pre 4.2 versions of Android?
Background
TextView always had issues with RTL (Right-To-Left) languages. Since I know only how to read Hebrew (in addition to English), I will talk about its issues:
Text alignment (and I'm not ...
-1
votes
1answer
47 views
Using file_get_contents with hebrew string
I need help with the file_get_contents() function.
When I'm trying to fetch data from a url that includes some hebrew characters I'm getting an error from the host (Invalid link).
For example:
...
0
votes
0answers
121 views
UTF-8 URL percent encoded (hebrew) working in all browsers except IE
I have a html.file like this, with a local file with a hebrew name like this:
אב.html
The percent encoded link to it works fine with all browsers but not with IE. It seems that IE is translating it ...
2
votes
1answer
105 views
Matplotlib: Writing right-to-left text (Hebrew, Arabic, etc.)
I'm trying to add some text to my plot which is RTL (in this case, Hebrew). After some work managed to get it to display the text, but it's displayed LTR (meaning, in the reverese order). I've dug ...
0
votes
1answer
80 views
Android 2.3.3 Search in AutoComplete in Hebrew does not work
Hey guys I'v been searching the web to find a solution for this problem and didn't find any (I hope there's one out there)
My Problem:
I set an AutoCompleteTextView and bind it to an array with data ...
1
vote
0answers
28 views
css file on googlecode charset issue with TortoiseSVN
I have a css file containing hebrew characters:
.className:after {
content: "x סגור";
}
The file is stored on googlecode SVN; When viewing this file in the browser I see ???? instead of what ...
1
vote
1answer
64 views
Facing Issue Inserting Hebrew XML data into sql server 2005
I am facing issue while inserting XML data with Hebrew content into Sql Server 2005 Database.
Same data is given below.Thnx in advance.
Declare @XML nvarchar(max)
set @XML =
'
<Table1>
...
2
votes
1answer
121 views
regex match Hebrew
I am trying to scrape a page that has Hebrew text on it. It contains the following piece of HTML:
<div id="AgeRating">דירוג גיל: 12+</div>
I just want the 12+ part here (in fact: I ...
0
votes
0answers
54 views
Hebrew translation for Perl variable with an href attribute is not working
I am using the command below to display an HTML link. Here $value and $url are Perl variables.
If $url is a mailto address then the Hebrew word in the $value variable displays correct data. But if it ...
0
votes
0answers
124 views
xcode decode mixed hebrew and english utf8 string
I'm new to XCode, and I'm having some difficulties with decoding UTF8 strings with hebrew. I have an NSString taken from a field in a sqlite database that has a mix of hebrew and english words. The ...
0
votes
0answers
43 views
How to make ISO8601 produce Hebrew day of the year, week of the year?
Can someone think of a way to calculate the Day-of-the-Year and Week-of-the-Year for the Hebrew calendar? I'm using ISO 8601 which can return the Hebrew year, month, day of the month and day of the ...
1
vote
1answer
69 views
How to translate Drupal 7 Site from English to Hebrew?
I have a Drupal 7 website. Please tell me how to translate it to Hebrew?
0
votes
0answers
50 views
how to use utf-8 with tomcat and spring
I am trying to send UTF-8 strings to a spring controller and having problems. more specifically i am sending hebrew and seeing some weird stuff happening. here is my code:
@RequestMapping(value = ...
0
votes
1answer
85 views
Can't show hebrew using jquery
I am writing a little email server. Client side is written in javascript/jquery and server side in nodeJS (this is a homework assignment)
On the client side I send an email as follows
function ...
-1
votes
1answer
42 views
Php - Download a Hebrew Site - Character issues
Does anyone know how to download a page such as:
http://www.zvz.co.il/SingleAd.aspx?p=76755307&t=11&m=p
When I do it, I get this in the header:
<head id="Head1"><title>
...
0
votes
0answers
125 views
jQuery Mobile encodes my Hebrew URLs
I have a site written in Hebrew which contains some URLs with hebrew words and I'm using jQuery Mobile with the RTL plugin.
I have a problem: that jQuery plugin insists on encoding my hebrew URLs to ...
1
vote
1answer
106 views
android localization doesn't work for some languages
I've created a values-he folder with strings.xml file identical to the default strings.xml with translated string values, but running the app both on a Hebrew selected real device and on a Hebrew ...
0
votes
1answer
55 views
cannot post hebrew to mysql [duplicate]
Possible Duplicate:
How to make MySQL handle UTF-8 properly
I'm trying to add an Hebrew in my data base
From a simple form
I get letters like this
שלו×
Instead of
"שלום"
link
But I ...
1
vote
2answers
434 views
copy/paste Hebrew (or Cyrillic) characters into Notepad++ or other editor
I have never worked with Hebrew characters before, but now I have an asp (or html) and need simply copy/paste some Hebrew sentence into my html. I am using notepad++ for it.
Currently all existing ...
1
vote
2answers
383 views
Getting question marks when inserting Hebrew characters into a MySQL table
I'm using Netbeans building a web application using Java, JSP that handle a database with Hebrew fields.
The DDL is as follows:
String cityTable = "CREATE TABLE IF NOT EXISTS hebrew_test.table ("
...
0
votes
0answers
136 views
Using Java PDFBox to write Hebrew into PDF
I'm using the library PDFBox to write text to PDF.
When I write English it works perfectly fine, but when I try to write hebrew i get Gibberish.
I've tried all kind of solutions but nothing seems to ...
0
votes
2answers
194 views
XMLHttpRequest with Hebrew Characters
I'm having this code which seem to screw up itself when the text in the XMLHttpRequest contains Hebrew characters, so I've made a small example to demonstrate the problem.
The small code example ...
1
vote
4answers
102 views
Split the first letter from variable
I need to split the first letter from variable $name.
How I can to do it?
$name = $userData['name'];
How I can to get the first letter?
and please check if it correct:
if($userData['gender'] == ...
1
vote
2answers
187 views
Insert Unicode string to DB using Linq
When I try to excecute this:
INSERT INTO [DB_NAME].[dbo].[Table]
([Column])
VALUES('some_hebrew_characters')
I get only questions mark in the column. If I change it to N'some_hebrew_characters' - ...
1
vote
0answers
46 views
Font is spread across several files
I want to use the Droid font in my iOS application, which currently mainly supports Hebrew. The Droid font package contains several files, two of which are DroidSans.ttf and DroidHebrewSans.ttf.
The ...
0
votes
0answers
70 views
backspace and delete don't work when running a java application in mlterm
I am trying to write hebrew right to left text inside a terminal in a java program running on ubuntu 11.10. When I used the regular gnome terminal the text was reversed (left to right).
I am trying ...
2
votes
1answer
600 views
Chrome error for font family: “Invalid property value”
The following CSS works well on IE and FireFox, but chrome marks it as "Invalid property value" -
TD.desc1_hp { font-family: Arial,Arial (Hebrew),David (Hebrew); }
any hint why?
Thanks,
Atara
2
votes
2answers
204 views
Java: Extend SimpleDateFormat with new pattern letters
Java's SimpleDateFormat is used to format a Date object to a string. The formatter supports various pattern letters, which denote textual representation of a Date field. For example, yy is two-letter ...
0
votes
0answers
83 views
php read file with hebrew name in local server from remote server
I have (in php web) to copy file from remote server to local server (WAMP) ,
I did it by fopen(..) and fwrite(..) - it did it well, except from the case that I have to
open file (in local server from ...
1
vote
1answer
135 views
Hebrew letters are empty
I am building an app which needs to support Hebrew letters (שלום). I am sending a message thru GCM (Google Cloud Messaging). Whenever my OnMessage is called the string (Hebrew) that I am receiving is ...
1
vote
0answers
25 views
editing the admin templates in django for local language
I've started using django. I love it, but I'm still a noob, so forgive me if this is a beginner question.
I'm designing a site in Hebrew, meant for a small group of users to add information on a ...
0
votes
2answers
64 views
Hebrew on mobile web site
I am trying to build a basic web page for mobile devices, on my pc Chrome browser I see "???? ???? ???" every where Hebrew written. Here is my code:
<?php
?>
<!DOCTYPE html PUBLIC ...
2
votes
1answer
95 views
can I get the text direction from the culture code?
If I have the culture code for a country/language combination, is it possible to from this, find the text direction.
For example for en-US how can I get from this that the text direction is left to ...
0
votes
2answers
181 views
Alignment of Hebrew Vowel points in Android
I want to display Hebrew text with vowel points (nikkud) using the Canvas.drawText interface. The vowel points come out misaligned, as in the following image taken using a Motorola Defy+ device:
...
1
vote
1answer
142 views
NSDate hebrew date label
I make label with the date for today but I need hebrew date for today.
this my code
NSDate *today = [NSDate date];
NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
[dateFormat ...
1
vote
1answer
141 views
SSIS Export to RDB doesn't work with NonUnicode Page File (8859-9)
I'm trying to export data from a table in MS SQL Server 2008 R2 to a RDB Database.
But I'm having problems to export Hebrew strings to RDB because my SQL Server is Unicode and my RDB is Non-unicode.
...
4
votes
2answers
153 views
transforming a hebrew word into english characters
I need a java open source code that transforms a hebrew string into a string with english characters for example : transform the word "שלום" into "shalom"
1
vote
1answer
221 views
Facebook login buttons are not redendering in multilanguage
We are using English and Hebrew language for our website. In English Facebook connect buttons are rendering properly but in Hebrew first time FLogin button coming in English not in Hebrew and all ...

