translation

C++ to C# Translator.

i found a translator for c++ to c# , but it doesn't work. (Code2Code.net) Test with cout int main(int argc, char** argv) { cout << "Hello World"; return 0; } The Results becomes public static int Main(string [] argv) { cout << "Hello World"; return 0; } My Question to you, is = is it any other translator that works for C++ t...

Java implementation of JSON to XML conversion.

Are there existing JARs available to convert from JSON to XML? ...

Where to get a Database of Spanish <-> English Translations?

Hi! for a program I am writing I would need a dictionary between Spanish and English words. I googled a while, but I could not find any database freely available. Does anybody know where or how to get such a database (preferably a simple CSV or XML file)? So far my best idea to create such a dictionary is to create a little program tha...

How to get the available translations from a dll.

Hi, Is there a way to get the available resource translations of a .net dll? Our software is being translated in some different languages, and I would like to give the user the choise of what language the software is in, although I would only like to let them choose only between the languages it has been translated in. ...

WPF: Best (reliable) way to translate (move) a Canvas AND monitor Every step

I have tried translating (moving) a canvas but I'm having trouble with the timers. I tried 2 different methods: First method was with the BeginAnimation function, and the second with DispatcherTimer ticks, but they're both very unreliable. I need to monitor every step of the translation. With the first method I tried (BeginAnimation)...

How translate commercial software in multi languages?

What is the best practice to translate a commercial software for many different languages? Currently I see 3 possible solutions. You use professional translator. The large problem is that this people does not understand the context. The translations are very curious. Also there are large cost. On every release you need renew contact th...

How to handle a translation Matrix in an inverted Y axis point of view

My usercase is an iphone application where I do an animation on the scale, rotation and translation of an image. So, I concat everything and feed it to the transform property, but there is one problem: Since my images vary in size, it is a problem to position them correctly. I'm used to an inverted y axis coordinate system, so I want m...

Translating small applications: who and how much?

I'm looking to translate several of my iPhone applications to other (human) languages. I've done all the right things in my code and inserted translation table lookups everywhere, so I'm technically prepared. The problem is, of course, that I don't know even one foreign language well enough to translate my app, let alone the seven or e...

How to rotate, scale, and translate a matrix all at once in C#?

Okay, this is something that should be a simple matrix question, but my understanding of matrices is somewhat limited. Here's the scenario: I have a 1px by 1px sprite that I want to scale by some amount x and y (different amounts on each side), and then I want to rotate that sprite by some angle, and then I want to be able to precisely...

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. I've looked at ASM, the "bytecode manipulation and analysis framework". It doesn't support translation to other representations, but looks...

How to Implement multi language in PHP application?

I'm posting this question on it's own as I found post one which lacks full explanation or the best way to do it. Should I use a language file to name items like: $first_name= 'name'; $last_name = 'last_name'; and then include this file depending on selection? I have an app which I need to have in two languages. Will like something i...

opengl rotation problem

can anyone tell me how to make my model rotate at its own center go gravity in stead of the default (0,0,0) axis? and my rotation seems to be only going left and right not 360 degree.. ...

Best way to get Ruby documentation translated into Japanese?

We just finished a project that we need to share with a team of Ruby developers in Japan who, as it turns out, know absolutely no English. Has anyone used a service for translating code documentation into Japanese? I don't know if such a thing even exists. Maybe I just need to use a regular business translation service and hope that the ...

Easiest way to generate localization files

Hello - I'm currently writing an app in Python and need to provide localization for it. I can use gettext and the utilities that come with it to generate .po and .mo files. But editing the .po files for each language, one-by-one, seems a bit tedious. Then, creating directories for each language and generating the .mo files, one-by-one...

Obtaining current ModelView matrix

In OpenGL, how do I read the current x/y translation in the modelview matrix? I know that you have to load the current matrix into an array and read the floats from there, but I don't know precisely how to do it. ...

iphone application international sales

Would anyone be able to give a "best practices" summary for creating an app targeted internationally? How to prepare the app for translations "espanol, english, korean, chinese etc.) What sort of measures do you need in the approval process? do you submit one APP or is it several? How to optimize your iTunes store page to work across ...

Is there a default english translation file for Active Record?

I am upgrading an application a rails application to 2.3.2 and I am finding that I can't display the default validation error messages for ActiveRecord because I don't have a translation file for it. This is the error that is reported: translation missing: en-US, activerecord, errors, template, header translation missing: en-US, active...

How to translate content page in a master page after language change (ASP.NET)

Hi, I have a content page in a master page in ASP.NET. What is going on is that the user click on a button in the right corner of the master page and that change the current language. What does the button is changing the Session for the new selected language. What is happening is that when you click on a button, the code is executed AF...

Can .NET WebRequest/WebResponse translate accent marks, diacritical marks, and entities correctly?

I am "screen scraping" my own pages as a temporary hack, using .NET's WebRequest. This works well, but accented characters and diacritical characters do not translate correctly. I am wondering if there is a way to make them translate correctly using .NET's many many built in properties and methods. Here is the code I am using to gra...

'Translation' dilemma

Hello, I'm trying to build a website that reads Icelandic texts written in a particular font which are then rendered in a different character encoding (ascii/uc) and cached before finally being displayed. What language is best suited for the job? Python or PHP? Or anything else? Thanks in advance. ...