The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
43 views

How to restrict a text field to certain language using JS?

I'm building Q&A application and I want to restrict users to use only arabic as language in asking their questions or answering them, I believe JS is able to detect what keyboard is being used and ...
0
votes
0answers
39 views

Magento with FishPig Wordpress Integration - posts with non english characters in title results in 404 not found

I have installed Magento Next I Installed WordPress then Installed FishPig WordPress Integration to integrate Magento and WordPress using Magento connect next I configured FishPig WordPress ...
0
votes
1answer
74 views

Find non- english characters in mysql

I have a MySQL table which stores email contents as a blob data type. A few of the rows have non-english characters in them. Is there any ways to find only the rows which contain non-english ...
1
vote
1answer
51 views

Disable non-English characters?

One of my pages is bugged, I get a message from Google saying it's in Indonesian. Here's a .txt link if you want: http://lc-roleplay.com/account/actions/modelchange/modelchange.txt Can I somehow ...
0
votes
0answers
107 views

php - mysql results with ORDER & LIMIT non english character fail

I have a simple mysql query in a php function (wordpress). The function works with no problem, except when the result is with non English characters ( or non Latin) e.g. Hebrew, Arab, Chinese, ...
0
votes
1answer
229 views

Scandinavian characters get messed up when saved from DataGrid

I'm working on a xe:djxDataGrid that loads and saves data via xe:restService. It loads the data from Domino documents and at this point all scandinavian characters like ä and ö look OK. But if data ...
0
votes
0answers
137 views

Why `?` is displayed instead of non-english chars under cPanel? But not under localhost nor DirectAdmin? Using codeigniter and UTF-8. NO mysql used

