summaryrefslogtreecommitdiffstats
path: root/admin/templates/apps.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/templates/apps.php')
-rw-r--r--admin/templates/apps.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/templates/apps.php b/admin/templates/apps.php
index 36a7cd53029..593aad63182 100644
--- a/admin/templates/apps.php
+++ b/admin/templates/apps.php
@@ -3,15 +3,15 @@
* Template for Apps
*/
?>
-<h1>Apps Repository</h1>
+<h1><?php echo $l->t( 'Apps Repository' ); ?></h1>
<table cellspacing="0">
<thead>
<tr>
<th></th>
- <th>Name</th>
- <th>Modified</th>
+ <th><?php echo $l->t( 'Name' ); ?></th>
+ <th><?php echo $l->t( 'Modified' ); ?></th>
</tr>
</thead>
<tbody>
@@ -19,7 +19,7 @@
<tr>
<td width="1"><?php if($app["preview"] <> "") { echo('<a href="'.OC_HELPER::linkTo( "admin", "apps.php" ).'?id='.$app['id'].'"><img class="preview" border="0" src="'.$app["preview"].'" /></a>'); } ?> </a></td>
<td class="name"><a href="<?php echo(OC_HELPER::linkTo( "admin", "apps.php" ).'?id='.$app['id']); ?>" title=""><?php echo $app["name"]; ?></a><br /><?php echo('<span class="type">'.$app['typename'].'</span>'); ?></td>
- <td class="date"><?php echo OC_UTIL::formatdate($app["changed"]); ?></td>
+ <td class="date"><?php echo $l->l('datetime', $app["changed"]); ?></td>
</tr>
<?php endforeach; ?>
</tbody>