Coding in Other (Spoken) Languages - Stack Overflow most recent 30 from stackoverflow.com2009-11-07T03:44:39Zhttp://stackoverflow.com/feeds/question/202723http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/202723/coding-in-other-spoken-languages33Coding in Other (Spoken) Languagescontagious2008-10-14T20:45:17Z2009-09-25T12:20:55Z
<p>Something i've always wondered, and I can't find any mention of it anywhere online. When a shop from, say Japan, writes code, would I be able to read it in english? Or do languages, like C, php, anything, have Japanese translations that they write?</p>
<p>I guess what i'm asking is does every single coder in the world know enough english to use the exact same reserved words I do?</p>
<p>Would this code:</p>
<pre><code>If (i < size){
switch
case 1:
print "hi there"
default:
print "no, thank you"
} else {
print "yes, thank you"
}
</code></pre>
<p>display the exact same as I'm seeing it right now in english, or would some other non-english-speaking person see the words "if", "switch", "case", "default", "print", and "else" in their native language?</p>
<p>EDIT - yes, this is serious. I didn't know if different localiztions of a language have different keywords. or if there are even different localizations at all.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202730#202730-8Answer by Jan Gressmann for Coding in Other (Spoken) LanguagesJan Gressmann2008-10-14T20:46:54Z2008-10-14T20:46:54Z<p>um is this serious? yes, the keywords are still english.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202731#202731-1Answer by Jeremy Reagan for Coding in Other (Spoken) LanguagesJeremy Reagan2008-10-14T20:47:00Z2008-10-14T20:47:00Z<p>I believe that since most programming languages have been written in English speaking countries they are all in English, so to answer your question yes.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202742#2027422Answer by Javier for Coding in Other (Spoken) LanguagesJavier2008-10-14T20:48:56Z2008-10-14T20:48:56Z<p>i've seen VBA translated into spanish-like commands. it's one of the ugliest things ever seen. i would be ashamed to have something like this on my computer.</p>
<p>PD: i happen to think that spanish is a much nicer language than english; but translating is WRONG</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202744#2027448Answer by moritz for Coding in Other (Spoken) Languagesmoritz2008-10-14T20:49:25Z2008-10-14T21:26:06Z<p>The programming language defines keywords and standard class names, and it's best practice to give user defined types, variables and functions also English names (as a non-native speaker I can tell ;-).</p>
<p>So yes, if all is well, you'll be able to read the code.</p>
<p>However languages like Java and Perl allow the full Unicode set for identifiers, so if somebody writes his class names in Kanji, you'll likely have a problem.</p>
<p>Update: For Perl there's a <a href="http://search.cpan.org/perldoc?Lingua::Romana::Perligata" rel="nofollow">joke module</a> that allows you to write Perl in Latin. But it's really just that, a joke. Nobody uses things like this seriously.</p>
<p>Second Update: The idea of localized programming languages isn't that ridiculous. Excel's macro language is localized, but luckily it's stored in one canonical language (English) in the file, so the localization is just a layer on top of the normal thing. Such things only make sense for small "programs", for "real" programs it becomes hard to maintain.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202749#2027490Answer by Mike Hordecki for Coding in Other (Spoken) LanguagesMike Hordecki2008-10-14T20:51:07Z2008-10-14T20:51:07Z<p>It would be pointless, IMHO, to i18n a language <em>syntax</em>. It would just kill any sort of portability.</p>
<p>The only exception are educational languages, such as LOGO. They were designed for ease learning, so portability is not an issue.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202757#2027573Answer by Francis Beaudet for Coding in Other (Spoken) LanguagesFrancis Beaudet2008-10-14T20:52:33Z2008-10-14T20:58:20Z<p>Well, As others pointed-out, the keywords and system calls would likely remain in English. </p>
<p>However, understanding the keywords of the language is only a small part in understanding the code. Variable names, function names and comments all risk being in the native language of the author.</p>
<p><strong>Edit</strong>: I just flashed-back to my youth where I went in the mapping tables of my TRS-80 built-in BASIC to switch the keywords to French. I could change all the keywords but I couldn't make any of them larger. Made for funny programs. </p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202773#20277326Answer by Kluge for Coding in Other (Spoken) LanguagesKluge2008-10-14T20:54:43Z2008-10-14T20:54:43Z<p>Imagine the possibilities of a localized C++ standard:</p>
<pre><code>si (i <size) {
cambiar de
caso 1:
escriba "Hola";
por defecto:
escriba "no, gracias";
) de otra manera (
escriba "sí, gracias"
)
</code></pre>
<p>The mind boggles...</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202841#20284111Answer by Don for Coding in Other (Spoken) LanguagesDon2008-10-14T21:07:18Z2009-05-19T05:01:34Z<p>In the Java language some methods must be named (at least partially) using the English language because of the JavaBeans convention.</p>
<p>This convention requires that a property X be established via a pair of getX() and setX() methods. Here in French-Canada, where some developers are obliged to code in the French language this leads to the following travesty:</p>
<pre><code>interface Foo {
Color getCouleur();
void setCouleur(Color couleur);
}
</code></pre>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202851#20285174Answer by Oscar Reyes for Coding in Other (Spoken) LanguagesOscar Reyes2008-10-14T21:08:31Z2008-10-15T18:35:27Z<p>uh?</p>
<p>If I understood well the question was: "does every single coder in the world know enough english to use the exact same reserved words I do?"</p>
<p>Well.. english is not the subject here but programming language reserved words. I mean, when I started about 10 yrs ago, I didn't have any clue of english, and still I was able to program simple things by learning the programming language, even when I did not knew what they meant ( in english ). As a matter of fact this help me to learn english.</p>
<p>For example. I know to do an "iteración" ( iteration of course ) I had to write:</p>
<pre><code> for( i = 0 ; i < 100 ; i++ ) {}
</code></pre>
<p>To me the "for", the ";" and the "++" where simple foreign words or symbols. Later I learn that "for" meant "para" and "while" meant "mientras" etc. but in the mean time I did not need to know english, but in my case what I needed was to know "C".</p>
<p>Of course when I needed to learn more things, I had to learn english, for the documentation is written in that language.</p>
<p>So the answer is: No, I don't see if, while, for etc. in my native language. I see them in english, but they didn't mean to me any other thing that they meant for the for the programming language in turn.</p>
<p>Is like switch statement in bash: case .. esac. What Is "esac"... for me the end of the switch statement in bash.</p>
<p>I guess thats what we call "abstraction"</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202870#2028701Answer by OregonGhost for Coding in Other (Spoken) LanguagesOregonGhost2008-10-14T21:12:03Z2008-10-14T21:12:03Z<p>Don't make fun of this. Some years ago, Microsoft had announced G# (German Sharp) - C# with German keywords and API. Of course, it was an April Fools joke, but the entire site about that looked so real and professional (and was on microsoft.com). Scary.</p>
<p>At work, we use two field bus systems, both developed in German-speaking countries, which have a scary mix of German and English for identifiers, including some lovely false friends. It's a mess.</p>
<p>No, English keywords and identifiers are fine. Though some might argue if it should be Color or Colour :)</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202928#2029281Answer by milot for Coding in Other (Spoken) Languagesmilot2008-10-14T21:29:47Z2008-10-14T21:29:47Z<p>I read a lot of code, but the problem always is at variable/method names and comments, if they are commenting their code on their own language, using a language special characters like Japanese or Cyrillic, we are in trouble! but the keywords I think they will stay in English as they are.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202932#2029322Answer by rshimoda for Coding in Other (Spoken) Languagesrshimoda2008-10-14T21:31:04Z2008-10-14T21:31:04Z<p>In several VBA project I've worked on (yes, very early in my career) we had to detect the version of office which was installed on the user's machine and change the formulas used in the speradsheets accordingly.</p>
<p>As i program in portuguese"SUM" would have to be translated into "SOMA" and so on and so forth. I just can't imagine the necessary work to make this happen in several languages. Has anyone else suffered with this problem?</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/203527#2035278Answer by Juan Pablo Califano for Coding in Other (Spoken) LanguagesJuan Pablo Califano2008-10-15T02:24:23Z2008-10-15T02:24:23Z<p>As many people already pointed out, in most programming languages you just have to learn a few keywords, so it doesn't matter that much if they're in English (or a language other than yours, for that matter). It's just a symbol you associate with some construct. For instance, in VB you have "THEN", which in many C-style languages would be "{" and it doesn't make a big difference in readability (well, at least that's how I see it, being a Non-English native speaker).</p>
<p>But where things can sometimes get hairy, and where the choice of (natural) language matters is in naming identifiers. If the names of variables, functions, classes, etc, don't have a meaningful name for you because of a language barrier, following even the simplest code can be rather challenging.</p>
<p>I remember someone once gave me a short snippet of Actionscript taken from some blog. The names were in German and since I don't speak a word of that language, stuff could have been called var_123, var_562 or func_333 as well (and probably it would have been easier for me to remember the names or at least to have a chance of spelling them right without copying and pasting). Since this was a short, self-contained snippet, I used an online translator to give those vars and functions meaningful names in my native language (Spanish) and after that, everything was clear. The point is that the code was actually simple, but I was only able to make sense out of it without too much (unnecessary) extra effort just when I overcame the language barrier.</p>
<p>Since then, I've switched to using English for naming identifiers. Whether you like it or not, it's the "koine" for programming, engineering and generally technical stuff. Most of the APIs are written in English and so is most documentation (and probably the best resources you can find are in English as well). As a nice aside, it keeps your code more coherent with the code you're likely to be interacting with, and I think it tends to be more compact and succinct than other languages like Spanish (which otherwise would be my natural choice).</p>
<p>Of course, if you can't understand at least some English, the problem remains the same, so it's not a perfect solution. But, given a number of developers from many different countries, chances are that the common language for them to communicate (through code and of course other means) will be English. So, choosing English is perhaps the best option, even though it would be not the perfect solution to this problem.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/203564#2035641Answer by Chris Lundie for Coding in Other (Spoken) LanguagesChris Lundie2008-10-15T02:44:37Z2008-10-15T02:44:37Z<p>AppleScript was once available in French and Japanese dialects. I do not know why it was withdrawn. </p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/203602#2036022Answer by Uri for Coding in Other (Spoken) LanguagesUri2008-10-15T03:09:29Z2008-10-15T03:09:29Z<p>Generally speaking, most programmers adapt to the English form.
I learned to program when I was 7 years old and only spoke Hebrew (which is right to left) and with no english, which made it quite a fascinating experience.</p>
<p>The problem you would usually get is with documentation, variables, and function names. I have seen my share of variables in other languages using english alphabet.</p>
<p>The only language I'm familiar with that actually got translated was good old Logo (still amazing to this day). </p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/283947#2839473Answer by Stein Gauslaa Strindhaug for Coding in Other (Spoken) LanguagesStein Gauslaa Strindhaug2008-11-12T13:40:34Z2008-11-12T13:40:34Z<p>Actually there <em>are</em> some <a href="http://en.wikipedia.org/wiki/Non-English-based_programming_languages" rel="nofollow">Non-English-based programming languages</a> (Wikipedia)</p>
<p>I'm Norwegian but I've allways used English for all code except output (ignoring some silly code from school). Actually I usually write everything in English and then <em>translate</em> it to my native language, using gettext (or something).</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/286357#2863571Answer by Luke H for Coding in Other (Spoken) LanguagesLuke H2008-11-13T06:02:37Z2008-11-13T06:02:37Z<p>When I was a kid we went to France, and in a museum we went to, I remember finding a display which showed you how to write computer programmes. The language was some kind of BASIC variant and I distinctly remember it using POUR instead of FOR, and so on. I was 7 years old and had only just learned BASIC, and it seemed completely natural to me that the French would have their own dialect like this!!</p>
<p>I guess it may have been <a href="http://en.wikipedia.org/wiki/LSE_(programming_language)" rel="nofollow">LSE</a> that I saw?</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/288226#2882260Answer by GvS for Coding in Other (Spoken) LanguagesGvS2008-11-13T20:48:24Z2008-11-13T20:48:24Z<p>I think WordBasic was localized. WordBasic was used to write macro's for in Word before VBA was used.</p>
<p>If I remember it correctly, only WordBasic written in the English version would execute on all localized version. If you would write a Dutch version, you could only execute it on a Dutch Word.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/288320#2883203Answer by Dinah for Coding in Other (Spoken) LanguagesDinah2008-11-13T21:10:27Z2008-11-13T21:10:27Z<p>Taking this to the next level, what about being able to substitute symbols?</p>
<p>After seeing languages like <a href="http://en.wikipedia.org/wiki/Brainfuck" rel="nofollow">Brainf**k</a> and <a href="http://compsoc.dur.ac.uk/whitespace/" rel="nofollow">Whitespace</a> I thought of making a language like this: it'd be identical to C except you use closing braces to open, opening braces to close, swap the meanings of + and -, * and /, ; and :, > and <, etc.</p>
<p>The concept is nothing more than a gimmicky altered C compiler. But, like thinking of keywords differently, it challenges you to rethink some basic assumptions if you've never thought of such things before. Ex:</p>
<pre><code>int foo)int i, char c( }
int six = 2 / 3:
int two = six + 4:
if )i > 0( }
printf)"i is negative"(:
{
{
</code></pre>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/290327#2903271Answer by Tom Future for Coding in Other (Spoken) LanguagesTom Future2008-11-14T14:59:28Z2008-11-14T14:59:28Z<p>Filemaker's scripting language is localized. The scripts (and data!) are stored in a terrible "sorta canonical" form.</p>
<p>So if you write a script in the American version, then open it up in the French version, all the keywords and built-in function names will be in French. But why won't it run?! Aha! The French version uses "," as the decimal point, and therefore to avoid ambiguity uses ";" to separate function arguments -- where the American version uses "." and "," respectively. This conversion you have to do yourself.</p>
<p>So you work through the incredibly bad script editing interface (you can't write scripts as text files) to fix all these things. It runs! Great! The results are all wrong! Oh no! Aha! The Jan-7-2004 date you entered in the American version is being interpreted as July-1-2004 -- apparently dates are not only displayed but <em>stored</em> in locale-dependent order. <em>Am I kidding you</em>? No.</p>
<p>[Note: Filemaker 8 and 9 may be sane -- I only ever worked with 3 - 7.]</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/290462#2904629Answer by Adam K. Johnson for Coding in Other (Spoken) LanguagesAdam K. Johnson2008-11-14T15:39:54Z2008-11-18T18:16:34Z<p>I really have not thought too much about programming in Japanese before, but here we go, using the question's code sample.</p>
<p>Using only the language statements in Japanese with the variables in English:</p>
<pre><code>// In Japanese, it makes more sense to put the keywords/modifiers as
// postfix expressions rather than prefix expressions.
(i < size)か {
(l[i])は {
1だ:
「もしもし。」を書く;
省略時値:
「いいえ、いいですよ。」を書く;
}
} ない {
「はい、ありがとうございます。」を書く;
}
</code></pre>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/293063#29306310Answer by jes5199 for Coding in Other (Spoken) Languagesjes51992008-11-15T21:19:45Z2008-11-15T21:19:45Z<p>I'm having trouble finding references, but I'm reminded of three stories.</p>
<p>A Lisp hacker defends meaningless functions like "cdr" and "car" by comparing them to programming in your non-native language:
<a href="http://people.csail.mit.edu/gregs/ll1-discuss-archive-html/msg01171.html" rel="nofollow">http://people.csail.mit.edu/gregs/ll1-discuss-archive-html/msg01171.html</a></p>
<p>When Yukihiro Matsumoto ("Matz") started developing Ruby, he used english keywords <i>even though he was writing all the documentation in Japanese!</i>. There was no English documentation for Ruby for a couple years, and very few Americans using the language. But now it's a world-class language, and it the fact that it was born in Japan is only of historical interest. If the language had been using keywords in hiragana, it would have had a much more difficult time gaining popularity.</p>
<p>I read an essay once -- maybe someone else can find it, Google is no help today -- that suggested that translating keywords was misguided because the words aren't actually English-- they're jargon. Not only do (to use the examples above) <i>para</i> and <i>pour</i> not quite have the exact meaning that <i>for</i> has in English, to non-programmers the phrase "for loop" is jibberish. Even Americans have to learn a new meaning. So to translate the words's superficial meaning into another language is more like making a cross-language pun rather than actually being helpful.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/294426#2944262Answer by Chris Jester-Young for Coding in Other (Spoken) LanguagesChris Jester-Young2008-11-16T21:34:57Z2008-11-16T21:34:57Z<p>Since nobody's mentioned it yet: <a href="http://www.chinesepython.org/" rel="nofollow">ChinesePython</a>. Their <a href="http://www.chinesepython.org/cgi_bin/cgb.cgi/doc/doc.html" rel="nofollow">quick start guide</a> gives users experienced in Python an idea of what all the keywords are in ChinesePython. :-) (The <a href="http://www.chinesepython.org/cgi_bin/cgb.cgi/doc/sample/sample.html" rel="nofollow">sample programs</a> are interesting reading, too.)</p>
<p>I'll cut and paste four lines from that list, just because I find them fascinating:</p>
<blockquote>
<p>如 .. 不然 .. 否则 .. (<code>if</code> .. <code>elif</code> .. <code>else</code> ..)<br />
只要 .. 否则 .. (<code>while</code> .. <code>else</code> ..)<br />
取 .. 自 .. 然后 .. (<code>for</code> .. <code>in</code> .. <code>else</code> ..)<br />
试 .. 失败 .. 否则 .. 然后 .. (<code>try</code> .. <code>except</code> .. <code>else</code> .. <code>finally</code> .. )</p>
</blockquote>
<p>Note how the <code>else</code>s do not always translate to the same Chinese translation! (The <code>else</code> in the <code>for</code> loop has the same translation as the <code>finally</code> in the <code>try</code> block; this makes sense when you think about it.) Instead, the word is chosen in each context to be most meaningful to a Chinese programmer.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/295103#2951031Answer by Patrick J Collins for Coding in Other (Spoken) LanguagesPatrick J Collins2008-11-17T08:41:20Z2008-11-17T08:41:20Z<p>I'm in a French team developing a software system in C#. Despite the fact that the programming language keywords are ostensibly English, I imagine that you would have great difficulty reading the code as all the function names, variables, code comments, database tables and columns, technical specifications, protocols and so on, are all in French, including those lovely accented characters ç, é, è, ù, etc. I'm not even certain if the system would even run elsewhere due to localisation bugs, such as relying on the comma to be the default decimal seperator.</p>
<p>Otherwise, WinDev is a popular programming platform in France, and its programming language WLanguage has keywords in either French or English, see and example here : <a href="http://fr.wikipedia.org/wiki/WLangage#Bilingue" rel="nofollow">link text</a></p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/299687#2996871Answer by José Leal for Coding in Other (Spoken) LanguagesJosé Leal2008-11-18T18:34:20Z2008-11-18T18:34:20Z<p>ahuehuae pseudo-code is like this to..
here is a pseudo-code from here (Brasil) : </p>
<pre><code>se (j <= 10)
então
para a de 1 até 10 faça
b = 1 - a
fimpara
senão
troque (j)
caso 1:
escreve "José Leal"
caso padrão:
escreve "Olá!"
fimtroque
fimse
enquanto (j > 10)
faça
escreve j++
até (verdadeiro)
fimenquanto
</code></pre>
<p>aehahu I think this is much more difficult.. however it is my native language.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/303531#3035316Answer by Adrian Kuhn for Coding in Other (Spoken) LanguagesAdrian Kuhn2008-11-19T21:58:48Z2009-09-25T11:33:05Z<p>You mean?</p>
<pre><code>wenn (i < größe) {
wähle
fall 1:
drucke »Guten Tag!«
anderenfalls:
drucke »Nein, danke«
} sonst {
drucke »Gern geschehen«
}
</code></pre>
<p>Its mind boggling.</p>
<p>IMHO the non-English speaker are even in the advantage. Programming lingo and our natural language are separat. Whereas you English speakers overload native terms with technical terms. Doesn't this lead to dangerous confusions or missunderstandings sometimes?</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/304273#3042730Answer by Michael Carman for Coding in Other (Spoken) LanguagesMichael Carman2008-11-20T03:47:49Z2008-11-20T03:47:49Z<p>Your question is an interesting one with regard to Perl because it's syntax is designed to follow (English) natural language. I wonder if that makes it more difficult for non-English speakers...</p>
<p>Of course, Perl and Perlers refuse to play by conventional rules. Mad scientist Damian Conway wrote the <a href="http://search.cpan.org/perldoc?Lingua::Romana::Perligata" rel="nofollow">Lingua::Romana::Perligata</a> module which uses the black magic of source filters to allow you to write Perl in latin!</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/322759#3227590Answer by Dean for Coding in Other (Spoken) LanguagesDean2008-11-27T01:57:36Z2008-11-27T01:57:36Z<p>Here in Australia we still need to spell <b>colour</b> like <b>color</b>.
However, I do find it annoying when other (Australian) developers, working on an Australian project, decide that internal variable names need to be spelt the american way. </p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/323964#3239640Answer by Paul McClean for Coding in Other (Spoken) LanguagesPaul McClean2008-11-27T14:51:54Z2008-11-27T14:51:54Z<p>I am British and a problem we often run into is the American/British spelling clash. This often occurs with programming related terms such as Initialise() or Initialize(), Analyse() or Analyze() etc. This can (has) lead to problems trying to overriding methods, and is sometimes difficult to spot.</p>
<p>Since the framework (in our case C#) was designed by Americans, we found that it is best to be consistent and use American spellings. We even adopt Color.</p>
<p>We have a mix of nationalities in our development teams and most non-British people tend towards American spellings naturally.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/1284297#12842972Answer by Andrea for Coding in Other (Spoken) LanguagesAndrea2009-08-16T13:31:15Z2009-08-16T13:31:15Z<p>The only <em>language</em> I saw localized is Excel with its macros. If you try to sum a column using an Italian version of Office you have to write <code>SOMMA(A1:A10)</code> and not SUM. That's a shame.</p>
<p>By the way, just because it's fun, here's how your code should look like with Italian keywords:</p>
<pre><code>se (i < size){
commuta
caso 1:
stampa "hi there"
normalmente:
stampa "no, thank you"
} altrimenti {
stampa "yes, thank you"
}
</code></pre>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/1284299#12842991Answer by e-satis for Coding in Other (Spoken) Languagese-satis2009-08-16T13:34:12Z2009-08-16T13:34:12Z<p>There are some languages that have translated keywords. Excel formulas, for example. If you write some calculations in a spreadsheet, this will be in your language. </p>
<p>Fortunately, this is not a general practice, and even non-English speakers like me thank God that there is a standard language for keywords :</p>
<ul>
<li>it's easier to share you work.</li>
<li>it prevent documentation from becoming a bigger nightmare that it already is.</li>
<li>English words and sentences are usually short and syntactically pragmatic. In literature, Latin languages are much more beautiful, but for technical stuff, English rocks.</li>
</ul>
<p>And where to stop ? Can you imagine a C in ancient Greek ?</p>
<p>Keywords must stay in one language, and well, it started with English, let it stay that way. This could have been worst (Asian language ?). And so we have to write methods and comments in English. Ok, more work for us, but at least the international code base stay congruent.</p>
<p>There is, however, one case where using native language method names and comments can be a good practice : in third world country. I'm going to Senegal in some months to manage a Django project. Senegal have a huge analphabetization rate, and therefor it's already great that they spead energy in improving they programming knowledge. French is the native language here, so it would be inefficient to force them to learn computing AND a new tongue at the same time.</p>
<p>BTW, that would be your code with French keywords :</p>
<pre><code>Si (i < taille) {
cas par cas :
cas 1:
afficher "salut"
défaut:
afficher "non merci"
} sinon {
afficher "oui, merci"
}
</code></pre>
<p>Not that translating the keywords have nothing to do with translating the strings. Of course, we have "hi, there" translated in our language. European coders even tend to use I18N much more than American sot their service can reach a wider audience.</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/1284323#12843230Answer by Stefano Borini for Coding in Other (Spoken) LanguagesStefano Borini2009-08-16T13:43:52Z2009-08-16T13:43:52Z<p>in Italian</p>
<pre><code>se (i < dimensione){
scegli
caso 1:
stampa "ciao"
mancante:
stampa "no, grazie"
} altrimenti {
stampa "sì, grazie"
}
</code></pre>
<p>To confirm the worries of some previous poster I've seen a Fortran code with a macro include to translate all the keywords from English to French. Allow me not to continue on this.</p>
<p>I also had to work with a code simultaneously containing identifiers in Italian, German, English and French, not only because it was developed in many different places, but also because the main developer thought it was fun and helped him not to duplicate identifier names (of course, with a routine 2000 lines long....)</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/1476997#14769970Answer by Tox'N for Coding in Other (Spoken) LanguagesTox'N2009-09-25T12:20:55Z2009-09-25T12:20:55Z<p>Code with APL and you won't ask yourself the question :)</p>