I first created a simple HTML page that uses UTF-8 as its character encoding. Then I copied the HTML content to a view in codeigniter and it was still ok (I had used non-english characters that was ...
1
vote
0answers
85 views

How to change default Eclipse input language?

I have Slovenian layout, it is English layout with extra characters (on AltGr) in fact. It's useful to have several languages in one layout. Eclipse adds English layout to my system by default. It is ...
3
votes
2answers
116 views

possible to raise exception that includes non-english characters in python 2?

I'm trying to raise exception in python 2.7.x which includes a unicode in the message. I can't seem to make it work. Is it not supported or not recommended to include unicode in error msg? Or do i ...
1
vote
2answers
98 views

How to escape a character out of Basic Multilingual Plane?

For characters in Basic Multilingual Plane, we can use '\uxxxx' escape it. For example, you can use /[\u4e00-\u9fff]/ to match a common chinese character(0x4e00-0x9fff is the range of CJK Unified ...
2
votes
1answer
103 views

Delete dir with non english characters in PHP

I have a function that is scanning dirs on server, read files, do something with it , and then deletes the dirs (nested) The function is quite long , So I will post the relevant part . //many other ...
0
votes
0answers
34 views

Netbeans 6.8 Debug key words change from English to Russian?.?.?.?

I've got some strange behavior going on with my Netbeans. When I start debugging, and my path jumps out of the module where my break point originated, all my key words change from English to what I ...
2
votes
1answer
144 views

Localized (Double) Metaphone for Portuguese (pt_PT)

I want to see how phonetically similar two non-English strings are, AFAIK soundex and metaphone implementations only work correctly for English based strings, for instance coração and corassão sound ...
0
votes
1answer
271 views

Primefaces fileDownload non-english file names corrupt

I am using Primefaces 3.2. I've got problems with using primefaces fileDownload. I can upload the files and keep their non-english name on the server (in my case this is Russian). However, when I use ...
1
vote
0answers
186 views

Objective c - Get non-english characters from sqlite

I really have searched for the answer, but I didn't find my answer :( The problem is non-english characters (French and Greek), with just english characters it works fine. I get stuff out a ...
5
votes
1answer
2k views

Use regular expression to match ANY Chinese character in utf-8 encoding

For example, I want to match a string consisting of m to n Chinese characters, then I can use: [single Chinese character regular expression]{m,n} Is there some regular expression of a single ...
0
votes
1answer
230 views

Are non-english characters 100% supported in codeigniter urls by default?

I want to be sure if this behavior is 100% supported in CodeIgniter. What doubts me is that in config.php the permitted_uri_chars is as followed: $config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-'; ...
5
votes
1answer
240 views

Sorting non-English names with MySQL

I am trying to sort a table that contains Greek characters. The corresponding English version of the table is being sorted (both ASC and DESC) just fine, every time you click on the header of the ...
2
votes
1answer
379 views

Setting UILocalizedIndexedCollation Languages Order

I am using UILocalizedIndexedCollation in my application to return indexed tableview. My locale is set to Hebrew and on the indexed table I can see index list with both English and Hebrew letters. ...
2
votes
1answer
44 views

non-English friendly MVC web framework

I've tried several MVC web development frameworks (like Ruby on Rails and cakePHP), and they are great. However, because of their "convention over configuration" philosophy, they seem to be not very ...
2
votes
1answer
335 views

Getting text-only content from non-English website

I am trying to get the text-only contents of a non-English website. For example, I want to get the hindi contents of http://www.bbc.co.uk/hindi/ For text dump of an English website, I use wget to ...
0
votes
4answers
86 views

NonEnglish Charecters are being converted to Decimal

While I was checking a RSS feed , in browser I can see the fonts as below: 装,配上超短迷你裙,太过暴露,也很不得体。大专学生的随性打扮,到底是邋遢,还是新时尚呢?这一期的”青春开讲“,omy记者来到武吉班让政府中学的学生,一起讨论这个话题。一名学生说,穿着打扮得体,是对别人、对自己的尊重。另一名学 ... But ...
2
votes
2answers
804 views

How do I remove support for English in my iOS app?

I renamed en.lproj to sv.lproj. I then added the Swedish resources to the project and removed the English resources. The problem is that the app still "thinks" that it supports English, i.e. ...
1
vote
1answer
93 views

how to handle different language in file/folder path

I have written an application which takes folder path and perform some operation. But if folder path contains characters of language other than English then it is not working. It only support English ...
3
votes
1answer
239 views

How can I create an alphanumeric Regex for all languages?

I had this problem today: This regex matches only English: [a-zA-Z0-9]. If I need support for any language in this world, what regex should I write?
0
votes
4answers
517 views

Escape non english characters in a url

How can I escape non-english characters like "ö" from my url since it causes 404 response error. I am using Java. Please help me.
3
votes
2answers
419 views

Is there a standard way to sort by a non-english alphabet? For example, the romanian alphabet is “a ă â b c…” [duplicate]

Possible Duplicate: How do I sort unicode strings alphabetically in Python? As a citizen of the Rest-of-the-World, I'm really annoyed by the fact that computers aren't adapted by default to ...
7
votes
1answer
535 views

How to display all non-English characters correctly in a web site?

It's annoying to see even the most professional sites do it wrong. Posted text turns into something that's unreadable. I don't have much information about encodings. I just want to know about the ...
0
votes
1answer
141 views

is_dir() with non-english characters

In php, is_dir() function omits directories which contains non-english characters. ie. is_dir("C:\ekşi") is not directory according to the function but it is. Is there any solutions to this case? ...
1
vote
2answers
293 views

how to send a non-english word (chinese) email using django

if i use a chinese word subject : subject = u'邮件标题' it will be show error : UnicodeDecodeError at /account/login_view/ 'utf8' codec can't decode bytes in position 0-1: invalid data what can i ...
0
votes
1answer
482 views

ActionScript - Array.sortOn() For Non-English Data?

this is an array of objects that i want to alphabetize: var streets:Array = new Array(); streets.push({name:"Édouard-Montpetit"}); streets.push({name:"Alexandre de Sève"}); streets.push({name:"Van ...
2
votes
1answer
468 views

Non English Characters in URL ASP.NET

I'm using Blogengine.Net as my blog engine. I'd like to provide SEO friendly addresses like: http://www.mysite.com/post/پسسیبتجدید.aspx But blogengine changes the characters to not SEO friendly codes ...
1
vote
3answers
696 views

Removing non-english words from a sentence in python

I have written a code which sends queries to Google and returns the results. I extract the snippets(summaries) from these results for further processing. However, sometime non-english words are in ...
7
votes
5answers
985 views

Checking for Administrator user login in non-English installations of windows

I have some small questions...I have a program that stores a list of users in a database and compares on program startup if the user is in the list or is an administrator before letting them use it. ...
3
votes
2answers
2k views

Facebook Graph API - non English album names

I am trying to do a simple thing - get all my albums. the problem is that the album names are non-English ( they are in Hebrew ). The code that retrieves the albums : string query = ...
1
vote
3answers
269 views

How to redirect to a url with non-English characters?

I'm using pylons, and some of my urls contains non-English characters, such as: http://localhost:5000/article/111/文章标题 At most cases, it won't be a problem, but in my login module, after a user has ...
0
votes
1answer
100 views

Non-english alpha-numerics in a text file

C# WinForm application EDIT: It appears there's concern about foreign language compatibility. This is a non-issue. The card game I'm making this utility for is primarily in English. In the future I ...
1
vote
1answer
349 views

Handling SEO Friendly URL with Non-English Characters

I have URLs like this: .com/topic.php?id=6 I can convert them to this: .com/topic/5.html This works, but now I want to convert .com/topic/title.html The "title" is dynamic, for example çağdaş and can ...
2
votes
4answers
196 views

Should non-English member names be changed to English?

Situation: Automatically generated memebers, such as MenuStrip items, have their (automatically generated) names based on the text entered when the item was created. My most common situation is ...
1
vote
1answer
139 views

How do I edit error messages in GCC source

I am trying to create a C Compiler in my native language which I intend to put up as open source. I want to do this by downloading the GCC source code and then manually translating the error messages ...
0
votes
1answer
228 views

displaying labels in marathi language

i am tring to display lable of form in marathi language for that am creating marathi.js this my mararhi.js if(Ext.app.formPanel) { Ext.apply(Ext.app.formPanel.prototype, ...
1
vote
1answer
215 views

Modern implementations of russian programming language “Rapira ”?

Are there modern (later than 1990) implementations of russian "Rapira" programming language? Wikipedia mentioned none.
2
votes
1answer
925 views

Push Notification in non english languages

I have implemented successfully this code: http://stackoverflow.com/questions/1020762/does-anyone-know-how-to-write-an-apple-push-notification-provider-in-c It works great. But I have a question, ...
1
vote
3answers
1k views

How to display non english characters in php?

I've a basic question in php: I've 2 files: An html form with a textarea and a php file. All I want is to print the text the user types after submit is pressed. It all goes well when only english ...
0
votes
2answers
293 views

non-english chars in google charts label?

Does non-english characters work in google charts labels/legends ? This works, the legends shows up fine: var chart_url = 'http://chart.apis.google.com/chart?' + 'cht=bvs' + ...some other stuff... + ...
1
vote
2answers
252 views

Environment.SpecialFolder on foreign windows

Can anyone tell me if Environment.SpecialFolders works correctly on non-english versions of windows. for example. where the SpecialFolder.CommonProgramFiles is not "c:\program files\common files"?
0
votes
2answers
3k views

Calling Parent Class From Sub Class PHP

http://stackoverflow.com/questions/742097/this-a-b-c-d-calling-methods-from-a-superclass-in-php Ive asked a question on this link I ve problem with this tecnique I am able to call the sub classes ...
11
votes
6answers
5k views

Can an email address contain international (non-english) characters?

If it's possible, should I accept such emails from users and what problems to expect when I will be sending mails to such addresses?
9
votes
8answers
302 views

Non-English domain naming issues in programming

Most programming code, I imagine is written in English. But I'm curious how people are handling the issue of naming herein. A lot of programming is done within some bussiness domain, usually with well ...
0
votes
3answers
132 views

What are some of the best non-english general programming resources?

It may be my own limited perspective, but it seems that a majority of computer programming websites and resources are English-only or English-mostly. Certainly the role of English in the development ...