Changeset 1374 for plugins/microBlog/index.php
- Timestamp:
- 08/08/09 23:38:16 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/microBlog/index.php
r1361 r1374 155 155 156 156 if (!$r) 157 $error[] = $sList[$id]. ' : '.__('Impossible to delete this service ');157 $error[] = $sList[$id]. ' : '.__('Impossible to delete this service.'); 158 158 else 159 $error[] = __('Service successfully deleted ').' : '.$sList[$id];159 $error[] = __('Service successfully deleted.').' : '.$sList[$id]; 160 160 } 161 161 catch (microBlogException $e) 162 162 { 163 $error[] = $sList[$id]. ' : '.__('Impossible to delete this service ');163 $error[] = $sList[$id]. ' : '.__('Impossible to delete this service.'); 164 164 $error[] = $sList[$id]. ' : '.__($e->getMessage()); 165 165 } … … 177 177 178 178 if (!$r) 179 $error[] = $sList[$id]. ' : '.__('Impossible to update this service ');179 $error[] = $sList[$id]. ' : '.__('Impossible to update this service.'); 180 180 else 181 $error[] = __('Service successfully updated ').' : '.$sList[$id];181 $error[] = __('Service successfully updated.').' : '.$sList[$id]; 182 182 } 183 183 catch (microBlogException $e) 184 184 { 185 $error[] = $sList[$id]. ' : '.__('Impossible to update this service ');185 $error[] = $sList[$id]. ' : '.__('Impossible to update this service.'); 186 186 $error[] = $sList[$id]. ' : '.__($e->getMessage()); 187 187 } … … 304 304 echo form::textarea('MB_note', 20, 5, $value); 305 305 ?> 306 <strong id="MB_note_length">< span>140</span> <?php echo __('characters left'); ?></strong>306 <strong id="MB_note_length"><?php echo sprintf(__('<span>%d</span> characters left'), 140); ?></strong> 307 307 </p> 308 308 … … 321 321 <div class="multi-part" id="tab2" title="<?php echo __('Params'); ?>"> 322 322 <form method="post" action="<?php echo($p_url); ?>"> 323 <h3><?php echo(__('Micro Blogging settings')); ?></h3>323 <h3><?php echo(__('Micro-Blogging settings')); ?></h3> 324 324 <?php 325 325 if ($MBl->count() > 0)
Note: See TracChangeset
for help on using the changeset viewer.