#Giobbe-qs

1 messages · Page 1 of 1 (latest)

weak hornet
#

👋 happy to help

#

if I understood correctly the subscription time period that you receive on the front end of the 3rd Party App is not localized?

spare kestrel
#

Correct

weak hornet
#

in that case, I would have to ask you to contact the 3rd Party Support team since it's under their control, we as Stripe can't really help with that

spare kestrel
#

I know, my question is another one

#

Does Stripe support this feature for subscription products?

weak hornet
#

what feature?

#

translation you mean?

spare kestrel
#

No

#

The inherit of language features in subscription product connector

weak hornet
#

what does that mean?

spare kestrel
#

The proprieties of the object "subscription product" support the feature? The field " / week" it's a string from stripe user DB so I need to know if Stripe can pass via API only the english version of this string.

As you can understand it's not 100% that is due from third part app

weak hornet
#

I'm not following sorry

#

where do you see the "/ week"? is it on your product description?

spare kestrel
#

No, sorry for my english. I see " / week" in Stripe subscription product shown in third part app. It's the recurring period for the product.

weak hornet
#

that's not coming from Stripe

#

that's something that your 3rd party app is generating for you

#

and this is why I asked you to contact their support

spare kestrel
#

Sorry but It's generated from stripe

weak hornet
#

how do you know that?

spare kestrel
#

because there's no way this field could be invented. It's a propriety of the object recurring product

weak hornet
#

do you. have the subscription id?

spare kestrel
#

When you set a recurring product Stripe ask this propriety and you set in stripe, there's no way to change it from outside

#

there's no subscription id, it's a field of an object

plush jolt
spare kestrel
#

Yes

plush jolt
#

also, please share a screenshot of what you're looking at and explain what the problem with it is.

spare kestrel
#

I'm asking if a third part app can translate "interval"

plush jolt
#

It certainly can

spare kestrel
#

Ok, we're done, than you

#

thank

plush jolt
#

ok! I still have no idea what you were asking, unfortunately.

spare kestrel
#

It's simple

#

We have interval field in price object

#

ok?

plush jolt
#

ok.

spare kestrel
#

Good. Now this field is shown in a third part app. I'm asking if the third part app can translate the field week having a translation feature or - for some/any reason - the field as to be showned as it as in stripe.

Asking this question I would exclude this case

#

Granting the chance to translate fields related to charges by the user is not always allowed.

So the third part app have to set a translation feature for this field and this is possible following what you answered

plush jolt
#

ok stop for a second.

#

so when you say "translate" do you mean, translate into other languages?

#

if so, sure, like you could write some code along the lines of

switch(price.recurring.interval){
 case "week"
   return "semaine" 
 case "day"
   return "jour"
...
...

}

, of course. It's quite simple. If your third party is reading the information from the API it can just map the fields to other values like that