translate Questions
5
Solved
In Python I can do this:
>>> import itertools
>>> for i, j, in itertools.product(range(3), repeat=2): print i, j
...
0 0
0 1
0 2
1 0
1 1
1 2
2 0
2 1
2 2
Is it possible to have ...
2
Solved
My app in react-native has 2 languages: english and french. I've done a i18n.js file and 2 "translation.js" files for english and french. It's working great (i've tried it setting french on my phon...
Scaife asked 11/3, 2020 at 10:21
13
Solved
I use bootstrap-datetimepicker.js Copyright 2012 by Stefan Petre
http://www.malot.fr/bootstrap-datetimepicker/index.php
I import the js and another language, for example Russian:
<script type...
Spenserian asked 15/10, 2013 at 13:13
2
So I have a value I am receiving from an endpoint and I'd like to pass it into my translate command.
So this is what I have currently: ${t('translation:user.form.placeholder')}
And I'd like to be a...
Lifeordeath asked 17/3, 2022 at 1:32
3
Solved
good morning,
i have an android app with a german and english language xml file.
now i would like to set and text view like this:
"Hello User x, hello world y."
"Hallo Benutzer x, hallo welt y." ...
10
Solved
Translating an elements Y axis 50% will move it down 50% of its own height, not 50% of the parents height as I would expect. How do I tell a translating element to base it's translation percentage ...
Horseshoes asked 22/6, 2012 at 16:21
3
Solved
I run a website that is in English but iOS 14 mobile Safari still offers to translate the page. How do I prevent this?
From this similar question I've found none of these work:
1. <html lang=&qu...
Impossibility asked 2/10, 2020 at 0:12
5
Solved
I'm writing a simple algorithm to check the primality of an integer and I'm having a problem translating this Java code into Python:
for (int i = 3; i < Math.sqrt(n); i += 2) {
if (n % i == 0)...
5
I'm trying to translate WP theme. I have this code:
$translation = __( get_color(), 'textdomain' );
It works, I get color dynamically from get_color() function, and it translates well. But when ...
Palpitant asked 30/4, 2016 at 15:11
7
Solved
I need to translate some MIPS assembly instructions to C code. I think I got it, but it seems counter-intuitive. Any help? We have variables f, g, h, i, j stored in registers $s0, $s1, $s2, $s3 and...
Chelton asked 19/9, 2013 at 2:22
1
Is there a way to translate css selectors(::after, ::before) content using ngx-translate ?
.custom-file-label::after {
content: "Browse"
}
Ouster asked 2/11, 2021 at 10:23
5
Solved
Is it possible to have a CSS slider cycle through two images when animating them with the translateX transform property?
I'm facing a couple of issues:
I can't seem to get the second image to show...
Softfinned asked 5/11, 2021 at 2:42
0
I'm trying to translate a text with the TextBlob library, but the following HTTPError error is appearing: HTTP Error 400: Bad request, can someone help me with this?
Observation:
I'm using VSCode t...
Camelback asked 26/10, 2021 at 19:2
5
I am trying to create a program in python 3.3.3 that will take a string then turn it into numbers (1-26)
I know how to do it for one digit but not 2
translist = str.maketrans("123456789", "ABCD...
Chymotrypsin asked 8/8, 2014 at 11:2
6
Solved
How can I translate my web pages? Actually what technology or what scripting-if require- should be used? For info; I have all translated text. But I do not want to create something like clone site ...
Grosgrain asked 17/1, 2011 at 20:21
2
Solved
Looking at pyspark, I see translate and regexp_replace to help me a single characters that exists in a dataframe column.
I was wondering if there is a way to supply multiple strings in the regexp_r...
Julissa asked 8/6, 2018 at 18:27
2
Solved
Just started using i18next and having a bit of issues translating the following data.
export const educationData = [
{ education: "Some education 1", timeframe: "2017 - 2018", id: 1 },
{ educati...
Obsolete asked 14/5, 2020 at 18:56
4
I’m developing an android application (API 19 4.4) and I encounter some issue with ImageViews.
I have a SurfaceView, in which I dynamically add ImageViews which I want to react to touch events.
On ...
6
Solved
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 ...
Erfurt asked 22/2, 2011 at 4:56
5
Solved
I'm using angular-translate to translate the page content in to different languages.
<input type ='text' placeholder = ' {username | translate}'>
This works fine when the page loads ..but ...
Runkle asked 9/1, 2014 at 16:7
3
I am using i18n for my tranlsations and am happy with how this works on the html side.
However if I have error messages etc defined in strings in my typescript I would like a way to translate thes...
Labonte asked 1/12, 2017 at 10:52
1
Solved
I am currently using Google Translate Script Code to convert the text into different languages in my website.
However the languages dropdown has many options, I would like to have only 3 Languages...
Fermin asked 10/4, 2020 at 8:5
4
Solved
I'm making my own javascript-based programming language (yeah, it is crazy, but it's for learn only... maybe?). Well, I'm reading about parsers and the first pass is to convert the code source to t...
Pirbhai asked 26/2, 2012 at 11:11
4
here i have a scene and a associated view ,then i hava a position in the scene coordinates.I want to set the center of the viewport with the position.How can i do it? I try to use the translate() f...
Assiniboine asked 30/1, 2013 at 17:56
1
Solved
Using an SVG I am trying to rotate it by 30 degrees and then translate that horizontally 100. The issue is that when I rotate the coordinate system, it is rotated and so when I try to translate I w...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.