[www] r983 - trunk/packs.matroska.org/data
[email protected] Mon, 15 Aug 2005 07:57:38 +0400 (MSD)
| Newsgroups | gmane.comp.multimedia.matroska.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: robux4
Date: 2005-08-15 07:57:27 +0400 (Mon, 15 Aug 2005)
New Revision: 983
Modified:
trunk/packs.matroska.org/data/index.php.de
trunk/packs.matroska.org/data/index.php.en
trunk/packs.matroska.org/data/index.php.fr
trunk/packs.matroska.org/data/index.php.it
trunk/packs.matroska.org/data/index.php.ja
trunk/packs.matroska.org/data/index.php.nl
trunk/packs.matroska.org/data/index.php.pt
Log:
content: attempt of making big numbers look better
Modified: trunk/packs.matroska.org/data/index.php.de
===================================================================
--- trunk/packs.matroska.org/data/index.php.de 2005-08-09 21:45:56 UTC (rev 982)
+++ trunk/packs.matroska.org/data/index.php.de 2005-08-15 03:57:27 UTC (rev 983)
@@ -1,6 +1,7 @@
<?php
include("helper.php");
$download = unserialize(read_file('logs.txt'));
+ setlocale( LC_ALL, "de" );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
@@ -32,8 +33,8 @@
<h2><strong>Matroska Pack Full v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Full.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Full"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Full.exe">permalink</a><br/>
<div class="tiny">Downloads so far:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Full"); ?>
- (this version only: <? echo $download[$latest]["Matroska_Pack_Full"]?> since <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Full")); ?>
+ (this version only: <? echo number_format($download[$latest]["Matroska_Pack_Full"])?> since <? echo $release[$latest]; ?>)</div>
<p>Das bekannte Full Pack erlaubt nicht nur das Abspielen von Matroska-Dateien (.mkv und .mka),
sondern auch das Abspielen der meisten modernen Videoformate, auf jedem DirectShow-Player, sogar
@@ -70,8 +71,8 @@
<h2><strong>Matroska Pack Lite v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Lite.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Lite"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Lite.exe">permalink</a><br/>
<div class="tiny">Downloads so far:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Lite"); ?>
- (this version only: <? echo $download[$latest]["Matroska_Pack_Lite"]?> since <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Lite")); ?>
+ (this version only: <? echo number_format($download[$latest]["Matroska_Pack_Lite"])?> since <? echo $release[$latest]; ?>)</div>
<p>Dieses Matroska-Pack enthält nur das Notwendigste, was zum Abspielen von Matroska-Dateien
mit Vorbis-Audio und Untertiteln mit DirectShow-Playern notwendig ist. Um alle Matroska-Dateien
Modified: trunk/packs.matroska.org/data/index.php.en
===================================================================
--- trunk/packs.matroska.org/data/index.php.en 2005-08-09 21:45:56 UTC (rev 982)
+++ trunk/packs.matroska.org/data/index.php.en 2005-08-15 03:57:27 UTC (rev 983)
@@ -1,6 +1,7 @@
<?php
include("helper.php");
$download = unserialize(read_file('logs.txt'));
+ setlocale( LC_ALL, "en" );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
@@ -32,8 +33,8 @@
<h2><strong>Matroska Pack Full v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Full.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Full"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Full.exe">permalink</a><br/>
<div class="tiny">Downloads so far:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Full"); ?>
- (this version only: <? echo $download[$latest]["Matroska_Pack_Full"]?> since <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Full")); ?>
+ (this version only: <? echo number_format($download[$latest]["Matroska_Pack_Full"])?> since <? echo $release[$latest]; ?>)</div>
<p>The famous full pack will not only allow playing matroska media files (.mkv and .mka), but it will also allow playback
of most modern video formats on any DirectShow player, even with WMP 6.4/7/8/9
@@ -65,8 +66,8 @@
<h2><strong>Matroska Pack Lite v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Lite.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Lite"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Lite.exe">permalink</a><br/>
<div class="tiny">Downloads so far:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Lite"); ?>
- (this version only: <? echo $download[$latest]["Matroska_Pack_Lite"]?> since <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Lite")); ?>
+ (this version only: <? echo number_format($download[$latest]["Matroska_Pack_Lite"])?> since <? echo $release[$latest]; ?>)</div>
<p>Reduced to the max, this pack contains only the very <strong>basic stuff needed to play matroska
files</strong> with Vorbis audio and Subtitles on DirectShow players, so in
Modified: trunk/packs.matroska.org/data/index.php.fr
===================================================================
--- trunk/packs.matroska.org/data/index.php.fr 2005-08-09 21:45:56 UTC (rev 982)
+++ trunk/packs.matroska.org/data/index.php.fr 2005-08-15 03:57:27 UTC (rev 983)
@@ -1,6 +1,7 @@
<?php
include("helper.php");
$download = unserialize(read_file('logs.txt'));
+ setlocale( LC_ALL, "fr" );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
@@ -32,8 +33,8 @@
<h2><strong>Matroska Pack Complet v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Full.exe">Téléchargement</a> (<? printFileSize($latest,"Matroska_Pack_Full"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Full.exe">permalink</a><br/>
<div class="tiny">Chargements jusqu'à présent:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Full"); ?>
- (seulement cette version: <? echo $download[$latest]["Matroska_Pack_Full"]?> depuis le <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Full")); ?>
+ (seulement cette version: <? echo number_format($download[$latest]["Matroska_Pack_Full"])?> depuis le <? echo $release[$latest]; ?>)</div>
<p>Le pack complet pourra jouer non seulement les fichiers Matroska (.mkv et .mka),
mais aussi la plupart des formats récents dans les lecteurs DirectShow, même WMP 6.4/7/8/9
@@ -63,8 +64,8 @@
<h2><strong>Matroska Pack Lite v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Lite.exe">Téléchargement</a> (<? printFileSize($latest,"Matroska_Pack_Lite"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Lite.exe">permalink</a><br/>
<div class="tiny">Chargements jusqu'à présent:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Lite"); ?>
- (seulement cette version: <? echo $download[$latest]["Matroska_Pack_Lite"]?> depuis le <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Lite")); ?>
+ (seulement cette version: <? echo number_format($download[$latest]["Matroska_Pack_Lite"])?> depuis le <? echo $release[$latest]; ?>)</div>
<p>Réduit à sa plus simple expression, ce pack contient le <strong>minimum nécessaire pour lire un fichier matroska</strong> avec du Vorbis et des sous-titres et un lecteur DirectShow.
Donc pour pouvoir lire d'autres codecs, il vous faudra installer les décodeurs audio et vidéo correspondants.
Modified: trunk/packs.matroska.org/data/index.php.it
===================================================================
--- trunk/packs.matroska.org/data/index.php.it 2005-08-09 21:45:56 UTC (rev 982)
+++ trunk/packs.matroska.org/data/index.php.it 2005-08-15 03:57:27 UTC (rev 983)
@@ -1,6 +1,7 @@
<?php
include("helper.php");
$download = unserialize(read_file('logs.txt'));
+ setlocale( LC_ALL, "it" );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
@@ -32,8 +33,8 @@
<h2><strong>Matroska Pack Full v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Full.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Full"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Full.exe">permalink</a><br/>
<div class="tiny">Numero Downloads:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Full"); ?>
- (solo per questa versione: <? echo $download[$latest]["Matroska_Pack_Full"]?> dal <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Full")); ?>
+ (solo per questa versione: <? echo number_format($download[$latest]["Matroska_Pack_Full"])?> dal <? echo $release[$latest]; ?>)</div>
<p>Il famoso full pack permette non solo di riprodurre files matroska (.mkv and .mka), ma anche di riprodurre la maggior parte
dei moderni formati video con qualunque player DirectShow, anche con WMP 6.4/7/8/9
@@ -65,8 +66,8 @@
<h2><strong>Matroska Pack Lite v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Lite.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Lite"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Lite.exe">permalink</a><br/>
<div class="tiny">Nmero Downloads:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Lite"); ?>
- (solo per questa versione: <? echo $download[$latest]["Matroska_Pack_Lite"]?> dal <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Lite")); ?>
+ (solo per questa versione: <? echo number_format($download[$latest]["Matroska_Pack_Lite"])?> dal <? echo $release[$latest]; ?>)</div>
<p>Ridotto al massimo, questo pacchetto contiene solo il <strong>minimo indispensabile per riprodurre files Matroska
</strong> con audio Vorbis e Sottotitoli sui player DirectShow, così da mantenere le attuali impostazioni
Modified: trunk/packs.matroska.org/data/index.php.ja
===================================================================
--- trunk/packs.matroska.org/data/index.php.ja 2005-08-09 21:45:56 UTC (rev 982)
+++ trunk/packs.matroska.org/data/index.php.ja 2005-08-15 03:57:27 UTC (rev 983)
@@ -1,6 +1,7 @@
<?php
include("helper.php");
$download = unserialize(read_file('logs.txt'));
+ setlocale( LC_ALL, "ja" );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
@@ -32,8 +33,8 @@
<h2><strong>Matroska Pack Full v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Full.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Full"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Full.exe">permalink</a><br/>
<div class="tiny">ダウンロード:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Full"); ?>
- (<? echo $release[$latest]; ?>日以降) 【このバージョンのみ: <? echo $download[$latest]["Matroska_Pack_Full"]?>】</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Full")); ?>
+ (<? echo $release[$latest]; ?>日以降) 【このバージョンのみ: <? echo number_format($download[$latest]["Matroska_Pack_Full"])?>】</div>
<p> このフルパックは、matroska メディアファイル (.mkv and .mka)を使用できるのみでなく、DirectShowプレーヤーのビデオフォーマットの再生が可能です。WMP 6.4/7/8/9 (Windows Mediaplayer)も使用できます。このため、Matroska Pack Fullは、ビデオ圧縮シーンから注目されています。また、現在出回っているオーバーロードしているコーデックパックと比べても非常にスリムで知的な代用品として確立しています。</p>
<p>殆どのハードワークは、FFMPEGをもとにした<strong>ffdshow decoder Filter</strong>によってなされており、以下のものを再生できる機能を持っています。</p><ul>
@@ -61,8 +62,8 @@
<h2><strong>Matroska Pack Lite v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Lite.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Lite"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Lite.exe">permalink</a><br/>
<div class="tiny">ダウンロード:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Lite"); ?>
- (<? echo $release[$latest]; ?>日以降) 【このバージョンのみ:<? echo $download[$latest]["Matroska_Pack_Lite"]?>】</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Lite")); ?>
+ (<? echo $release[$latest]; ?>日以降) 【このバージョンのみ:<? echo number_format($download[$latest]["Matroska_Pack_Lite"])?>】</div>
<p>このパックは、DirectShowプレーヤーの上のVorbis オーディオとサブタイトルと共に、<b>Matroskaファイルを作動させるのに必要な基本的なもの</b>が入っています。したがって、全てのファイルを作動させるためには、正しいビデオとオーディオデコーダーを既にインストールしてることが必要です。また、ミキシングとキャプチャーアプリケーション(<a href="http://mikecrash.wz.cz/atv2000/atv2000.htm">ATV2000</a> または<a href="http://sourceforge.net/projects/virtualdubmod">VirtualVCR_matroska</a>のような)を基にしたDirectShowからMatroskaファイルを作成できるMatroskaミキサーフィルターが付いています。</p>
<h3><a href="Matroska_Pack_Lite_v<? echo $latest; ?>_ReadMe.html">List of components</a> of this pack.(パック内容リスト)</h3>
Modified: trunk/packs.matroska.org/data/index.php.nl
===================================================================
--- trunk/packs.matroska.org/data/index.php.nl 2005-08-09 21:45:56 UTC (rev 982)
+++ trunk/packs.matroska.org/data/index.php.nl 2005-08-15 03:57:27 UTC (rev 983)
@@ -1,6 +1,7 @@
<?php
include("helper.php");
$download = unserialize(read_file('logs.txt'));
+ setlocale( LC_ALL, "nl" );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
@@ -32,8 +33,8 @@
<h2><strong>Matroska Pack Full v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Full.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Full"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Full.exe">permalink</a><br/>
<div class="tiny">Downloads tot nu toe:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Full"); ?>
- (alleen deze versie: <? echo $download[$latest]["Matroska_Pack_Full"]?>) sinds <? echo $release[$latest]; ?></div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Full")); ?>
+ (alleen deze versie: <? echo number_format($download[$latest]["Matroska_Pack_Full"])?>) sinds <? echo $release[$latest]; ?></div>
<p>De beroemde full pack maakt het niet alleen mogelijk om Matroska media files (.mkv en .mka) af te spelen, maar het speelt ook de meest moderne videoformaten af op elke DirectShow speler, zelfs met WMP 6.4/7/8/9 (Windows Mediaplayer). Hierdoor heeft de Matroska Full Pack de aandacht getrokken van de videocompressie scene, en zich gevestigd als een licht en intelligent alternatief voor de meestal overvolle codec packs die beschikbaar zijn. Het meeste zware werk wordt gedaan door de <strong>ffdshow
decoder Filter</strong> welke is gebasseerd op FFMPEG en de mogelijkheid heeft het volgende af te spelen</p>
@@ -63,8 +64,8 @@
<h2><strong>Matroska Pack Lite v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Lite.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Lite"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Lite.exe">permalink</a><br/>
<div class="tiny">Downloads tot nu toe:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Lite"); ?>
- (alleen deze versie: <? echo $download[$latest]["Matroska_Pack_Lite"]?> sinds <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Lite")); ?>
+ (alleen deze versie: <? echo number_format($download[$latest]["Matroska_Pack_Lite"])?> sinds <? echo $release[$latest]; ?>)</div>
<p>Deze pack is tot het uiterste verkleind, en bevat alleen de absolute <strong>basis bestanden welke nodig zijn voor het afspelen
van matroska bestanden</strong> met Vorbis audio en Ondertitels op DirectShow spelers, dus voor het afspelen van al je bestanden moet je al de juiste video en audio decoders geïnstalleerd hebben. De lite pack bevat ook de matroska muxer filter, welke het mogelijk maakt om matroska bestanden te maken van muxing en capture applicaties gebasseerd op DirectShow, zoals <a href="http://mikecrash.wz.cz/atv2000/atv2000.htm">ATV2000</a> of <a href="http://sourceforge.net/projects/virtualdubmod">VirtualVCR_matroska</a>.</p>
Modified: trunk/packs.matroska.org/data/index.php.pt
===================================================================
--- trunk/packs.matroska.org/data/index.php.pt 2005-08-09 21:45:56 UTC (rev 982)
+++ trunk/packs.matroska.org/data/index.php.pt 2005-08-15 03:57:27 UTC (rev 983)
@@ -1,6 +1,7 @@
<?php
include("helper.php");
$download = unserialize(read_file('logs.txt'));
+ setlocale( LC_ALL, "pt" );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
@@ -32,8 +33,8 @@
<h2><strong>Matroska Pack Full v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Full.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Full"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Full.exe">permalink</a><br/>
<div class="tiny">Downloads até agora:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Full"); ?>
- (this version only: <? echo $download[$latest]["Matroska_Pack_Full"]?> desde <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Full")); ?>
+ (this version only: <? echo number_format($download[$latest]["Matroska_Pack_Full"])?> desde <? echo $release[$latest]; ?>)</div>
<p>O famoso pacote completo não vai apenas possibilitar que se vejam ficheiros Matroska (.mkv e .mka), como
também vai vai permitir a visualização dos formatos de vídeo mais modernos em qualquer Leitor que
@@ -64,8 +65,8 @@
<h2><strong>Matroska Pack Lite v<? echo $latest; ?> (<? echo $release[$latest]; ?>)</strong></h2>
<a href="/latest/Matroska_Pack_Lite.exe">Download</a> (<? printFileSize($latest,"Matroska_Pack_Lite"); ?>) - <a href="/<?php echo $latest; ?>/Matroska_Pack_Lite.exe">permalink</a><br/>
<div class="tiny">Downloads até agora:
- <!-- counter --> <? echo totalCount("Matroska_Pack_Lite"); ?>
- (this version only: <? echo $download[$latest]["Matroska_Pack_Lite"]?> desde <? echo $release[$latest]; ?>)</div>
+ <!-- counter --> <? echo number_format(totalCount("Matroska_Pack_Lite")); ?>
+ (this version only: <? echo number_format($download[$latest]["Matroska_Pack_Lite"])?> desde <? echo $release[$latest]; ?>)</div>
<p>Reduzido ao máximo, este pacote contém só o básico necessário para ler ficheiros Matroska
com audio Vorbis e Legendas em qualquer leitor que use "DirectShow", mas para ver todos os seus