- Timestamp:
- 11/09/08 17:27:39 (2 months ago)
- Location:
- trunk/client/ebox/src
- Files:
-
- 9 modified
-
EBox/Backup.pm (modified) (1 diff)
-
EBox/Events/Model/Dispatcher/Jabber.pm (modified) (3 diffs)
-
EBox/Events/Model/Dispatcher/RSS.pm (modified) (1 diff)
-
EBox/GConfModule/Partition.pm (modified) (1 diff)
-
EBox/Model/DataTable.pm (modified) (1 diff)
-
EBox/ProgressIndicator.pm (modified) (1 diff)
-
EBox/Report/DiskUsage.pm (modified) (1 diff)
-
templates/login/index.mas (modified) (1 diff)
-
templates/report/raid.mas (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/ebox/src/EBox/Backup.pm
r10308 r11597 681 681 try { 682 682 $progress->notifyTick(); 683 $progress->setMessage(__('Writing backup file to hard dis c'));683 $progress->setMessage(__('Writing backup file to hard disK')); 684 684 685 685 $backupFinalPath = $self->_moveToArchives($filename, $backupdir); -
trunk/client/ebox/src/EBox/Events/Model/Dispatcher/Jabber.pm
r11273 r11597 223 223 editable => 1, 224 224 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') 227 227 ), 228 228 … … 233 233 editable => 1, 234 234 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 ' . 236 236 'that you need to register this account manually in ' . 237 ' any jabber server')237 'any jabber server') 238 238 ), 239 239 ); … … 247 247 class => 'dataForm', 248 248 help => __('This dispatcher will send ' . 249 ' events to an Jabber account'),249 'events to an Jabber account'), 250 250 messages => { 251 251 update => __('Jabber dispatcher configuration updated'), -
trunk/client/ebox/src/EBox/Events/Model/Dispatcher/RSS.pm
r10799 r11597 184 184 subtypes => \@subtypesAllowed, 185 185 help => __('Use this field to set the ' . 186 ' access control for the channel')186 'access control for the channel') 187 187 ), 188 188 new EBox::Types::Link( -
trunk/client/ebox/src/EBox/GConfModule/Partition.pm
r8424 r11597 28 28 data => 'GConfModule', 29 29 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', 31 31 ); 32 32 -
trunk/client/ebox/src/EBox/Model/DataTable.pm
r11571 r11597 2672 2672 if ($rows < 0) { 2673 2673 throw EBox::Exceptions::InvalidData( 2674 data => __('Pag rsize'),2674 data => __('Page size'), 2675 2675 value => $rows, 2676 2676 advice => 2677 __('Must be either a posit ve number or zero')2677 __('Must be either a positive number or zero') 2678 2678 ) 2679 2679 } -
trunk/client/ebox/src/EBox/ProgressIndicator.pm
r11567 r11597 49 49 (-x $executableWoArguments) or 50 50 throw EBox::Exceptions::External( 51 __x('Cannot execute {exe}',51 __x('Cannot execute {exe}', 52 52 exe => $params{executable} 53 53 ) -
trunk/client/ebox/src/EBox/Report/DiskUsage.pm
r10308 r11597 208 208 if ($fileSystemToScan ne all keys %{ $fileSystems }) { 209 209 throw EBox::Exceptions::External( 210 __x('Invalid file system: {f}. Only regular and no r meovable media file systems are accepted',210 __x('Invalid file system: {f}. Only regular and no removable media file systems are accepted', 211 211 f => $fileSystemToScan 212 212 ) -
trunk/client/ebox/src/templates/login/index.mas
r10308 r11597 40 40 </div> 41 41 </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> 43 43 <script src="/data/js/help.js" type=text/javascript>//</SCRIPT> 44 44 </body> -
trunk/client/ebox/src/templates/report/raid.mas
r9043 r11597 74 74 <%init> 75 75 my %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', 82 82 ); 83 83 my %algorithmPrintableValue = (
