* @copyright (c) 2007-2008 Johannes Schlueter */ class phpbb_questionnaire_data_collector { var $providers; var $data = null; var $install_id = ''; /** * Constructor. * * @param string */ function phpbb_questionnaire_data_collector($install_id) { $this->install_id = $install_id; $this->providers = array(); } function add_data_provider(&$provider) { $this->providers[] = &$provider; } /** * Get data as an array. * * @return array All Data */ function get_data_raw() { if (!$this->data) { $this->collect(); } return $this->data; } function get_data_for_form() { return base64_encode(serialize($this->get_data_raw())); } /** * Collect info into the data property. * * @return null */ function collect() { foreach (array_keys($this->providers) as $key) { $provider = &$this->providers[$key]; $this->data[$provider->get_identifier()] = $provider->get_data(); } $this->data['install_id'] = $this->install_id; } } /** interface: get_indentifier(), get_data() */ /** * Questionnaire PHP data provider * @package phpBB3 */ class phpbb_questionnaire_php_data_provider { function get_identifier() { return 'PHP'; } /** * Get data about the PHP runtime setup. * * @return array */ function get_data() { return array( 'version' => PHP_VERSION, 'sapi' => PHP_SAPI, 'int_size' => defined('PHP_INT_SIZE') ? PHP_INT_SIZE : '', 'safe_mode' => (int) @ini_get('safe_mode'), 'open_basedir' => (int) @ini_get('open_basedir'), 'memory_limit' => @ini_get('memory_limit'), 'allow_url_fopen' => (int) @ini_get('allow_url_fopen'), 'allow_url_include' => (int) @ini_get('allow_url_include'), 'file_uploads' => (int) @ini_get('file_uploads'), 'upload_max_filesize' => @ini_get('upload_max_filesize'), 'post_max_size' => @ini_get('post_max_size'), 'disable_functions' => @ini_get('disable_functions'), 'disable_classes' => @ini_get('disable_classes'), 'enable_dl' => (int) @ini_get('enable_dl'), 'magic_quotes_gpc' => (int) @ini_get('magic_quotes_gpc'), 'register_globals' => (int) @ini_get('register_globals'), 'filter.default' => @ini_get('filter.default'), 'zend.ze1_compatibility_mode' => (int) @ini_get('zend.ze1_compatibility_mode'), 'unicode.semantics' => (int) @ini_get('unicode.semantics'), 'zend_thread_safty' => (int) function_exists('zend_thread_id'), 'extensions' => get_loaded_extensions(), ); } } /** * Questionnaire System data provider * @package phpBB3 */ class phpbb_questionnaire_system_data_provider { function get_identifier() { return 'System'; } /** * Get data about the general system information, like OS or IP (shortened). * * @return array */ function get_data() { global $request; // Start discovering the IPV4 server address, if available // Try apache, IIS, fall back to 0.0.0.0 $server_address = htmlspecialchars_decode($request->server('SERVER_ADDR', $request->server('LOCAL_ADDR', '0.0.0.0'))); return array( 'os' => PHP_OS, 'httpd' => htmlspecialchars_decode($request->server('SERVER_SOFTWARE')), // we don't want the real IP address (for privacy policy reasons) but only // a network address to see whether your installation is running on a private or public network. 'private_ip' => $this->is_private_ip($server_address), 'ipv6' => strpos($server_address, ':') !== false, ); } /** * Checks whether the given IP is in a private network. * * @param string $ip IP in v4 dot-decimal or v6 hex format * @return bool true if the IP is from a private network, else false */ function is_private_ip($ip) { // IPv4 if (strpos($ip, ':') === false) { $ip_address_ary = explode('.', $ip); // build ip if (!isset($ip_address_ary[0]) || !isset($ip_address_ary[1])) { $ip_address_ary = explode('.', '0.0.0.0'); } // IANA reserved addresses for private networks (RFC 1918) are: // - 10.0.0.0/8 // - 172.16.0.0/12 // - 192.168.0.0/16 if ($ip_address_ary[0] == '10' || ($ip_address_ary[0] == '172' && intval($ip_address_ary[1]) > 15 && intval($ip_address_ary[1]) < 32) || ($ip_address_ary[0] == '192' && $ip_address_ary[1] == '168') || ($ip_address_ary[0] == '192' && $ip_address_ary[1] == '168')) { return true; } } // IPv6 else { // unique local unicast $prefix = substr($ip, 0, 2); if ($prefix == 'fc' || $prefix == 'fd') { return true; } } return false; } } /** * Questionnaire phpBB data provider * @package phpBB3 */ class phpbb_questionnaire_phpbb_data_provider { var $config; var $unique_id; /** * Constructor. * * @param array $config */ function phpbb_questionnaire_phpbb_data_provider($config) { // generate a unique id if necessary if (empty($config['questionnaire_unique_id'])) { $this->unique_id = unique_id(); set_config('questionnaire_unique_id', $this->unique_id); } else { $this->unique_id = $config['questionnaire_unique_id']; } $this->config = $config; } /** * Returns a string identifier for this data provider * * @return string "phpBB" */ function get_identifier() { return 'phpBB'; } /** * Get data about this phpBB installation. * * @return array Relevant anonymous config options */ function get_data() { global $phpbb_root_path, $phpEx; include("{$phpbb_root_path}config.$phpEx"); unset($dbhost, $dbport, $dbname, $dbuser, $dbpasswd); // Just a precaution $dbms = phpbb_convert_30_dbms_to_31($dbms); // Only send certain config vars $config_vars = array( 'active_sessions' => true, 'allow_attachments' => true, 'allow_autologin' => true, 'allow_avatar' => true, 'allow_avatar_local' => true, 'allow_avatar_remote' => true, 'allow_avatar_upload' => true, 'allow_bbcode' => true, 'allow_birthdays' => true, 'allow_bookmarks' => true, 'allow_emailreuse' => true, 'allow_forum_notify' => true, 'allow_mass_pm' => true, 'allow_name_chars' => true, 'allow_namechange' => true, 'allow_nocensors' => true, 'allow_pm_attach' => true, 'allow_pm_report' => true, 'allow_post_flash' => true, 'allow_post_links' => true, 'allow_privmsg' => true, 'allow_quick_reply' => true, 'allow_sig' => true, 'allow_sig_bbcode' => true, 'allow_sig_flash' => true, 'allow_sig_img' => true, 'allow_sig_links' => true, 'allow_sig_pm' => true, 'allow_sig_smilies' => true, 'allow_smilies' => true, 'allow_topic_notify' => true, 'attachment_quota' => true, 'auth_bbcode_pm' => true, 'auth_flash_pm' => true, 'auth_img_pm' => true, 'auth_method' => true, 'auth_smilies_pm' => true, 'avatar_filesize' => true, 'avatar_max_height' => true, 'avatar_max_width' => true, 'avatar_min_height' => true, 'avatar_min_width' => true, 'board_email_form' => true, 'board_hide_emails' => true, 'board_timezone' => true, 'browser_check' => true, 'bump_interval' => true, 'bump_type' => true, 'cache_gc' => true, 'captcha_plugin' => true, 'captcha_gd' => true, 'captcha_gd_foreground_noise' => true, 'captcha_gd_x_grid' => true, 'captcha_gd_y_grid' => true, 'captcha_gd_wave' => true, 'captcha_gd_3d_noise' => true, 'captcha_gd_fonts' => true, 'confirm_refresh' => true, 'check_attachment_content' => true, 'check_dnsbl' => true, 'chg_passforce' => true, 'cookie_secure' => true, 'coppa_enable' => true, 'database_gc' => true, 'dbms_version' => true, 'default_dateformat' => true, 'default_lang' => true, 'display_last_edited' => true, 'display_order' => true, 'edit_time' => true, 'email_check_mx' => true, 'email_enable' => true, 'email_function_name' => true, 'email_package_size' => true, 'enable_confirm' => true, 'enable_pm_icons' => true, 'enable_post_confirm' => true, 'feed_enable' => true, 'feed_http_auth' => true, 'feed_limit_post' => true, 'feed_limit_topic' => true, 'feed_overall' => true, 'feed_overall_forums' => true, 'feed_forum' => true, 'feed_topic' => true, 'feed_topics_new' => true, 'feed_topics_active' => true, 'feed_item_statistics' => true, 'flood_interval' => true, 'force_server_vars' => true, 'form_token_lifetime' => true, 'form_token_mintime' => true, 'form_token_sid_guests' => true, 'forward_pm' => true, 'forwarded_for_check' => true, 'full_folder_action' => true, 'fulltext_native_common_thres' => true, 'fulltext_native_load_upd' => true, 'fulltext_native_max_chars' => true, 'fulltext_native_min_chars' => true, 'gzip_compress' => true, 'hot_threshold' => true, 'img_create_thumbnail' => true, 'img_display_inlined' => true, 'img_imagick' => true, 'img_link_height' => true, 'img_link_width' => true, 'img_max_height' => true, 'img_max_thumb_width' => true, 'img_max_width' => true, 'img_min_thumb_filesize' => true, 'ip_check' => true, 'jab_enable' => true, 'jab_package_size' => true, 'jab_use_ssl' => true, 'limit_load' => true, 'limit_search_load' => true, 'load_anon_lastread' => true, 'load_birthdays' => true, 'load_cpf_memberlist' => true, 'load_cpf_viewprofile' => true, 'load_cpf_viewtopic' => true, 'load_db_lastread' => true, 'load_db_track' => true, 'load_jumpbox' => true, 'load_moderators' => true, 'load_online' => true, 'load_online_guests' => true, 'load_online_time' => true, 'load_onlinetrack' => true, 'load_search' => true, 'load_tplcompile' => true, 'load_user_activity' => true, 'max_attachments' => true, 'max_attachments_pm' => true, 'max_autologin_time' => true, 'max_filesize' => true, 'max_filesize_pm' => true, 'max_login_attempts' => true, 'max_name_chars' => true, 'max_num_search_keywords' => true, 'max_pass_chars' => true, 'max_poll_options' => true, 'max_post_chars' => true, 'max_post_font_size' => true, 'max_post_img_height' => true, 'max_post_img_width' => true, 'max_post_smilies' => true, 'max_post_urls' => true, 'max_quote_depth' => true, 'max_reg_attempts' => true, 'max_sig_chars' => true, 'max_sig_font_size' => true, 'max_sig_img_height' => true, 'max_sig_img_width' => true, 'max_sig_smilies' => true, 'max_sig_urls' => true, 'min_name_chars' => true, 'min_pass_chars' => true, 'min_post_chars' => true, 'min_search_author_chars' => true, 'mime_triggers' => true, 'new_member_post_limit' => true, 'new_member_group_default' => true, 'override_user_style' => true, 'pass_complex' => true, 'pm_edit_time' => true, 'pm_max_boxes' => true, 'pm_max_msgs' => true, 'pm_max_recipients' => true, 'posts_per_page' => true, 'print_pm' => true, 'queue_interval' => true, 'require_activation' => true, 'referer_validation' => true, 'search_block_size' => true, 'search_gc' => true, 'search_interval' => true, 'search_anonymous_interval' => true, 'search_type' => true, 'search_store_results' => true, 'secure_allow_deny' => true, 'secure_allow_empty_referer' => true, 'secure_downloads' => true, 'session_gc' => true, 'session_length' => true, 'smtp_auth_method' => true, 'smtp_delivery' => true, 'topics_per_page' => true, 'tpl_allow_php' => true, 'version' => true, 'warnings_expire_days' => true, 'warnings_gc' => true, 'num_files' => true, 'num_posts' => true, 'num_topics' => true, 'num_users' => true, 'record_online_users' => true, ); $result = array(); foreach ($config_vars as $name => $void) { if (isset($this->config[$name])) { $result['config_' . $name] = $this->config[$name]; } } global $db, $request; $result['dbms'] = $dbms; $result['acm_type'] = $acm_type; $result['user_agent'] = 'Unknown'; $result['dbms_version'] = $db->sql_server_info(true); // Try to get user agent vendor and version $match = array(); $user_agent = $request->header('User-Agent'); $agents = array('firefox', 'msie', 'opera', 'chrome', 'safari', 'mozilla', 'seamonkey', 'konqueror', 'netscape', 'gecko', 'navigator', 'mosaic', 'lynx', 'amaya', 'omniweb', 'avant', 'camino', 'flock', 'aol'); // We check here 1 by 1 because some strings occur after others (for example Mozilla [...] Firefox/) foreach ($agents as $agent) { if (preg_match('#(' . $agent . ')[/ ]?([0-9.]*)#i', $user_agent, $match)) { $result['user_agent'] = $match[1] . ' ' . $match[2]; break; } } return $result; } } net/diff/po/eo.po?h=2.58&id=f7adff3de2ac5fbc02937bd769e15bec608b2a61'>po/eo.po22
-rw-r--r--po/es.po22
-rw-r--r--po/et.po22
-rw-r--r--po/eu.po22
-rw-r--r--po/fa.po22
-rw-r--r--po/fi.po22
-rw-r--r--po/fr.po22
-rw-r--r--po/fur.po22
-rw-r--r--po/ga.po22
-rw-r--r--po/gl.po22
-rw-r--r--po/he.po22
-rw-r--r--po/hi.po22
-rw-r--r--po/hr.po22
-rw-r--r--po/hu.po22
-rw-r--r--po/id.po22
-rw-r--r--po/is.po22
-rw-r--r--po/it.po22
-rw-r--r--po/ja.po22
-rw-r--r--po/ko.po22
-rw-r--r--po/ky.po22
-rw-r--r--po/lt.po22
-rw-r--r--po/ltg.po22
-rw-r--r--po/lv.po22
-rw-r--r--po/mk.po22
-rw-r--r--po/mn.po22
-rw-r--r--po/ms.po22
-rw-r--r--po/mt.po22
-rw-r--r--po/nb.po22
-rw-r--r--po/nl.po22
-rw-r--r--po/nn.po22
-rw-r--r--po/pa_IN.po22
-rw-r--r--po/pl.po22
-rw-r--r--po/pt.po22
-rw-r--r--po/pt_BR.po22
-rw-r--r--po/ro.po22
-rw-r--r--po/ru.po22
-rw-r--r--po/sc.po22
-rw-r--r--po/sk.po22
-rw-r--r--po/sl.po22
-rw-r--r--po/sq.po22
-rw-r--r--po/sr.po22
-rw-r--r--po/sr@Latn.po22
-rw-r--r--po/sv.po22
-rw-r--r--po/ta.po22
-rw-r--r--po/tg.po22
-rw-r--r--po/th.po22
-rw-r--r--po/tl.po22
-rw-r--r--po/tr.po22
-rw-r--r--po/uk.po22
-rw-r--r--po/uz.po22
-rw-r--r--po/uz@cyrillic.po22
-rw-r--r--po/vi.po22
-rw-r--r--po/wa.po22
-rw-r--r--po/zh_CN.po22
-rw-r--r--po/zh_TW.po22
71 files changed, 776 insertions, 776 deletions
diff --git a/po/af.po b/po/af.po
index b12b2f7..064342e 100644
--- a/po/af.po
+++ b/po/af.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-af\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2005-04-21 17:33+0200\n"
"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
"Language-Team: Afrikaans\n"
@@ -859,10 +859,10 @@ msgstr "Stoor as.."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -904,7 +904,7 @@ msgstr ""
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2664,9 +2664,9 @@ msgstr "Pasop: IP-adres %s is alreeds gebruik !"
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2685,8 +2685,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4202,7 +4202,7 @@ msgstr ""
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/am.po b/po/am.po
index dcd6994..63c24d2 100644
--- a/po/am.po
+++ b/po/am.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2004-06-01 03:36+0100\n"
"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
"Language-Team: Amharic <am-translate@geez.org>\n"
@@ -821,10 +821,10 @@ msgstr "እንደ...ያስቀምጡ"
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -866,7 +866,7 @@ msgstr ""
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2611,9 +2611,9 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2632,8 +2632,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4098,7 +4098,7 @@ msgstr ""
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index d6ac030..102c39e 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2005-03-03 01:06+0300\n"
"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
"Language-Team: Arabic <support@arabeyes.org>\n"
@@ -859,10 +859,10 @@ msgstr "سجل شخصي جديد..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -904,7 +904,7 @@ msgstr "لا يمكنك حذف السجل الشخصي الحالي"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2664,9 +2664,9 @@ msgstr "تحذير: عنوان الـ IP %s عادة ما يكون محفوظا
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2685,8 +2685,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4204,7 +4204,7 @@ msgstr "الرجاء اختيار مشغّل ويندوز (ملف .inf)"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/az.po b/po/az.po
index 5cee258..68ad5b1 100644
--- a/po/az.po
+++ b/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-az\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2005-03-31 14:21+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -859,10 +859,10 @@ msgstr "Yeni profil..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -904,7 +904,7 @@ msgstr "Hazırkı profili silə bilməzsiniz"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2666,9 +2666,9 @@ msgstr "Xəbərdarlıq : %s IP ünvanı çox vaxt tutulmuş olur !"
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2687,8 +2687,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4172,7 +4172,7 @@ msgstr ""
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/be.po b/po/be.po
index 9dec9f9..3e1bba6 100644
--- a/po/be.po
+++ b/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net VERSION\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -825,10 +825,10 @@ msgstr "Захаваць спіс"
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -870,7 +870,7 @@ msgstr ""
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2618,9 +2618,9 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2639,8 +2639,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4105,7 +4105,7 @@ msgstr ""
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/bg.po b/po/bg.po
index e22133c..9831200 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-bg\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2009-03-19 00:24+0200\n"
"Last-Translator: Kolio Kolev <kolio_kolev@biotronica.net>\n"
"Language-Team: Mandriva User Group - Bulgaria <mandriva-bg@googlegroups."
@@ -859,10 +859,10 @@ msgstr "Нов профил..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -904,7 +904,7 @@ msgstr "Не може да изтриете профила, който полз
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2665,9 +2665,9 @@ msgstr "Внимание: IP адрес %s е вече резервиран!"
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2686,8 +2686,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4175,7 +4175,7 @@ msgstr "Моля, изберете доставчик:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/bn.po b/po/bn.po
index a478fac..cbe89e5 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net HEAD\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2005-03-19 23:18+0600\n"
"Last-Translator: Samia <mailsamia2001@yahoo.com>\n"
"Language-Team: Bangla <mdk-translation@bengalinux.org>\n"
@@ -860,10 +860,10 @@ msgstr "নতুন প্রোফাইল..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -905,7 +905,7 @@ msgstr "আপনি বর্তমান প্রোফাইলটি মু
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2675,9 +2675,9 @@ msgstr "নির্দেশ : সাধারনত %s IP ঠিকানা
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2696,8 +2696,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4218,7 +4218,7 @@ msgstr "উইন্ডোজ ড্রাইভারটি বেছে নি
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/br.po b/po/br.po
index 29d3cc2..0e54257 100644
--- a/po/br.po
+++ b/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net 10.2\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2008-03-17 14:51+0100\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandriva.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -827,10 +827,10 @@ msgstr "Profil nevez ..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -872,7 +872,7 @@ msgstr "N'hell ket bet lemelet ar profil red"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2626,9 +2626,9 @@ msgstr "Diwallit : strizh eo ar chomlec'h IP %s boazamant !"
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2647,8 +2647,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4113,7 +4113,7 @@ msgstr "Dibabit ho pourchaser mar plij :"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index a1e40af..ef8faa4 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bs\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2006-09-13 19:15+0200\n"
"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
@@ -861,10 +861,10 @@ msgstr "Novi profil..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -906,7 +906,7 @@ msgstr "Ne možete obrisati trenutni profil"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2731,9 +2731,9 @@ msgstr "Upozorenje: IP adresa %s je obično rezervisana!"
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2752,8 +2752,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4288,7 +4288,7 @@ msgstr "Molim izaberite vaš pružalac usluga:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index 0e9aadb..b4982c4 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: ca\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2005-09-13 23:24+0200\n"
"Last-Translator: Albert Astals Cid <astals11@terra.es>\n"
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -873,10 +873,10 @@ msgstr "Nou perfil..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -918,7 +918,7 @@ msgstr "No podeu esborrar el perfil actual"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2696,9 +2696,9 @@ msgstr "Atenció: l'adreça IP %s està reservada, normalment!"
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#
@@ -2718,8 +2718,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4230,7 +4230,7 @@ msgstr "Si us plau escolliu el controlador de Windows (fitxer .inf)"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index 0c9a538..d728a17 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: cs\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2009-04-03 00:40+0200\n"
"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@@ -879,10 +879,10 @@ msgstr "Nový profil..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -924,7 +924,7 @@ msgstr "Nelze smazat aktuální profil"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2780,9 +2780,9 @@ msgstr "Varování: IP adresa %s je obyčejně rezervována!"
#: ../lib/network/connection/ethernet.pm:192
#, fuzzy, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
"%s je již použita připojením, které se spouští při startu počítače. Chcete-"
"li použít tuto adresu s tímto připojením, vypněte nejprve všechna ostatní "
@@ -2805,8 +2805,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4401,7 +4401,7 @@ msgstr "Vyberte prosím svého poskytovatele:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/cy.po b/po/cy.po
index 1b93a32..85e5195 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mandriva drakx-net.cy\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2008-10-06 19:50+0100\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Cymraeg <post@meddal.com>\n"
@@ -865,10 +865,10 @@ msgstr "Proffil newydd..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -910,7 +910,7 @@ msgstr "Nid oes modd dileu'r proffil presennol"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2758,9 +2758,9 @@ msgstr "Rhybudd : cyfeiriad IP %s wedi ei gadw fel rheol !"
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2779,8 +2779,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4368,7 +4368,7 @@ msgstr "Dewiswch eich darparwr:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/da.po b/po/da.po
index fc0c96a..86e0614 100644
--- a/po/da.po
+++ b/po/da.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: da\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2009-04-04 03:26+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@@ -878,10 +878,10 @@ msgstr "Ny profil..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -923,7 +923,7 @@ msgstr "Du kan ikke slette den kørende profil"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2779,9 +2779,9 @@ msgstr "Advarsel: IP-adresse %s er normalt reserveret!"
#: ../lib/network/connection/ethernet.pm:192
#, fuzzy, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
"%s er allerede brugt af en forbindelse der startes ved opstart. For at bruge "
"denne adresse med denne forbindelse skal alle andre enheder, der bruger den, "
@@ -2803,8 +2803,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4402,7 +4402,7 @@ msgstr "Vælg din leverandør:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/de.po b/po/de.po
index 86b97bf..8a580ff 100644
--- a/po/de.po
+++ b/po/de.po
@@ -24,7 +24,7 @@ msgid ""
msgstr ""
"Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2009-04-11 01:13+0200\n"
"Last-Translator: \n"
"Language-Team: German <kde-i18n-de@kde.org>\n"
@@ -904,10 +904,10 @@ msgstr "Neues Profil..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -949,7 +949,7 @@ msgstr "Sie können das aktuelle Profil nicht löschen"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2825,9 +2825,9 @@ msgstr "Warnung : IP-Adresse %s ist üblicherweise reserviert !"
#: ../lib/network/connection/ethernet.pm:192
#, fuzzy, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
"%s wird bereits von der Verbindung welche beim Booten gestartet wurde "
"genutzt. Um diese Adresse mit dieser Verbindung zu nutzen, müssen Sie zuerst "
@@ -2849,8 +2849,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4456,7 +4456,7 @@ msgstr "Wählen Sie ihren Provider aus:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/drakx-net.pot b/po/drakx-net.pot
index 1864329..f49f416 100644
--- a/po/drakx-net.pot
+++ b/po/drakx-net.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -741,7 +741,7 @@ msgstr ""
#: ../bin/draknetprofile:155
#, c-format
-msgid "Please specify the name of new network profile to create (e.g., work, home, roaming, ..). This new profile initially will be created with base on current settings, and you'll be able to configure your system configuration as usual afterwards."
+msgid "Please specify the name of the new network profile to be created (e.g., work, home, roaming, ..). This new profile will be created based on current settings, and you'll be able to configure your system configuration as usual afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -776,7 +776,7 @@ msgstr ""
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2442,7 +2442,7 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:192
#, c-format
-msgid "%s is already used by connection that starts on boot (%s). To use this address with this connection, first disable all other devices which use it, or configure them not to start on boot"
+msgid "%s is already used by a connection that starts on boot (%s). To use this address with this connection, first disable all other devices which use it, or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2457,7 +2457,7 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
-msgid "You should define the hostname of this machine, which will identify this PC. Note that this hostname will be shared among all network connections. If left blank, 'localhost.localdomain' will be used."
+msgid "You should define a hostname for this machine, which will identify this PC. Note that this hostname will be shared among all network connections. If left blank, 'localhost.localdomain' will be used."
msgstr ""
#: ../lib/network/connection/ethernet.pm:241
@@ -3737,7 +3737,7 @@ msgstr ""
#: ../lib/network/ndiswrapper.pm:36
#, c-format
-msgid "Please select Windows driver description (.inf file), or corresponding driver file (.dll or .o files). Note that only drivers up to Windows XP are supported."
+msgid "Please select the Windows driver description (.inf) file, or corresponding driver file (.dll or .o files). Note that only drivers up to Windows XP are supported."
msgstr ""
#: ../lib/network/ndiswrapper.pm:45
diff --git a/po/el.po b/po/el.po
index 63a7358..97ca903 100644
--- a/po/el.po
+++ b/po/el.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-el\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2009-06-08 16:42+0200\n"
"Last-Translator: Glentadakis Dimitrios <dglent@gmail.com>\n"
"Language-Team: Greek <kde-i18n-doc@kde.org>\n"
@@ -891,10 +891,10 @@ msgstr "Νέο Προφίλ..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -936,7 +936,7 @@ msgstr "Δεν μπορείτε να διαγράψετε το τρέχον πρ
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2817,9 +2817,9 @@ msgstr "Προσοχή : η διεύθυνση IP %s ήδη χρησιμοποι
#: ../lib/network/connection/ethernet.pm:192
#, fuzzy, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
"%s χρησιμοποιείται ήδη από σύνδεση ενεργοποιημένη στην εκκίνηση. Για να "
"χρησιμοποιήσετε αυτή τη διεύθυνση με αυτή τη σύνδεση, πρώτα απενεργοποιήστε "
@@ -2843,8 +2843,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4464,7 +4464,7 @@ msgstr "Παρακαλώ επιλέξτε τον παροχέα σας:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/eo.po b/po/eo.po
index 22371e4..6702051 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2003-03-12 18:31-0400\n"
"Last-Translator: Vilhelmo Lutermano <vlutermano@free.fr>\n"
"Language-Team: esperanto <eo@li.org>\n"
@@ -832,10 +832,10 @@ msgstr "Nova profilo..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -877,7 +877,7 @@ msgstr "Vi ne povas forigi la aktualan profilon"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2625,9 +2625,9 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2646,8 +2646,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4112,7 +4112,7 @@ msgstr ""
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/es.po b/po/es.po
index 0d7d635..1a79aaa 100644
--- a/po/es.po
+++ b/po/es.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drak-net-es\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2009-05-12 19:39-0300\n"
"Last-Translator: Andre Paulo Machado <andre@mandriva.com>\n"
"Language-Team: Español <es@li.org>\n"
@@ -869,10 +869,10 @@ msgstr "Nuevo perfil..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -914,7 +914,7 @@ msgstr "No se puede quitar el perfil corriente"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2794,9 +2794,9 @@ msgstr "Advertencia: ¡Por lo general la dirección IP %s está reservada!"
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2815,8 +2815,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4425,7 +4425,7 @@ msgstr "Por favor, seleccione su proveedor:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/et.po b/po/et.po
index 8121d92..c342b34 100644
--- a/po/et.po
+++ b/po/et.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-et\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2009-04-03 12:12+0200\n"
"Last-Translator: Marek Laane <bald@starman.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -871,10 +871,10 @@ msgstr "Uus profiil..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -916,7 +916,7 @@ msgstr "Aktiivset profiili ei saa kustutada"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2759,9 +2759,9 @@ msgstr "Hoiatus : IP-aadress %s on tavaliselt reserveeritud!"
#: ../lib/network/connection/ethernet.pm:192
#, fuzzy, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
"%s on juba kasutusel alglaadimisel käivitatava ühenduse poolt. Selle "
"aadressi kasutamiseks selle ühendusega keelake kõigepealt kõik teised "
@@ -2784,8 +2784,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4372,7 +4372,7 @@ msgstr "Palun valige teenusepakkuja:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/eu.po b/po/eu.po
index 16c202d..52e30e4 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2009-04-14 23:35+0200\n"
"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Basque <kde-i18n-doc@kde.org>\n"
@@ -861,10 +861,10 @@ msgstr "Profil berria..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -906,7 +906,7 @@ msgstr "Ezin duzu uneko profila ezabatu"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2769,9 +2769,9 @@ msgstr "Abisua: %s IP helbidea erreserbatua izaten da!"
#: ../lib/network/connection/ethernet.pm:192
#, fuzzy, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
"%s dagoeneko erabilita dago abioan hasten den loturarekin. Helbide hau "
"lotura honekin erabiltzeko, lehenengo ezgaitu bera erabiltzen duten "
@@ -2793,8 +2793,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4392,7 +4392,7 @@ msgstr "Mesedez aukeratu zure hornitzailea:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 1e94784..75ee57d 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-fa\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2005-02-26 06:31+0100\n"
"Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n"
"Language-Team: Persian\n"
@@ -853,10 +853,10 @@ msgstr "نمایه‌ی جدید..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -898,7 +898,7 @@ msgstr "شما نمی‌توانید نمایه‌ی کنونی را حذف کن
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2659,9 +2659,9 @@ msgstr "هشدار : نشانی آی‌پی %s معمولاً رزرو شده ا
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2680,8 +2680,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4201,7 +4201,7 @@ msgstr "لطفا راه‌انداز ویندوزی را انتخاب کنید (
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 1c2f202..ecde71c 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -13,7 +13,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-fi\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2009-05-15 01:55+0300\n"
"Last-Translator: Jani Välimaa <jani.valimaa@gmail.com>\n"
"Language-Team: Finnish <cooker-i18n@mandrivalinux.org>\n"
@@ -882,10 +882,10 @@ msgstr "Uusi profiili..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -927,7 +927,7 @@ msgstr "Käytössä olevaa profiilia ei voida poistaa"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2768,9 +2768,9 @@ msgstr "Varoitus: IP-osoite %s on yleensä varattu!"
#: ../lib/network/connection/ethernet.pm:192
#, fuzzy, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
"Osoite %s on jo käytössä yhteydellä, joka käynnistyy tietokoneen "
"käynnistyessä. Käyttääksesi osoitetta tämän yhteyden kanssa, poista käytöstä "
@@ -2793,8 +2793,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4389,7 +4389,7 @@ msgstr "Valitse palveluntarjoaja:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 83d6545..c36cc22 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -75,7 +75,7 @@
msgid ""
msgstr ""
"Project-Id-Version: fr\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2009-08-17 17:20+0200\n"
"Last-Translator: Christophe Berthelé <berthy@mandriva.org>\n"
"Language-Team: French <cooker-i18n@mandrivalinux.org>\n"
@@ -946,10 +946,10 @@ msgstr "Nouveau profil ..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -991,7 +991,7 @@ msgstr "Vous ne pouvez pas effacer le profil courant"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2875,9 +2875,9 @@ msgstr "Attention : l'adresse IP %s est déjà réservée !"
#: ../lib/network/connection/ethernet.pm:192
#, fuzzy, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
"%s est déjà utilisé par une connexion lancée au démarrage. Pour utiliser "
"cette adresse avec cette connexion, vous devez d'abord désactiver tous les "
@@ -2900,8 +2900,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4511,7 +4511,7 @@ msgstr "Veuillez choisir le pilote correct"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/fur.po b/po/fur.po
index e6ea24f..923f3ee 100644
--- a/po/fur.po
+++ b/po/fur.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2004-06-28 17:41+0200\n"
"Last-Translator: Andrea Gracco <graccoandrea@tin.it>\n"
"Language-Team: furlan <gft@freelists.org>\n"
@@ -822,10 +822,10 @@ msgstr "Gnûf profîl..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -867,7 +867,7 @@ msgstr "No tu puedis scancelâ il profîl orepresint in vore"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2612,9 +2612,9 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2633,8 +2633,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4099,7 +4099,7 @@ msgstr ""
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/ga.po b/po/ga.po
index a7583ee..fde3989 100644
--- a/po/ga.po
+++ b/po/ga.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2005-09-12 18:04+0200\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
@@ -820,10 +820,10 @@ msgstr "Próifíl nua..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -865,7 +865,7 @@ msgstr "Ní féidir an phróifíl reatha a bhaint"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2610,9 +2610,9 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2631,8 +2631,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4108,7 +4108,7 @@ msgstr ""
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index c9d71c4..3c4fcf4 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: network-tools-gl\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2008-04-13 22:12+0100\n"
"Last-Translator: Leandro Regueiro <leandro DOT regueiro AT gmail DOT com>\n"
"Language-Team: Galician <proxecto@trasno.net>\n"
@@ -863,10 +863,10 @@ msgstr "Novo perfil..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -908,7 +908,7 @@ msgstr "Non pode eliminar o perfil actual"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2712,9 +2712,9 @@ msgstr "ADVERTENCIA: ¡O enderezo IP %s normalmente está reservado!"
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2733,8 +2733,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4254,7 +4254,7 @@ msgstr "Seleccione o seu provedor:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/he.po b/po/he.po
index 8c5caf1..d02e291 100644
--- a/po/he.po
+++ b/po/he.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: network-tools\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2008-03-24 03:26+0200\n"
"Last-Translator: Dotan Kamber <kamberd@yahoo.com>\n"
"Language-Team: Hebrew\n"
@@ -860,10 +860,10 @@ msgstr "תצורה חדשה..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -905,7 +905,7 @@ msgstr "אין באפשרותך למחוק את התצורה הנוכחית"
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2734,9 +2734,9 @@ msgstr "אזהרה: כתובת IP זו (%s) היא כתובת שמורה!"
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2755,8 +2755,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4299,7 +4299,7 @@ msgstr "נא לבחור את הספק שלך:"
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 32e212b..9b2c82b 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net-hi\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2004-04-04 21:54+0530\n"
"Last-Translator: धनञ्जय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>\n"
"Language-Team: हिन्दी (Hindi) <dysxhi@yahoo.co.in>\n"
@@ -846,10 +846,10 @@ msgstr "नयी प्रोफ़ाइल..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -891,7 +891,7 @@ msgstr "आप वर्तमान प्रोफ़ाइल को मिट
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2653,9 +2653,9 @@ msgstr "चेतावनी : आईपी पता %s प्रायः आ
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2674,8 +2674,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4198,7 +4198,7 @@ msgstr ""
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index 54f25f7..2f8272d 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx-net 0\n"
-"POT-Creation-Date: 2009-08-17 17:15+0200\n"
+"POT-Creation-Date: 2009-08-17 12:41-0300\n"
"PO-Revision-Date: 2005-01-04 21:25+CET\n"
"Last-Translator: auto\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -848,10 +848,10 @@ msgstr "Novi profil..."
#: ../bin/draknetprofile:155
#, c-format
msgid ""
-"Please specify the name of new network profile to create (e.g., work, home, "
-"roaming, ..). This new profile initially will be created with base on "
-"current settings, and you'll be able to configure your system configuration "
-"as usual afterwards."
+"Please specify the name of the new network profile to be created (e.g., "
+"work, home, roaming, ..). This new profile will be created based on current "
+"settings, and you'll be able to configure your system configuration as usual "
+"afterwards."
msgstr ""
#: ../bin/draknetprofile:166
@@ -893,7 +893,7 @@ msgstr ""
#: ../bin/draknetprofile:196
#, c-format
-msgid "This tool allows to control network profiles."
+msgid "This tool allows you to control network profiles."
msgstr ""
#: ../bin/draknetprofile:197
@@ -2649,9 +2649,9 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:192
#, c-format
msgid ""
-"%s is already used by connection that starts on boot (%s). To use this "
+"%s is already used by a connection that starts on boot (%s). To use this "
"address with this connection, first disable all other devices which use it, "
-"or configure them not to start on boot"
+"or configure them not to start at boot"
msgstr ""
#: ../lib/network/connection/ethernet.pm:219
@@ -2670,8 +2670,8 @@ msgstr ""
#: ../lib/network/connection/ethernet.pm:223
#, c-format
msgid ""
-"You should define the hostname of this machine, which will identify this PC. "
-"Note that this hostname will be shared among all network connections. If "
+"You should define a hostname for this machine, which will identify this PC. "
+"Note that this hostname will be shared among all network connections. If "
"left blank, 'localhost.localdomain' will be used."
msgstr ""
@@ -4145,7 +4145,7 @@ msgstr ""
#: ../lib/network/ndiswrapper.pm:36
#, c-format
msgid ""
-"Please select Windows driver description (.inf file), or corresponding "
+"Please select the Windows driver description (.inf) file, or corresponding "
"driver file (.dll or .o files). Note that only drivers up to Windows XP are "
"supported."
msgstr ""
diff --git a/po/hu.po b/po/hu.po