Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
websites
Manage
Activity
Members
Labels
Plan
Issues
25
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN organization
websites
Compare revisions
dbf3ca96f293953361b2e36e3cebb2bb361457a2 to f31cf5a4dab85d1a00386eb34f438d60b0ab2789
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
VideoLAN.org/websites
Select target project
No results found
f31cf5a4dab85d1a00386eb34f438d60b0ab2789
Select Git revision
Branches
3.0.18-release
master
Swap
Target
VideoLAN.org/websites
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
dbf3ca96f293953361b2e36e3cebb2bb361457a2
Select Git revision
Branches
3.0.18-release
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Update www.videolan.org/developers/i18n/index.php
· 3dc27818
Roj Serbest
authored
4 years ago
3dc27818
Fixed typo.
· f31cf5a4
Roj Serbest
authored
4 years ago
f31cf5a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
www.videolan.org/developers/i18n/index.php
+5
-5
5 additions, 5 deletions
www.videolan.org/developers/i18n/index.php
www.videolan.org/developers/i18n/vlc-howto.php
+3
-3
3 additions, 3 deletions
www.videolan.org/developers/i18n/vlc-howto.php
with
8 additions
and
8 deletions
www.videolan.org/developers/i18n/index.php
View file @
f31cf5a4
...
...
@@ -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
]
);
...
...
This diff is collapsed.
Click to expand it.
www.videolan.org/developers/i18n/vlc-howto.php
View file @
f31cf5a4
...
...
@@ -41,12 +41,12 @@ Copy the resulting <i>vlc.mo</i> file to <i>/usr/local/share/locale/<LANG>
<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
<
LANG
>
.po
</kbd>
...
...
This diff is collapsed.
Click to expand it.