[Slim-Checkins] r11855 - in /branches/6.5: ./ platforms/win32/ platforms/win32/installer/ server/
dean at svn.slimdevices.com
dean at svn.slimdevices.com
Sun Apr 29 15:06:15 PDT 2007
Author: dean
Date: Sun Apr 29 15:06:14 2007
New Revision: 11855
URL: http://svn.slimdevices.com?rev=11855&view=rev
Log:
Internationalization of Windows installer, with placeholders for translated Getting Started, License and custom
installer strings files.
Added:
branches/6.5/platforms/win32/Getting Started.de.html (with props)
branches/6.5/platforms/win32/Getting Started.es.html (with props)
branches/6.5/platforms/win32/Getting Started.fr.html (with props)
branches/6.5/platforms/win32/Getting Started.he.html (with props)
branches/6.5/platforms/win32/Getting Started.it.html (with props)
branches/6.5/platforms/win32/Getting Started.nl.html (with props)
branches/6.5/platforms/win32/installer/Dutch.isl (with props)
branches/6.5/platforms/win32/installer/English.isl (with props)
branches/6.5/platforms/win32/installer/French.isl (with props)
branches/6.5/platforms/win32/installer/German.isl (with props)
branches/6.5/platforms/win32/installer/Hebrew.isl (with props)
branches/6.5/platforms/win32/installer/Italian.isl (with props)
branches/6.5/platforms/win32/installer/Spanish.isl (with props)
branches/6.5/platforms/win32/installer/strings.iss (with props)
branches/6.5/server/License.de.txt (with props)
branches/6.5/server/License.es.txt (with props)
branches/6.5/server/License.fr.txt (with props)
branches/6.5/server/License.he.txt (with props)
branches/6.5/server/License.it.txt (with props)
branches/6.5/server/License.nl.txt (with props)
Removed:
branches/6.5/platforms/win32/ReadMe.txt
Modified:
branches/6.5/makerelease.pl
branches/6.5/platforms/win32/installer/SlimServer.iss
branches/6.5/server/Changelog6.html
Modified: branches/6.5/makerelease.pl
URL: http://svn.slimdevices.com/branches/6.5/makerelease.pl?rev=11855&r1=11854&r2=11855&view=diff
==============================================================================
--- branches/6.5/makerelease.pl (original)
+++ branches/6.5/makerelease.pl Sun Apr 29 15:06:14 2007
@@ -299,6 +299,8 @@
print "Building Windows directory...\n";
my $winserverdir = "build";
+ my $perlpath = 'C:\\perl\\bin\\perl.exe';
+
if (-d $winserverdir) {
print "Deleting original win build dir: $winserverdir\n";
rmtree($winserverdir);
@@ -310,10 +312,24 @@
removeDirectoriesNotMatching("$sourcecopy/Bin", 'MSWin32');
removeDirectoriesNotMatching("$sourcecopy/CPAN/arch/5.8", 'MSWin32');
+ copy("$source/server/CHANGELOG.html", "$winserverdir/Release Notes.html");
`cp -R $sourcecopy "$winserverdir/server"`;
+
copy("$source/platforms/win32/Getting Started.html", "$winserverdir");
- copy("$source/server/CHANGELOG.html", "$winserverdir/Release Notes.html");
- copy("$source/server/license.txt", "$winserverdir/License.txt");
+ copy("$source/platforms/win32/Getting Started.de.html", "$winserverdir");
+ copy("$source/platforms/win32/Getting Started.es.html", "$winserverdir");
+ copy("$source/platforms/win32/Getting Started.fr.html", "$winserverdir");
+ copy("$source/platforms/win32/Getting Started.he.html", "$winserverdir");
+ copy("$source/platforms/win32/Getting Started.it.html", "$winserverdir");
+ copy("$source/platforms/win32/Getting Started.nl.html", "$winserverdir");
+
+ copy("$source/server/License.txt", "$winserverdir");
+ copy("$source/server/License.de.txt", "$winserverdir");
+ copy("$source/server/License.es.txt", "$winserverdir");
+ copy("$source/server/License.fr.txt", "$winserverdir");
+ copy("$source/server/License.he.txt", "$winserverdir");
+ copy("$source/server/License.it.txt", "$winserverdir");
+ copy("$source/server/License.nl.txt", "$winserverdir");
copy("$source/docs/squeezebox3/Squeezebox-v3-Owners-Guide.pdf", "$winserverdir/Squeezebox-Owners-Guide.pdf");
@@ -326,7 +342,7 @@
../../server/CPAN/arch/5.8/MSWin32-x86-multi-thread/auto
));
- print `cd $source/platforms/win32; perltray --trim unicore:: --force --singleton --lib "$libpaths" --verbose --icon "res/SlimServer.ICO;res/SlimServerOff.ICO" SlimTray.pl; cd ../..`;
+ print `cd $source/platforms/win32; perltray --perl "$perlpath" --trim unicore:: --force --singleton --lib "$libpaths" --icon "res/SlimServer.ICO;res/SlimServerOff.ICO" SlimTray.pl; cd ../..`;
move("$source/platforms/win32/SlimTray.exe", "$winserverdir/SlimTray.exe");
rmsvn($winserverdir);
@@ -340,23 +356,45 @@
CPAN/arch/5.8/MSWin32-x86-multi-thread/auto
));
- print `cd $source/server; perlsvc --lib "$libpaths" --verbose --add Compress::Zlib --force slimserver.pl; cd ..`;
+ print `cd $source/server; perlsvc --perl "$perlpath" --lib "$libpaths" --add Compress::Zlib --force slimserver.pl; cd ..`;
move("$source/server/slimserver.exe", "$winserverdir/server/slim.exe");
print "Making scanner executable...\n";
- print `cd $source/server; perlapp --lib "$libpaths" --verbose --force scanner.pl; cd ..`;
+ print `cd $source/server; perlapp --perl "$perlpath" --lib "$libpaths" --force scanner.pl; cd ..`;
move("$source/server/scanner.exe", "$winserverdir/server/scanner.exe");
print "Making installer...\n";
copy("$source/platforms/win32/installer/SlimServer.iss", "$winserverdir");
+
+ copy("$source/platforms/win32/installer/strings.iss", "$winserverdir");
+
+ copy("$source/platforms/win32/installer/English.isl", "$winserverdir");
+ copy("$source/platforms/win32/installer/Hebrew.isl", "$winserverdir");
+ copy("$source/platforms/win32/installer/Italian.isl", "$winserverdir");
+ copy("$source/platforms/win32/installer/French.isl", "$winserverdir");
+ copy("$source/platforms/win32/installer/Spanish.isl", "$winserverdir");
+ copy("$source/platforms/win32/installer/Dutch.isl", "$winserverdir");
+ copy("$source/platforms/win32/installer/German.isl", "$winserverdir");
+
+
+ copy("$source/platforms/win32/installer/English.isl", "$winserverdir");
copy("$source/platforms/win32/installer/slim.bmp", "$winserverdir");
- print `"c:/Program Files/Inno Setup 4/ISCC.exe" "$winserverdir/SlimServer.iss"`;
+ print `"c:/Program Files/Inno Setup 5/ISCC.exe" "$winserverdir/SlimServer.iss"`;
unlink("$winserverdir/SlimServer.iss");
unlink("$winserverdir/slim.bmp");
-
+ unlink("$winserverdir/strings.iss");
+
+ unlink("$winserverdir/English.isl");
+ unlink("$winserverdir/Hebrew.isl");
+ unlink("$winserverdir/Italian.isl");
+ unlink("$winserverdir/French.isl");
+ unlink("$winserverdir/Spanish.isl");
+ unlink("$winserverdir/Dutch.isl");
+ unlink("$winserverdir/German.isl");
+
move($winserverdir, "$distdir/SlimServer for Windows");
$winserverdir = "$distdir/SlimServer for Windows";
Added: branches/6.5/platforms/win32/Getting Started.de.html
URL: http://svn.slimdevices.com/branches/6.5/platforms/win32/Getting%20Started.de.html?rev=11855&view=auto
==============================================================================
--- branches/6.5/platforms/win32/Getting Started.de.html (added)
+++ branches/6.5/platforms/win32/Getting Started.de.html Sun Apr 29 15:06:14 2007
@@ -1,0 +1,106 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>GERMAN Getting Started with SlimServer, Version 6.5.2</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+ <style type="text/css"> <!--
+.exbodytext, p, ol, ul, dl, dd, td { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.expagetitle, h1 { color: #f30; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbottomnav { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.excopyright { align: center; color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbodytitle, h4, h3, h2, th { color: #333; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+ol, ul, li { list-style-position: outside }
+ --> </style>
+</head>
+
+<body>
+ <h1 align="center">Getting Started with SlimServer</h1>
+ <p align="center">Version 6.5.2</p>
+ <p>Thank you for downloading the latest version of the SlimServer for Windows. Click on the following links to learn about each topic.</p>
+ <ul>
+ <li><a href="#service">Installation</a></li>
+ <li><a href="#Remote">Remote Playlist Management</a></li>
+ <li><a href="#moodlogic">MoodLogic Support</a></li>
+ </ul>
+ <p>If you have any questions or problems, please check the documentation built into the SlimServer web interface, or view the <a href="http://www.slimdevices.com/su_faq.html">FAQ</a>, visit our user forum at <a href="http://forums.slimdevices.com">http://forums.slimdevices.com</a> or contact our tech support team at <a href="mailto:support at slimdevices.com">support at slimdevices.com</a>.</p>
+ <p>Thanks,</p>
+ <p>The SlimServer Team</p>
+ <hr/>
+ <p><b><a name="Installation"></a>Installation</b></p>
+ <p>To open up a browser window to SlimServer, double-click on the SlimServer icon in the Windows tool tray or choose <b>Start -> All Programs -> SlimServer -> SlimServer</b>.</p>
+ <p>If you use Apple's iTunes, the SlimServer will automatically import your iTunes library information. If you use iTunes to add or remove music from its library, the SlimServer will notice and rescan the song information.</p>
+ <p>You can also use the task tray icon to stop or start the SlimServer background service.
+
+ <hr>
+ <p><b>Unicode Fonts</b></p>
+ Squeezebox players can now display unicode characters, including Japanese and other non-Latin languages.
+ To enable this display, you'll need to download a unicode TrueType font for SlimServer to use.
+ SlimServer knows how to use the following fonts:
+ <ul>
+ <li>CODE2000.TTF is available for <a href="http://home.att.net/~jameskass/code2000_page.htm">download here</a>.
+ <li>Cyberbit.ttf is available for <a href="http://ftp.netscape.com/pub/communicator/extras/fonts/windows/">download here</a>.
+ <li>arialuni.ttf is included is included in the recent versions of Microsoft Office products.
+ </ul>
+ <p>Place a copy of any of these font files in your SlimServer Graphics folder in
+ <a href="file:///C:/Program%20Files/SlimServer/server/Graphics/">C:\Program Files\SlimServer\server\Graphics</a> then restart SlimServer.
+
+ <hr>
+ <p><b>Firmware Update</b></p>
+ <p>If you own a Squeezebox, you may be prompted to update your firmware when it first connects to the SlimServer. Press and hold the Brightness button on the remote control until the firmware update begins.</p>
+ <p>If you own a SLIMP3 Player, we recommend that you use the SLIMP3 Firmware Updater to update the firmware on your SLIMP3 player to the latest version, 2.3.
+ This application is available for <a href="http://www.slimdevices.com/downloads/firmware/2.3/SLIMP3%20Firmware%20Updater.zip">download</a>.
+ You can check the version number of firmware installed on your SLIMP3 by reading the number at the lower right-hand corner of the display
+ when you plug in your SLIMP3 player.
+ </p>
+ <hr>
+ <p><b><a name="Remote"></a>Remote Playlist Management </b></p>
+ <p>The SlimServer was designed to stream MP3 music to a Squeezebox or SLIMP3 Network Music Player. However, it can also stream the same music over yoru network to any software player that supports MP3 streaming.</p>
+ <p>First, install the SlimServer software and make sure the computer to be used as a SlimServer can be reached over the Internet. If not, you will need to forward port 9000 on your router to the SlimServer computer. (Consult your router documentation for instructions). Then:</p>
+ <ul>
+ <li>Use your MP3 player software to open a stream to the the URL: <a href="http://localhost:9000/stream.mp3">http://localhost:9000/stream.mp3</a>. (Replace "localhost" with the IP address of the SlimServer computer). If you are using the SlimServer's password security, you'll need to use a slightly modified URL like this: <a href="http://username:password@localhost:9000/stream.mp3">http://username:password@localhost:9000/stream.mp3</a>. Some MP3 players will prompt you to enter your username and password.</li>
+ <li>Launch the SlimServer web interface running on the remote computer by opening the web page <a href="http://localhost:9000/">http://localhost:9000</a> (Replace "localhost" with the IP address of the remote computer). You will notice a new "player" corresponding to the IP address of the computer with the MP3 software player.</li>
+ <li>Use the left pane of the SlimServer web interface to browse and select files and playlists to be played. When music is selected, it will appear in the right pane of the web interface.</li>
+ <li>Click on "Play" in the right pane of the SlimServer web interface to launch the music.</li>
+ <li>After a couple of seconds, you will hear music playing through the MP3 software player. (The delay is due to buffering in the MP3 player software.)</li>
+ <li>To change the content playing, use the SlimServer web interface on the remote machine.</li>
+ </ul>
+ <hr/>
+ <p><b><a name="moodlogic"></a>MoodLogic Support</b></p>
+ <p>This version of the SlimServer software for Windows supports integration with the <a href="http://www.moodlogic.com/">MoodLogic</a> MP3 mix management software and associated metadata service. Install MoodLogic on your PC and identify your songs (regardless of tag information) and let MoodLogic automatically organize your collection by MoodLogic data (genre, mood, tempo, release year, etc). Once all your music is 'active' your Slim can interact with your music in exciting new ways!</p>
+ <h4>Features:</h4>
+ <ul>
+ <li>Browse your songs on your Squeezebox or SLIMP3 player by clean genre and artist information.</li>
+ <li>Create MoodLogic Instant Mixes directly with your remote!</li>
+ </ul>
+ <h4>How to create an Instant Mix:</h4>
+ <ol>
+ <li>Select a genre, artist or song that has an 'm' icon (mixable) in the top right corner.</li>
+ <li>Press AND HOLD your play button for a 2-3 seconds.</li>
+ <li>MoodLogic will create a playlist 'on the fly' with songs that fit your current mood! (for genres and artist you will be able to select one of the available moods presented)</li>
+ </ol>
+ <h4>Installation</h4>
+ <ol>
+ <li>Make sure your SlimServer and player are installed as described in this documentation.</li>
+ <li>Install MoodLogic from <a href="http://www.moodlogic.com/">http://www.moodlogic.com</a>.</li>
+ <li>Add your music to the same music folder that SlimServer uses.</li>
+ <li>Activate your music (the trial service allows 100 free activations).</li>
+ <li>Buy 10,000 activation credits to activate more songs or profile your own tracks.</li>
+ <li>Shut down MoodLogic and restart the SlimServer.</li>
+ <li>After restarting, the SlimServer will automatically detect MoodLogic. You are ready to go!</li>
+ <li>You can turn MoodLogic on and off see your server preferences in the web interface.</li>
+ </ol>
+ <h4>Known Limitations</h4>
+ <ul>
+ <li>No Mac or Linux support</li>
+ <li>Currently no album support</li>
+ <li>No way to trigger song based Instant Mix for the currently playing song</li>
+ <li>Not all skins supported (the best support is in the Default and Light skins, available under the Additional Server Settings)</li>
+ <li>The MoodLogic support doesn't work if the SlimServer software is installed as a service. Use the Control Panels->Administrative Tools->Services application to stop the SlimServer service and use the SlimServer application if you'd like to use the MoodLogic integration.</li>
+ </ul>
+ <h4>Feedback</h4>
+ <p>For questions about MoodLogic and SlimServer integration, please email: <a href="mailto:chris at moodlogic.com">chris at moodlogic.com</a></p>
+<hr>
+<p align=center>Copyright 2003-2005, Logitech. All Rights Reserved.</p>
+</body>
+</html>
Propchange: branches/6.5/platforms/win32/Getting Started.de.html
------------------------------------------------------------------------------
svn:executable = *
Added: branches/6.5/platforms/win32/Getting Started.es.html
URL: http://svn.slimdevices.com/branches/6.5/platforms/win32/Getting%20Started.es.html?rev=11855&view=auto
==============================================================================
--- branches/6.5/platforms/win32/Getting Started.es.html (added)
+++ branches/6.5/platforms/win32/Getting Started.es.html Sun Apr 29 15:06:14 2007
@@ -1,0 +1,106 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>Getting Started with SlimServer, Version 6.5.2</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+ <style type="text/css"> <!--
+.exbodytext, p, ol, ul, dl, dd, td { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.expagetitle, h1 { color: #f30; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbottomnav { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.excopyright { align: center; color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbodytitle, h4, h3, h2, th { color: #333; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+ol, ul, li { list-style-position: outside }
+ --> </style>
+</head>
+
+<body>
+ <h1 align="center">SPANISH Getting Started with SlimServer</h1>
+ <p align="center">Version 6.5.2</p>
+ <p>Thank you for downloading the latest version of the SlimServer for Windows. Click on the following links to learn about each topic.</p>
+ <ul>
+ <li><a href="#service">Installation</a></li>
+ <li><a href="#Remote">Remote Playlist Management</a></li>
+ <li><a href="#moodlogic">MoodLogic Support</a></li>
+ </ul>
+ <p>If you have any questions or problems, please check the documentation built into the SlimServer web interface, or view the <a href="http://www.slimdevices.com/su_faq.html">FAQ</a>, visit our user forum at <a href="http://forums.slimdevices.com">http://forums.slimdevices.com</a> or contact our tech support team at <a href="mailto:support at slimdevices.com">support at slimdevices.com</a>.</p>
+ <p>Thanks,</p>
+ <p>The SlimServer Team</p>
+ <hr/>
+ <p><b><a name="Installation"></a>Installation</b></p>
+ <p>To open up a browser window to SlimServer, double-click on the SlimServer icon in the Windows tool tray or choose <b>Start -> All Programs -> SlimServer -> SlimServer</b>.</p>
+ <p>If you use Apple's iTunes, the SlimServer will automatically import your iTunes library information. If you use iTunes to add or remove music from its library, the SlimServer will notice and rescan the song information.</p>
+ <p>You can also use the task tray icon to stop or start the SlimServer background service.
+
+ <hr>
+ <p><b>Unicode Fonts</b></p>
+ Squeezebox players can now display unicode characters, including Japanese and other non-Latin languages.
+ To enable this display, you'll need to download a unicode TrueType font for SlimServer to use.
+ SlimServer knows how to use the following fonts:
+ <ul>
+ <li>CODE2000.TTF is available for <a href="http://home.att.net/~jameskass/code2000_page.htm">download here</a>.
+ <li>Cyberbit.ttf is available for <a href="http://ftp.netscape.com/pub/communicator/extras/fonts/windows/">download here</a>.
+ <li>arialuni.ttf is included is included in the recent versions of Microsoft Office products.
+ </ul>
+ <p>Place a copy of any of these font files in your SlimServer Graphics folder in
+ <a href="file:///C:/Program%20Files/SlimServer/server/Graphics/">C:\Program Files\SlimServer\server\Graphics</a> then restart SlimServer.
+
+ <hr>
+ <p><b>Firmware Update</b></p>
+ <p>If you own a Squeezebox, you may be prompted to update your firmware when it first connects to the SlimServer. Press and hold the Brightness button on the remote control until the firmware update begins.</p>
+ <p>If you own a SLIMP3 Player, we recommend that you use the SLIMP3 Firmware Updater to update the firmware on your SLIMP3 player to the latest version, 2.3.
+ This application is available for <a href="http://www.slimdevices.com/downloads/firmware/2.3/SLIMP3%20Firmware%20Updater.zip">download</a>.
+ You can check the version number of firmware installed on your SLIMP3 by reading the number at the lower right-hand corner of the display
+ when you plug in your SLIMP3 player.
+ </p>
+ <hr>
+ <p><b><a name="Remote"></a>Remote Playlist Management </b></p>
+ <p>The SlimServer was designed to stream MP3 music to a Squeezebox or SLIMP3 Network Music Player. However, it can also stream the same music over yoru network to any software player that supports MP3 streaming.</p>
+ <p>First, install the SlimServer software and make sure the computer to be used as a SlimServer can be reached over the Internet. If not, you will need to forward port 9000 on your router to the SlimServer computer. (Consult your router documentation for instructions). Then:</p>
+ <ul>
+ <li>Use your MP3 player software to open a stream to the the URL: <a href="http://localhost:9000/stream.mp3">http://localhost:9000/stream.mp3</a>. (Replace "localhost" with the IP address of the SlimServer computer). If you are using the SlimServer's password security, you'll need to use a slightly modified URL like this: <a href="http://username:password@localhost:9000/stream.mp3">http://username:password@localhost:9000/stream.mp3</a>. Some MP3 players will prompt you to enter your username and password.</li>
+ <li>Launch the SlimServer web interface running on the remote computer by opening the web page <a href="http://localhost:9000/">http://localhost:9000</a> (Replace "localhost" with the IP address of the remote computer). You will notice a new "player" corresponding to the IP address of the computer with the MP3 software player.</li>
+ <li>Use the left pane of the SlimServer web interface to browse and select files and playlists to be played. When music is selected, it will appear in the right pane of the web interface.</li>
+ <li>Click on "Play" in the right pane of the SlimServer web interface to launch the music.</li>
+ <li>After a couple of seconds, you will hear music playing through the MP3 software player. (The delay is due to buffering in the MP3 player software.)</li>
+ <li>To change the content playing, use the SlimServer web interface on the remote machine.</li>
+ </ul>
+ <hr/>
+ <p><b><a name="moodlogic"></a>MoodLogic Support</b></p>
+ <p>This version of the SlimServer software for Windows supports integration with the <a href="http://www.moodlogic.com/">MoodLogic</a> MP3 mix management software and associated metadata service. Install MoodLogic on your PC and identify your songs (regardless of tag information) and let MoodLogic automatically organize your collection by MoodLogic data (genre, mood, tempo, release year, etc). Once all your music is 'active' your Slim can interact with your music in exciting new ways!</p>
+ <h4>Features:</h4>
+ <ul>
+ <li>Browse your songs on your Squeezebox or SLIMP3 player by clean genre and artist information.</li>
+ <li>Create MoodLogic Instant Mixes directly with your remote!</li>
+ </ul>
+ <h4>How to create an Instant Mix:</h4>
+ <ol>
+ <li>Select a genre, artist or song that has an 'm' icon (mixable) in the top right corner.</li>
+ <li>Press AND HOLD your play button for a 2-3 seconds.</li>
+ <li>MoodLogic will create a playlist 'on the fly' with songs that fit your current mood! (for genres and artist you will be able to select one of the available moods presented)</li>
+ </ol>
+ <h4>Installation</h4>
+ <ol>
+ <li>Make sure your SlimServer and player are installed as described in this documentation.</li>
+ <li>Install MoodLogic from <a href="http://www.moodlogic.com/">http://www.moodlogic.com</a>.</li>
+ <li>Add your music to the same music folder that SlimServer uses.</li>
+ <li>Activate your music (the trial service allows 100 free activations).</li>
+ <li>Buy 10,000 activation credits to activate more songs or profile your own tracks.</li>
+ <li>Shut down MoodLogic and restart the SlimServer.</li>
+ <li>After restarting, the SlimServer will automatically detect MoodLogic. You are ready to go!</li>
+ <li>You can turn MoodLogic on and off see your server preferences in the web interface.</li>
+ </ol>
+ <h4>Known Limitations</h4>
+ <ul>
+ <li>No Mac or Linux support</li>
+ <li>Currently no album support</li>
+ <li>No way to trigger song based Instant Mix for the currently playing song</li>
+ <li>Not all skins supported (the best support is in the Default and Light skins, available under the Additional Server Settings)</li>
+ <li>The MoodLogic support doesn't work if the SlimServer software is installed as a service. Use the Control Panels->Administrative Tools->Services application to stop the SlimServer service and use the SlimServer application if you'd like to use the MoodLogic integration.</li>
+ </ul>
+ <h4>Feedback</h4>
+ <p>For questions about MoodLogic and SlimServer integration, please email: <a href="mailto:chris at moodlogic.com">chris at moodlogic.com</a></p>
+<hr>
+<p align=center>Copyright 2003-2005, Logitech. All Rights Reserved.</p>
+</body>
+</html>
Propchange: branches/6.5/platforms/win32/Getting Started.es.html
------------------------------------------------------------------------------
svn:executable = *
Added: branches/6.5/platforms/win32/Getting Started.fr.html
URL: http://svn.slimdevices.com/branches/6.5/platforms/win32/Getting%20Started.fr.html?rev=11855&view=auto
==============================================================================
--- branches/6.5/platforms/win32/Getting Started.fr.html (added)
+++ branches/6.5/platforms/win32/Getting Started.fr.html Sun Apr 29 15:06:14 2007
@@ -1,0 +1,106 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>Getting Started with SlimServer, Version 6.5.2</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+ <style type="text/css"> <!--
+.exbodytext, p, ol, ul, dl, dd, td { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.expagetitle, h1 { color: #f30; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbottomnav { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.excopyright { align: center; color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbodytitle, h4, h3, h2, th { color: #333; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+ol, ul, li { list-style-position: outside }
+ --> </style>
+</head>
+
+<body>
+ <h1 align="center">FRENCH Getting Started with SlimServer</h1>
+ <p align="center">Version 6.5.2</p>
+ <p>Thank you for downloading the latest version of the SlimServer for Windows. Click on the following links to learn about each topic.</p>
+ <ul>
+ <li><a href="#service">Installation</a></li>
+ <li><a href="#Remote">Remote Playlist Management</a></li>
+ <li><a href="#moodlogic">MoodLogic Support</a></li>
+ </ul>
+ <p>If you have any questions or problems, please check the documentation built into the SlimServer web interface, or view the <a href="http://www.slimdevices.com/su_faq.html">FAQ</a>, visit our user forum at <a href="http://forums.slimdevices.com">http://forums.slimdevices.com</a> or contact our tech support team at <a href="mailto:support at slimdevices.com">support at slimdevices.com</a>.</p>
+ <p>Thanks,</p>
+ <p>The SlimServer Team</p>
+ <hr/>
+ <p><b><a name="Installation"></a>Installation</b></p>
+ <p>To open up a browser window to SlimServer, double-click on the SlimServer icon in the Windows tool tray or choose <b>Start -> All Programs -> SlimServer -> SlimServer</b>.</p>
+ <p>If you use Apple's iTunes, the SlimServer will automatically import your iTunes library information. If you use iTunes to add or remove music from its library, the SlimServer will notice and rescan the song information.</p>
+ <p>You can also use the task tray icon to stop or start the SlimServer background service.
+
+ <hr>
+ <p><b>Unicode Fonts</b></p>
+ Squeezebox players can now display unicode characters, including Japanese and other non-Latin languages.
+ To enable this display, you'll need to download a unicode TrueType font for SlimServer to use.
+ SlimServer knows how to use the following fonts:
+ <ul>
+ <li>CODE2000.TTF is available for <a href="http://home.att.net/~jameskass/code2000_page.htm">download here</a>.
+ <li>Cyberbit.ttf is available for <a href="http://ftp.netscape.com/pub/communicator/extras/fonts/windows/">download here</a>.
+ <li>arialuni.ttf is included is included in the recent versions of Microsoft Office products.
+ </ul>
+ <p>Place a copy of any of these font files in your SlimServer Graphics folder in
+ <a href="file:///C:/Program%20Files/SlimServer/server/Graphics/">C:\Program Files\SlimServer\server\Graphics</a> then restart SlimServer.
+
+ <hr>
+ <p><b>Firmware Update</b></p>
+ <p>If you own a Squeezebox, you may be prompted to update your firmware when it first connects to the SlimServer. Press and hold the Brightness button on the remote control until the firmware update begins.</p>
+ <p>If you own a SLIMP3 Player, we recommend that you use the SLIMP3 Firmware Updater to update the firmware on your SLIMP3 player to the latest version, 2.3.
+ This application is available for <a href="http://www.slimdevices.com/downloads/firmware/2.3/SLIMP3%20Firmware%20Updater.zip">download</a>.
+ You can check the version number of firmware installed on your SLIMP3 by reading the number at the lower right-hand corner of the display
+ when you plug in your SLIMP3 player.
+ </p>
+ <hr>
+ <p><b><a name="Remote"></a>Remote Playlist Management </b></p>
+ <p>The SlimServer was designed to stream MP3 music to a Squeezebox or SLIMP3 Network Music Player. However, it can also stream the same music over yoru network to any software player that supports MP3 streaming.</p>
+ <p>First, install the SlimServer software and make sure the computer to be used as a SlimServer can be reached over the Internet. If not, you will need to forward port 9000 on your router to the SlimServer computer. (Consult your router documentation for instructions). Then:</p>
+ <ul>
+ <li>Use your MP3 player software to open a stream to the the URL: <a href="http://localhost:9000/stream.mp3">http://localhost:9000/stream.mp3</a>. (Replace "localhost" with the IP address of the SlimServer computer). If you are using the SlimServer's password security, you'll need to use a slightly modified URL like this: <a href="http://username:password@localhost:9000/stream.mp3">http://username:password@localhost:9000/stream.mp3</a>. Some MP3 players will prompt you to enter your username and password.</li>
+ <li>Launch the SlimServer web interface running on the remote computer by opening the web page <a href="http://localhost:9000/">http://localhost:9000</a> (Replace "localhost" with the IP address of the remote computer). You will notice a new "player" corresponding to the IP address of the computer with the MP3 software player.</li>
+ <li>Use the left pane of the SlimServer web interface to browse and select files and playlists to be played. When music is selected, it will appear in the right pane of the web interface.</li>
+ <li>Click on "Play" in the right pane of the SlimServer web interface to launch the music.</li>
+ <li>After a couple of seconds, you will hear music playing through the MP3 software player. (The delay is due to buffering in the MP3 player software.)</li>
+ <li>To change the content playing, use the SlimServer web interface on the remote machine.</li>
+ </ul>
+ <hr/>
+ <p><b><a name="moodlogic"></a>MoodLogic Support</b></p>
+ <p>This version of the SlimServer software for Windows supports integration with the <a href="http://www.moodlogic.com/">MoodLogic</a> MP3 mix management software and associated metadata service. Install MoodLogic on your PC and identify your songs (regardless of tag information) and let MoodLogic automatically organize your collection by MoodLogic data (genre, mood, tempo, release year, etc). Once all your music is 'active' your Slim can interact with your music in exciting new ways!</p>
+ <h4>Features:</h4>
+ <ul>
+ <li>Browse your songs on your Squeezebox or SLIMP3 player by clean genre and artist information.</li>
+ <li>Create MoodLogic Instant Mixes directly with your remote!</li>
+ </ul>
+ <h4>How to create an Instant Mix:</h4>
+ <ol>
+ <li>Select a genre, artist or song that has an 'm' icon (mixable) in the top right corner.</li>
+ <li>Press AND HOLD your play button for a 2-3 seconds.</li>
+ <li>MoodLogic will create a playlist 'on the fly' with songs that fit your current mood! (for genres and artist you will be able to select one of the available moods presented)</li>
+ </ol>
+ <h4>Installation</h4>
+ <ol>
+ <li>Make sure your SlimServer and player are installed as described in this documentation.</li>
+ <li>Install MoodLogic from <a href="http://www.moodlogic.com/">http://www.moodlogic.com</a>.</li>
+ <li>Add your music to the same music folder that SlimServer uses.</li>
+ <li>Activate your music (the trial service allows 100 free activations).</li>
+ <li>Buy 10,000 activation credits to activate more songs or profile your own tracks.</li>
+ <li>Shut down MoodLogic and restart the SlimServer.</li>
+ <li>After restarting, the SlimServer will automatically detect MoodLogic. You are ready to go!</li>
+ <li>You can turn MoodLogic on and off see your server preferences in the web interface.</li>
+ </ol>
+ <h4>Known Limitations</h4>
+ <ul>
+ <li>No Mac or Linux support</li>
+ <li>Currently no album support</li>
+ <li>No way to trigger song based Instant Mix for the currently playing song</li>
+ <li>Not all skins supported (the best support is in the Default and Light skins, available under the Additional Server Settings)</li>
+ <li>The MoodLogic support doesn't work if the SlimServer software is installed as a service. Use the Control Panels->Administrative Tools->Services application to stop the SlimServer service and use the SlimServer application if you'd like to use the MoodLogic integration.</li>
+ </ul>
+ <h4>Feedback</h4>
+ <p>For questions about MoodLogic and SlimServer integration, please email: <a href="mailto:chris at moodlogic.com">chris at moodlogic.com</a></p>
+<hr>
+<p align=center>Copyright 2003-2005, Logitech. All Rights Reserved.</p>
+</body>
+</html>
Propchange: branches/6.5/platforms/win32/Getting Started.fr.html
------------------------------------------------------------------------------
svn:executable = *
Added: branches/6.5/platforms/win32/Getting Started.he.html
URL: http://svn.slimdevices.com/branches/6.5/platforms/win32/Getting%20Started.he.html?rev=11855&view=auto
==============================================================================
--- branches/6.5/platforms/win32/Getting Started.he.html (added)
+++ branches/6.5/platforms/win32/Getting Started.he.html Sun Apr 29 15:06:14 2007
@@ -1,0 +1,106 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>Getting Started with SlimServer, Version 6.5.2</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+ <style type="text/css"> <!--
+.exbodytext, p, ol, ul, dl, dd, td { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.expagetitle, h1 { color: #f30; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbottomnav { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.excopyright { align: center; color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbodytitle, h4, h3, h2, th { color: #333; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+ol, ul, li { list-style-position: outside }
+ --> </style>
+</head>
+
+<body>
+ <h1 align="center">HEBREW Getting Started with SlimServer</h1>
+ <p align="center">Version 6.5.2</p>
+ <p>Thank you for downloading the latest version of the SlimServer for Windows. Click on the following links to learn about each topic.</p>
+ <ul>
+ <li><a href="#service">Installation</a></li>
+ <li><a href="#Remote">Remote Playlist Management</a></li>
+ <li><a href="#moodlogic">MoodLogic Support</a></li>
+ </ul>
+ <p>If you have any questions or problems, please check the documentation built into the SlimServer web interface, or view the <a href="http://www.slimdevices.com/su_faq.html">FAQ</a>, visit our user forum at <a href="http://forums.slimdevices.com">http://forums.slimdevices.com</a> or contact our tech support team at <a href="mailto:support at slimdevices.com">support at slimdevices.com</a>.</p>
+ <p>Thanks,</p>
+ <p>The SlimServer Team</p>
+ <hr/>
+ <p><b><a name="Installation"></a>Installation</b></p>
+ <p>To open up a browser window to SlimServer, double-click on the SlimServer icon in the Windows tool tray or choose <b>Start -> All Programs -> SlimServer -> SlimServer</b>.</p>
+ <p>If you use Apple's iTunes, the SlimServer will automatically import your iTunes library information. If you use iTunes to add or remove music from its library, the SlimServer will notice and rescan the song information.</p>
+ <p>You can also use the task tray icon to stop or start the SlimServer background service.
+
+ <hr>
+ <p><b>Unicode Fonts</b></p>
+ Squeezebox players can now display unicode characters, including Japanese and other non-Latin languages.
+ To enable this display, you'll need to download a unicode TrueType font for SlimServer to use.
+ SlimServer knows how to use the following fonts:
+ <ul>
+ <li>CODE2000.TTF is available for <a href="http://home.att.net/~jameskass/code2000_page.htm">download here</a>.
+ <li>Cyberbit.ttf is available for <a href="http://ftp.netscape.com/pub/communicator/extras/fonts/windows/">download here</a>.
+ <li>arialuni.ttf is included is included in the recent versions of Microsoft Office products.
+ </ul>
+ <p>Place a copy of any of these font files in your SlimServer Graphics folder in
+ <a href="file:///C:/Program%20Files/SlimServer/server/Graphics/">C:\Program Files\SlimServer\server\Graphics</a> then restart SlimServer.
+
+ <hr>
+ <p><b>Firmware Update</b></p>
+ <p>If you own a Squeezebox, you may be prompted to update your firmware when it first connects to the SlimServer. Press and hold the Brightness button on the remote control until the firmware update begins.</p>
+ <p>If you own a SLIMP3 Player, we recommend that you use the SLIMP3 Firmware Updater to update the firmware on your SLIMP3 player to the latest version, 2.3.
+ This application is available for <a href="http://www.slimdevices.com/downloads/firmware/2.3/SLIMP3%20Firmware%20Updater.zip">download</a>.
+ You can check the version number of firmware installed on your SLIMP3 by reading the number at the lower right-hand corner of the display
+ when you plug in your SLIMP3 player.
+ </p>
+ <hr>
+ <p><b><a name="Remote"></a>Remote Playlist Management </b></p>
+ <p>The SlimServer was designed to stream MP3 music to a Squeezebox or SLIMP3 Network Music Player. However, it can also stream the same music over yoru network to any software player that supports MP3 streaming.</p>
+ <p>First, install the SlimServer software and make sure the computer to be used as a SlimServer can be reached over the Internet. If not, you will need to forward port 9000 on your router to the SlimServer computer. (Consult your router documentation for instructions). Then:</p>
+ <ul>
+ <li>Use your MP3 player software to open a stream to the the URL: <a href="http://localhost:9000/stream.mp3">http://localhost:9000/stream.mp3</a>. (Replace "localhost" with the IP address of the SlimServer computer). If you are using the SlimServer's password security, you'll need to use a slightly modified URL like this: <a href="http://username:password@localhost:9000/stream.mp3">http://username:password@localhost:9000/stream.mp3</a>. Some MP3 players will prompt you to enter your username and password.</li>
+ <li>Launch the SlimServer web interface running on the remote computer by opening the web page <a href="http://localhost:9000/">http://localhost:9000</a> (Replace "localhost" with the IP address of the remote computer). You will notice a new "player" corresponding to the IP address of the computer with the MP3 software player.</li>
+ <li>Use the left pane of the SlimServer web interface to browse and select files and playlists to be played. When music is selected, it will appear in the right pane of the web interface.</li>
+ <li>Click on "Play" in the right pane of the SlimServer web interface to launch the music.</li>
+ <li>After a couple of seconds, you will hear music playing through the MP3 software player. (The delay is due to buffering in the MP3 player software.)</li>
+ <li>To change the content playing, use the SlimServer web interface on the remote machine.</li>
+ </ul>
+ <hr/>
+ <p><b><a name="moodlogic"></a>MoodLogic Support</b></p>
+ <p>This version of the SlimServer software for Windows supports integration with the <a href="http://www.moodlogic.com/">MoodLogic</a> MP3 mix management software and associated metadata service. Install MoodLogic on your PC and identify your songs (regardless of tag information) and let MoodLogic automatically organize your collection by MoodLogic data (genre, mood, tempo, release year, etc). Once all your music is 'active' your Slim can interact with your music in exciting new ways!</p>
+ <h4>Features:</h4>
+ <ul>
+ <li>Browse your songs on your Squeezebox or SLIMP3 player by clean genre and artist information.</li>
+ <li>Create MoodLogic Instant Mixes directly with your remote!</li>
+ </ul>
+ <h4>How to create an Instant Mix:</h4>
+ <ol>
+ <li>Select a genre, artist or song that has an 'm' icon (mixable) in the top right corner.</li>
+ <li>Press AND HOLD your play button for a 2-3 seconds.</li>
+ <li>MoodLogic will create a playlist 'on the fly' with songs that fit your current mood! (for genres and artist you will be able to select one of the available moods presented)</li>
+ </ol>
+ <h4>Installation</h4>
+ <ol>
+ <li>Make sure your SlimServer and player are installed as described in this documentation.</li>
+ <li>Install MoodLogic from <a href="http://www.moodlogic.com/">http://www.moodlogic.com</a>.</li>
+ <li>Add your music to the same music folder that SlimServer uses.</li>
+ <li>Activate your music (the trial service allows 100 free activations).</li>
+ <li>Buy 10,000 activation credits to activate more songs or profile your own tracks.</li>
+ <li>Shut down MoodLogic and restart the SlimServer.</li>
+ <li>After restarting, the SlimServer will automatically detect MoodLogic. You are ready to go!</li>
+ <li>You can turn MoodLogic on and off see your server preferences in the web interface.</li>
+ </ol>
+ <h4>Known Limitations</h4>
+ <ul>
+ <li>No Mac or Linux support</li>
+ <li>Currently no album support</li>
+ <li>No way to trigger song based Instant Mix for the currently playing song</li>
+ <li>Not all skins supported (the best support is in the Default and Light skins, available under the Additional Server Settings)</li>
+ <li>The MoodLogic support doesn't work if the SlimServer software is installed as a service. Use the Control Panels->Administrative Tools->Services application to stop the SlimServer service and use the SlimServer application if you'd like to use the MoodLogic integration.</li>
+ </ul>
+ <h4>Feedback</h4>
+ <p>For questions about MoodLogic and SlimServer integration, please email: <a href="mailto:chris at moodlogic.com">chris at moodlogic.com</a></p>
+<hr>
+<p align=center>Copyright 2003-2005, Logitech. All Rights Reserved.</p>
+</body>
+</html>
Propchange: branches/6.5/platforms/win32/Getting Started.he.html
------------------------------------------------------------------------------
svn:executable = *
Added: branches/6.5/platforms/win32/Getting Started.it.html
URL: http://svn.slimdevices.com/branches/6.5/platforms/win32/Getting%20Started.it.html?rev=11855&view=auto
==============================================================================
--- branches/6.5/platforms/win32/Getting Started.it.html (added)
+++ branches/6.5/platforms/win32/Getting Started.it.html Sun Apr 29 15:06:14 2007
@@ -1,0 +1,106 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>Getting Started with SlimServer, Version 6.5.2</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+ <style type="text/css"> <!--
+.exbodytext, p, ol, ul, dl, dd, td { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.expagetitle, h1 { color: #f30; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbottomnav { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.excopyright { align: center; color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbodytitle, h4, h3, h2, th { color: #333; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+ol, ul, li { list-style-position: outside }
+ --> </style>
+</head>
+
+<body>
+ <h1 align="center">ITALIAN Getting Started with SlimServer</h1>
+ <p align="center">Version 6.5.2</p>
+ <p>Thank you for downloading the latest version of the SlimServer for Windows. Click on the following links to learn about each topic.</p>
+ <ul>
+ <li><a href="#service">Installation</a></li>
+ <li><a href="#Remote">Remote Playlist Management</a></li>
+ <li><a href="#moodlogic">MoodLogic Support</a></li>
+ </ul>
+ <p>If you have any questions or problems, please check the documentation built into the SlimServer web interface, or view the <a href="http://www.slimdevices.com/su_faq.html">FAQ</a>, visit our user forum at <a href="http://forums.slimdevices.com">http://forums.slimdevices.com</a> or contact our tech support team at <a href="mailto:support at slimdevices.com">support at slimdevices.com</a>.</p>
+ <p>Thanks,</p>
+ <p>The SlimServer Team</p>
+ <hr/>
+ <p><b><a name="Installation"></a>Installation</b></p>
+ <p>To open up a browser window to SlimServer, double-click on the SlimServer icon in the Windows tool tray or choose <b>Start -> All Programs -> SlimServer -> SlimServer</b>.</p>
+ <p>If you use Apple's iTunes, the SlimServer will automatically import your iTunes library information. If you use iTunes to add or remove music from its library, the SlimServer will notice and rescan the song information.</p>
+ <p>You can also use the task tray icon to stop or start the SlimServer background service.
+
+ <hr>
+ <p><b>Unicode Fonts</b></p>
+ Squeezebox players can now display unicode characters, including Japanese and other non-Latin languages.
+ To enable this display, you'll need to download a unicode TrueType font for SlimServer to use.
+ SlimServer knows how to use the following fonts:
+ <ul>
+ <li>CODE2000.TTF is available for <a href="http://home.att.net/~jameskass/code2000_page.htm">download here</a>.
+ <li>Cyberbit.ttf is available for <a href="http://ftp.netscape.com/pub/communicator/extras/fonts/windows/">download here</a>.
+ <li>arialuni.ttf is included is included in the recent versions of Microsoft Office products.
+ </ul>
+ <p>Place a copy of any of these font files in your SlimServer Graphics folder in
+ <a href="file:///C:/Program%20Files/SlimServer/server/Graphics/">C:\Program Files\SlimServer\server\Graphics</a> then restart SlimServer.
+
+ <hr>
+ <p><b>Firmware Update</b></p>
+ <p>If you own a Squeezebox, you may be prompted to update your firmware when it first connects to the SlimServer. Press and hold the Brightness button on the remote control until the firmware update begins.</p>
+ <p>If you own a SLIMP3 Player, we recommend that you use the SLIMP3 Firmware Updater to update the firmware on your SLIMP3 player to the latest version, 2.3.
+ This application is available for <a href="http://www.slimdevices.com/downloads/firmware/2.3/SLIMP3%20Firmware%20Updater.zip">download</a>.
+ You can check the version number of firmware installed on your SLIMP3 by reading the number at the lower right-hand corner of the display
+ when you plug in your SLIMP3 player.
+ </p>
+ <hr>
+ <p><b><a name="Remote"></a>Remote Playlist Management </b></p>
+ <p>The SlimServer was designed to stream MP3 music to a Squeezebox or SLIMP3 Network Music Player. However, it can also stream the same music over yoru network to any software player that supports MP3 streaming.</p>
+ <p>First, install the SlimServer software and make sure the computer to be used as a SlimServer can be reached over the Internet. If not, you will need to forward port 9000 on your router to the SlimServer computer. (Consult your router documentation for instructions). Then:</p>
+ <ul>
+ <li>Use your MP3 player software to open a stream to the the URL: <a href="http://localhost:9000/stream.mp3">http://localhost:9000/stream.mp3</a>. (Replace "localhost" with the IP address of the SlimServer computer). If you are using the SlimServer's password security, you'll need to use a slightly modified URL like this: <a href="http://username:password@localhost:9000/stream.mp3">http://username:password@localhost:9000/stream.mp3</a>. Some MP3 players will prompt you to enter your username and password.</li>
+ <li>Launch the SlimServer web interface running on the remote computer by opening the web page <a href="http://localhost:9000/">http://localhost:9000</a> (Replace "localhost" with the IP address of the remote computer). You will notice a new "player" corresponding to the IP address of the computer with the MP3 software player.</li>
+ <li>Use the left pane of the SlimServer web interface to browse and select files and playlists to be played. When music is selected, it will appear in the right pane of the web interface.</li>
+ <li>Click on "Play" in the right pane of the SlimServer web interface to launch the music.</li>
+ <li>After a couple of seconds, you will hear music playing through the MP3 software player. (The delay is due to buffering in the MP3 player software.)</li>
+ <li>To change the content playing, use the SlimServer web interface on the remote machine.</li>
+ </ul>
+ <hr/>
+ <p><b><a name="moodlogic"></a>MoodLogic Support</b></p>
+ <p>This version of the SlimServer software for Windows supports integration with the <a href="http://www.moodlogic.com/">MoodLogic</a> MP3 mix management software and associated metadata service. Install MoodLogic on your PC and identify your songs (regardless of tag information) and let MoodLogic automatically organize your collection by MoodLogic data (genre, mood, tempo, release year, etc). Once all your music is 'active' your Slim can interact with your music in exciting new ways!</p>
+ <h4>Features:</h4>
+ <ul>
+ <li>Browse your songs on your Squeezebox or SLIMP3 player by clean genre and artist information.</li>
+ <li>Create MoodLogic Instant Mixes directly with your remote!</li>
+ </ul>
+ <h4>How to create an Instant Mix:</h4>
+ <ol>
+ <li>Select a genre, artist or song that has an 'm' icon (mixable) in the top right corner.</li>
+ <li>Press AND HOLD your play button for a 2-3 seconds.</li>
+ <li>MoodLogic will create a playlist 'on the fly' with songs that fit your current mood! (for genres and artist you will be able to select one of the available moods presented)</li>
+ </ol>
+ <h4>Installation</h4>
+ <ol>
+ <li>Make sure your SlimServer and player are installed as described in this documentation.</li>
+ <li>Install MoodLogic from <a href="http://www.moodlogic.com/">http://www.moodlogic.com</a>.</li>
+ <li>Add your music to the same music folder that SlimServer uses.</li>
+ <li>Activate your music (the trial service allows 100 free activations).</li>
+ <li>Buy 10,000 activation credits to activate more songs or profile your own tracks.</li>
+ <li>Shut down MoodLogic and restart the SlimServer.</li>
+ <li>After restarting, the SlimServer will automatically detect MoodLogic. You are ready to go!</li>
+ <li>You can turn MoodLogic on and off see your server preferences in the web interface.</li>
+ </ol>
+ <h4>Known Limitations</h4>
+ <ul>
+ <li>No Mac or Linux support</li>
+ <li>Currently no album support</li>
+ <li>No way to trigger song based Instant Mix for the currently playing song</li>
+ <li>Not all skins supported (the best support is in the Default and Light skins, available under the Additional Server Settings)</li>
+ <li>The MoodLogic support doesn't work if the SlimServer software is installed as a service. Use the Control Panels->Administrative Tools->Services application to stop the SlimServer service and use the SlimServer application if you'd like to use the MoodLogic integration.</li>
+ </ul>
+ <h4>Feedback</h4>
+ <p>For questions about MoodLogic and SlimServer integration, please email: <a href="mailto:chris at moodlogic.com">chris at moodlogic.com</a></p>
+<hr>
+<p align=center>Copyright 2003-2005, Logitech. All Rights Reserved.</p>
+</body>
+</html>
Propchange: branches/6.5/platforms/win32/Getting Started.it.html
------------------------------------------------------------------------------
svn:executable = *
Added: branches/6.5/platforms/win32/Getting Started.nl.html
URL: http://svn.slimdevices.com/branches/6.5/platforms/win32/Getting%20Started.nl.html?rev=11855&view=auto
==============================================================================
--- branches/6.5/platforms/win32/Getting Started.nl.html (added)
+++ branches/6.5/platforms/win32/Getting Started.nl.html Sun Apr 29 15:06:14 2007
@@ -1,0 +1,106 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>Getting Started with SlimServer, Version 6.5.2</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+ <style type="text/css"> <!--
+.exbodytext, p, ol, ul, dl, dd, td { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.expagetitle, h1 { color: #f30; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbottomnav { color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.excopyright { align: center; color: #333; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+.exbodytitle, h4, h3, h2, th { color: #333; font-weight: bold; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif }
+ol, ul, li { list-style-position: outside }
+ --> </style>
+</head>
+
+<body>
+ <h1 align="center">DUTCH Getting Started with SlimServer</h1>
+ <p align="center">Version 6.5.2</p>
+ <p>Thank you for downloading the latest version of the SlimServer for Windows. Click on the following links to learn about each topic.</p>
+ <ul>
+ <li><a href="#service">Installation</a></li>
+ <li><a href="#Remote">Remote Playlist Management</a></li>
+ <li><a href="#moodlogic">MoodLogic Support</a></li>
+ </ul>
+ <p>If you have any questions or problems, please check the documentation built into the SlimServer web interface, or view the <a href="http://www.slimdevices.com/su_faq.html">FAQ</a>, visit our user forum at <a href="http://forums.slimdevices.com">http://forums.slimdevices.com</a> or contact our tech support team at <a href="mailto:support at slimdevices.com">support at slimdevices.com</a>.</p>
+ <p>Thanks,</p>
+ <p>The SlimServer Team</p>
+ <hr/>
+ <p><b><a name="Installation"></a>Installation</b></p>
+ <p>To open up a browser window to SlimServer, double-click on the SlimServer icon in the Windows tool tray or choose <b>Start -> All Programs -> SlimServer -> SlimServer</b>.</p>
+ <p>If you use Apple's iTunes, the SlimServer will automatically import your iTunes library information. If you use iTunes to add or remove music from its library, the SlimServer will notice and rescan the song information.</p>
+ <p>You can also use the task tray icon to stop or start the SlimServer background service.
+
+ <hr>
+ <p><b>Unicode Fonts</b></p>
+ Squeezebox players can now display unicode characters, including Japanese and other non-Latin languages.
+ To enable this display, you'll need to download a unicode TrueType font for SlimServer to use.
+ SlimServer knows how to use the following fonts:
+ <ul>
+ <li>CODE2000.TTF is available for <a href="http://home.att.net/~jameskass/code2000_page.htm">download here</a>.
+ <li>Cyberbit.ttf is available for <a href="http://ftp.netscape.com/pub/communicator/extras/fonts/windows/">download here</a>.
+ <li>arialuni.ttf is included is included in the recent versions of Microsoft Office products.
+ </ul>
+ <p>Place a copy of any of these font files in your SlimServer Graphics folder in
+ <a href="file:///C:/Program%20Files/SlimServer/server/Graphics/">C:\Program Files\SlimServer\server\Graphics</a> then restart SlimServer.
+
+ <hr>
+ <p><b>Firmware Update</b></p>
+ <p>If you own a Squeezebox, you may be prompted to update your firmware when it first connects to the SlimServer. Press and hold the Brightness button on the remote control until the firmware update begins.</p>
+ <p>If you own a SLIMP3 Player, we recommend that you use the SLIMP3 Firmware Updater to update the firmware on your SLIMP3 player to the latest version, 2.3.
+ This application is available for <a href="http://www.slimdevices.com/downloads/firmware/2.3/SLIMP3%20Firmware%20Updater.zip">download</a>.
+ You can check the version number of firmware installed on your SLIMP3 by reading the number at the lower right-hand corner of the display
+ when you plug in your SLIMP3 player.
+ </p>
+ <hr>
+ <p><b><a name="Remote"></a>Remote Playlist Management </b></p>
+ <p>The SlimServer was designed to stream MP3 music to a Squeezebox or SLIMP3 Network Music Player. However, it can also stream the same music over yoru network to any software player that supports MP3 streaming.</p>
+ <p>First, install the SlimServer software and make sure the computer to be used as a SlimServer can be reached over the Internet. If not, you will need to forward port 9000 on your router to the SlimServer computer. (Consult your router documentation for instructions). Then:</p>
+ <ul>
+ <li>Use your MP3 player software to open a stream to the the URL: <a href="http://localhost:9000/stream.mp3">http://localhost:9000/stream.mp3</a>. (Replace "localhost" with the IP address of the SlimServer computer). If you are using the SlimServer's password security, you'll need to use a slightly modified URL like this: <a href="http://username:password@localhost:9000/stream.mp3">http://username:password@localhost:9000/stream.mp3</a>. Some MP3 players will prompt you to enter your username and password.</li>
+ <li>Launch the SlimServer web interface running on the remote computer by opening the web page <a href="http://localhost:9000/">http://localhost:9000</a> (Replace "localhost" with the IP address of the remote computer). You will notice a new "player" corresponding to the IP address of the computer with the MP3 software player.</li>
+ <li>Use the left pane of the SlimServer web interface to browse and select files and playlists to be played. When music is selected, it will appear in the right pane of the web interface.</li>
+ <li>Click on "Play" in the right pane of the SlimServer web interface to launch the music.</li>
+ <li>After a couple of seconds, you will hear music playing through the MP3 software player. (The delay is due to buffering in the MP3 player software.)</li>
+ <li>To change the content playing, use the SlimServer web interface on the remote machine.</li>
+ </ul>
+ <hr/>
+ <p><b><a name="moodlogic"></a>MoodLogic Support</b></p>
+ <p>This version of the SlimServer software for Windows supports integration with the <a href="http://www.moodlogic.com/">MoodLogic</a> MP3 mix management software and associated metadata service. Install MoodLogic on your PC and identify your songs (regardless of tag information) and let MoodLogic automatically organize your collection by MoodLogic data (genre, mood, tempo, release year, etc). Once all your music is 'active' your Slim can interact with your music in exciting new ways!</p>
+ <h4>Features:</h4>
+ <ul>
+ <li>Browse your songs on your Squeezebox or SLIMP3 player by clean genre and artist information.</li>
+ <li>Create MoodLogic Instant Mixes directly with your remote!</li>
+ </ul>
+ <h4>How to create an Instant Mix:</h4>
+ <ol>
+ <li>Select a genre, artist or song that has an 'm' icon (mixable) in the top right corner.</li>
+ <li>Press AND HOLD your play button for a 2-3 seconds.</li>
+ <li>MoodLogic will create a playlist 'on the fly' with songs that fit your current mood! (for genres and artist you will be able to select one of the available moods presented)</li>
+ </ol>
+ <h4>Installation</h4>
+ <ol>
+ <li>Make sure your SlimServer and player are installed as described in this documentation.</li>
+ <li>Install MoodLogic from <a href="http://www.moodlogic.com/">http://www.moodlogic.com</a>.</li>
+ <li>Add your music to the same music folder that SlimServer uses.</li>
+ <li>Activate your music (the trial service allows 100 free activations).</li>
+ <li>Buy 10,000 activation credits to activate more songs or profile your own tracks.</li>
+ <li>Shut down MoodLogic and restart the SlimServer.</li>
+ <li>After restarting, the SlimServer will automatically detect MoodLogic. You are ready to go!</li>
+ <li>You can turn MoodLogic on and off see your server preferences in the web interface.</li>
+ </ol>
+ <h4>Known Limitations</h4>
+ <ul>
+ <li>No Mac or Linux support</li>
+ <li>Currently no album support</li>
+ <li>No way to trigger song based Instant Mix for the currently playing song</li>
+ <li>Not all skins supported (the best support is in the Default and Light skins, available under the Additional Server Settings)</li>
+ <li>The MoodLogic support doesn't work if the SlimServer software is installed as a service. Use the Control Panels->Administrative Tools->Services application to stop the SlimServer service and use the SlimServer application if you'd like to use the MoodLogic integration.</li>
+ </ul>
+ <h4>Feedback</h4>
+ <p>For questions about MoodLogic and SlimServer integration, please email: <a href="mailto:chris at moodlogic.com">chris at moodlogic.com</a></p>
+<hr>
+<p align=center>Copyright 2003-2005, Logitech. All Rights Reserved.</p>
+</body>
+</html>
Propchange: branches/6.5/platforms/win32/Getting Started.nl.html
------------------------------------------------------------------------------
svn:executable = *
Added: branches/6.5/platforms/win32/installer/Dutch.isl
URL: http://svn.slimdevices.com/branches/6.5/platforms/win32/installer/Dutch.isl?rev=11855&view=auto
==============================================================================
--- branches/6.5/platforms/win32/installer/Dutch.isl (added)
+++ branches/6.5/platforms/win32/installer/Dutch.isl Sun Apr 29 15:06:14 2007
@@ -1,0 +1,297 @@
+; *** Inno Setup version 5.1.11+ Dutch messages ***
+;
+; This file is based on user-contributed translations by various authors
+;
+; Maintained by Martijn Laan (mlaan at wintax.nl)
+;
+; $jrsoftware: issrc/Files/Languages/Dutch.isl,v 1.20 2007/02/26 23:19:59 jr Exp $
+
+[LangOptions]
+LanguageName=Nederlands
+LanguageID=$0413
+LanguageCodePage=1252
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Setup
+SetupWindowTitle=Setup - %1
+UninstallAppTitle=Verwijderen
+UninstallAppFullTitle=%1 verwijderen
+
+; *** Misc. common
+InformationTitle=Informatie
+ConfirmTitle=Bevestigen
+ErrorTitle=Fout
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Hiermee wordt %1 geïnstalleerd. Wilt u doorgaan?
+LdrCannotCreateTemp=Kan geen tijdelijk bestand maken. Setup wordt afgesloten
+LdrCannotExecTemp=Kan een bestand in de tijdelijke map niet uitvoeren. Setup wordt afgesloten
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nFout %2: %3
+SetupFileMissing=Het bestand %1 ontbreekt in de installatiemap. Corrigeer dit probleem of gebruik een andere kopie van het programma.
+SetupFileCorrupt=De installatiebestanden zijn beschadigd. Gebruik een andere kopie van het programma.
+SetupFileCorruptOrWrongVer=De installatiebestanden zijn beschadigd, of zijn niet compatibel met deze versie van Setup. Corrigeer dit probleem of gebruik een andere kopie van het programma.
+NotOnThisPlatform=Dit programma kan niet worden uitgevoerd onder %1.
+OnlyOnThisPlatform=Dit programma moet worden uitgevoerd onder %1.
+OnlyOnTheseArchitectures=Dit programma kan alleen geïnstalleerd worden onder versies van Windows ontworpen voor de volgende processor architecturen:%n%n%1
+MissingWOW64APIs=De versie van Windows die u gebruikt bevat niet de door Setup benodige functionaliteit om een 64-bit installatie uit te voeren. Installeer Service Pack %1 om dit probleem te corrigeren.
+WinVersionTooLowError=Dit programma vereist %1 versie %2 of hoger.
+WinVersionTooHighError=Dit programma kan niet worden geïnstalleerd onder %1 versie %2 of hoger.
+AdminPrivilegesRequired=U moet aangemeld zijn als een systeembeheerder om dit programma te kunnen installeren.
+PowerUserPrivilegesRequired=U moet ingelogd zijn als systeembeheerder of als gebruiker met systeembeheerders rechten om dit programma te kunnen installeren.
+SetupAppRunningError=Setup heeft vastgesteld dat %1 op dit moment actief is.%n%nSluit alle vensters van dit programma, en klik daarna op OK om verder te gaan, of op Annuleren om Setup af te sluiten.
+UninstallAppRunningError=Het verwijderprogramma heeft vastgesteld dat %1 op dit moment actief is.%n%nSluit alle vensters van dit programma, en klik daarna op OK om verder te gaan, of op Annuleren om het verwijderen af te breken.
+
+; *** Misc. errors
+ErrorCreatingDir=Setup kan de map "%1" niet maken
+ErrorTooManyFilesInDir=Kan geen bestand maken in de map "%1" omdat deze te veel bestanden bevat
+
+; *** Setup common messages
+ExitSetupTitle=Setup afsluiten
+ExitSetupMessage=Setup is niet voltooid. Als u nu afsluit, wordt het programma niet geïnstalleerd.%n%nU kunt Setup later opnieuw uitvoeren om de installatie te voltooien.%n%nSetup afsluiten?
+AboutSetupMenuItem=&Over Setup...
+AboutSetupTitle=Over Setup
+AboutSetupMessage=%1 versie %2%n%3%n%n%1-homepage:%n%4
+AboutSetupNote=
+TranslatorNote=Dutch translation maintained by Martijn Laan (mlaan at wintax.nl)
+
+; *** Buttons
+ButtonBack=< Vo&rige
+ButtonNext=&Volgende >
+ButtonInstall=&Installeren
+ButtonOK=OK
+ButtonCancel=Annuleren
+ButtonYes=&Ja
+ButtonYesToAll=Ja op &alles
+ButtonNo=&Nee
+ButtonNoToAll=N&ee op alles
+ButtonFinish=&Voltooien
+ButtonBrowse=&Bladeren...
+ButtonWizardBrowse=B&laderen...
+ButtonNewFolder=&Nieuwe map maken
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Taalkeuze voor Setup
+SelectLanguageLabel=Selecteer de taal welke Setup gebruikt tijdens de installatie:
+
+; *** Common wizard text
+ClickNext=Klik op Volgende om verder te gaan of op Annuleren om Setup af te sluiten.
+BeveledLabel=
+BrowseDialogTitle=Map Selecteren
+BrowseDialogLabel=Selecteer een map in onderstaande lijst en klik daarna op OK.
+NewFolderName=Nieuwe map
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Welkom bij het installatieprogramma van [name].
+WelcomeLabel2=Hiermee wordt [name/ver] geïnstalleerd op deze computer.%n%nU wordt aanbevolen alle actieve programma's af te sluiten voordat u verder gaat.
+
+; *** "Password" wizard page
+WizardPassword=Wachtwoord
+PasswordLabel1=Deze installatie is beveiligd met een wachtwoord.
+PasswordLabel3=Voer het wachtwoord in en klik op Volgende om verder te gaan. Wachtwoorden zijn hoofdlettergevoelig.
+PasswordEditLabel=&Wachtwoord:
+IncorrectPassword=Het ingevoerde wachtwoord is niet correct. Probeer het opnieuw.
+
+; *** "License Agreement" wizard page
+WizardLicense=Licentieovereenkomst
+LicenseLabel=Lees de volgende belangrijke informatie voordat u verder gaat.
+LicenseLabel3=Lees de volgende licentieovereenkomst. Gebruik de schuifbalk of druk op de knop Page Down om de rest van de overeenkomst te zien.
+LicenseAccepted=Ik &accepteer de licentieovereenkomst
+LicenseNotAccepted=Ik accepteer de licentieovereenkomst &niet
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informatie
+InfoBeforeLabel=Lees de volgende belangrijke informatie voordat u verder gaat.
+InfoBeforeClickLabel=Klik op Volgende als u gereed bent om verder te gaan met Setup.
+WizardInfoAfter=Informatie
+InfoAfterLabel=Lees de volgende belangrijke informatie voordat u verder gaat.
+InfoAfterClickLabel=Klik op Volgende als u gereed bent om verder te gaan met Setup.
+
+; *** "User Information" wizard page
+WizardUserInfo=Gebruikersinformatie
+UserInfoDesc=Vul hier uw informatie in.
+UserInfoName=&Gebruikersnaam:
+UserInfoOrg=&Organisatie:
+UserInfoSerial=&Serienummer:
+UserInfoNameRequired=U moet een naam invullen.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Kies de doelmap
+SelectDirDesc=Waar moet [name] geïnstalleerd worden?
+SelectDirLabel3=Setup zal [name] in de volgende map installeren.
+SelectDirBrowseLabel=Klik op Volgende om door te gaan. Klik op Bladeren om een andere map te kiezen.
+DiskSpaceMBLabel=Er is tenminste [mb] MB vrije schijfruimte vereist.
+ToUNCPathname=Setup kan niet installeren naar een UNC-padnaam. Als u wilt installeren naar een netwerk, moet u een netwerkverbinding maken.
+InvalidPath=U moet een volledig pad met stationsletter invoeren; bijvoorbeeld:%nC:\APP%n%nof een UNC pad zoals:%n%n\\server\share
+InvalidDrive=Het geselecteerde station bestaat niet. Kies een ander station.
+DiskSpaceWarningTitle=Onvoldoende schijfruimte
+DiskSpaceWarning=Setup vereist ten minste %1 kB vrije schijfruimte voor het installeren, maar het geselecteerde station heeft slechts %2 kB beschikbaar.%n%nWilt u toch doorgaan?
+DirNameTooLong=De mapnaam of het pad is te lang.
+InvalidDirName=De mapnaam is ongeldig.
+BadDirName32=Mapnamen mogen geen van de volgende tekens bevatten:%n%n%1
+DirExistsTitle=Map bestaat al
+DirExists=De map:%n%n%1%n%nbestaat al. Wilt u toch naar die map installeren?
+DirDoesntExistTitle=Map bestaat niet
+DirDoesntExist=De map:%n%n%1%n%nbestaat niet. Wilt u de map aanmaken?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Selecteer componenten
+SelectComponentsDesc=Welke componenten moeten geïnstalleerd worden?
+SelectComponentsLabel2=Selecteer de componenten die u wilt installeren. Klik op Volgende als u klaar bent om verder te gaan.
+FullInstallation=Volledige installatie
+CompactInstallation=Compacte installatie
+CustomInstallation=Aangepaste installatie
+NoUninstallWarningTitle=Component bestaat
+NoUninstallWarning=Setup heeft gedetecteerd dat de volgende componenten al geïnstalleerd zijn op uw computer:%n%n%1%n%nAls u de selectie van deze componenten ongedaan maakt, worden ze niet verwijderd.%n%nWilt u toch doorgaan?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=De huidige selectie vereist ten minste [mb] MB vrije schijfruimte.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Selecteer extra taken
+SelectTasksDesc=Welke extra taken moeten uitgevoerd worden?
+SelectTasksLabel2=Selecteer de extra taken die u door Setup wilt laten uitvoeren bij het installeren van [name], en klik vervolgens op Volgende.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Selecteer menu Start map
+SelectStartMenuFolderDesc=Waar moeten de snelkoppelingen van het programma geplaatst worden?
+SelectStartMenuFolderLabel3=Setup plaatst de snelkoppelingen van het programma in de volgende menu Start map.
+SelectStartMenuFolderBrowseLabel=Klik op Volgende om door te gaan. Klik op Bladeren om een andere map te kiezen.
+MustEnterGroupName=U moet een mapnaam invoeren.
+GroupNameTooLong=De mapnaam of het pad is te lang.
+InvalidGroupName=De mapnaam is ongeldig.
+BadGroupName=De mapnaam mag geen van de volgende tekens bevatten:%n%n%1
+NoProgramGroupCheck2=&Geen menu Start map maken
+
+; *** "Ready to Install" wizard page
+WizardReady=Het voorbereiden van de installatie is gereed
+ReadyLabel1=Setup is nu gereed om te beginnen met het installeren van [name] op deze computer.
+ReadyLabel2a=Klik op Installeren om verder te gaan met installeren, of klik op Vorige als u instellingen wilt terugzien of veranderen.
+ReadyLabel2b=Klik op Installeren om verder te gaan met installeren.
+ReadyMemoUserInfo=Gebruikersinformatie:
+ReadyMemoDir=Doelmap:
+ReadyMemoType=Installatietype:
+ReadyMemoComponents=Geselecteerde componenten:
+ReadyMemoGroup=Menu Start map:
+ReadyMemoTasks=Extra taken:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Bezig met het voorbereiden van de installatie
+PreparingDesc=Bezig met het voorbereiden van [name] installatie.
+PreviousInstallNotCompleted=De installatie/verwijdering van een vorig programma is niet voltooid. U moet uw computer opnieuw opstarten om die installatie te voltooien.%n%nStart [name] Setup nogmaals als uw computer opnieuw is opgetart .
+CannotContinue=Setup kan niet doorgaan. Klik op annuleren om af te sluiten.
+
+; *** "Installing" wizard page
+WizardInstalling=Bezig met installeren
+InstallingLabel=Setup installeert [name] op uw computer. Een ogenblik geduld...
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Setup heeft het installeren van [name] op deze computer voltooid.
+FinishedLabelNoIcons=Setup heeft het installeren van [name] op deze computer voltooid.
+FinishedLabel=Setup heeft het installeren van [name] op deze computer voltooid. U kunt het programma uitvoeren met de geïnstalleerde snelkoppelingen.
+ClickFinish=Klik op Voltooien om Setup te beëindigen.
+FinishedRestartLabel=Setup moet de computer opnieuw opstarten om de installatie van [name] te voltooien. Wilt u nu opnieuw opstarten?
+FinishedRestartMessage=Setup moet uw computer opnieuw opstarten om de installatie van [name] te voltooien.%n%nWilt u nu opnieuw opstarten?
+ShowReadmeCheck=Ja, ik wil het bestand Leesmij zien
+YesRadio=&Ja, start de computer nu opnieuw op
+NoRadio=&Nee, ik start de computer later opnieuw op
+RunEntryExec=Start %1
+RunEntryShellExec=Bekijk %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Setup heeft de volgende diskette nodig
+SelectDiskLabel2=Voer diskette %1 in en klik op OK.%n%nAls de bestanden op deze diskette in een andere map gevonden kunnen worden dan die hieronder wordt getoond, voer dan het juiste pad in of klik op Bladeren.
+PathLabel=&Pad:
+FileNotInDir2=Kan het bestand "%1" niet vinden in "%2". Voer de juiste diskette in of kies een andere map.
+SelectDirectoryLabel=Geef de locatie van de volgende diskette.
+
+; *** Installation phase messages
+SetupAborted=Setup is niet voltooid.%n%nCorrigeer het probleem en voer Setup opnieuw uit.
+EntryAbortRetryIgnore=Klik op Opnieuw om het opnieuw te proberen, op Negeren om toch door te gaan, of op Afbreken om de installatie af te breken.
+
+; *** Installation status messages
+StatusCreateDirs=Mappen maken...
+StatusExtractFiles=Bestanden uitpakken...
+StatusCreateIcons=Snelkoppelingen maken...
+StatusCreateIniEntries=INI-gegevens instellen...
+StatusCreateRegistryEntries=Registergegevens instellen...
+StatusRegisterFiles=Bestanden registreren...
+StatusSavingUninstall=Verwijderingsinformatie opslaan...
+StatusRunProgram=Installatie voltooien...
+StatusRollback=Veranderingen ongedaan maken...
+
+; *** Misc. errors
+ErrorInternal2=Interne fout: %1
+ErrorFunctionFailedNoCode=%1 mislukt
+ErrorFunctionFailed=%1 mislukt; code %2
+ErrorFunctionFailedWithMessage=%1 mislukt; code %2.%n%3
+ErrorExecutingProgram=Kan bestand niet uitvoeren:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Fout bij het openen van registersleutel:%n%1\%2
+ErrorRegCreateKey=Fout bij het maken van registersleutel:%n%1\%2
+ErrorRegWriteKey=Fout bij het schrijven naar registersleutel:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Fout bij het maken van een INI-instelling in bestand "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Klik op Opnieuw om het opnieuw te proberen, op Negeren om toch door te gaan (niet aanbevolen), of op Afbreken om de installatie af te breken.
+FileAbortRetryIgnore2=Klik op Opnieuw om het opnieuw te proberen, op Negeren om toch door te gaan (niet aanbevolen), of op Afbreken om de installatie af te breken.
+SourceIsCorrupted=Het bronbestand is beschadigd
+SourceDoesntExist=Het bronbestand "%1" bestaat niet
+ExistingFileReadOnly=Het bestaande bestand is gemarkeerd als alleen-lezen.%n%nKlik op Opnieuw om het kenmerk alleen-lezen te verwijderen en opnieuw te proberen, op Negeren om dit bestand over te slaan, of op Afbreken om de installatie af te breken.
+ErrorReadingExistingDest=Er is een fout opgetreden bij het lezen van het bestaande bestand:
+FileExists=Het bestand bestaat al.%n%nWilt u dat Setup het overschrijft?
+ExistingFileNewer=Het bestaande bestand is nieuwer dan het bestand dat Setup probeert te installeren. U wordt aanbevolen het bestaande bestand te behouden.%n%nWilt u het bestaande bestand behouden?
+ErrorChangingAttr=Er is een fout opgetreden bij het wijzigen van de kenmerken van het bestaande bestand:
+ErrorCreatingTemp=Er is een fout opgetreden bij het maken van een bestand in de doelmap:
+ErrorReadingSource=Er is een fout opgetreden bij het lezen van het bronbestand:
+ErrorCopying=Er is een fout opgetreden bij het kopiëren van een bestand:
+ErrorReplacingExistingFile=Er is een fout opgetreden bij het vervangen van het bestaande bestand:
+ErrorRestartReplace=Vervangen na opnieuw starten is mislukt:
+ErrorRenamingTemp=Er is een fout opgetreden bij het hernoemen van een bestand in de doelmap:
+ErrorRegisterServer=Kan de DLL/OCX niet registreren: %1
+ErrorRegSvr32Failed=RegSvr32 mislukt met code %1
+ErrorRegisterTypeLib=Kan de type library niet registreren: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Er is een fout opgetreden bij het openen van het Leesmij-bestand.
+ErrorRestartingComputer=Setup kan de computer niet opnieuw opstarten. Doe dit handmatig.
+
+; *** Uninstaller messages
+UninstallNotFound=Bestand "%1" bestaat niet. Kan het programma niet verwijderen.
+UninstallUnsupportedVer=Het installatie-logbestand "%1" heeft een formaat dat niet herkend wordt door deze versie van het verwijderprogramma. Kan het programma niet verwijderen
+UninstallUnknownEntry=Er is een onbekend gegeven (%1) aangetroffen in het installatie-logbestand
+ConfirmUninstall=Weet u zeker dat u %1 en alle bijbehorende componenten wilt verwijderen?
+UninstallOnlyOnWin64=Deze installatie kan alleen worden verwijderd onder 64-bit Windows.
+OnlyAdminCanUninstall=Deze installatie kan alleen worden verwijderd door een gebruiker met administratieve rechten.
+UninstallStatusLabel=%1 wordt verwijderd van uw computer. Een ogenblik geduld.
+UninstallOpenError=Bestand "%1" kon niet worden geopend. Kan het verwijderen niet voltooien.
+UninstalledAll=%1 is met succes van deze computer verwijderd.
+UninstalledMost=Het verwijderen van %1 is voltooid.%n%nEnkele elementen konden niet verwijderd worden. Deze kunnen handmatig verwijderd worden.
+UninstalledAndNeedsRestart=Om het verwijderen van %1 te voltooien, moet uw computer opnieuw worden opgestart.%n%nWilt u nu opnieuw opstarten?
+UninstallDataCorrupted="%1" bestand is beschadigd. Kan verwijderen niet voltooien
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Gedeeld bestand verwijderen?
+ConfirmDeleteSharedFile2=Het systeem geeft aan dat het volgende gedeelde bestand niet langer gebruikt wordt door enig programma. Wilt u dat dit gedeelde bestand verwijderd wordt?%n%nAls dit bestand toch nog gebruikt wordt door een programma en het verwijderd wordt, werkt dat programma misschien niet meer correct. Als u het niet zeker weet, kies dan Nee. Bewaren van het bestand op dit systeem is niet schadelijk.
+SharedFileNameLabel=Bestandsnaam:
+SharedFileLocationLabel=Locatie:
+WizardUninstalling=Verwijderingsstatus
+StatusUninstalling=Verwijderen van %1...
+
+[CustomMessages]
+
+NameAndVersion=%1 versie %2
+AdditionalIcons=Extra snelkoppelingen:
+CreateDesktopIcon=Maak een snelkoppeling op het &bureaublad
+CreateQuickLaunchIcon=Maak een snelkoppeling op de &Snel starten werkbalk
+ProgramOnTheWeb=%1 op het Web
+UninstallProgram=Verwijder %1
+LaunchProgram=&Start %1
+AssocFileExtension=&Koppel %1 aan de %2 bestandsextensie
+AssocingFileExtension=Bezig met koppelen van %1 aan de %2 bestandsextensie...
Propchange: branches/6.5/platforms/win32/installer/Dutch.isl
------------------------------------------------------------------------------
svn:executable = *
Added: branches/6.5/platforms/win32/installer/English.isl
URL: http://svn.slimdevices.com/branches/6.5/platforms/win32/installer/English.isl?rev=11855&view=auto
==============================================================================
--- branches/6.5/platforms/win32/installer/English.isl (added)
+++ branches/6.5/platforms/win32/installer/English.isl Sun Apr 29 15:06:14 2007
@@ -1,0 +1,317 @@
+; *** Inno Setup version 5.1.11+ English messages ***
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/is3rdparty.php
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=English
+LanguageID=$0409
+LanguageCodePage=0
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Setup
+SetupWindowTitle=Setup - %1
+UninstallAppTitle=Uninstall
+UninstallAppFullTitle=%1 Uninstall
+
+; *** Misc. common
+InformationTitle=Information
+ConfirmTitle=Confirm
+ErrorTitle=Error
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=This will install %1. Do you wish to continue?
+LdrCannotCreateTemp=Unable to create a temporary file. Setup aborted
+LdrCannotExecTemp=Unable to execute file in the temporary directory. Setup aborted
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nError %2: %3
+SetupFileMissing=The file %1 is missing from the installation directory. Please correct the problem or obtain a new copy of the program.
+SetupFileCorrupt=The setup files are corrupted. Please obtain a new copy of the program.
+SetupFileCorruptOrWrongVer=The setup files are corrupted, or are incompatible with this version of Setup. Please correct the problem or obtain a new copy of the program.
+NotOnThisPlatform=This program will not run on %1.
+OnlyOnThisPlatform=This program must be run on %1.
+OnlyOnTheseArchitectures=This program can only be installed on versions of Windows designed for the following processor architectures:%n%n%1
+MissingWOW64APIs=The version of Windows you are running does not include functionality required by Setup to perform a 64-bit installation. To correct this problem, please install Service Pack %1.
+WinVersionTooLowError=This program requires %1 version %2 or later.
+WinVersionTooHighError=This program cannot be installed on %1 version %2 or later.
+AdminPrivilegesRequired=You must be logged in as an administrator when installing this program.
+PowerUserPrivilegesRequired=You must be logged in as an administrator or as a member of the Power Users group when installing this program.
+SetupAppRunningError=Setup has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit.
+UninstallAppRunningError=Uninstall has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit.
+
+; *** Misc. errors
+ErrorCreatingDir=Setup was unable to create the directory "%1"
+ErrorTooManyFilesInDir=Unable to create a file in the directory "%1" because it contains too many files
+
+; *** Setup common messages
+ExitSetupTitle=Exit Setup
+ExitSetupMessage=Setup is not complete. If you exit now, the program will not be installed.%n%nYou may run Setup again at another time to complete the installation.%n%nExit Setup?
+AboutSetupMenuItem=&About Setup...
+AboutSetupTitle=About Setup
+AboutSetupMessage=%1 version %2%n%3%n%n%1 home page:%n%4
+AboutSetupNote=
+TranslatorNote=
+
+; *** Buttons
+ButtonBack=< &Back
+ButtonNext=&Next >
+ButtonInstall=&Install
+ButtonOK=OK
+ButtonCancel=Cancel
+ButtonYes=&Yes
+ButtonYesToAll=Yes to &All
+ButtonNo=&No
+ButtonNoToAll=N&o to All
+ButtonFinish=&Finish
+ButtonBrowse=&Browse...
+ButtonWizardBrowse=B&rowse...
+ButtonNewFolder=&Make New Folder
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Select Setup Language
+SelectLanguageLabel=Select the language to use during the installation:
+
+; *** Common wizard text
+ClickNext=Click Next to continue, or Cancel to exit Setup.
+BeveledLabel=
+BrowseDialogTitle=Browse For Folder
+BrowseDialogLabel=Select a folder in the list below, then click OK.
+NewFolderName=New Folder
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Welcome to the [name] Setup Wizard
+WelcomeLabel2=This will install [name/ver] on your computer.%n%nIt is recommended that you close all other applications before continuing.
+
+; *** "Password" wizard page
+WizardPassword=Password
+PasswordLabel1=This installation is password protected.
+PasswordLabel3=Please provide the password, then click Next to continue. Passwords are case-sensitive.
+PasswordEditLabel=&Password:
+IncorrectPassword=The password you entered is not correct. Please try again.
+
+; *** "License Agreement" wizard page
+WizardLicense=License Agreement
+LicenseLabel=Please read the following important information before continuing.
+LicenseLabel3=Please read the following License Agreement. You must accept the terms of this agreement before continuing with the installation.
+LicenseAccepted=I &accept the agreement
+LicenseNotAccepted=I &do not accept the agreement
+
+; *** "Information" wizard pages
+WizardInfoBefore=Information
+InfoBeforeLabel=Please read the following important information before continuing.
+InfoBeforeClickLabel=When you are ready to continue with Setup, click Next.
+WizardInfoAfter=Information
+InfoAfterLabel=Please read the following important information before continuing.
+InfoAfterClickLabel=When you are ready to continue with Setup, click Next.
+
+; *** "User Information" wizard page
+WizardUserInfo=User Information
+UserInfoDesc=Please enter your information.
+UserInfoName=&User Name:
+UserInfoOrg=&Organization:
+UserInfoSerial=&Serial Number:
+UserInfoNameRequired=You must enter a name.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Select Destination Location
+SelectDirDesc=Where should [name] be installed?
+SelectDirLabel3=Setup will install [name] into the following folder.
+SelectDirBrowseLabel=To continue, click Next. If you would like to select a different folder, click Browse.
+DiskSpaceMBLabel=At least [mb] MB of free disk space is required.
+ToUNCPathname=Setup cannot install to a UNC pathname. If you are trying to install to a network, you will need to map a network drive.
+InvalidPath=You must enter a full path with drive letter; for example:%n%nC:\APP%n%nor a UNC path in the form:%n%n\\server\share
+InvalidDrive=The drive or UNC share you selected does not exist or is not accessible. Please select another.
+DiskSpaceWarningTitle=Not Enough Disk Space
+DiskSpaceWarning=Setup requires at least %1 KB of free space to install, but the selected drive only has %2 KB available.%n%nDo you want to continue anyway?
+DirNameTooLong=The folder name or path is too long.
+InvalidDirName=The folder name is not valid.
+BadDirName32=Folder names cannot include any of the following characters:%n%n%1
+DirExistsTitle=Folder Exists
+DirExists=The folder:%n%n%1%n%nalready exists. Would you like to install to that folder anyway?
+DirDoesntExistTitle=Folder Does Not Exist
+DirDoesntExist=The folder:%n%n%1%n%ndoes not exist. Would you like the folder to be created?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Select Components
+SelectComponentsDesc=Which components should be installed?
+SelectComponentsLabel2=Select the components you want to install; clear the components you do not want to install. Click Next when you are ready to continue.
+FullInstallation=Full installation
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Compact installation
+CustomInstallation=Custom installation
+NoUninstallWarningTitle=Components Exist
+NoUninstallWarning=Setup has detected that the following components are already installed on your computer:%n%n%1%n%nDeselecting these components will not uninstall them.%n%nWould you like to continue anyway?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Current selection requires at least [mb] MB of disk space.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Select Additional Tasks
+SelectTasksDesc=Which additional tasks should be performed?
+SelectTasksLabel2=Select the additional tasks you would like Setup to perform while installing [name], then click Next.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Select Start Menu Folder
+SelectStartMenuFolderDesc=Where should Setup place the program's shortcuts?
+SelectStartMenuFolderLabel3=Setup will create the program's shortcuts in the following Start Menu folder.
+SelectStartMenuFolderBrowseLabel=To continue, click Next. If you would like to select a different folder, click Browse.
+MustEnterGroupName=You must enter a folder name.
+GroupNameTooLong=The folder name or path is too long.
+InvalidGroupName=The folder name is not valid.
+BadGroupName=The folder name cannot include any of the following characters:%n%n%1
+NoProgramGroupCheck2=&Don't create a Start Menu folder
+
+; *** "Ready to Install" wizard page
+WizardReady=Ready to Install
+ReadyLabel1=Setup is now ready to begin installing [name] on your computer.
+ReadyLabel2a=Click Install to continue with the installation, or click Back if you want to review or change any settings.
+ReadyLabel2b=Click Install to continue with the installation.
+ReadyMemoUserInfo=User information:
+ReadyMemoDir=Destination location:
+ReadyMemoType=Setup type:
+ReadyMemoComponents=Selected components:
+ReadyMemoGroup=Start Menu folder:
+ReadyMemoTasks=Additional tasks:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Preparing to Install
+PreparingDesc=Setup is preparing to install [name] on your computer.
+PreviousInstallNotCompleted=The installation/removal of a previous program was not completed. You will need to restart your computer to complete that installation.%n%nAfter restarting your computer, run Setup again to complete the installation of [name].
+CannotContinue=Setup cannot continue. Please click Cancel to exit.
+
+; *** "Installing" wizard page
+WizardInstalling=Installing
+InstallingLabel=Please wait while Setup installs [name] on your computer.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Completing the [name] Setup Wizard
+FinishedLabelNoIcons=Setup has finished installing [name] on your computer.
+FinishedLabel=Setup has finished installing [name] on your computer. The application may be launched by selecting the installed icons.
+ClickFinish=Click Finish to exit Setup.
+FinishedRestartLabel=To complete the installation of [name], Setup must restart your computer. Would you like to restart now?
+FinishedRestartMessage=To complete the installation of [name], Setup must restart your computer.%n%nWould you like to restart now?
+ShowReadmeCheck=Yes, I would like to view the README file
+YesRadio=&Yes, restart the computer now
+NoRadio=&No, I will restart the computer later
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Run %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=View %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Setup Needs the Next Disk
+SelectDiskLabel2=Please insert Disk %1 and click OK.%n%nIf the files on this disk can be found in a folder other than the one displayed below, enter the correct path or click Browse.
+PathLabel=&Path:
+FileNotInDir2=The file "%1" could not be located in "%2". Please insert the correct disk or select another folder.
+SelectDirectoryLabel=Please specify the location of the next disk.
+
+; *** Installation phase messages
+SetupAborted=Setup was not completed.%n%nPlease correct the problem and run Setup again.
+EntryAbortRetryIgnore=Click Retry to try again, Ignore to proceed anyway, or Abort to cancel installation.
+
+; *** Installation status messages
+StatusCreateDirs=Creating directories...
+StatusExtractFiles=Extracting files...
+StatusCreateIcons=Creating shortcuts...
+StatusCreateIniEntries=Creating INI entries...
+StatusCreateRegistryEntries=Creating registry entries...
+StatusRegisterFiles=Registering files...
+StatusSavingUninstall=Saving uninstall information...
+StatusRunProgram=Finishing installation...
+StatusRollback=Rolling back changes...
+
+; *** Misc. errors
+ErrorInternal2=Internal error: %1
+ErrorFunctionFailedNoCode=%1 failed
+ErrorFunctionFailed=%1 failed; code %2
+ErrorFunctionFailedWithMessage=%1 failed; code %2.%n%3
+ErrorExecutingProgram=Unable to execute file:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Error opening registry key:%n%1\%2
+ErrorRegCreateKey=Error creating registry key:%n%1\%2
+ErrorRegWriteKey=Error writing to registry key:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Error creating INI entry in file "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Click Retry to try again, Ignore to skip this file (not recommended), or Abort to cancel installation.
+FileAbortRetryIgnore2=Click Retry to try again, Ignore to proceed anyway (not recommended), or Abort to cancel installation.
+SourceIsCorrupted=The source file is corrupted
+SourceDoesntExist=The source file "%1" does not exist
+ExistingFileReadOnly=The existing file is marked as read-only.%n%nClick Retry to remove the read-only attribute and try again, Ignore to skip this file, or Abort to cancel installation.
+ErrorReadingExistingDest=An error occurred while trying to read the existing file:
+FileExists=The file already exists.%n%nWould you like Setup to overwrite it?
+ExistingFileNewer=The existing file is newer than the one Setup is trying to install. It is recommended that you keep the existing file.%n%nDo you want to keep the existing file?
+ErrorChangingAttr=An error occurred while trying to change the attributes of the existing file:
+ErrorCreatingTemp=An error occurred while trying to create a file in the destination directory:
+ErrorReadingSource=An error occurred while trying to read the source file:
+ErrorCopying=An error occurred while trying to copy a file:
+ErrorReplacingExistingFile=An error occurred while trying to replace the existing file:
+ErrorRestartReplace=RestartReplace failed:
+ErrorRenamingTemp=An error occurred while trying to rename a file in the destination directory:
+ErrorRegisterServer=Unable to register the DLL/OCX: %1
+ErrorRegSvr32Failed=RegSvr32 failed with exit code %1
+ErrorRegisterTypeLib=Unable to register the type library: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=An error occurred while trying to open the README file.
+ErrorRestartingComputer=Setup was unable to restart the computer. Please do this manually.
+
+; *** Uninstaller messages
+UninstallNotFound=File "%1" does not exist. Cannot uninstall.
+UninstallOpenError=File "%1" could not be opened. Cannot uninstall
+UninstallUnsupportedVer=The uninstall log file "%1" is in a format not recognized by this version of the uninstaller. Cannot uninstall
+UninstallUnknownEntry=An unknown entry (%1) was encountered in the uninstall log
+ConfirmUninstall=Are you sure you want to completely remove %1 and all of its components?
+UninstallOnlyOnWin64=This installation can only be uninstalled on 64-bit Windows.
+OnlyAdminCanUninstall=This installation can only be uninstalled by a user with administrative privileges.
+UninstallStatusLabel=Please wait while %1 is removed from your computer.
+UninstalledAll=%1 was successfully removed from your computer.
+UninstalledMost=%1 uninstall complete.%n%nSome elements could not be removed. These can be removed manually.
+UninstalledAndNeedsRestart=To complete the uninstallation of %1, your computer must be restarted.%n%nWould you like to restart now?
+UninstallDataCorrupted="%1" file is corrupted. Cannot uninstall
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Remove Shared File?
+ConfirmDeleteSharedFile2=The system indicates that the following shared file is no longer in use by any programs. Would you like for Uninstall to remove this shared file?%n%nIf any programs are still using this file and it is removed, those programs may not function properly. If you are unsure, choose No. Leaving the file on your system will not cause any harm.
+SharedFileNameLabel=File name:
+SharedFileLocationLabel=Location:
+WizardUninstalling=Uninstall Status
+StatusUninstalling=Uninstalling %1...
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 version %2
+AdditionalIcons=Additional icons:
+CreateDesktopIcon=Create a &desktop icon
+CreateQuickLaunchIcon=Create a &Quick Launch icon
+ProgramOnTheWeb=%1 on the Web
+UninstallProgram=Uninstall %1
+LaunchProgram=Launch %1
+AssocFileExtension=&Associate %1 with the %2 file extension
+AssocingFileExtension=Associating %1 with the %2 file extension...
Propchange: branches/6.5/platforms/win32/installer/English.isl
------------------------------------------------------------------------------
svn:executable = *
Added: branches/6.5/platforms/win32/installer/French.isl
URL: http://svn.slimdevices.com/branches/6.5/platforms/win32/installer/French.isl?rev=11855&view=auto
==============================================================================
--- branches/6.5/platforms/win32/installer/French.isl (added)
+++ branches/6.5/platforms/win32/installer/French.isl Sun Apr 29 15:06:14 2007
@@ -1,0 +1,312 @@
+; *** Inno Setup version 5.1.11+ French messages ***
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/is3rdparty.php
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+;
+; Maintained by Pierre Yager (pierre at levosgien.net)
+;
+; Contributors : Frédéric Bonduelle, Francis Pallini
+;
+; $jrsoftware: issrc/Files/Languages/French.isl,v 1.14 2007/02/27 18:22:41 jr Exp $
+
+[LangOptions]
+LanguageName=Fran<00E7>ais
+LanguageID=$040C
+LanguageCodePage=1252
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Installation
+SetupWindowTitle=Installation - %1
+UninstallAppTitle=Désinstallation
+UninstallAppFullTitle=Désinstallation - %1
+
+; *** Misc. common
+InformationTitle=Information
+ConfirmTitle=Confirmation
+ErrorTitle=Erreur
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Cet assistant va installer %1. Voulez-vous continuer ?
+LdrCannotCreateTemp=Impossible de créer un fichier temporaire. Abandon de l'installation
+LdrCannotExecTemp=Impossible d'exécuter un fichier depuis le dossier temporaire. Abandon de l'installation
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nErreur %2 : %3
+SetupFileMissing=Le fichier %1 est absent du dossier d'installation. Veuillez corriger le problème ou vous procurer une nouvelle copie du programme.
+SetupFileCorrupt=Les fichiers d'installation sont altérés. Veuillez vous procurer une nouvelle copie du programme.
+SetupFileCorruptOrWrongVer=Les fichiers d'installation sont altérés ou ne sont pas compatibles avec cette version de l'assistant d'installation. Veuillez corriger le problème ou vous procurer une nouvelle copie du programme.
+NotOnThisPlatform=Ce programme ne fonctionne pas sous %1.
+OnlyOnThisPlatform=Ce programme ne peut fonctionner que sous %1.
+OnlyOnTheseArchitectures=Ce programme ne peut être installé que sur des versions de Windows qui supportent ces architectures : %n%n%1
+MissingWOW64APIs=La version de Windows que vous utilisez ne dispose pas des fonctionnalités nécessaires pour que l'assistant puisse réaliser une installation 64 bits. Pour corriger ce problème vous devez installer le Service Pack %1.
+WinVersionTooLowError=Ce programme requiert la version %2 ou supérieure de %1.
+WinVersionTooHighError=Ce programme ne peut pas être installé sous %1 version %2 ou supérieure.
+AdminPrivilegesRequired=Vous devez disposer des droits d'administration de cet ordinateur pour installer ce programme.
+PowerUserPrivilegesRequired=Vous devez disposer des droits d'administration ou faire partie du groupe "Utilisateurs avec pouvoir" de cet ordinateur pour installer ce programme.
+SetupAppRunningError=L'assistant d'installation a détecté que %1 est actuellement en cours d'exécution.%n%nVeuillez fermer toutes les instances de cette application puis appuyer sur OK pour continuer, ou bien appuyer sur Annuler pour abandonner l'installation.
+UninstallAppRunningError=La procédure de désinstallation a détecté que %1 est actuellement en cours d'exécution.%n%nVeuillez fermer toutes les instances de cette application puis appuyer sur OK pour continuer, ou bien appuyer sur Annuler pour abandonner la désinstallation.
+
+; *** Misc. errors
+ErrorCreatingDir=L'assistant d'installation n'a pas pu créer le dossier "%1"
+ErrorTooManyFilesInDir=L'assistant d'installation n'a pas pu créer un fichier dans le dossier "%1" car celui-ci contient trop de fichiers
+
+; *** Setup common messages
+ExitSetupTitle=Quitter l'installation
+ExitSetupMessage=L'installation n'est pas terminée. Si vous abandonnez maintenant, le programme ne sera pas installé.%n%nVous devrez relancer cet assistant pour finir l'installation.%n%nVoulez-vous quand même quitter l'assistant d'installation ?
+AboutSetupMenuItem=&A propos...
+AboutSetupTitle=A Propos de l'assistant d'installation
+AboutSetupMessage=%1 version %2%n%3%n%nPage d'accueil de %1 :%n%4
+AboutSetupNote=
+TranslatorNote=French translation maintained by Pierre Yager (pierre at levosgien.net)
+
+; *** Buttons
+ButtonBack=< &Précédent
+ButtonNext=&Suivant >
+ButtonInstall=&Installer
+ButtonOK=OK
+ButtonCancel=Annuler
+ButtonYes=&Oui
+ButtonYesToAll=Oui pour &Tout
+ButtonNo=&Non
+ButtonNoToAll=N&on pour Tout
+ButtonFinish=&Terminer
+ButtonBrowse=Pa&rcourir...
+ButtonWizardBrowse=Pa&rcourir...
+ButtonNewFolder=Nouveau &Dossier
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Langue de l'assistant d'installation
+SelectLanguageLabel=Veuillez sélectionner la langue qui sera utilisée par l'assistant d'installation :
+
+; *** Common wizard text
+ClickNext=Appuyez sur Suivant pour continuer ou sur Annuler pour abandonner l'installation.
+BeveledLabel=
+BrowseDialogTitle=Parcourir les dossiers
+BrowseDialogLabel=Veuillez choisir un dossier de destination, puis appuyez sur OK.
+NewFolderName=Nouveau dossier
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Bienvenue dans l'assistant d'installation de [name]
+WelcomeLabel2=Cet assistant va vous guider dans l'installation de [name/ver] sur votre ordinateur.%n%nIl est recommandé de fermer toutes les applications actives avant de continuer.
+
+; *** "Password" wizard page
+WizardPassword=Mot de passe
+PasswordLabel1=Cette installation est protégée par un mot de passe.
+PasswordLabel3=Veuillez saisir le mot de passe (attention à la distinction entre majuscules et minuscules) puis appuyez sur Suivant pour continuer.
+PasswordEditLabel=&Mot de passe :
+IncorrectPassword=Le mot de passe saisi n'est pas valide. Veuillez essayer à nouveau.
+
+; *** "License Agreement" wizard page
+WizardLicense=Accord de licence
+LicenseLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
+LicenseLabel3=Veuillez lire le contrat de licence suivant. Vous devez en accepter tous les termes avant de continuer l'installation.
+LicenseAccepted=Je comprends et j'&accepte les termes du contrat de licence
+LicenseNotAccepted=Je &refuse les termes du contrat de licence
+
+; *** "Information" wizard pages
+WizardInfoBefore=Information
+InfoBeforeLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
+InfoBeforeClickLabel=Lorsque vous êtes prêt à continuer, appuyez sur Suivant.
+WizardInfoAfter=Information
+InfoAfterLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
+InfoAfterClickLabel=Lorsque vous êtes prêt à continuer, appuyez sur Suivant.
+
+; *** "User Information" wizard page
+WizardUserInfo=Informations sur l'Utilisateur
+UserInfoDesc=Veuillez saisir les informations qui vous concernent.
+UserInfoName=&Nom d'utilisateur :
+UserInfoOrg=&Organisation :
+UserInfoSerial=Numéro de &série :
+UserInfoNameRequired=Vous devez au moins saisir un nom.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Dossier de destination
+SelectDirDesc=Où [name] doit-il être installé ?
+SelectDirLabel3=L'assistant va installer [name] dans le dossier suivant.
+SelectDirBrowseLabel=Pour continuer, appuyez sur Suivant. Si vous souhaitez choisir un dossier différent, appuyez sur Parcourir.
+DiskSpaceMBLabel=Le programme requ