Parameter interpolation: In Tolgee Version 5 its variable name is not printing in Vuejs file
Its printing same string instead to replace {service} with "Google". please check following script
<template>
<div>
{{ $t('service.not_configured_service', { service: serviceName }) }}
</div>
</template>
<script>
export default {
data() {
return {
serviceName: 'Google' // Replace with dynamic value as per your application logic
};
}
};
</script>```
Here is Output:
You have not configured {service} service.
Here is Tolgee value:
Hello, I'm not really able to replicate from provided description. Have you looked at the migration guide from v4? https://tolgee.io/js-sdk/migration_to_v5/core
@stepan662 I'm currently using Tolgee version 5, and I'm facing this issue within v5.
Ok, but I would need to see more details to replicate your issue. I don't know how you initialize Tolgee or what exact version are you using and without that, I can't help you.
This issue is stale because it has been open for 30 days with no activity.
Hey! Any news here?