non-english

Are there any good Marathi language programming books?

प्रोग्रामिंग शिकण्यासाठी चांगले मराठी पुस्तक आहे का? असल्यास कोणचे? प्रोग्रामिंग शिकण्यासाठी चांगले मराठी पुस्तक आहे का? असल्यास कोणचे? धन्यवाद. Translation Can anyone recommend any good Marathi language books on general programming? ...

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 of programming languages has been a factor, as discussed in some other SO questions. So I'm curious, what are some of the important (well t...

Non-english domain naming issues in programming

Most programming code, I imagine is written in english. But I'm curious how people handling the issue of naming herein. Alot of programming is done within some bussiness domain, usually with well established terms for certain procedures, items. I'm from Denmark for instance, and something I work alot with has a term called "indblikskod...

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? ...

Calling Parent Class From Sub Class PHP

Hello There 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 from a class like this $chesterx->db->query(); I wanna do get another class from sub class for example i want to query exe...

Cultural issues in programming languages

I'm wondering if productivity can be correlated to whether a programmer is a native English speaker or not. I work in Japan and I can tell you that Japanese programmers struggle in getting the English part of a language (reserved keywords, function names, tutorials etc), it's just not natural for them and their thinking process is slow d...

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"? ...

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... + '&chdl=Lowest price|Average price'; This doesn't work, the legends don't show at all: var chart_url = 'http://chart.apis.google.com/cha...

How to display non english characters in php?

Hi guys 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 characters are typed but I get gibberish when I type arabic or chinese for instance. Is there a way to display all the characters? ...

Push Notification in non english languages

Hello, 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, can anybody help me how to send non english messages like Hebrew Or Arabic? If the string contains any non english characters, it is...

Modern implementations of russian programming language "Rapira "?

Are there modern (later than 1990) implementations of russian "Rapira" programming language? Wikipedia mentioned none. ...

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, { selectUser:'नाव' } ); } and my other js file contain this var Ext.app.formPanel = ...

How do I edit error messages in GCC source

Hi, 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 and warnings into my target language. I am a beginner to GCC. Any idea where the error messages are located in the source code and how ...

Find localized Windows strings

I need to find some strings that the current version of Windows is using. For example, when I create a new folder, it is initially named "New Folder" on English Vista. I need to programmatically find what that folder would be named on any language and version of Windows that I might be running on. Anyone have any ideas how to do tha...

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 creating a menu-strip and adding menu-items by entering their text (using the graphical designer). Since my GUI is in Hebrew, all these members ...

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 may support other languages, but everything will still be keyed off the English names, which are a primary key in both the program and the...

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 logging out, I try to get the referer from the request.headers, and redirect to that url. if user_logout: referer = request.headers.g...

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 = "https://graph.facebook.com/me/albums?access_token=..."; string result = webClient.DownloadString(query); And this is how one of the returned albums lo...

Facebook Graph API for non-English searh terms

when I try to search non-English search-terms like https://graph.facebook.com/search?q=手机&type=post 手机 = mobile phone I only got 12 posts about it. I think the real amount of recent posts in Facebook talking about this term should definitely be much more than 12. Is this because there are really not many people using non-English c...

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

Hi! 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. At the moment, the way I'm using to check if the user is an administrator is simply by comparing the username to a string constant calle...