Translation is the process of replacing strings in an application or website to make interfacing with the application or website easier for people from countries with different languages.

learn more… | top users | synonyms

52
votes
35answers
5k views

Coding in Other (Spoken) Languages

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, ...
24
votes
10answers
6k views

Alternative to Google Translate API?

Google have announced that they are sunsetting the Translate API. Does anyone know of a similar REST based service ? Yahoo have or used to have babelfish, but I can't find an API for it.
20
votes
2answers
512 views

PHP translation frontend similar to Rosetta?

I'm currently migrating a web application from a database-based internationalization approach (each word having an entry in the translation table, and the actual translation) to one based on ...
18
votes
4answers
1k views

search functionality on multi-language django site

I'm building a multi-language Django site, and I'm using django-transmeta for my model data translations. Now I'm wondering if there is a Django search app that works with multi-language models. I've ...
17
votes
8answers
840 views

Is it “right” to translate error messages?

This is somehow subjective depending on the target translation language, but bear with me for a sec. I have recently been involved in a translation project. The goal was to translate the strings of ...
16
votes
4answers
568 views

how to make translation animation for each listview items

i have a listview with override getView method to populate it. now, i want to make each item of the list to animate or moving from the right side of the screen to the left side where the item should ...
16
votes
8answers
3k views

What's the best database structure to keep multilingual data? [closed]

Possible Duplicate: Schema for a multilanguage database Here's an example: [ products ] id (INT) name-en_us (VARCHAR) name-es_es (VARCHAR) name-pt_br (VARCHAR) description-en_us (VARCHAR) ...
15
votes
10answers
4k views

i18n - best practices for internationalization - XLIFF, gettext, INI, …?

EDIT: I would really like to see some general discussion about the formats, their pros and cons! EDIT2: The 'bounty didn't really help to create the needed discussion, there are a few interesting ...
14
votes
4answers
933 views

Is there any alternative for printf?

I have to create a software that must work on several *nix platforms (Linux, AIX, ...). I need to handle internationalization and my translation strings are in the following form: "Hi %1, you are ...
14
votes
16answers
3k views

Seriously, should I write bad PHP code?

