[tuxdroid-svn] r4573 - in software_suite_v2/software/tuxdroid_software_updater/trunk: . locale loc
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-04-21 11:41:17
|
Author: remi
Date: 2009-04-21 13:41:05 +0200 (Tue, 21 Apr 2009)
New Revision: 4573
Added:
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/ar/
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/ar/LC_MESSAGES/
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/ar/LC_MESSAGES/default.mo
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/ar/LC_MESSAGES/default.po
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/da/
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/da/LC_MESSAGES/
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/da/LC_MESSAGES/default.mo
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/da/LC_MESSAGES/default.po
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/no/
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/no/LC_MESSAGES/
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/no/LC_MESSAGES/default.mo
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/no/LC_MESSAGES/default.po
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/pt/
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/pt/LC_MESSAGES/
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/pt/LC_MESSAGES/default.mo
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/pt/LC_MESSAGES/default.po
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/sv/
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/sv/LC_MESSAGES/
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/sv/LC_MESSAGES/default.mo
software_suite_v2/software/tuxdroid_software_updater/trunk/locale/sv/LC_MESSAGES/default.po
Modified:
software_suite_v2/software/tuxdroid_software_updater/trunk/LanguageSelectionGUI.pas
software_suite_v2/software/tuxdroid_software_updater/trunk/Unit1.dfm
software_suite_v2/software/tuxdroid_software_updater/trunk/Unit1.pas
Log:
* added more languages in the software updater
Modified: software_suite_v2/software/tuxdroid_software_updater/trunk/LanguageSelectionGUI.pas
===================================================================
--- software_suite_v2/software/tuxdroid_software_updater/trunk/LanguageSelectionGUI.pas 2009-04-21 10:27:47 UTC (rev 4572)
+++ software_suite_v2/software/tuxdroid_software_updater/trunk/LanguageSelectionGUI.pas 2009-04-21 11:41:05 UTC (rev 4573)
@@ -53,6 +53,16 @@
WriteString('Language', 'es');
if Combobox1.Text = 'German' then
WriteString('Language', 'de');
+ if Combobox1.Text = 'Arabic' then
+ WriteString('Language', 'ar');
+ if Combobox1.Text = 'Danish' then
+ WriteString('Language', 'da');
+ if Combobox1.Text = 'Swedish' then
+ WriteString('Language', 'sv');
+ if Combobox1.Text = 'Norwegian' then
+ WriteString('Language', 'no');
+ if Combobox1.Text = 'Portuguese' then
+ WriteString('Language', 'pt');
TUXDROID_INSTALL_LANGUAGE := ReadString('Language');
CloseKey;
end;
Modified: software_suite_v2/software/tuxdroid_software_updater/trunk/Unit1.dfm
===================================================================
--- software_suite_v2/software/tuxdroid_software_updater/trunk/Unit1.dfm 2009-04-21 10:27:47 UTC (rev 4572)
+++ software_suite_v2/software/tuxdroid_software_updater/trunk/Unit1.dfm 2009-04-21 11:41:05 UTC (rev 4573)
@@ -449,6 +449,31 @@
RadioItem = True
OnClick = German1Click
end
+ object Arabic1: TMenuItem
+ Caption = 'Arabic'
+ RadioItem = True
+ OnClick = Arabic1Click
+ end
+ object Swedish1: TMenuItem
+ Caption = 'Swedish'
+ RadioItem = True
+ OnClick = Swedish1Click
+ end
+ object Danish1: TMenuItem
+ Caption = 'Danish'
+ RadioItem = True
+ OnClick = Danish1Click
+ end
+ object Norwegian1: TMenuItem
+ Caption = 'Norwegian'
+ RadioItem = True
+ OnClick = Norwegian1Click
+ end
+ object Portuguese1: TMenuItem
+ Caption = 'Portuguese'
+ RadioItem = True
+ OnClick = Portuguese1Click
+ end
end
object Help1: TMenuItem
Caption = 'Help'
Modified: software_suite_v2/software/tuxdroid_software_updater/trunk/Unit1.pas
===================================================================
--- software_suite_v2/software/tuxdroid_software_updater/trunk/Unit1.pas 2009-04-21 10:27:47 UTC (rev 4572)
+++ software_suite_v2/software/tuxdroid_software_updater/trunk/Unit1.pas 2009-04-21 11:41:05 UTC (rev 4573)
@@ -81,6 +81,11 @@
Spanish1: TMenuItem;
German1: TMenuItem;
InfoDownloadPKCaption: TLabel;
+ Arabic1: TMenuItem;
+ Swedish1: TMenuItem;
+ Danish1: TMenuItem;
+ Norwegian1: TMenuItem;
+ Portuguese1: TMenuItem;
procedure FormCreate(Sender: TObject);
procedure UpdateTimerTimer(Sender: TObject);
procedure InstallButtonClick(Sender: TObject);
@@ -113,6 +118,11 @@
procedure Label4Click(Sender: TObject);
procedure Label4MouseEnter(Sender: TObject);
procedure Label4MouseLeave(Sender: TObject);
+ procedure Arabic1Click(Sender: TObject);
+ procedure Swedish1Click(Sender: TObject);
+ procedure Danish1Click(Sender: TObject);
+ procedure Norwegian1Click(Sender: TObject);
+ procedure Portuguese1Click(Sender: TObject);
private
{ Darations priv }
procedure changeLanguage(Sender: TObject; langISOCode : string);
@@ -363,8 +373,16 @@
form1.Italian1.Checked := true;
if TUXDROID_INSTALL_LANGUAGE = 'es' then
form1.Spanish1.Checked := true;
- if TUXDROID_INSTALL_LANGUAGE = 'de' then
- form1.German1.Checked := true;
+ if TUXDROID_INSTALL_LANGUAGE = 'ar' then
+ form1.Arabic1.Checked := true;
+ if TUXDROID_INSTALL_LANGUAGE = 'sv' then
+ form1.Swedish1.Checked := true;
+ if TUXDROID_INSTALL_LANGUAGE = 'da' then
+ form1.Danish1.Checked := true;
+ if TUXDROID_INSTALL_LANGUAGE = 'no' then
+ form1.Norwegian1.Checked := true;
+ if TUXDROID_INSTALL_LANGUAGE = 'pt' then
+ form1.Portuguese1.Checked := true;
end;
{*
@@ -1619,6 +1637,51 @@
end;
{*
+ * \Brief select Arabic.
+ *}
+procedure TForm1.Arabic1Click(Sender: TObject);
+begin
+ TMenuItem(Sender).Checked := true;
+ changeLanguage(Sender, 'ar');
+end;
+
+{*
+ * \Brief select Swedish.
+ *}
+procedure TForm1.Swedish1Click(Sender: TObject);
+begin
+ TMenuItem(Sender).Checked := true;
+ changeLanguage(Sender, 'sv');
+end;
+
+{*
+ * \Brief select Danish.
+ *}
+procedure TForm1.Danish1Click(Sender: TObject);
+begin
+ TMenuItem(Sender).Checked := true;
+ changeLanguage(Sender, 'da');
+end;
+
+{*
+ * \Brief select Norwegian.
+ *}
+procedure TForm1.Norwegian1Click(Sender: TObject);
+begin
+ TMenuItem(Sender).Checked := true;
+ changeLanguage(Sender, 'no');
+end;
+
+{*
+ * \Brief select Portuguese.
+ *}
+procedure TForm1.Portuguese1Click(Sender: TObject);
+begin
+ TMenuItem(Sender).Checked := true;
+ changeLanguage(Sender, 'pt');
+end;
+
+{*
* \brief Hyperlink to www.kysoh.com
*}
procedure TForm1.Label4Click(Sender: TObject);
Added: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/ar/LC_MESSAGES/default.mo
===================================================================
(Binary files differ)
Property changes on: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/ar/LC_MESSAGES/default.mo
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Name: svn:keywords
+ Id
Added: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/ar/LC_MESSAGES/default.po
===================================================================
--- software_suite_v2/software/tuxdroid_software_updater/trunk/locale/ar/LC_MESSAGES/default.po (rev 0)
+++ software_suite_v2/software/tuxdroid_software_updater/trunk/locale/ar/LC_MESSAGES/default.po 2009-04-21 11:41:05 UTC (rev 4573)
@@ -0,0 +1,169 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: 2008-11-02 12:00\n"
+"PO-Revision-Date: 2008-12-11 09:06+0100\n"
+"Last-Translator: Rémi Jocaille <rem...@c2...>\n"
+"Language-Team: French <rem...@c2...>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Arabic\n"
+"X-Poedit-Country: ARABIC\n"
+
+# About Dialog ---------------------------------------------------------------
+msgid "About Tuxdroid Software Updater"
+msgstr "About Tux Droid Software Updater"
+
+msgid "About text"
+msgstr ""
+"Tux Droid Software Updater\n"
+"\n"
+"Version 0.0.1\n"
+"\n"
+"Copyright (C) 2008 Kysoh <rem...@c2...>"
+
+msgid "OK"
+msgstr "OK"
+
+# Main GUI ---------------------------------------------------------------
+msgid "Tuxdroid Software Updater"
+msgstr "Tux Droid Software Updater"
+
+msgid "Files"
+msgstr "Files"
+
+msgid "Check for updates"
+msgstr "Check for updates"
+
+msgid "Quit"
+msgstr "Quit"
+
+msgid "Settings"
+msgstr "Settings"
+
+msgid "Public versions"
+msgstr "Public versions"
+
+msgid "Beta versions (on test)"
+msgstr "Beta versions (on test)"
+
+msgid "Alpha versions (unstable)"
+msgstr "Alpha versions (unstable)"
+
+msgid "Language"
+msgstr "Language"
+
+msgid "Help"
+msgstr "Help"
+
+msgid "About"
+msgstr "About"
+
+msgid "Install"
+msgstr "Install"
+
+msgid "Next"
+msgstr "Next"
+
+msgid "Abord"
+msgstr "Abort"
+
+# User messages ---------------------------------------------------------------
+msgid "Updates name"
+msgstr "Updates name"
+
+msgid "Updates size"
+msgstr "Updates size"
+
+msgid "Total download size ( %.3f Mo )"
+msgstr "Total download size ( %.3f MB )"
+
+msgid "Please wait ..."
+msgstr "Please wait ..."
+
+msgid "This can take some minutes."
+msgstr "This can take some minutes."
+
+msgid "No Internet connection available !"
+msgstr "No Internet connection available !"
+
+msgid "Sorry, the server is currently in maintenance."
+msgstr "Sorry, the server is currently in maintenance."
+
+msgid "Your Tuxdroid is up to date !"
+msgstr "Your Tux Droid is up to date !"
+
+msgid "Get your Tuxdroid up to date !"
+msgstr "Get your Tux Droid up to date !"
+
+msgid "Click Install to start the updating."
+msgstr "Click Install to start the updating."
+
+msgid "Removed : "
+msgstr "Removed : "
+
+msgid "New : "
+msgstr "New : "
+
+msgid "Updated : "
+msgstr "Updated : "
+
+msgid "Downloading"
+msgstr "Downloading"
+
+msgid "Sorry, the server is currently in maintenance. Click Next"
+msgstr "Sorry, the server is currently in maintenance. Click Next"
+
+msgid "Error while downloading the file"
+msgstr "Error while downloading the file"
+
+msgid "Download complete. Click Next"
+msgstr "Downloading complete. Click Next"
+
+msgid "Downloading aborded"
+msgstr "Downloading aborted"
+
+msgid "Abording the download ..."
+msgstr "Aborting the download ..."
+
+msgid "Kill troublesome tasks"
+msgstr "Kill troublesome tasks"
+
+msgid "Uninstalling (This can take few minutes) ..."
+msgstr "Uninstalling (This can take a few minutes) ..."
+
+msgid "Deleting ..."
+msgstr "Deleting ..."
+
+msgid "Installing (This can take few minutes) ..."
+msgstr "Installing (This can take a few minutes) ..."
+
+msgid "Copying ..."
+msgstr "Copying ..."
+
+msgid "Delete the temporary files"
+msgstr "Delete the temporary files"
+
+msgid "Update the data base of installed packages"
+msgstr "Update the database of installed packages"
+
+msgid "Reload the Tuxdroid system"
+msgstr "Reloading the Tux Droid system"
+
+msgid "The installation has been finished !"
+msgstr "The installation has been finished !"
+
+msgid "Tuxdroid Software Updater (AUTOMATIC MODE)"
+msgstr "Tux Droid Software Updater (AUTOMATIC MODE)"
+
+msgid "TTSLanguageName"
+msgstr "Arabic"
+
+msgid "Audio card trouble"
+msgstr ""
+"A problem was detected with your audio cards configuration !\n"
+"Please change your default audio card to \"TuxDroid-Audio\" instead of \"TuxDroid-TTS\" !\n"
+"\n"
+"The \"Audio devices\" window will be opened after closing this window."
+
Property changes on: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/ar/LC_MESSAGES/default.po
___________________________________________________________________
Name: svn:keywords
+ Id
Added: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/da/LC_MESSAGES/default.mo
===================================================================
(Binary files differ)
Property changes on: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/da/LC_MESSAGES/default.mo
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Name: svn:keywords
+ Id
Added: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/da/LC_MESSAGES/default.po
===================================================================
--- software_suite_v2/software/tuxdroid_software_updater/trunk/locale/da/LC_MESSAGES/default.po (rev 0)
+++ software_suite_v2/software/tuxdroid_software_updater/trunk/locale/da/LC_MESSAGES/default.po 2009-04-21 11:41:05 UTC (rev 4573)
@@ -0,0 +1,169 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: 2008-11-02 12:00\n"
+"PO-Revision-Date: 2008-12-11 09:06+0100\n"
+"Last-Translator: Rémi Jocaille <rem...@c2...>\n"
+"Language-Team: French <rem...@c2...>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Danish\n"
+"X-Poedit-Country: DANISH\n"
+
+# About Dialog ---------------------------------------------------------------
+msgid "About Tuxdroid Software Updater"
+msgstr "About Tux Droid Software Updater"
+
+msgid "About text"
+msgstr ""
+"Tux Droid Software Updater\n"
+"\n"
+"Version 0.0.1\n"
+"\n"
+"Copyright (C) 2008 Kysoh <rem...@c2...>"
+
+msgid "OK"
+msgstr "OK"
+
+# Main GUI ---------------------------------------------------------------
+msgid "Tuxdroid Software Updater"
+msgstr "Tux Droid Software Updater"
+
+msgid "Files"
+msgstr "Files"
+
+msgid "Check for updates"
+msgstr "Check for updates"
+
+msgid "Quit"
+msgstr "Quit"
+
+msgid "Settings"
+msgstr "Settings"
+
+msgid "Public versions"
+msgstr "Public versions"
+
+msgid "Beta versions (on test)"
+msgstr "Beta versions (on test)"
+
+msgid "Alpha versions (unstable)"
+msgstr "Alpha versions (unstable)"
+
+msgid "Language"
+msgstr "Language"
+
+msgid "Help"
+msgstr "Help"
+
+msgid "About"
+msgstr "About"
+
+msgid "Install"
+msgstr "Install"
+
+msgid "Next"
+msgstr "Next"
+
+msgid "Abord"
+msgstr "Abort"
+
+# User messages ---------------------------------------------------------------
+msgid "Updates name"
+msgstr "Updates name"
+
+msgid "Updates size"
+msgstr "Updates size"
+
+msgid "Total download size ( %.3f Mo )"
+msgstr "Total download size ( %.3f MB )"
+
+msgid "Please wait ..."
+msgstr "Please wait ..."
+
+msgid "This can take some minutes."
+msgstr "This can take some minutes."
+
+msgid "No Internet connection available !"
+msgstr "No Internet connection available !"
+
+msgid "Sorry, the server is currently in maintenance."
+msgstr "Sorry, the server is currently in maintenance."
+
+msgid "Your Tuxdroid is up to date !"
+msgstr "Your Tux Droid is up to date !"
+
+msgid "Get your Tuxdroid up to date !"
+msgstr "Get your Tux Droid up to date !"
+
+msgid "Click Install to start the updating."
+msgstr "Click Install to start the updating."
+
+msgid "Removed : "
+msgstr "Removed : "
+
+msgid "New : "
+msgstr "New : "
+
+msgid "Updated : "
+msgstr "Updated : "
+
+msgid "Downloading"
+msgstr "Downloading"
+
+msgid "Sorry, the server is currently in maintenance. Click Next"
+msgstr "Sorry, the server is currently in maintenance. Click Next"
+
+msgid "Error while downloading the file"
+msgstr "Error while downloading the file"
+
+msgid "Download complete. Click Next"
+msgstr "Downloading complete. Click Next"
+
+msgid "Downloading aborded"
+msgstr "Downloading aborted"
+
+msgid "Abording the download ..."
+msgstr "Aborting the download ..."
+
+msgid "Kill troublesome tasks"
+msgstr "Kill troublesome tasks"
+
+msgid "Uninstalling (This can take few minutes) ..."
+msgstr "Uninstalling (This can take a few minutes) ..."
+
+msgid "Deleting ..."
+msgstr "Deleting ..."
+
+msgid "Installing (This can take few minutes) ..."
+msgstr "Installing (This can take a few minutes) ..."
+
+msgid "Copying ..."
+msgstr "Copying ..."
+
+msgid "Delete the temporary files"
+msgstr "Delete the temporary files"
+
+msgid "Update the data base of installed packages"
+msgstr "Update the database of installed packages"
+
+msgid "Reload the Tuxdroid system"
+msgstr "Reloading the Tux Droid system"
+
+msgid "The installation has been finished !"
+msgstr "The installation has been finished !"
+
+msgid "Tuxdroid Software Updater (AUTOMATIC MODE)"
+msgstr "Tux Droid Software Updater (AUTOMATIC MODE)"
+
+msgid "TTSLanguageName"
+msgstr "Danish"
+
+msgid "Audio card trouble"
+msgstr ""
+"A problem was detected with your audio cards configuration !\n"
+"Please change your default audio card to \"TuxDroid-Audio\" instead of \"TuxDroid-TTS\" !\n"
+"\n"
+"The \"Audio devices\" window will be opened after closing this window."
+
Property changes on: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/da/LC_MESSAGES/default.po
___________________________________________________________________
Name: svn:keywords
+ Id
Added: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/no/LC_MESSAGES/default.mo
===================================================================
(Binary files differ)
Property changes on: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/no/LC_MESSAGES/default.mo
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Name: svn:keywords
+ Id
Added: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/no/LC_MESSAGES/default.po
===================================================================
--- software_suite_v2/software/tuxdroid_software_updater/trunk/locale/no/LC_MESSAGES/default.po (rev 0)
+++ software_suite_v2/software/tuxdroid_software_updater/trunk/locale/no/LC_MESSAGES/default.po 2009-04-21 11:41:05 UTC (rev 4573)
@@ -0,0 +1,169 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: 2008-11-02 12:00\n"
+"PO-Revision-Date: 2008-12-11 09:06+0100\n"
+"Last-Translator: Rémi Jocaille <rem...@c2...>\n"
+"Language-Team: French <rem...@c2...>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Norwegian\n"
+"X-Poedit-Country: NORWEGIAN\n"
+
+# About Dialog ---------------------------------------------------------------
+msgid "About Tuxdroid Software Updater"
+msgstr "About Tux Droid Software Updater"
+
+msgid "About text"
+msgstr ""
+"Tux Droid Software Updater\n"
+"\n"
+"Version 0.0.1\n"
+"\n"
+"Copyright (C) 2008 Kysoh <rem...@c2...>"
+
+msgid "OK"
+msgstr "OK"
+
+# Main GUI ---------------------------------------------------------------
+msgid "Tuxdroid Software Updater"
+msgstr "Tux Droid Software Updater"
+
+msgid "Files"
+msgstr "Files"
+
+msgid "Check for updates"
+msgstr "Check for updates"
+
+msgid "Quit"
+msgstr "Quit"
+
+msgid "Settings"
+msgstr "Settings"
+
+msgid "Public versions"
+msgstr "Public versions"
+
+msgid "Beta versions (on test)"
+msgstr "Beta versions (on test)"
+
+msgid "Alpha versions (unstable)"
+msgstr "Alpha versions (unstable)"
+
+msgid "Language"
+msgstr "Language"
+
+msgid "Help"
+msgstr "Help"
+
+msgid "About"
+msgstr "About"
+
+msgid "Install"
+msgstr "Install"
+
+msgid "Next"
+msgstr "Next"
+
+msgid "Abord"
+msgstr "Abort"
+
+# User messages ---------------------------------------------------------------
+msgid "Updates name"
+msgstr "Updates name"
+
+msgid "Updates size"
+msgstr "Updates size"
+
+msgid "Total download size ( %.3f Mo )"
+msgstr "Total download size ( %.3f MB )"
+
+msgid "Please wait ..."
+msgstr "Please wait ..."
+
+msgid "This can take some minutes."
+msgstr "This can take some minutes."
+
+msgid "No Internet connection available !"
+msgstr "No Internet connection available !"
+
+msgid "Sorry, the server is currently in maintenance."
+msgstr "Sorry, the server is currently in maintenance."
+
+msgid "Your Tuxdroid is up to date !"
+msgstr "Your Tux Droid is up to date !"
+
+msgid "Get your Tuxdroid up to date !"
+msgstr "Get your Tux Droid up to date !"
+
+msgid "Click Install to start the updating."
+msgstr "Click Install to start the updating."
+
+msgid "Removed : "
+msgstr "Removed : "
+
+msgid "New : "
+msgstr "New : "
+
+msgid "Updated : "
+msgstr "Updated : "
+
+msgid "Downloading"
+msgstr "Downloading"
+
+msgid "Sorry, the server is currently in maintenance. Click Next"
+msgstr "Sorry, the server is currently in maintenance. Click Next"
+
+msgid "Error while downloading the file"
+msgstr "Error while downloading the file"
+
+msgid "Download complete. Click Next"
+msgstr "Downloading complete. Click Next"
+
+msgid "Downloading aborded"
+msgstr "Downloading aborted"
+
+msgid "Abording the download ..."
+msgstr "Aborting the download ..."
+
+msgid "Kill troublesome tasks"
+msgstr "Kill troublesome tasks"
+
+msgid "Uninstalling (This can take few minutes) ..."
+msgstr "Uninstalling (This can take a few minutes) ..."
+
+msgid "Deleting ..."
+msgstr "Deleting ..."
+
+msgid "Installing (This can take few minutes) ..."
+msgstr "Installing (This can take a few minutes) ..."
+
+msgid "Copying ..."
+msgstr "Copying ..."
+
+msgid "Delete the temporary files"
+msgstr "Delete the temporary files"
+
+msgid "Update the data base of installed packages"
+msgstr "Update the database of installed packages"
+
+msgid "Reload the Tuxdroid system"
+msgstr "Reloading the Tux Droid system"
+
+msgid "The installation has been finished !"
+msgstr "The installation has been finished !"
+
+msgid "Tuxdroid Software Updater (AUTOMATIC MODE)"
+msgstr "Tux Droid Software Updater (AUTOMATIC MODE)"
+
+msgid "TTSLanguageName"
+msgstr "Norwegian"
+
+msgid "Audio card trouble"
+msgstr ""
+"A problem was detected with your audio cards configuration !\n"
+"Please change your default audio card to \"TuxDroid-Audio\" instead of \"TuxDroid-TTS\" !\n"
+"\n"
+"The \"Audio devices\" window will be opened after closing this window."
+
Property changes on: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/no/LC_MESSAGES/default.po
___________________________________________________________________
Name: svn:keywords
+ Id
Added: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/pt/LC_MESSAGES/default.mo
===================================================================
(Binary files differ)
Property changes on: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/pt/LC_MESSAGES/default.mo
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Name: svn:keywords
+ Id
Added: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/pt/LC_MESSAGES/default.po
===================================================================
--- software_suite_v2/software/tuxdroid_software_updater/trunk/locale/pt/LC_MESSAGES/default.po (rev 0)
+++ software_suite_v2/software/tuxdroid_software_updater/trunk/locale/pt/LC_MESSAGES/default.po 2009-04-21 11:41:05 UTC (rev 4573)
@@ -0,0 +1,169 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: 2008-11-02 12:00\n"
+"PO-Revision-Date: 2008-12-11 09:06+0100\n"
+"Last-Translator: Rémi Jocaille <rem...@c2...>\n"
+"Language-Team: French <rem...@c2...>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Portuguese\n"
+"X-Poedit-Country: PORTUGUESE\n"
+
+# About Dialog ---------------------------------------------------------------
+msgid "About Tuxdroid Software Updater"
+msgstr "About Tux Droid Software Updater"
+
+msgid "About text"
+msgstr ""
+"Tux Droid Software Updater\n"
+"\n"
+"Version 0.0.1\n"
+"\n"
+"Copyright (C) 2008 Kysoh <rem...@c2...>"
+
+msgid "OK"
+msgstr "OK"
+
+# Main GUI ---------------------------------------------------------------
+msgid "Tuxdroid Software Updater"
+msgstr "Tux Droid Software Updater"
+
+msgid "Files"
+msgstr "Files"
+
+msgid "Check for updates"
+msgstr "Check for updates"
+
+msgid "Quit"
+msgstr "Quit"
+
+msgid "Settings"
+msgstr "Settings"
+
+msgid "Public versions"
+msgstr "Public versions"
+
+msgid "Beta versions (on test)"
+msgstr "Beta versions (on test)"
+
+msgid "Alpha versions (unstable)"
+msgstr "Alpha versions (unstable)"
+
+msgid "Language"
+msgstr "Language"
+
+msgid "Help"
+msgstr "Help"
+
+msgid "About"
+msgstr "About"
+
+msgid "Install"
+msgstr "Install"
+
+msgid "Next"
+msgstr "Next"
+
+msgid "Abord"
+msgstr "Abort"
+
+# User messages ---------------------------------------------------------------
+msgid "Updates name"
+msgstr "Updates name"
+
+msgid "Updates size"
+msgstr "Updates size"
+
+msgid "Total download size ( %.3f Mo )"
+msgstr "Total download size ( %.3f MB )"
+
+msgid "Please wait ..."
+msgstr "Please wait ..."
+
+msgid "This can take some minutes."
+msgstr "This can take some minutes."
+
+msgid "No Internet connection available !"
+msgstr "No Internet connection available !"
+
+msgid "Sorry, the server is currently in maintenance."
+msgstr "Sorry, the server is currently in maintenance."
+
+msgid "Your Tuxdroid is up to date !"
+msgstr "Your Tux Droid is up to date !"
+
+msgid "Get your Tuxdroid up to date !"
+msgstr "Get your Tux Droid up to date !"
+
+msgid "Click Install to start the updating."
+msgstr "Click Install to start the updating."
+
+msgid "Removed : "
+msgstr "Removed : "
+
+msgid "New : "
+msgstr "New : "
+
+msgid "Updated : "
+msgstr "Updated : "
+
+msgid "Downloading"
+msgstr "Downloading"
+
+msgid "Sorry, the server is currently in maintenance. Click Next"
+msgstr "Sorry, the server is currently in maintenance. Click Next"
+
+msgid "Error while downloading the file"
+msgstr "Error while downloading the file"
+
+msgid "Download complete. Click Next"
+msgstr "Downloading complete. Click Next"
+
+msgid "Downloading aborded"
+msgstr "Downloading aborted"
+
+msgid "Abording the download ..."
+msgstr "Aborting the download ..."
+
+msgid "Kill troublesome tasks"
+msgstr "Kill troublesome tasks"
+
+msgid "Uninstalling (This can take few minutes) ..."
+msgstr "Uninstalling (This can take a few minutes) ..."
+
+msgid "Deleting ..."
+msgstr "Deleting ..."
+
+msgid "Installing (This can take few minutes) ..."
+msgstr "Installing (This can take a few minutes) ..."
+
+msgid "Copying ..."
+msgstr "Copying ..."
+
+msgid "Delete the temporary files"
+msgstr "Delete the temporary files"
+
+msgid "Update the data base of installed packages"
+msgstr "Update the database of installed packages"
+
+msgid "Reload the Tuxdroid system"
+msgstr "Reloading the Tux Droid system"
+
+msgid "The installation has been finished !"
+msgstr "The installation has been finished !"
+
+msgid "Tuxdroid Software Updater (AUTOMATIC MODE)"
+msgstr "Tux Droid Software Updater (AUTOMATIC MODE)"
+
+msgid "TTSLanguageName"
+msgstr "Portuguese"
+
+msgid "Audio card trouble"
+msgstr ""
+"A problem was detected with your audio cards configuration !\n"
+"Please change your default audio card to \"TuxDroid-Audio\" instead of \"TuxDroid-TTS\" !\n"
+"\n"
+"The \"Audio devices\" window will be opened after closing this window."
+
Property changes on: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/pt/LC_MESSAGES/default.po
___________________________________________________________________
Name: svn:keywords
+ Id
Added: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/sv/LC_MESSAGES/default.mo
===================================================================
(Binary files differ)
Property changes on: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/sv/LC_MESSAGES/default.mo
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Name: svn:keywords
+ Id
Added: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/sv/LC_MESSAGES/default.po
===================================================================
--- software_suite_v2/software/tuxdroid_software_updater/trunk/locale/sv/LC_MESSAGES/default.po (rev 0)
+++ software_suite_v2/software/tuxdroid_software_updater/trunk/locale/sv/LC_MESSAGES/default.po 2009-04-21 11:41:05 UTC (rev 4573)
@@ -0,0 +1,169 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: 2008-11-02 12:00\n"
+"PO-Revision-Date: 2008-12-11 09:06+0100\n"
+"Last-Translator: Rémi Jocaille <rem...@c2...>\n"
+"Language-Team: French <rem...@c2...>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Swedish\n"
+"X-Poedit-Country: SWEDISH\n"
+
+# About Dialog ---------------------------------------------------------------
+msgid "About Tuxdroid Software Updater"
+msgstr "About Tux Droid Software Updater"
+
+msgid "About text"
+msgstr ""
+"Tux Droid Software Updater\n"
+"\n"
+"Version 0.0.1\n"
+"\n"
+"Copyright (C) 2008 Kysoh <rem...@c2...>"
+
+msgid "OK"
+msgstr "OK"
+
+# Main GUI ---------------------------------------------------------------
+msgid "Tuxdroid Software Updater"
+msgstr "Tux Droid Software Updater"
+
+msgid "Files"
+msgstr "Files"
+
+msgid "Check for updates"
+msgstr "Check for updates"
+
+msgid "Quit"
+msgstr "Quit"
+
+msgid "Settings"
+msgstr "Settings"
+
+msgid "Public versions"
+msgstr "Public versions"
+
+msgid "Beta versions (on test)"
+msgstr "Beta versions (on test)"
+
+msgid "Alpha versions (unstable)"
+msgstr "Alpha versions (unstable)"
+
+msgid "Language"
+msgstr "Language"
+
+msgid "Help"
+msgstr "Help"
+
+msgid "About"
+msgstr "About"
+
+msgid "Install"
+msgstr "Install"
+
+msgid "Next"
+msgstr "Next"
+
+msgid "Abord"
+msgstr "Abort"
+
+# User messages ---------------------------------------------------------------
+msgid "Updates name"
+msgstr "Updates name"
+
+msgid "Updates size"
+msgstr "Updates size"
+
+msgid "Total download size ( %.3f Mo )"
+msgstr "Total download size ( %.3f MB )"
+
+msgid "Please wait ..."
+msgstr "Please wait ..."
+
+msgid "This can take some minutes."
+msgstr "This can take some minutes."
+
+msgid "No Internet connection available !"
+msgstr "No Internet connection available !"
+
+msgid "Sorry, the server is currently in maintenance."
+msgstr "Sorry, the server is currently in maintenance."
+
+msgid "Your Tuxdroid is up to date !"
+msgstr "Your Tux Droid is up to date !"
+
+msgid "Get your Tuxdroid up to date !"
+msgstr "Get your Tux Droid up to date !"
+
+msgid "Click Install to start the updating."
+msgstr "Click Install to start the updating."
+
+msgid "Removed : "
+msgstr "Removed : "
+
+msgid "New : "
+msgstr "New : "
+
+msgid "Updated : "
+msgstr "Updated : "
+
+msgid "Downloading"
+msgstr "Downloading"
+
+msgid "Sorry, the server is currently in maintenance. Click Next"
+msgstr "Sorry, the server is currently in maintenance. Click Next"
+
+msgid "Error while downloading the file"
+msgstr "Error while downloading the file"
+
+msgid "Download complete. Click Next"
+msgstr "Downloading complete. Click Next"
+
+msgid "Downloading aborded"
+msgstr "Downloading aborted"
+
+msgid "Abording the download ..."
+msgstr "Aborting the download ..."
+
+msgid "Kill troublesome tasks"
+msgstr "Kill troublesome tasks"
+
+msgid "Uninstalling (This can take few minutes) ..."
+msgstr "Uninstalling (This can take a few minutes) ..."
+
+msgid "Deleting ..."
+msgstr "Deleting ..."
+
+msgid "Installing (This can take few minutes) ..."
+msgstr "Installing (This can take a few minutes) ..."
+
+msgid "Copying ..."
+msgstr "Copying ..."
+
+msgid "Delete the temporary files"
+msgstr "Delete the temporary files"
+
+msgid "Update the data base of installed packages"
+msgstr "Update the database of installed packages"
+
+msgid "Reload the Tuxdroid system"
+msgstr "Reloading the Tux Droid system"
+
+msgid "The installation has been finished !"
+msgstr "The installation has been finished !"
+
+msgid "Tuxdroid Software Updater (AUTOMATIC MODE)"
+msgstr "Tux Droid Software Updater (AUTOMATIC MODE)"
+
+msgid "TTSLanguageName"
+msgstr "Swedish"
+
+msgid "Audio card trouble"
+msgstr ""
+"A problem was detected with your audio cards configuration !\n"
+"Please change your default audio card to \"TuxDroid-Audio\" instead of \"TuxDroid-TTS\" !\n"
+"\n"
+"The \"Audio devices\" window will be opened after closing this window."
+
Property changes on: software_suite_v2/software/tuxdroid_software_updater/trunk/locale/sv/LC_MESSAGES/default.po
___________________________________________________________________
Name: svn:keywords
+ Id
|