Tagged Questions
The translate tag has no wiki summary.
13
votes
4answers
13k views
C# - google translate
I have to translate some text with Google's translate service. All code I've found doesn't work. I think because they have changed their service. If someone has working code, I would be very glad.
...
9
votes
1answer
990 views
Can PyPy be used to produce a small standalone executable?
(Or, "Can PyPy be used to compile/translate Python to C/C++ without requiring the Python runtime?")
I have tried to comprehend PyPy with its RPython and its Python, its running and its compiling and ...
8
votes
6answers
3k views
Translation in JavaScript like gettext in PHP?
I am using gettext in my PHP code, but i have a big problem. All my Javascript files are not affected by the translation, can somebody tell me an easy way to get the translations in the chosen ...
7
votes
4answers
137 views
internationalization of dates on the web
does anyone have any good "architecture" for the internationalization of dates? like in english its Monday, chinese: 星期一, dutch: maandag, jap: 月曜日
So my first idea is to create some sort of class ...
7
votes
5answers
2k views
software to translate my string.xml file
Just a quick question.
I have an android app and I want to translate it (french, german, etc). I have the strings.xml ready. Is there any software available that can automatically translate my ...
6
votes
2answers
1k views
How do I translate this GROUP BY / MIN SQL query into LINQ?
I plan on using this in a subquery but can't figure out the correct syntax to translate the following query into LINQ:
select ChapterID, min(MeetingDate)
from ChapterMeeting
group by ChapterID
5
votes
3answers
48 views
CSS3 Translate across an Arc
Is it at all possible with current CSS3 to translate an object (specifically a DIV) along an arc or curve? Here's an image to help illustrate.
4
votes
3answers
1k views
return value from a callback function in javascript?
I'm using node.js and the library Translate . Can i do something like this ? :
function traduce(text){
translate.text(text,function(err,result){
return result;
});
}
And then ...
4
votes
4answers
660 views
Internationalization in PHP
I am currently researching the best methods to integrate i18n into projects.
There's several methods I have thought of doing this, first being a database scheme to store the strings and relevant ...
4
votes
1answer
1k views
Google translate service for GNU gettext PO files that supports ngettext style plurals
I'm looking for a front-end to google translate that supports translating GNU gettext PO files with NGETEXT style plurals, eg. msgid_plural, msgid[0] ... msgid[n].
I've found several free translation ...
4
votes
2answers
724 views
Scaled live iPhone Camera view in center, “CGAffineTransformTranslate” not working
I have a little problem which I could not solve. I really hope someone can help me with that. I wanted to resize the live camera view and place it in the center, using the following code below:
...
3
votes
3answers
112 views
Most efficient way to translate a Sitecore website to 4 other languages (Not having the translators in you Sitecore CMS)
I am looking for a good way to translate an excisting Sitecore installation (English language is available) to 4 other languages (Russian , Chinese, Portuguese etc.) A dedicated translation company ...
3
votes
1answer
147 views
Resetting CSS3 *-transform: translate(…)
How am I supposed to reset CSS transforms previously applied?
Say I have
somediv.someclass {
-webkit-transform: translate3d(0, -50%, 0);
-moz-transform: translate(0, -50%);
...
3
votes
3answers
253 views
Translating Languages In Delphi
I have been looking for ages now for some code that can translate any language to another but none of the code I find works.
I know Google has a good translate API but I can't get anyone's Delphi code ...
3
votes
1answer
88 views
Decode Message Please! [closed]
I honestly no very little about binary, and when my best friend wrote his yearbook message to me in 5-bit binary, I didn't the slightest idea of how to translate it. Can anyone please tell me what he ...
3
votes
1answer
263 views
Zend_Translate translation of email templates
Using zend framework, i, as many others, send emails. Now for the email i use a view template. f.x.
welcome.phtml
Welcome to my site
Hi <?php print $this->name; ?><br />
Welcome to ...
3
votes
2answers
271 views
Translate vbscript to C# using ANTLR
I need to write a translator for vbscript to c#. What would be the basic steps invloved to translate using ANTLR? I am not very clear about whether to use grammar (lexer/parser? file or stringtemplate ...
3
votes
2answers
830 views
How to correctly decode Google Translate API answers?
I'm communicating with the Google Translate API. I can send my request and get an answer. The only problem is that some special characters are encoded. For exemple :
"The clock" (EN) will be ...
3
votes
1answer
886 views
Translate a WPF canvas at high scale factors isn't smooth away from origin
Imagine you have a canvas that you want to scale to a very high value and then allow "panning."
A good example is a geographic tool that needs to allow panning with "zoom" levels from the extent of ...
3
votes
2answers
238 views
Free or open source dictionaries
I'm working on a multi-lingual search engine. I need to map keywords in English to corresponding words in following languages:
Bulgarian
Catalan
Chinese
Crotian
Czech
Danish
Dutch
Finish
French
...
3
votes
3answers
2k views
Google Translate set default language
Maybe this has an obvious solution that I'm overlooking, but I can't seem to find the correct parameter to put in to make this happen.
Using the Google Translate widget on a site, I need to set the ...
3
votes
1answer
4k views
jQuery UI datepicker translation
How can I translate the datepicker from jQuery UI into an other language (german for exaple)?
2
votes
1answer
39 views
JQuery translate function not working in firefox / chrome
I have a HTML page which is divided into two frames. Separate web sites are being opened by users in those frames as I provided an open web site option.
These web sites can be in any language. So. i ...
2
votes
1answer
27 views
Make JSON use POST requested instead of GET with ASP
I'm using the Google Translator v2 service and this works great with small texts. For big texts Google gives a hint about sending a POST request instead of a GET. Which makes perfect sense. I just ...
2
votes
1answer
56 views
-webkit-transform how can I change rotate() while preserving translate3d()?
What I am looking to do is change the translate3d transform of an element while a css3 animation is running on the element. When I try to do this, however, it seems that the animation resets the ...
2
votes
2answers
301 views
Android slide down animation
I have a toolbar aligned at the bottom and a WebView above it, which fill remaining height. Now I want to slide down the toolbar in order to hide it, and while it's animating the webview height should ...
2
votes
2answers
120 views
Translate unsigned char *buf=NULL to Pascal?
I'm working in Borland Delphi, and i have a few lines code in Borland C++ Builder. I would like to translate these lines into Delphi source.
unsigned char *buf=NULL;
buf=new unsigned char[SPS*2];
for ...
2
votes
2answers
118 views
Android : translate the language of whole app on click [closed]
I want my application supports Multi-language like as English, German, French..etc, so is there any example by which i can understand the flow and concept, to achieve it.
Thanks, Aditya
2
votes
2answers
88 views
HTML5 & CSS3 Using multiple Pseudo classes and translateX/Y properties
So first of all let me admit I'm not the best at coding, I'm a graphic designer but I 'm trying to teach myself HTML5. I have managed to troubleshoot most of my problemsbut I'm stumped now.
...
2
votes
1answer
108 views
css3 rotate and origin help
I am trying to create some top-to-text that will look similar to this,
T
E
X
T
H
E
R
E
However my code is producing the correct effect but not strictly speak correctly as it is ...
2
votes
1answer
149 views
Bing translate, licensing for shareware
I've got a small program which I'd like to offer online, either for free or for a small amount (£5/£10 perhaps). However it revolves around Bing translate. What would be the licensing position for ...
2
votes
2answers
243 views
Converting XML Node Names to Uppercase (XSLT 1.0)
I have many XSLT stylesheet(s) that transform some XML into a csv file.
The XML files used are generated based on database column names which used to be converted automatically to UPPERCASE when the ...
2
votes
1answer
100 views
Tools for manual translation of Constants/Messages .properties files
I'm looking for some tools that could be used by human translators during the process of translating our GWT application into other languages.
Currently, we have the English version of .properties ...
2
votes
5answers
338 views
Translate C code into Haskell
How do I translate this portion of C code into Haskell? From what I know, I must use the State monad, but I don't know how.
int x = 1;
int y = 2;
x = x * y;
y = y + x;
2
votes
3answers
704 views
Google-api-ruby-client Translate API Examples
I was very happy to see the google code: google-api-ruby-client project, because it meant to me that Ruby people can polish code with the Google API-s.
For now though I'm stumped because the only ...
2
votes
2answers
91 views
Regex / awk / etc for scanning my source code for translations
I'd like to scan my source for certain lines such as:
$obj->setLabel('output this text')->someOtherMethod(etc);
or:
$this->view->title = "I want this text";
Obviously the code is ...
2
votes
1answer
289 views
Is it possible to find the current (x,y,z) of an element as it moves using translate3d(x,y,z)?
Using CSS3s -webkit-transform: translate3d(x,y,z); is it possible to trace the (x,y,z) movement as it moves with javascript?
Example:
An object begins at (0,0,0) and we translate it to (4,4,0) over a ...
2
votes
1answer
382 views
How can I return a Dictionary<string, Object> as JsonResult, AND get the proper result in JavaScript?
I'm constructing my JsonResult in Controller by adding some extra information to an already existing JsonResult (returned from a different method). In order to add more properties, I converted the ...
2
votes
2answers
451 views
How to move incrementally in a 3D world using glRotatef() and glTranslatef()
I have some 3D models that I render in OpenGL in a 3D space, and I'm experiencing some headaches in moving the 'character' (that is the camera) with rotations and translation inside this world.
I ...
2
votes
1answer
197 views
Animate View befor closing Activity
in my application i have a activity wich opens ontop of the current activity when i press the menu button.
In this overlay i want my views to fade in when the activity appears and fade them out again ...
2
votes
2answers
214 views
Is there a translation API service for Chinese to English?
I have a list of product names in Chinese. I want to translate these into English, I have tried Google AJAX language API, but it seems that translation is not good, it would be great if someone could ...
2
votes
1answer
1k views
Translate Animation Problem
I am new to android,
I try to make translate animation..
this is my xml code: (rail.xml)
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="100%p"
...
2
votes
2answers
403 views
CakePHP TranslateBehavior is driving me crazy!
I use CakePHP 1.3.2 with the integrated Translate Behavior.
The translations I save my several models in each table. Example:
class Page extends AppModel {
var $name = 'Page';
var $actsAs = ...
2
votes
2answers
259 views
Translating C pointer code example to Delphi pointer syntax
I am working with a binary file structure. The code example for reading the data is in C, and I need to read it in Delphi. I hasten to add I have no C programming experience.
Given the following
...
2
votes
2answers
752 views
CakePHP - how to apply translate behavior to existing database?
I have and existing application in CakePHP with a database.
The task is to apply translate behavior to its models. The problem is that i18n.php script just creates _i18n table but doesn't copy ...
2
votes
2answers
1k views
Surface development: Translate/Rotate/Scale items without ScatterView
Is it possible to transalte/rotate/scale items without a ScatterView? I want to manipulate items which can be on top of other elements like a button, list or a custom control which should be static . ...
2
votes
2answers
721 views
WPF style to perform translation after scaling
I've got a Button style that I've been developing in WPF, as stated in this question. Another thing I'd like to do with this style is to have the Button shrink just a little bit, to make it appear ...
2
votes
4answers
3k views
How can I put an array inside a struct in C#?
C++ code:
struct tPacket
{
WORD word1;
WORD word2;
BYTE byte1;
BYTE byte2;
BYTE array123[8];
}
static char data[8192] = {0};
...
some code to fill up the array
...
tPacket * ...
2
votes
5answers
15k views
C# How to translate virtual keycode to char?
I am trying to map a virtual keycode to a char.
My code uses ProcessCmdKey to listen to WM_KEYDOWN which gives me access to the key pressed. For example, when I press single quote I get a key of 222 ...
1
vote
1answer
24 views
Magento translate tags
i have a magento installation wich works pretty well.
So far so good, i've set up different Store Views to manage the store in different languages.
Now, i have the following problem:
I've set up tags ...