jDiction Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

jDiction 2.2.0 released. http://jdiction.org/downloads

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - jstead

Pages: 1 [2]
16
General Questions / Re: Blank Screens
« on: August 29, 2014, 10:08:00 am »
Hehe no doubt, its great!

Was more so from the translation agency CAT program xliff export/import process side of things as we did a fair bit of back and forth when I was originally testing the process.

Quick question - Just noticed that the menu alias, aren't available in the menus-item xliff export. (i remember these being included?) Is there anything required to have them included?


17
General Questions / Re: Blank Screens
« on: August 28, 2014, 03:23:55 am »
Hi Harald,

Got it all sorted now. Ended up being that "DOM manipluation" wasn't installed as mentioned in another thread.

Will be finally doing our 17000+ word count .xliff export/import to 7 languages using the CAT tool (you where helping with in a previous thread earlier in the year) over the next 2 weeks. Will let you know how it goes.

Thanks,
Jason

18
General Questions / Re: Blank Screens
« on: August 28, 2014, 01:59:40 am »
Thanks you for the prompt reply.

php 5.3.15
Joomla 2.5.24

Error.log only reported some missing files that I knew about (images which I hadn't uploaded)
Everything else reports no errors.

Have done 2 rollbacks/re installs  (joomla 2.5.19) to no success.

Is there anything else we can try.

19
General Questions / Blank Screens
« on: August 27, 2014, 03:21:41 am »
Hi Harald,

I am in the process of implementing jdiction on our new website, after having it working on an development site.

After following the installation steps everything looked to have gone smoothly with the language switcher appearing on the front end and working correctly.
The issue I have is in the back end;
  • the check page just shows a blank white page
  • clicking on the tranlsate icon in list view or within an article/menu etc shows only a blank white page
  • when importing an xliff file on click upload I am left with a blank white page
I am able to export the xliff with no issues, and K2 is working once adding the jdiction.xml to the correct folder.
Console doesn't look to be showing any errors, not sure how to turn on the php errors you have mentioned in some other threads.

Any advise on next step is appreciated.

Regards,
Jason

20
General Questions / Re: Xliff Exports for Trados
« on: April 23, 2014, 03:10:05 am »
Hi Harald,

Sorry for the delay, We have had multiple public holidays here and the office was closed.

Our translation manager is away until Monday 28th, so I am unable to test the import/export process with the CAT tool, but I have installed the new version, exported all tables and manually copy/pasted translations into the Xliff to test what I can.

It looks like all remaining tables (menus-items and content-article) now export correctly.

I was able to re-import the translated k2-items, modules-module and content-articles tables with no issues.

But, the menus-item table worked for every item except for 1 sub menu (and its various sub-sub menus). By not working though, they appear as translated (green flag icon and green border on entry field), but  blank. Found that I had to export the Xliff WITH duplicates, as the re-import only imported the 1st instance of each duplicate menu (each of our 6 products has the same submenu (features/benefits etc)

I also noticed that the Alias wasn't exported/translated for any menu items, not sure if this was planned to be in export, or to be manually added through Joomla UI. Although manually changing product alias to Produits for instance caused a 404. (I had this working earlier but cant remember how)

Please advise any other tests you would like me to try, or if there is any other information you may need. I will also do some more testing once the translation manager is in and supply feedback on this.

Thanks,
Jason

21
General Questions / Re: Xliff Exports for Trados
« on: April 14, 2014, 04:35:41 am »
Hi Harald,

The items you mention below (encoding format and translation state) are working great as far as Jdiction is concerned. I was just mentioning our process as an FYI in case it was helpful.

Our translation manager mentions that our CAT tool supports XLIFF 1.2, however she did not use the standard XLIFF filter provided by the CAT tool as it didn’t allow her to customise the content as she wanted. Instead, she used an xml filter to parse and tag the HTML content within the XLIFF file, so it was not part of the translatable content. (I have attached a copy of a single item exported from our CAT program).


The only outstanding issue we have at the moment, is trying to export the com_content -> articles and com_menus -> item tables from our site for translation, as they are currently exporting empty. Is there something specific that could be causing this?

Thanks Again,
Jason

22
General Questions / Re: Xliff Exports for Trados
« on: April 11, 2014, 02:39:45 am »
Hi Harald,

Sorry for the delayed response, we ran into a few problems in the process, but after a bit of testing, they all ended up being on our side and not jdiction.

The new Xliff structure is great, and imported into the CAT tool with no issues.

To have the CAT tool exports import back into Jdiction, we just had to convert the translated .xlf to UTF without BOM (as the CAT Tool exported it as ANSI) and find and replace state='needs-translation' to state='translated' which only takes a few seconds. So very quick process!


We are now looking to do a complete site export/translate/import as a final test and I just had an issue with exporting the following tables.
When exporting the below from jdiction, the xliffs are empty.
com_content -> articles
com_menus -> item

(empty as in just have the xliff tag)
<xliff version='1.2' xmlns='urn:oasis:names:tc:xliff:document:1.2'></xliff>

Is com_menus -> item the actual menus front end structure for each of my menus?

The other 2 tables I required are k2 -> item and modules -> module which both are exporting/re-importing with no issues.

Thank you very much again for the great support.

23
General Questions / Re: Xliff Exports for Trados
« on: April 02, 2014, 02:03:04 am »
Yes, the problem was not having the <target> tag as its should be there from the initial export. The translation software doesn't add any structural content/tags to xliff/xml files, they are designed to only interact with the content needing translation.

By nature, a CAT(Computer-Assisted Translation) tool is creating an exact copy of the file that is fed into the system into another language. That means that these tools do not change the structure of the file, neither would they add tags that were not originally in the file. They purely extract the text that needs to be translated and through the process of translation, replace this text by the same text in another language.

Therefore, for the import to be working, we would need a target tag to be added to the export. That way we can tell the tool to ignore the source tag (we create a rule that tells the CAT tools that this text must not be translated) and only translate the target tag. We will end up with a file containing both the English and the translation, e.g:

Export file:
<source><![CDATA[This is some text to translate.]]></source> (will be hidden for translation in CAT tool)
<target><![CDATA[This is some text to translate.]]> </target> (will be translated by CAT tool)

Import file:
<source><![CDATA[This is some text to translate.]]></source>
<target><![CDATA[Ceci est le texte à traduire.]]></target>

We're happy to talk/provide any other information that may assist.

24
General Questions / Re: Xliff Exports for Trados
« on: March 31, 2014, 12:21:31 am »
Hi Harald, I sent you an email with results from some Xliff testing we did, but just realised it wasn't a PM. Did you receive this, or should I resend it through the PM channel?

25
General Questions / Re: Xliff Exports for Trados
« on: March 19, 2014, 12:01:41 am »
Thanks Harald for the quick feedback, we did a few test with the translation tool and found we are able to break the content where we needed too. Yet to import the translations back in, but looks to be working great.

26
General Questions / Xliff Exports for Trados
« on: March 13, 2014, 06:11:07 am »
Hi there,

We are in the process of localising our website in a few languages through our internal translation team that use Trados to manage their translation projects. We have managed to import the XLIFF export into Trados without difficulties, however, the CDATA is breaking out content per sections of the website as opposed to sentences, which is the usual way for translation tools. This also means that the HTML tags and code are considered as translatable content and therefore not protected during translation.

We are wondering if there would be a way to modify the way the CDATA is working, i.e. instead of enclosing a whole section, it could enclose only text in between html tags.

This is an example of how it is looking now:
<source><![CDATA[<p>Joomla! is all about allowing you to create a site that matches your vision. The possibilities are limitless; this sample site will just get you started.</p>
<p>There are a few things you should know to get you started.</p>]]></source>

This is the way we would like to see it (if possible):
<source><p><![CDATA[Joomla! is all about allowing you to create a site that matches your vision. The possibilities are limitless; this sample site will just get you started. ]]></p>
<p>><![CDATA[There are a few things you should know to get you started. ]]></p></source>

Would functionality like this be possible through modifications, or is there a lot more in it?

Kind Regards,
Jason

Pages: 1 [2]