Diff for "FAQ/Translations"

Not logged in - Log In / Register

Differences between revisions 21 and 22
Revision 21 as of 2008-11-18 18:01:25
Size: 2511
Editor: 92-237-59-186
Comment:
Revision 22 as of 2008-11-20 15:14:47
Size: 116
Editor: 92-237-59-186
Comment: Moved FAQs to Launchpad Answers
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from LaunchpadTranslationsFAQ
## page was renamed from RosettaFAQ



== What happens with the translations done on the Ubuntu templates for a product? Do they get shared with my template for my development branch? ==

All translations introduced into the Launchpad system get included in a huge "translation memory". If someone translates an application for its Ubuntu breezy series, these translations will appear as suggestions when someone else translates another series of that product.
  A planned feature for Launchpad Translations is "Translation Sharing", which would allow a translation to apply to all series of a product when it's updated in just one, which will make it a lot easier to do.

== I am translating an Ubuntu documentation piece in Launchpad. Should I translate the strange looking strings such as <example>? ==

 No, these strings should not be translated but should be left as they are.

== I see a "Translate this Application" link in many Ubuntu applications, but the message itself isn't translated into my language. Where can I find it? ==

That message belongs to the "[[https://translations.launchpad.net/ubuntu/feisty/+sources/launchpad-integration|launchpad integration]]" module.

= Launchpad and GNU Gettext Plural Forms =

== Launchpad asked me for plural forms information. What info do you need? ==

The plural form information is to handle correctly the plurals in your language. You can read more about it [[http://www.gnu.org/software/gettext/manual/html_chapter/gettext_10.html#Plural-forms|here]].
  As a summary, the rules we need to define are related with the number of objects/things/persons you are talking about, for instance, in English we have:
    * 0 items
    * 1 item
    * 2 items
    * 3 items
    * ...
    * n item(s)
  With that, we get that only when n == 1 is singular and when n != 1, it's plural. In this case, the plural form expression is: "n==1 ? 0 : 1" and the gettext's nplurals value == 2.
  In a non programming language, "n==1 ? 0 : 1" means:
  If 'n' is 1, then use the first entry, otherwise, use the second. 'n' is the number of items and usually, in computer programming we start counting with '0' instead of '1'.

== How the plural forms affect Launchpad? ==

If you get a message to translate with plural forms, you will get as much entries fields as plural forms defined for your language so you should be aware of your plural form expression and fill the fields as needed.
You now can find [[https://answers.launchpad.net/rosetta/+faqs|Launchpad Translations FAQs in Launchpad Answers]].

FAQ/Translations (last edited 2008-11-20 15:14:47 by 92-237-59-186)