Development

Changeset 10731

You must first sign up to be able to contribute.

Changeset 10731

Show
Ignore:
Timestamp:
08/07/08 08:58:19 (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.1/book/13-I18n-and-L10n.txt

    r9590 r10731  
    413413    [php] 
    414414    <?php echo format_number_choice( 
    415       '[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are%1% persons logged', array('%1%' => count_logged()), count_logged()) ?> 
     415      '[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are %1% persons logged', array('%1%' => count_logged()), count_logged()) ?> 
    416416 
    417417The 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. 
     
    433433    ... 
    434434    <trans-unit id="3"> 
    435       <source>[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are%1% persons logged</source> 
    436       <target>[0]Personne n'est connecté|[1]Une personne est connectée|(1,+Inf]Ily a %1% personnes en ligne</target> 
     435      <source>[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are %1% persons logged</source> 
     436      <target>[0]Personne n'est connecté|[1]Une personne est connectée|(1,+Inf]Il y a %1% personnes en ligne</target> 
    437437    </trans-unit> 
    438438    ... 
  • doc/branches/1.2/book/13-I18n-and-L10n.txt

    r9590 r10731  
    413413    [php] 
    414414    <?php echo format_number_choice( 
    415       '[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are%1% persons logged', array('%1%' => count_logged()), count_logged()) ?> 
     415      '[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are %1% persons logged', array('%1%' => count_logged()), count_logged()) ?> 
    416416 
    417417The 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. 
     
    433433    ... 
    434434    <trans-unit id="3"> 
    435       <source>[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are%1% persons logged</source> 
    436       <target>[0]Personne n'est connecté|[1]Une personne est connectée|(1,+Inf]Ily a %1% personnes en ligne</target> 
     435      <source>[0]Nobody is logged|[1]There is 1 person logged|(1,+Inf]There are %1% persons logged</source> 
     436      <target>[0]Personne n'est connecté|[1]Une personne est connectée|(1,+Inf]Il y a %1% personnes en ligne</target> 
    437437    </trans-unit> 
    438438    ...