Assigned
Status Update
Comments
jo...@google.com <jo...@google.com> #2
I have one question related to Google translate API. but it is not related to this issue.
When i am trying to access Google Translate API using javascript when the query string size is around 13000 characters i am getting server response error code 400. Can you please let me know what is the request size limit if any exist.
When i am trying to access Google Translate API using javascript when the query string size is around 13000 characters i am getting server response error code 400. Can you please let me know what is the request size limit if any exist.
tu...@onlinebizsoft.com <tu...@onlinebizsoft.com> #3
@vrames
according to Google API FAQ
The maximum size of each text to be translated is 5000 characters, not including any HTML tags.
according to Google API FAQ
The maximum size of each text to be translated is 5000 characters, not including any HTML tags.
ha...@gmail.com <ha...@gmail.com> #4
N/A
mi...@gmail.com <mi...@gmail.com> #5
I also have a same problem some html tags who are divided in few tags , and it's problematic .. there is some news about it ??
mi...@crunchyroll.com <mi...@crunchyroll.com> #6
I met with the problem just now, it seems the bug nof fixed yet.
[Deleted User] <[Deleted User]> #7
Update: I found the bug triggered not only by anchor tag, but also others. It seems that the problem is the context, and when I replace the tag with special symbol, 【】 for example, it worked.
In some context:
<a id="text">bla bla...</a> -> <a id="text">alb</a>alb<a id="text">...</a>
after change anchor tag to 【】,it worked:
【bla bla ...】 -> 【alb alb ...】
In some context:
<a id="text">bla bla...</a> -> <a id="text">alb</a>alb<a id="text">...</a>
after change anchor tag to 【】,it worked:
【bla bla ...】 -> 【alb alb ...】
ma...@tothehighstreet.com <ma...@tothehighstreet.com> #8
This same issue exists for <span> tags. If I send the translate API a document consisting of text in span tags, each with a unique id, the result comes back with many of the span tags mixed up, nested and duplicated. A partial example from a test document, translated from German to English:
Input: <span id='1'>Per </span><span id='2'>Web-ERV</span><span id='3'>Handelsgericht Wien</span><span id='4'>Marxergasse 1a</span><span id='5'>1030 Wien</span><span id='6'>Firmenbuchsache</span>
Output: <span id='1'>Via</span> <span id='2'>web ERV</span> <span id='3'>Vienna Commercial Court</span> <span id='4'>Marxergasse 1a</span> <span id='5'>1030 <span id='6'>Wien</span></span> <span id='6'>Commercial thing</span>
Notice above in the output from the API, there is now an extra <span id="6"> now nested in <span id="5">, around partial content of <span id="5">.. This is completely unacceptable for a paid service, html translation is completely unusable with this bug.
Input: <span id='1'>Per </span><span id='2'>Web-ERV</span><span id='3'>Handelsgericht Wien</span><span id='4'>Marxergasse 1a</span><span id='5'>1030 Wien</span><span id='6'>Firmenbuchsache</span>
Output: <span id='1'>Via</span> <span id='2'>web ERV</span> <span id='3'>Vienna Commercial Court</span> <span id='4'>Marxergasse 1a</span> <span id='5'>1030 <span id='6'>Wien</span></span> <span id='6'>Commercial thing</span>
Notice above in the output from the API, there is now an extra <span id="6"> now nested in <span id="5">, around partial content of <span id="5">.. This is completely unacceptable for a paid service, html translation is completely unusable with this bug.
a....@weblium.com <a....@weblium.com> #9
Hi there,
any update on this one?
any update on this one?
[Deleted User] <[Deleted User]> #10
Hi,
This issue is also affecting a user in case number 17353456.
Is there any update?
This issue is also affecting a user in case number 17353456.
Is there any update?
kn...@notey.com <kn...@notey.com> #11
Hi, any updates on this?
pe...@gmail.com <pe...@gmail.com> #12
I guess it's not an easy one.
I kind of "solved" this by replacing my placeholders with some utf8 encoded string.
I was having trouble with strings like: "{s} Lorem Ipsum is simply dummy text of the printing and typesetting industry." but if I encode it like "{123_115_125} Lorem Ipsum is simply dummy text of the printing and typesetting industry." it seems to work fine.
Of course it's kind of cheating but it worked so far.
I kind of "solved" this by replacing my placeholders with some utf8 encoded string.
I was having trouble with strings like: "{s} Lorem Ipsum is simply dummy text of the printing and typesetting industry." but if I encode it like "{123_115_125} Lorem Ipsum is simply dummy text of the printing and typesetting industry." it seems to work fine.
Of course it's kind of cheating but it worked so far.
sc...@vida.com <sc...@vida.com> #13
We're seeing these issues as well with html tags being swapped around breaking links. Example output:
<p class="tile-land-image">
<a href="../tutorials/1_overview.htm">
<img class="tile-image" src="../Resources/images/thumbnails/landing_environs.png"></a> </img>
</p>
<p class="tile-land-image">
<a href="../tutorials/1_overview.htm">
<img class="tile-image" src="../Resources/images/thumbnails/landing_environs.png"></a> </img>
</p>
av...@gmail.com <av...@gmail.com> #14
Hi, I am trying to fix it, could you provide some examples, including input/output sentences?
[Deleted User] <[Deleted User]> #16
Below is an example where the anchor tag goes missing after translating:
Part of html Sent for translation:
<a class="d-flex align-items-center text-decoration-none" href="/customers">
<div class="ml-4">
<h6 class="font-weight-bold text-uppercase text-primary mb-0">Customer</h6>
</div>
</a>
Part of html received after translation:
<div class="ml-4">
<h6 class="font-weight-bold text-uppercase text-primary mb-0"> Client </h6>
</div>
This can be reproduced following the code from the Python guide[1]. The library version used is google-cloud-translate==2.0.0
[1]https://cloud.google.com/translate/docs/advanced/translating-text-v3#translating_input_strings
Part of html Sent for translation:
<a class="d-flex align-items-center text-decoration-none" href="/customers">
<div class="ml-4">
<h6 class="font-weight-bold text-uppercase text-primary mb-0">Customer</h6>
</div>
</a>
Part of html received after translation:
<div class="ml-4">
<h6 class="font-weight-bold text-uppercase text-primary mb-0"> Client </h6>
</div>
This can be reproduced following the code from the Python guide[1]. The library version used is google-cloud-translate==2.0.0
[1]
ke...@gmail.com <ke...@gmail.com> #17
The product engineering team is aware of this issue and are investigating solutions. There is no ETA at this time for a fix, but all further updates should occur here.
nt...@gmail.com <nt...@gmail.com> #18
This issue hasn't been fixed after more than 6 years now?
[Deleted User] <[Deleted User]> #19
Comment has been deleted.
[Deleted User] <[Deleted User]> #20
+1
ma...@gmail.com <ma...@gmail.com> #21
+1
ka...@gmail.com <ka...@gmail.com> #22
+1
ji...@google.com <ji...@google.com> #23
Hello
Please remember to hit +1 on the top toolbar as well as clicking on the start icon next to the issue number so that the product team can have visibility on the importance of this request.
be...@vidaura.com <be...@vidaura.com> #24
I dont see a +1 "on the top toolbar".... but I do +1 this request.
mi...@gmail.com <mi...@gmail.com> #25
+1
kt...@gmail.com <kt...@gmail.com> #26
+1
[Deleted User] <[Deleted User]> #27
+1
fa...@nooril.com <fa...@nooril.com> #28
+1
mi...@webscalenetworks.com <mi...@webscalenetworks.com> #29
+1
ss...@seanknowles.dev <ss...@seanknowles.dev> #30
+1
[Deleted User] <[Deleted User]> #31
+1
iz...@genflix.co.id <iz...@genflix.co.id> #32
+1
fr...@google.com <fr...@google.com> #33
+1
al...@searce.com <al...@searce.com> #34
There has recently been an upgrade to Cloud Functions to V2. Does this include Cloud Fuctions at the Edge (I don't believe it does)
ye...@google.com <ye...@google.com> #35
+1
lg...@gmail.com <lg...@gmail.com> #36
+1
ra...@linnify.com <ra...@linnify.com> #37
+1
ar...@gmail.com <ar...@gmail.com> #38
+1
[Deleted User] <[Deleted User]> #39
+1 Functions need serious work and improvements, global functions at edge please :)).
at...@gmail.com <at...@gmail.com> #40
+1
su...@gmail.com <su...@gmail.com> #41
+1
[Deleted User] <[Deleted User]> #42
+1
bl...@gmail.com <bl...@gmail.com> #43
+1
de...@gmail.com <de...@gmail.com> #44
+1
mi...@human.health <mi...@human.health> #45
+1
ss...@seanknowles.dev <ss...@seanknowles.dev> #46
3 years and still nothing, it's pretty unbelievable.
js...@verticalscope.com <js...@verticalscope.com> #47
+1
ad...@google.com <ad...@google.com> #48
Comment has been deleted.
sk...@google.com <sk...@google.com> #49
+1 for Sabre
ba...@google.com <ba...@google.com> #50
+1
ba...@google.com <ba...@google.com>
ss...@seanknowles.dev <ss...@seanknowles.dev> #51
4 years still no gcp edge functions.....
su...@google.com <su...@google.com>
an...@gmail.com <an...@gmail.com> #52
+1
sh...@mixi.co.jp <sh...@mixi.co.jp> #53
+1
va...@google.com <va...@google.com>
fr...@gmail.com <fr...@gmail.com> #54
+1
gr...@finder.com <gr...@finder.com> #55
+1
ym...@kintone.cloud <ym...@kintone.cloud> #56
Let me share our use case.
We wanted to serve Next.js app with dynamic routes with Cloud Storage bucket and Cloud CDN.
But it requires a little function to modify the object path.
With Lamda@edge, we could serve the app with CloudFront.
https://awstip.com/dynamic-routing-in-next-js-with-s3-cloudfront-and-route53-via-aws-lambda-d66286ce63ce
We wanted to serve Next.js app with dynamic routes with Cloud Storage bucket and Cloud CDN.
But it requires a little function to modify the object path.
With Lamda@edge, we could serve the app with CloudFront.
su...@google.com <su...@google.com>
ra...@gmail.com <ra...@gmail.com> #57
Comment has been deleted.
or...@googlemail.com <or...@googlemail.com> #58
+1
mo...@gmail.com <mo...@gmail.com> #59
+ 1111111111111111111111111111111111
ha...@gmail.com <ha...@gmail.com> #60
+1
Why no response from Google?
Why no response from Google?
ch...@google.com <ch...@google.com> #61
+1
Why do we keep silence on this?
Why do we keep silence on this?
mi...@game-leap.com <mi...@game-leap.com> #62
+1
sy...@google.com <sy...@google.com> #63
Comment has been deleted.
kh...@broadcom.com <kh...@broadcom.com> #64
we also need this feature.
+1
+1
al...@searce.com <al...@searce.com> #65
5 years ago this feature request was raised and now mid 2024 there is no capability? Fastly are offering this and lack of this feature within Google Cloud will drive folk away to third parties that are offering this? Will this ever be included in the roadmap?
Description
What you would like to accomplish: provide a functionality similar to AWS Lambda@Edge [1] in GCP Cloud Functions.
[1]