Changeset 11597 for trunk

Show
Ignore:
Timestamp:
11/09/08 17:27:39 (2 months ago)
Author:
ejhernandez@…
Message:

Fixing some i18n strings. Some strings are not necessary translatable and others were wrong in some aspect

Location:
trunk/client/ebox/src
Files:
9 modified

Legend:

Unmodified
Added
Removed
  • trunk/client/ebox/src/EBox/Backup.pm

    r10308 r11597  
    681681  try { 
    682682      $progress->notifyTick(); 
    683       $progress->setMessage(__('Writing backup file to hard disc')); 
     683      $progress->setMessage(__('Writing backup file to hard disK')); 
    684684 
    685685      $backupFinalPath = $self->_moveToArchives($filename, $backupdir);    
  • trunk/client/ebox/src/EBox/Events/Model/Dispatcher/Jabber.pm

    r11273 r11597  
    223223             editable       => 1, 
    224224             help           => __('Tick this option if ' . 
    225                  ' you want eBox to create an account for ' . 
    226                  ' the above user') 
     225                 'you want eBox to create an account for ' . 
     226                 'the above user') 
    227227             ), 
    228228 
     
    233233             editable      => 1, 
    234234             help          => __('Destination Jabber ID of the messages ' . 
    235                 ' generated by eBox,  i.e: you, the eBox admin. Note ' . 
     235                'generated by eBox,  i.e: you, the eBox admin. Note ' . 
    236236                'that you need to register this  account manually in ' . 
    237                 ' any jabber server') 
     237                'any jabber server') 
    238238             ), 
    239239        ); 
     
    247247                      class              => 'dataForm', 
    248248                      help               => __('This dispatcher will send ' . 
    249                                                ' events to an Jabber account'), 
     249                                               'events to an Jabber account'), 
    250250                      messages           => { 
    251251                                             update => __('Jabber dispatcher configuration updated'), 
  • trunk/client/ebox/src/EBox/Events/Model/Dispatcher/RSS.pm

    r10799 r11597  
    184184                              subtypes      => \@subtypesAllowed, 
    185185                              help          => __('Use this field to set the ' . 
    186                               ' access control for the channel') 
     186                              'access control for the channel') 
    187187                             ), 
    188188       new EBox::Types::Link( 
  • trunk/client/ebox/src/EBox/GConfModule/Partition.pm

    r8424 r11597  
    2828                                      data => 'GConfModule', 
    2929                                      value => $fullModule, 
    30                                       advice => __('A instance of a subclass of EBox::GConfModule is expected'), 
     30                                      advice => 'A instance of a subclass of EBox::GConfModule is expected', 
    3131                                     ); 
    3232     
  • trunk/client/ebox/src/EBox/Model/DataTable.pm

    r11571 r11597  
    26722672    if ($rows < 0) { 
    26732673        throw EBox::Exceptions::InvalidData( 
    2674                                             data => __('Pagr size'), 
     2674                                            data => __('Page size'), 
    26752675                                            value => $rows, 
    26762676                                            advice =>  
    2677                                  __('Must be either a positve number or zero') 
     2677                                 __('Must be either a positive number or zero') 
    26782678                                           ) 
    26792679    } 
  • trunk/client/ebox/src/EBox/ProgressIndicator.pm

    r11567 r11597  
    4949  (-x $executableWoArguments) or 
    5050    throw EBox::Exceptions::External( 
    51                                      __x('Cannot execute  {exe}', 
     51                                     __x('Cannot execute {exe}', 
    5252                                           exe => $params{executable} 
    5353                                          ) 
  • trunk/client/ebox/src/EBox/Report/DiskUsage.pm

    r10308 r11597  
    208208    if ($fileSystemToScan ne all keys %{ $fileSystems }) { 
    209209      throw EBox::Exceptions::External( 
    210         __x('Invalid file system: {f}. Only regular and no rmeovable media file systems are accepted', 
     210        __x('Invalid file system: {f}. Only regular and no removable media file systems are accepted', 
    211211            f => $fileSystemToScan 
    212212           ) 
  • trunk/client/ebox/src/templates/login/index.mas

    r10308 r11597  
    4040        </div> 
    4141</center> 
    42 <div id="footer"><% __("Created by <a href='http://www.warp.es'>Warp Networks</a>") %></div> 
     42<div id="footer"><% __x("Created by {href}", href => "<a href='http://www.warp.es'>Warp Networks</a>") %></div> 
    4343<script src="/data/js/help.js" type=text/javascript>//</SCRIPT> 
    4444</body> 
  • trunk/client/ebox/src/templates/report/raid.mas

    r9043 r11597  
    7474<%init> 
    7575my %raidTypePrintableValue = ( 
    76                              'raid0' => __('RAID 0'), 
    77                              'raid1' => __('RAID 1'), 
    78                              'raid2' => __('RAID 2'), 
    79                              'raid3' => __('RAID 3'), 
    80                              'raid4' => __('RAID 4'), 
    81                              'raid4' => __('RAID 5'), 
     76                             'raid0' => 'RAID 0', 
     77                             'raid1' => 'RAID 1', 
     78                             'raid2' => 'RAID 2', 
     79                             'raid3' => 'RAID 3', 
     80                             'raid4' => 'RAID 4', 
     81                             'raid4' => 'RAID 5', 
    8282                            ); 
    8383my %algorithmPrintableValue = (