Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • VideoLAN.org/websites
  • Freso/websites
  • ePirat/websites
  • DimStar77/websites
  • lemourin/websites
  • kwizart/websites
  • cmassiot/websites
  • fcartegnie/websites
  • mfkl/websites
  • chouquette/websites
  • maybesamuel43/websites
  • xslidian/websites
  • realRojSerbest/websites
  • Aza/websites
  • azchohfi/websites
  • VegaMex/websites
  • m/websites
  • fkuehne/websites
  • Roman-Gemini95/websites
  • Jamesguru/websites
  • dillmo71/websites
  • anodsaod/websites
  • jill/websites
  • Garf/websites
  • atas70835/websites
  • mahdiabdolahi01234/websites
  • pbo-linaro/websites
  • OctopusET/websites
28 results
Show changes
Commits on Source (2)
......@@ -47,13 +47,13 @@ should contact him to coordinate help.</p>
<?php
$lgfile="languages";
$file_id = fopen( $lgfile,"r" );
$contents = fread( $file_id, filesize($lgfile) );
fclose( $file_id );
$file_id = fopen( $lgfile, "r");
$contents = fread($file_id, filesize($lgfile));
fclose($file_id);
$langs = explode( "\n", $contents );
$langs = explode("\n", $contents);
for( $i = 0; $i < count($langs) - 1; $i++ )
for ($i = 0; $i < count($langs) - 1; $i++)
{
list( $lang, $po, $maint, $mail) = explode( '|', $langs[$i] );
......
......@@ -41,12 +41,12 @@ Copy the resulting <i>vlc.mo</i> file to <i>/usr/local/share/locale/&lt;LANG&gt;
<h3>How to test your localization on MacOS X ?</h3>
<p>If you do not have GNU gettext installed (you'd probably know if you had
it :), you must download its binaries from our website :
it :), you must download its binaries from our website:
<a href="http://download.videolan.org/pub/videolan/contrib/devtools/gettext-macosx.tar.gz">http://download.videolan.org/pub/videolan/devtools/gettext-macosx.tar.gz</a></p>
<p>Extract them into the current directory : <kbd>tar xvzf gettext-macosx.tar.gz</kbd>.</p>
<p>Extract them into the current directory: <kbd>tar xvzf gettext-macosx.tar.gz</kbd>.</p>
<p>Use the convert-po.sh script attached :<br />
<p>Use the convert-po.sh script attached:<br />
<kbd> setenv PATH gettext-macosx:$PATH<br />
setenv DYLD_LIBRARY_PATH=gettext-macosx<br />
./convert-po.sh &lt;LANG&gt;.po</kbd>
......