hid transcreation option and mentions in the UI as the feature is not fully implemented

This commit is contained in:
michael 2025-08-25 16:02:29 -05:00
parent de61d0bd39
commit dac0fbea04
4 changed files with 10 additions and 8 deletions

View file

@ -66,7 +66,7 @@ export function Dashboard() {
</div>
<div>
<h4 className="font-semibold text-gray-900 mb-1">Multi-Language Support</h4>
<p className="text-gray-600 text-sm">Professional translation and transcreation services</p>
<p className="text-gray-600 text-sm">Professional translation services for 50+ languages</p>
</div>
</div>
<div className="flex items-start space-x-4 p-4 bg-white rounded-xl border border-gray-100 shadow-sm">

View file

@ -98,12 +98,13 @@ export function FinalList() {
<p className="text-sm text-gray-900">
{job.requested_outputs?.languages?.join(', ') || 'N/A'}
</p>
<p className="text-xs text-gray-500">
{/* Transcreation info - HIDDEN: Not fully implemented */}
{/* <p className="text-xs text-gray-500">
{job.requested_outputs?.transcreation?.length ?
`${job.requested_outputs.transcreation.length} transcreated` :
'Standard translation'
}
</p>
</p> */}
</div>
<div className="flex-shrink-0">
<svg className="h-5 w-5 text-gray-400" fill="currentColor" viewBox="0 0 20 20">

View file

@ -138,14 +138,15 @@ export function JobDetail() {
</div>
</dd>
</div>
{job.requested_outputs?.transcreation && job.requested_outputs.transcreation.length > 0 && (
{/* Transcreation Languages - HIDDEN: Not fully implemented */}
{/* {job.requested_outputs?.transcreation && job.requested_outputs.transcreation.length > 0 && (
<div className="sm:col-span-2">
<dt className="text-sm font-medium text-gray-500">Transcreation Languages</dt>
<dd className="text-sm text-gray-900 mt-1">
{job.requested_outputs.transcreation.join(', ')} (Cultural adaptation)
</dd>
</div>
)}
)} */}
</dl>
</div>

View file

@ -301,8 +301,8 @@ export function NewJob() {
</div>
</div>
{/* Transcreation Options */}
{languages.length > 0 && (
{/* Transcreation Options - HIDDEN: Not fully implemented */}
{/* {languages.length > 0 && (
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">
Transcreation (Cultural Adaptation)
@ -324,7 +324,7 @@ export function NewJob() {
))}
</div>
</div>
)}
)} */}
{/* Submit Button */}
<div className="pt-4">