I'm doing some PHP work recently, and in all the code I've seen, people tend to use few methods. (They also tend to use few variables, but that's another issue.) I was wondering why this is, and I ...
12
votes
2answers
330 views

Django: switch language of message sent from admin panel

I have a model, Order, that has an action in the admin panel that lets an admin send information about the order to certain persons listed that order. Each person has language set and that is the ...
12
votes
10answers
3k views

Is there any Algorithm for converting 2d video into 3d video?

Is there any Algorithm for converting 2d video into 3d video? (for viewing using glasses) (a-la turning Avatar into Avatar for An IMAX 3D Experience ) or at least turn it into video prepared for ...
12
votes
7answers
740 views

How do you handle translation of text with markup?

I'm developing multi-language support for our web app. We're using Django's helpers around the gettext library. Everything has been surprisingly easy, except for the question of how to handle ...
11
votes
1answer
140 views

Improve workflow for translators and developers alike

In our asp.net website we support multiple languages. The current translation workflow goes as followed: Site gets built with "developer language" Translations are kept in a database and use a ...
11
votes
3answers
465 views

Translation of C# ActionCommand:ICommand into VB.net

I found a C# class ActionCommand, that implements ICommand and bases on delegates for Execute and CanExecute. Looks perfect for me so far. public class ActionCommand : ICommand { private ...
10
votes
1answer
577 views

Sentence alignment for dual-line bilingual paragraph in LaTeX

I would like to make a translation of entire paragraphs at a time for a large document, with the start of the new sentences aligning. The following is almost what I want done, though it doesn't yet ...
10
votes
4answers
3k views

Easy way to translate from DTO to Entity and Entity to DTO?

I have worked on several distributed client/server projects recently, and one pain point that we always run into is translating the DTO objects into our entities and vice-versa. I was wondering if ...
9
votes
2answers
184 views

Does PyPY translate itself?

I'm I getting this straight? Does the PyPy interpreter actually interpret itself and then translates itself? So here's my current understanding: RPython's toolchain involves partially executing ...
9
votes
4answers
124 views

translating a website in php or mysql?

i need to translate my site in multiple languages. i was thinking to use a database called language and put the translation there. database : translation tables: language column: id, english, ...
9
votes
8answers
2k views

What is the best way to translate a big amount of text data?

I have a lot of text data and want to translate it to different languages. Possible ways I know: Google Translate API Bing Translate API The problem is that all these services have limitations ...
9
votes
5answers
4k views

What good alternatives to poEdit are there?

I'm looking for a .po/.mo editor. I am using gettext for the translation files but don't really like poEdit. It has to run on Windows Vista and it would be even better if it was built into Visual ...
8
votes
1answer
413 views

When shoud I use ugettext_lazy?

I have a question about using ugettext and ugettext_lazy for translations. I learned that in models I should use ugettext_lazy, while in views ugettext. But are there any other places, where I should ...
8
votes
5answers
234 views

Code Maintenance - Is English always the best language to write the code in? [closed]

Possible Duplicate: Do you use another language instead of english ? Few days ago friend of mine asked me to look at the CMS written in PHP. He asked me to review the code, and provide my ...
8
votes
3answers
835 views

Using GitHub with another Bug-tracker?

I am involved in this project, Pinta, and we are currently using GitHub for our development. We all love Git and GitHub and want to keep using it. However, now the project is getting stable and ...
8
votes
3answers
454 views

Database of common translated phrases for localization?

I'd like to localize my app into a few other languages, all of which I can barely order a drink in. Does anyone know of an online resource for translations of common software menu options, messages, ...
8
votes
5answers
1k views

Process for localization of Delphi 2009 app by volunteer translators?

I have a freeware scientific app that is used by thousands of people in nearly 100 countries. Many have offered to translate for free. Now that D2009 makes this easier (with integrated and external ...
8
votes
6answers
4k views

Conversion of Fortran 77 code to C++

Has anyone converted a large (ours is 550,000 lines) program of Fortran 77 code to C++ ? What pitfalls did you run into ? Was the conversion a success ? Did you use a tool like for_c ( ...
7
votes
4answers
209 views

Are there any translation memory / repositories / glossaries for Delphi Run-time?

I need to prepare Delphi 2007 application for localization. Now, about 80% of what needs to be translated is actually Delphi run-time library. I cannot imagine this stuff needs to be re-translated ...
7
votes
2answers
168 views

Android strings.xml Best Practices?

I'm asking myself a couple of questions and im wondering if there are any best practices. How to name the string? It's always ending in chaos for me. How to keep translations in sync? Are there ...
7
votes
3answers
306 views

ActionScript Drawing Code From Vector Graphic?

is there a common way to convert a drawn vector graphic in Flash Professional to code for the Drawing API? the code of these drawn or imported vector graphic assets are available in the source files ...
7
votes
3answers
172 views

Translating comments and region names in source code

Does anyone know of a batch processor or a VS 2010 plugin/script that would let me translate comments and region names from Chinese into English? The only ones I've found either process all strings ...
7
votes
4answers
268 views

extending the c programming language with gcc

I want to write my own programming language as an extension of the c programming language. The entire programming language that I am inventing are simply shorthands which translate to valid c code. ...
7
votes
4answers
860 views

How to specify your webpage's language so Google Chrome doesn't offer to translate it

I have a page that Google Chrome insists on thinking is in French. Here's a snapshot of it: http://yootles.com/outbox/overcleverchrome.html Note that I'm including a meta http-equiv tag to tell it ...
7
votes
7answers
12k views

Java implementation of JSON to XML conversion

Are there existing JARs available to convert from JSON to XML?
7
votes
9answers
1k views

What's the easiest way to use C source code in a Java application?

I found this open-source library that I want to use in my Java application. The library is written in C and was developed under Unix/Linux, and my application will run on Windows. It's a library of ...
6
votes
4answers
136 views

How to compile single fortran objects using translator f2c?

I have the following problem: I want to simulate some control engineering system. As it is quite complicated I used the computer to derive some (complicated) equations which can only be exported to ...
6
votes
2answers
193 views

Disable Chrome translation bar on my website

I have a chat website that is highly dynamic and when visiting it with Google Chrome, the translation bar appears offering to translate the site. While the translation of dynamic content works better ...
6
votes
5answers
214 views

VB to C# rewriting question

I have a following method declaration in VB and need to translate it into C#: <DllImport("winspool.Drv", EntryPoint:="OpenPrinterW", _ SetLastError:=True, CharSet:=CharSet.Unicode, _ ...
6
votes
5answers
198 views

How to handle dynamic site localizations?

I've got a website that is currently all in English. It is an online game, so it has a bunch of different pages with static text, as well as a lot of content in a database. I am trying to expand ...
6
votes
6answers
218 views

Which tools can help in translating (as in french -> english and not C++ -> java) source code?

I have some code that is written in french, that is the variables, class, function all have french names. The comments are also in french. I'd like to translate the code to english. This will be quite ...
6
votes
6answers
1k views

Qt linguist & google translate

I'm looking for a way to cheat and create some very rough translations of my Qt application using Qt linguist and an already-existing translation service such as google translate. There's a public ...
6
votes
3answers
1k views

How MonoTouch works?

I would really appreciate it anybody could briefly explain me, what's the general approach to implementing things like MonoTouch? I'm really amazed because it's not the first example I see when people ...
6
votes
4answers
82 views

Is automated source translation seen as beneficial and/or necessary?

I have recently spent several years translating legacy FORTRAN into Java. Prior to that, I found myself translating FORTRAN into C (for which I wrote a simple translation tool). After all this work, ...
6
votes
5answers
1k views

Translating Java bytecode into other representations and programming languages

I'm looking for ways/tools/projects to translate Java bytecode into other programming languages or, failing that, at least into a structured representation (like XML). Ideally open source, naturally. ...
6
votes
5answers
9k views

Automated Python to Java translation

Is there a tool out there that can automatically convert Python to Java? Can Jython do this?
6
votes
5answers
881 views

Where can I learn more about PyPy's translation function?

I've been having a hard time trying to understand PyPy's translation. It looks like something absolutely revolutionary from simply reading the description, however I'm hard-pressed to find good ...
5
votes
3answers
99 views

Is there a way to override strings.xml in res/values?

Let's say I've got two strings.xml files - one for English and one for Danish. While most users would probably be happy with the Danish translations, it's not unlikely that some would prefer the ...
5
votes
2answers
198 views

_() or {% trans %} in Django templates?

In Django templates, you can use either {{ _("Customer") }} or {% trans "Customer" %}. In docs, the “official” approach seems to be the {% trans %} tag, while the _() syntax is only mentioned once. ...
5
votes
2answers
306 views

Translating G-Machine source to LLVM IR

I'm implementing a simple lazy functional language with LLVM as its backend in Haskell. I've read two books written by Simon Peyton Jones ("The implementation of functional programming languages", as ...
5
votes
2answers
236 views

numerals charcode convert into another langauge numerals

I want to convert numerals into other language numerals, how can i do this? I want to be able to support as many languages as possible (google translation supported languages). I've been reading and ...

1 2 3 4 5 19