doc/sphinx/appendices/uitranslationnotes.rst
.. warning::
This page is severely out of date! Much of what is described may no
longer apply. If you wish to translate FontForge's interface, please
use Crowdin: https://crowdin.com/project/fontforge
.. epigraph::
| CASCA: Ay, he spoke Greek. | CASSIUS: To what effect? | CASCA: Nay, an I tell you that, I'll ne'er | look you i' the face again: but those that | understood him smiled at one another and | shook their heads; but, for mine own | part, it was Greek to me.
-- Julius Caesar, I, ii -- Shakespeare
FontForge uses a standard mechanism called gettext to provide translations of
user interface strings into different language. Gettext is described profusely
at the gettext site <http://www.gnu.org/software/gettext/manual/>_, the
following are some brief notes on what you need to know to translate FontForge's
UI.
.. contents:: :depth: 2 :backlinks: none :class: clear-both
.. _uitranslationnotes.Obtaining:
.. epigraph::
| CHAPLAIN:...legal matters and so forth | Are Greek to me; except of course | That I understand Greek.
-- The Lady's not for Burning, II -- Christopher Fry
In a gettext based package, the translatable strings live in a "pot" file. In FontForge's case it is called "FontForge.pot".
You can download the
current version of this file from here. <https://crowdin.com/project/fontforge>_
.. _uitranslationnotes.Modifying:
.. epigraph::
| The Bellman looked uffish, and wrinkled his brow, | 'If only you'd spoken before! | It's excessively awkward to mention it now, | With the Snark, so to speak, at the door!' | | 'We should all of us grieve, as you may well believe | If you never were met with again- | But surely, my man, when the voyage began | You might have suggested it then?' | | 'It's excessively awkward to mention it now | As I think I've already remarked.' | And the man they called "Hi!" replied with a sigh, | 'I informed you the day we embarked.' | | 'You may charge me with murder- or want of sense- | (We are all of us weak at times): | But the slightest approach to a false pretense | Was never among my crimes!' | | 'I said it in Hebrew- I said it in Dutch- | I said it in German and Greek: | But I wholly forgot (and it vexes me much) | That English is what you speak!'
-- The Hunting of the Snark, Lewis Carroll
You should now have a FontForge.pot file (if you don't see the
:ref:above section <uitranslationnotes.Obtaining> on how to get one).
The pot file is in the same format as the "po" file which you need to generate. Simply rename FontForge.pot to the language/locale that you are working on. In most cases you will probably want to rename it just to the language
::
$ mv FontForge.pot fr.po
But sometimes that will not be enough. For example, Traditional and simplified chinese are sufficiently different that a locale must also be specified:
::
$ mv FontForge.pot zh_TW.po
Once you have created your po file it is time to start modifying it. I shall use French as an example in the following (because I almost speak French), obviously you will need to make changes appropriate for your language.
The po file begins with some lines like:
::
#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2006-08-19 07:32-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME EMAIL@ADDRESS\n" "Language-Team: LANGUAGE [email protected]\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
You should change this to:
::
#, fuzzy msgid "" msgstr "" "Project-Id-Version: 20060821\n" "POT-Creation-Date: 2006-08-19 07:32-0700\n" "PO-Revision-Date: 2006-08-20 14:46+0100\n" "Last-Translator: Pierre Hanser\n" "Language-Team: French [email protected]\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n"
Most of these are pretty self-explanatory. Fill in your name and email address
where appropriate, and the date on which you last worked on the file. The
plurals line is a little more complex, and I'll describe it
:ref:later <uitranslationnotes.plurals>.
Next there are thousands of string entries. They look something like this:
::
#: ttfinstrs.c:2184 typofeatures.c:1450 ../gdraw/gaskdlg.c:1076 #: ../gdraw/gaskdlg.c:1332 ../gdraw/gaskdlg.c:1391 ../gdraw/gfiledlg.c:152 #: ../gdraw/gmatrixedit.c:711 ../gdraw/gsavefiledlg.c:280 msgid "_Cancel" msgstr ""
You should change these to:
::
#: ttfinstrs.c:2184 typofeatures.c:1450 ../gdraw/gaskdlg.c:1076 #: ../gdraw/gaskdlg.c:1332 ../gdraw/gaskdlg.c:1391 ../gdraw/gfiledlg.c:152 #: ../gdraw/gmatrixedit.c:711 ../gdraw/gsavefiledlg.c:280 msgid "_Cancel" msgstr "_Annuler"
So the translation goes into the msgstr line. (The comment lines above indicate in what source files and on what lines the "_Cancel" string is used -- this information may be helpful if you want more information about context). If you don't want to translate a string just leave the msgstr as a null-string, and the English text will be used ("OK" seems to be left untranslated in many languages)
::
#: ttfinstrs.c:2184 typofeatures.c:1450 ../gdraw/gaskdlg.c:1076 #: ../gdraw/gaskdlg.c:1332 ../gdraw/gaskdlg.c:1391 ../gdraw/gfiledlg.c:152 #: ../gdraw/gmatrixedit.c:711 ../gdraw/gsavefiledlg.c:280 msgid "_OK" msgstr ""
Some strings contain mnemonics. The mnemonic is preceded by an underscore.
That seems fairly straight forward. But there are always complications. Sometimes an English word might be translated by different French words depending on context. For example in French the English word "New" might be translated as either "Nouveau" or "Nouvelle" depending on the gender of the thing being created. In Japanese the word for the latin language is different from the latin script. So to disambiguate some strings a little bit of context information may appear before the actual string to be translated:
::
msgid "File|_New" msgstr "_Nouveau"
or
::
msgid "Anchor|_New" msgstr "_Nouvelle"
The context will be any text before an "|". It should not be translated. Indeed both it and the "|" should be completely omitted.
.. _uitranslationnotes.plurals:
Finally we have the problem of plurals. Suppose we have a string
::
msgid "%d Group"
We need to inflect the word "Group" depending on the number of groups we've got -- and each language has different rules.
Remember, at the beginning of the file there was a line:
::
"Plural-Forms: nplurals=2; plural=n>1;\n"
This says that this language has two plural forms, the singular form is used when there are 0 or 1 entries (n<=1), and the plural form is used for n>1 entries. That rule is correct for French. English looks like:
::
"Plural-Forms: nplurals=2; plural=n!=1;\n"
A language like classical Greek, which has a dual form, might look like
::
"Plural-Forms: nplurals=3; plural=n<=1?0:n==2?1:2;\n"
The expression is a c language expression. When there is a string that might be plural it has a slightly different form in the po file
::
#: groups.c:1558 msgid "%d Group" msgid_plural "%d Groups" msgstr[0] "%d Groupe" msgstr[1] "%d Groupes"
Obviously, in a language with three forms there would be additional
msgstr[n] entries.
.. _uitranslationnotes.Updating:
Updating an already existing "po" file ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
After a few months, you will probably find that I've added some additional strings to FontForge, and you may want to update your original po file.
Once again you :ref:grab a current "pot" file <uitranslationnotes.Obtaining>
and you type:
::
$ msgmerge fr.po FontForge.pot >fr-new.po
This will update your po file to contain any new strings for you to translate. It will also make guesses for these new strings. Some of these guesses are correct, some are very strange, so you will want to examine the guessed strings (they will be marked with the word "fuzzy" -- emacs has a mode that makes checking these easy).
.. _uitranslationnotes.Testing:
Testing a "po" file ^^^^^^^^^^^^^^^^^^^
Once you have completed your po file you will want to test it.
#. If you have a copy of the fontforge source distribution you can test it by
copying your new file into the fontforge/po directory:
::
$ cp fr.po fontforge-20060819/fontforge/po
Reconfiguring fontforge, and installing it
::
$ cd fontforge-20060819 $ ./configure $ make $ su
#. Or, if you want to do things manually:
First you need to compile it:
::
$ msgfmt -o fr.mo fr.po
and create an "mo" file.
This file you will want to rename and move to the appropriate directory. If fontforge is installed in /usr/local/bin then you would say
::
$ mv fr.mo /usr/local/share/locale/fr/LC_MESSAGES/FontForge.mo
Then make sure your locale is set properly (and that your operating system has the support files it needs for that locale) and start fontforge. You should see your translation
::
$ LANG=fr_FR.UTF-8; export LANG $ fontforge -new
.. image:: /images/fontview.fr.png
.. _uitranslationnotes.More:
FontForge has some strings that do not fit into the standard gettext mechanism. These are strings for which fontforge wants to know all translations at all times. For exampe the truetype 'name' table encourages designers to provide a translation for the stylistic variant of the font into as many languages as possible. So if you had a Bold font it would be nice if the 'name' table contained: An English entry, "Bold"; A French entry, "Gras"; A German entry, "Fett". To make this easier on the designer FontForge would like to have all translations of "Bold" built into it at all times, all translations of "Italic", "Condensed", and so forth.
:doc:There is a table of the stylistic names FontForge recognizes on the Font Info page. <fontstyles>
There is a second list of names for which FontForge would like multiple
translations because these also appear in the 'name' table translated into as
many languages as possible. These are the names of the mac's Feature/Setting
strings, and they may be found on
Apple's Font Feature registry <http://developer.apple.com/fonts/Registry/index.html>_.
Finally I would like to make it as easy as possible to embed the
OFL <http://scripts.sil.org/OFL>_ into a font created by FontForge, and I
would like to encourage its translation (And that of its accompanying FAQ) into
as many languages as possible.
SIL regards translation as important but adds the following caveats (in their
FAQ <http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=OFL-FAQ_web>_):
5.5 How about translating the license and the FAQ into other languages?
SIL certainly recognises the need for people who are not familiar with English to be able to understand the OFL and this FAQ better in their own language. Making the license very clear and readable is a key goal of the OFL.
If you are an experienced translator, you are very welcome to help translating the OFL and its FAQ so that designers and users in your language community can understand the license better. But only the original English version of the license has legal value and has been approved by the community. Translations do not count as legal substitutes and should only serve as a way to explain the original license. SIL - as the author and steward of the license for the community at large - does not approve any translation of the OFL as legally valid because even small translations ambiguities could be abused and create problems.
We give permission to publish unofficial translations into other languages provided that they comply with the following guidelines:
put the following disclaimer in both English and the target language stating clearly that the translation is unofficial:
"This is an unofficial translation of the SIL Open Font License into $language. It was not published by SIL International, and does not legally state the distribution terms for fonts that use the OFL. A release under the OFL is only valid when using the original English text.
However, we recognize that this unofficial translation will help users and designers not familiar with English to understand the SIL OFL better and make it easier to use and release font families under this collaborative font design model. We encourage designers who consider releasing their creation under the OFL to read the FAQ in their own language if it is available.
Please go to http://scripts.sil.org/OFL for the official version of the license and the accompanying FAQ."
keep your unofficial translation current and update it at our request if needed, for example if there is any ambiguity which could lead to confusion.
If you start such a unofficial translation effort of the OFL and its accompanying FAQ please let us know, thank you.
The text of the current version of the OFL <http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=OFL_web>.
If anyone is interested in translation both the OFL and its FAQ
please let me know <mailto:[email protected]> (via
mailing list) and I will provide Web space for both. I had intended to include
these translations in the font's 'name' table, but have been asked not to
because of the possible legal ramifications.
At the moment (Feb 2007) OFL version 1.1 has just been released. I have
collected the :doc:following unofficial translations <OFL-Unofficial>.