Documentation translation

From Inkscape Wiki
Revision as of 12:35, 17 July 2016 by Frigory (talk | contribs) (Reviewed tutorials part; merged keyboard shortcuts and man pages)
Jump to navigation Jump to search

Go back to the main Translation information page.

Tutorials

Inkscape's tutorial sources are in Docbook XML format, with illustrations in SVG.

The translations of the tutorials however are in the well-know PO format. If you want to help, download them here. You will find each tutorial in its own subdirectory, with a .pot template.

Once you are satisfied with what you have done, submit it.

Header and footer

The header and footer for the translation can as well be translated. Their translation is to date still a bit different from the tutorial translation as the header and footer SVG files need to be modified directly (so without using a PO file). To translate the tutorial header and footer, download and rename the following files (click on ‘download file’):

You should notice that some strings in the header are paths, not editable texts — this is to ensure that the text will render correctly to the end user. To translate it, you will have to recreate the text object yourself (use a generic sans-serif font such as ‘DejaVu Sans’ or ‘Bistream Vera Sans’, in italic) and convert it to a path when you're done.

Committing a translation to the Inkscape trunk

When you have commit access to the Inkscape Bazaar repository and when adding a new tutorial SVG to it (to the tutorial directory), it's recommended to also perform the following steps:

  • Add the filename of the tutorial SVG (and any additional files it needs, like PNG images referenced from the SVG) to ‘share/tutorials/Makefile.am’ in the main Inkscape trunk.
  • If the SVG refers to a PNG, then that PNG should exist in the SVG's directory — make sure to also commit that PNG.
  • Modify the translation of the tutorial filename in the main PO file so as to make Inkscape display the localized tutorial instead of the default (English) one. An example: if the "tutorial-basic.svg" string is translated the following way in ‘po/fr.po’:
msgid "tutorial-basic.svg"
msgstr "tutorial-basic.fr.svg"
then whenever the locale is French, Inkscape will display the French (and not the default English) basic tutorial for users.

You may also check the tutorials with the check_for_tutorial_problems.sh script. See the comments inside the script for more information.

Verification

To create up-to-date tutorials (the ‘tutorial-*.svg’ files), you'll need to build them from the tutorial PO files.

First of all, you need to check whether you have the necessary software. You need a Java SDK, Saxon, and the GNOME documentation utils, before you can actually build the SVGs of the tutorials:

  1. Install Saxon 6.5.x if it's not already installed. It is a tool that converts XML to SVG using XSLT. You need to have version 6.5.x, because the build process doesn't work with newer versions. Preferably, you install it with your package manager under Linux. For example, under openSUSE, install saxon-6.5.5 or a similarly named package — NOT saxon8 or similar.
    You can also download it manually from the project page on SourceForge (saxon.sf.net). Look for the section ‘Older products’ and its subsection ‘Saxon 6.5.5’. Download the zip file and unzip it into a suitable directory that's accessible by the build script (e.g. in /usr/share/java). The build scripts needs to find ‘saxon.jar’ in your Java classpath, so you may want to check your classpath in case of a Java problem.
  2. Install the Java SDK (JRE is not enough) if it's not already installed. You can check your installation with type java from the command line — check that java actually points to the SDK's java executable that you installed.

When this is complete create or update the tutorial SVG files:

  1. Update your local copy of the inkscape-docs trunk and the main inkscape trunk from bzr (see also Working with Bazaar for some more information on the commands and workflow of Bazaar).
  2. javac javaclasses/org/inkscape/xslt/files.java (this rebuilds ‘files.class’, which is a Java class file)
  3. cd tutorials/
  4. make svg (this creates all tutorial SVGs for all languages — can take long)
  5. Check the newly created tutorial SVGs (which you'll find in their specific tutorial directories: ‘advanced/’, ‘basic/’, etc.) for overlapping text (often caused by font settings) and other problems. It's recommended to perform the check under a different operating system. If the SVGs have overlapping text, check the default fonts on your computer.
  6. If you want to commit the newly created tutorial SVGs, then copy the new ‘tutorial-*.svg’ files to the ‘share/tutorials/’ directory of your local copy of the main Inkscape trunk and commit them to the main Inkscape trunk.

For more information, see ‘tutorials/README’ (web version here) and ‘tutorials/Makefile.targets’ (web version here).

Keyboard shortcuts and command line references

Just translate the PO file for your language in the ‘keys/’ and ‘man/’ directories, then send us your work.

User Manual

Obsolete!

  • See also Embedded Help.
  • First download the user manual xml document from SVN.
  • Edit the trunk/xml/inkscapeUTF.xml file. All languages are inside.
  • Just read the file, choose the language reference you want to use (en, fr…) and translate by duplicating the node and changing lang attribute to yours.
  • When finishing editing, if necessary edit the Makefile and add your language to the Makefile. In every case test your file with some tools (xmllint...) or just type again "make your_language"; syntax errors will be displayed: please correct them.
  • Submit your work as a patch in the patch tracker and warn Cédric Gemy (cedric at le-radar.com) by email.