Development

Changeset 10732

You must first sign up to be able to contribute.

Changeset 10732

Show
Ignore:
Timestamp:
08/07/08 08:58:24 (4 months ago)
Author:
fabien
Message:

[doc] [1.0, 1.1, 1.2] fixed typos (closes #4145)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/branches/1.0/book/13-I18n-and-L10n.txt

    r10172 r10732  
    402402    [php] 
    403403    <?php echo format_number_choice( 
    404       '[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are%1% persons logged', array('%1%' => count_logged()), count_logged()) ?> 
     404      '[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are %1% persons logged', array('%1%' => count_logged()), count_logged()) ?> 
    405405 
    406406The first argument is the multiple possibilities of text. The second argument is the replacement pattern (as with the `__()` helper) and is optional. The third argument is the number on which the test is made to determine which text is taken. 
     
    421421    ... 
    422422    <trans-unit id="3"> 
    423       <source>[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are%1% persons logged</source> 
    424       <target>[0]Personne n'est connecté|[1]Une personne est connectée|(1,+Inf]Ily a %1% personnes en ligne</target> 
     423      <source>[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are %1% persons logged</source> 
     424      <target>[0]Personne n'est connecté|[1]Une personne est connectée|(1,+Inf]Il y a %1% personnes en ligne</target> 
    425425    </trans-unit> 
    426426    ...