summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2010-05-23 16:21:32 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2010-05-23 16:21:32 +0200
commit4031ecf083ea361b1a26fd2f6efb71663ccd9af3 (patch)
tree5cce182fda7057c53fdb9cb52ee7d8f1149533ab /web
parentRestore audio track selection, but only for one audio track and no auto selection. (diff)
downloadAnyLoader-4031ecf083ea361b1a26fd2f6efb71663ccd9af3.tar.xz
AnyLoader-4031ecf083ea361b1a26fd2f6efb71663ccd9af3.zip
Disambiguation of messages.
Diffstat (limited to 'web')
-rw-r--r--web/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/index.php b/web/index.php
index 122bf46..cbf9804 100644
--- a/web/index.php
+++ b/web/index.php
@@ -63,7 +63,7 @@ foreach ($loader->getTitles() as $title) {
if ($title->videoTrack == 0)
echo "(not yet selected)";
else
- echo "Title ".$title->videoTrack;
+ echo "Video Title ".$title->videoTrack;
if (!$title->hasEncoded && $encodeStatus[0] != $title->title) {
echo "</a>";
if ($title->videoTrack != 0)
@@ -75,7 +75,7 @@ foreach ($loader->getTitles() as $title) {
if ($title->audioTrack == 0)
echo "(not yet selected)";
else
- echo "Track ".$title->audioTrack;
+ echo "Audio Track ".$title->audioTrack;
if (!$title->hasEncoded && $encodeStatus[0] != $title->title)
echo "</a>";
echo "</td></tr>";