diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-08-09 17:54:02 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-08-10 14:03:54 +0200 |
commit | 9059b559791b9f5333c24815c4bfd77cc6201c5e (patch) | |
tree | f0b0ca5d7f60707650d81dac2c2a61091d7c2709 /apps/media/templates | |
parent | 32be4746f8514e06e838b4aa0ee45cb832df1b2c (diff) | |
download | nextcloud-server-9059b559791b9f5333c24815c4bfd77cc6201c5e.tar.gz nextcloud-server-9059b559791b9f5333c24815c4bfd77cc6201c5e.zip |
make more strings translatable
Diffstat (limited to 'apps/media/templates')
-rw-r--r-- | apps/media/templates/music.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/apps/media/templates/music.php b/apps/media/templates/music.php index 5d0b0b6f0c4..d103e10b750 100644 --- a/apps/media/templates/music.php +++ b/apps/media/templates/music.php @@ -24,14 +24,14 @@ <table id="playlist"> <thead> <tr> - <th class="name"><input id="selectAll" type="checkbox">Name</th> - <th class="artist">Artist</th> + <th class="name"><input id="selectAll" type="checkbox"><?php echo $l->t('Name')?></th> + <th class="artist"><?php echo $l->t('Artist')?></th> </tr> </thead> <tbody> <tr> <td> - The playlist is empty + <?php echo $l->t('The playlist is empty')?> </td> </tr> </tbody> @@ -49,16 +49,16 @@ <div id="rightcontent"> <div id="scan"> - <p id="scancount" style="display:none"><span class="songCount">0</span> Songs scanned</p> + <p id="scancount" style="display:none"><span class="songCount">0</span> <?php echo $l->t('Songs scanned')?></p> <div id="scanprogressbar"></div> - <input type="button" class="start" value="Rescan Collection"></input> - <input type="button" class="stop" style="display:none" value="Pause"></input> + <input type="button" class="start" value="<?php echo $l->t('Rescan Collection')?>"></input> + <input type="button" class="stop" style="display:none" value="<?php echo $l->t('Pause')?>"></input> </div> <table id="collection"> <thead> - <th>Artist</th> - <th>Album</th> - <th>Title</th> + <th><?php echo $l->t('Artist')?></th> + <th><?php echo $l->t('Album')?></th> + <th><?php echo $l->t('Title')?></th> </thead> <tbody> <tr class="template"> |