Author: david
Date: Tue Sep 13 14:07:56 2011
New Revision: 9708
Log:
Clean up i18n strings
Modified:
trunk/apps/qubit/modules/oai/templates/harvesterHarvestSuccess.php
Modified: trunk/apps/qubit/modules/oai/templates/harvesterHarvestSuccess.php
==============================================================================
--- trunk/apps/qubit/modules/oai/templates/harvesterHarvestSuccess.php Tue Sep
13 13:37:08 2011 (r9707)
+++ trunk/apps/qubit/modules/oai/templates/harvesterHarvestSuccess.php Tue Sep
13 14:07:56 2011 (r9708)
@@ -1,18 +1,17 @@
-<h1><?php echo __('Repository Harvest')?></h1>
-<h3><?php echo __('Repository: ').$repositoryName ?></h3>
+<h1><?php echo __('Repository harvest')?></h1>
+<h3><?php echo __('Repository: %name%', array('%name%' => $repositoryName))
?></h3>
<?php echo __('Repository harvested successfuly') ?>
<br/>
<?php if($noRecordsMatch == true):?>
<?php echo __('No new records') ?>
<?php elseif(isset($recordCount)): ?>
-<?php echo $recordCount.__(' Records Imported') ?>
+<?php echo __('%count% records imported', array('%count%' => $recordCount)) ?>
<?php $index = 0 ?>
<?php foreach($errorsFound as $errorFound): ?>
- <?php echo __('Error found in record: ')?>
- <?php echo __('XML: ') ?>
+ <?php echo __('Error found in record')?>
<?php endforeach ?>
<?php else :?>
<?php echo __('An error occured during harvest') ?>
<?php endif ?>
<br>
-<?php echo link_to(__('Click here to return to harvester main
page'),'oai/harvesterList')?>
+<?php echo link_to(__('Return to harvester main page'),'oai/harvesterList')?>
--
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/qubit-commits?hl=en.