aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/config/db.php2
-rw-r--r--phpBB/includes/cron/task/core/prune_all_forums.php2
-rw-r--r--phpBB/includes/cron/task/core/prune_forum.php2
-rw-r--r--phpBB/includes/cron/task/core/tidy_search.php2
-rw-r--r--phpBB/includes/db/db_tools.php2
-rw-r--r--phpBB/includes/db/driver/driver.php (renamed from phpBB/includes/db/dbal.php)17
-rw-r--r--phpBB/includes/db/driver/firebird.php (renamed from phpBB/includes/db/firebird.php)4
-rw-r--r--phpBB/includes/db/driver/mssql.php (renamed from phpBB/includes/db/mssql.php)4
-rw-r--r--phpBB/includes/db/driver/mssql_odbc.php (renamed from phpBB/includes/db/mssql_odbc.php)4
-rw-r--r--phpBB/includes/db/driver/mssqlnative.php (renamed from phpBB/includes/db/mssqlnative.php)4
-rw-r--r--phpBB/includes/db/driver/mysql.php (renamed from phpBB/includes/db/mysql.php)4
-rw-r--r--phpBB/includes/db/driver/mysqli.php (renamed from phpBB/includes/db/mysqli.php)4
-rw-r--r--phpBB/includes/db/driver/oracle.php (renamed from phpBB/includes/db/oracle.php)4
-rw-r--r--phpBB/includes/db/driver/postgres.php (renamed from phpBB/includes/db/postgres.php)9
-rw-r--r--phpBB/includes/db/driver/sqlite.php (renamed from phpBB/includes/db/sqlite.php)4
-rw-r--r--phpBB/includes/di/extension/config.php12
-rw-r--r--phpBB/includes/extension/manager.php4
-rw-r--r--phpBB/includes/extension/metadata_manager.php4
-rw-r--r--phpBB/includes/functions.php21
-rw-r--r--phpBB/includes/functions_download.php8
-rw-r--r--phpBB/includes/functions_install.php59
-rw-r--r--phpBB/includes/lock/db.php6
-rw-r--r--phpBB/includes/questionnaire/questionnaire.php2
-rw-r--r--phpBB/includes/search/fulltext_mysql.php4
-rw-r--r--phpBB/includes/search/fulltext_native.php4
-rw-r--r--phpBB/includes/search/fulltext_postgres.php4
-rw-r--r--phpBB/includes/search/fulltext_sphinx.php4
27 files changed, 94 insertions, 106 deletions
diff --git a/phpBB/includes/config/db.php b/phpBB/includes/config/db.php
index 45f9f1cb21..ed86383b6b 100644
--- a/phpBB/includes/config/db.php
+++ b/phpBB/includes/config/db.php
@@ -46,7 +46,7 @@ class phpbb_config_db extends phpbb_config
* @param phpbb_cache_driver_interface $cache Cache instance
* @param string $table Configuration table name
*/
- public function __construct(dbal $db, phpbb_cache_driver_interface $cache, $table)
+ public function __construct(phpbb_db_driver $db, phpbb_cache_driver_interface $cache, $table)
{
$this->db = $db;
$this->cache = $cache;
diff --git a/phpBB/includes/cron/task/core/prune_all_forums.php b/phpBB/includes/cron/task/core/prune_all_forums.php
index ee0b5f7626..26e7528035 100644
--- a/phpBB/includes/cron/task/core/prune_all_forums.php
+++ b/phpBB/includes/cron/task/core/prune_all_forums.php
@@ -39,7 +39,7 @@ class phpbb_cron_task_core_prune_all_forums extends phpbb_cron_task_base
* @param phpbb_config $config The config
* @param dbal $db The db connection
*/
- public function __construct($phpbb_root_path, $php_ext, phpbb_config $config, dbal $db)
+ public function __construct($phpbb_root_path, $php_ext, phpbb_config $config, phpbb_db_driver $db)
{
$this->phpbb_root_path = $phpbb_root_path;
$this->php_ext = $php_ext;
diff --git a/phpBB/includes/cron/task/core/prune_forum.php b/phpBB/includes/cron/task/core/prune_forum.php
index fa7a761d88..9861d8b0c6 100644
--- a/phpBB/includes/cron/task/core/prune_forum.php
+++ b/phpBB/includes/cron/task/core/prune_forum.php
@@ -49,7 +49,7 @@ class phpbb_cron_task_core_prune_forum extends phpbb_cron_task_base implements p
* @param phpbb_config $config The config
* @param dbal $db The db connection
*/
- public function __construct($phpbb_root_path, $php_ext, phpbb_config $config, dbal $db)
+ public function __construct($phpbb_root_path, $php_ext, phpbb_config $config, phpbb_db_driver $db)
{
$this->phpbb_root_path = $phpbb_root_path;
$this->php_ext = $php_ext;
diff --git a/phpBB/includes/cron/task/core/tidy_search.php b/phpBB/includes/cron/task/core/tidy_search.php
index fdbe31346e..169fd3ba73 100644
--- a/phpBB/includes/cron/task/core/tidy_search.php
+++ b/phpBB/includes/cron/task/core/tidy_search.php
@@ -41,7 +41,7 @@ class phpbb_cron_task_core_tidy_search extends phpbb_cron_task_base
* @param dbal $db The db connection
* @param phpbb_user $user The user
*/
- public function __construct($phpbb_root_path, $php_ext, phpbb_auth $auth, phpbb_config $config, dbal $db, phpbb_user $user)
+ public function __construct($phpbb_root_path, $php_ext, phpbb_auth $auth, phpbb_config $config, phpbb_db_driver $db, phpbb_user $user)
{
$this->phpbb_root_path = $phpbb_root_path;
$this->php_ext = $php_ext;
diff --git a/phpBB/includes/db/db_tools.php b/phpBB/includes/db/db_tools.php
index 6df3aac9ce..2bb016cebd 100644
--- a/phpBB/includes/db/db_tools.php
+++ b/phpBB/includes/db/db_tools.php
@@ -300,7 +300,7 @@ class phpbb_db_tools
/**
* Constructor. Set DB Object and set {@link $return_statements return_statements}.
*
- * @param phpbb_dbal $db DBAL object
+ * @param phpbb_db_driver $db Database connection
* @param bool $return_statements True if only statements should be returned and no SQL being executed
*/
function phpbb_db_tools(&$db, $return_statements = false)
diff --git a/phpBB/includes/db/dbal.php b/phpBB/includes/db/driver/driver.php
index ef1dd7d14d..25daa7243d 100644
--- a/phpBB/includes/db/dbal.php
+++ b/phpBB/includes/db/driver/driver.php
@@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
* Database Abstraction Layer
* @package dbal
*/
-class dbal
+class phpbb_db_driver
{
var $db_connect_id;
var $query_result;
@@ -72,17 +72,17 @@ class dbal
/**
* Constructor
*/
- function dbal()
+ function __construct()
{
$this->num_queries = array(
- 'cached' => 0,
- 'normal' => 0,
- 'total' => 0,
+ 'cached' => 0,
+ 'normal' => 0,
+ 'total' => 0,
);
// Fill default sql layer based on the class being called.
// This can be changed by the specified layer itself later if needed.
- $this->sql_layer = substr(get_class($this), 5);
+ $this->sql_layer = substr(get_class($this), strlen('phpbb_db_driver_'));
// Do not change this please! This variable is used to easy the use of it - and is hardcoded.
$this->any_char = chr(0) . '%';
@@ -1042,8 +1042,3 @@ class dbal
return $rows_total;
}
}
-
-/**
-* This variable holds the class name to use later
-*/
-$sql_db = (!empty($dbms)) ? 'dbal_' . basename($dbms) : 'dbal';
diff --git a/phpBB/includes/db/firebird.php b/phpBB/includes/db/driver/firebird.php
index 5728eb901c..a55175c345 100644
--- a/phpBB/includes/db/firebird.php
+++ b/phpBB/includes/db/driver/firebird.php
@@ -15,14 +15,12 @@ if (!defined('IN_PHPBB'))
exit;
}
-include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
-
/**
* Firebird/Interbase Database Abstraction Layer
* Minimum Requirement is Firebird 2.1
* @package dbal
*/
-class dbal_firebird extends dbal
+class phpbb_db_driver_firebird extends phpbb_db_driver
{
var $last_query_text = '';
var $service_handle = false;
diff --git a/phpBB/includes/db/mssql.php b/phpBB/includes/db/driver/mssql.php
index 235c48d3f0..ac957e7698 100644
--- a/phpBB/includes/db/mssql.php
+++ b/phpBB/includes/db/driver/mssql.php
@@ -15,14 +15,12 @@ if (!defined('IN_PHPBB'))
exit;
}
-include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
-
/**
* MSSQL Database Abstraction Layer
* Minimum Requirement is MSSQL 2000+
* @package dbal
*/
-class dbal_mssql extends dbal
+class phpbb_db_driver_mssql extends phpbb_db_driver
{
var $connect_error = '';
diff --git a/phpBB/includes/db/mssql_odbc.php b/phpBB/includes/db/driver/mssql_odbc.php
index 2194de4a5e..13e74e66d4 100644
--- a/phpBB/includes/db/mssql_odbc.php
+++ b/phpBB/includes/db/driver/mssql_odbc.php
@@ -15,8 +15,6 @@ if (!defined('IN_PHPBB'))
exit;
}
-include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
-
/**
* Unified ODBC functions
* Unified ODBC functions support any database having ODBC driver, for example Adabas D, IBM DB2, iODBC, Solid, Sybase SQL Anywhere...
@@ -28,7 +26,7 @@ include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
*
* @package dbal
*/
-class dbal_mssql_odbc extends dbal
+class phpbb_db_driver_mssql_odbc extends phpbb_db_driver
{
var $last_query_text = '';
var $connect_error = '';
diff --git a/phpBB/includes/db/mssqlnative.php b/phpBB/includes/db/driver/mssqlnative.php
index 4a969828e7..4b1639aba2 100644
--- a/phpBB/includes/db/mssqlnative.php
+++ b/phpBB/includes/db/driver/mssqlnative.php
@@ -19,8 +19,6 @@ if (!defined('IN_PHPBB'))
exit;
}
-include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
-
/**
* Prior to version 1.1 the SQL Server Native PHP driver didn't support sqlsrv_num_rows, or cursor based seeking so we recall all rows into an array
* and maintain our own cursor index into that array.
@@ -193,7 +191,7 @@ class result_mssqlnative
/**
* @package dbal
*/
-class dbal_mssqlnative extends dbal
+class phpbb_db_driver_mssqlnative extends phpbb_db_driver
{
var $m_insert_id = NULL;
var $last_query_text = '';
diff --git a/phpBB/includes/db/mysql.php b/phpBB/includes/db/driver/mysql.php
index dcdeec0401..6fc6fab483 100644
--- a/phpBB/includes/db/mysql.php
+++ b/phpBB/includes/db/driver/mysql.php
@@ -15,8 +15,6 @@ if (!defined('IN_PHPBB'))
exit;
}
-include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
-
/**
* MySQL4 Database Abstraction Layer
* Compatible with:
@@ -26,7 +24,7 @@ include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
* MySQL 5.0+
* @package dbal
*/
-class dbal_mysql extends dbal
+class phpbb_db_driver_mysql extends phpbb_db_driver
{
var $multi_insert = true;
var $connect_error = '';
diff --git a/phpBB/includes/db/mysqli.php b/phpBB/includes/db/driver/mysqli.php
index 5713b1992c..be28a95715 100644
--- a/phpBB/includes/db/mysqli.php
+++ b/phpBB/includes/db/driver/mysqli.php
@@ -15,15 +15,13 @@ if (!defined('IN_PHPBB'))
exit;
}
-include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
-
/**
* MySQLi Database Abstraction Layer
* mysqli-extension has to be compiled with:
* MySQL 4.1+ or MySQL 5.0+
* @package dbal
*/
-class dbal_mysqli extends dbal
+class phpbb_db_driver_mysqli extends phpbb_db_driver
{
var $multi_insert = true;
var $connect_error = '';
diff --git a/phpBB/includes/db/oracle.php b/phpBB/includes/db/driver/oracle.php
index 4a2b107865..6263ea8414 100644
--- a/phpBB/includes/db/oracle.php
+++ b/phpBB/includes/db/driver/oracle.php
@@ -15,13 +15,11 @@ if (!defined('IN_PHPBB'))
exit;
}
-include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
-
/**
* Oracle Database Abstraction Layer
* @package dbal
*/
-class dbal_oracle extends dbal
+class phpbb_db_driver_oracle extends phpbb_db_driver
{
var $last_query_text = '';
var $connect_error = '';
diff --git a/phpBB/includes/db/postgres.php b/phpBB/includes/db/driver/postgres.php
index 8dfbfc3b60..147ecd04d9 100644
--- a/phpBB/includes/db/postgres.php
+++ b/phpBB/includes/db/driver/postgres.php
@@ -15,19 +15,12 @@ if (!defined('IN_PHPBB'))
exit;
}
-include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
-
-if (!class_exists('phpbb_error_collector'))
-{
- include($phpbb_root_path . 'includes/error_collector.' . $phpEx);
-}
-
/**
* PostgreSQL Database Abstraction Layer
* Minimum Requirement is Version 7.3+
* @package dbal
*/
-class dbal_postgres extends dbal
+class phpbb_db_driver_postgres extends phpbb_db_driver
{
var $last_query_text = '';
var $connect_error = '';
diff --git a/phpBB/includes/db/sqlite.php b/phpBB/includes/db/driver/sqlite.php
index 06e368d586..6b9cc64d89 100644
--- a/phpBB/includes/db/sqlite.php
+++ b/phpBB/includes/db/driver/sqlite.php
@@ -15,14 +15,12 @@ if (!defined('IN_PHPBB'))
exit;
}
-include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx);
-
/**
* Sqlite Database Abstraction Layer
* Minimum Requirement: 2.8.2+
* @package dbal
*/
-class dbal_sqlite extends dbal
+class phpbb_db_driver_sqlite extends phpbb_db_driver
{
var $connect_error = '';
diff --git a/phpBB/includes/di/extension/config.php b/phpBB/includes/di/extension/config.php
index fb5ca90070..97a6290066 100644
--- a/phpBB/includes/di/extension/config.php
+++ b/phpBB/includes/di/extension/config.php
@@ -43,8 +43,8 @@ class phpbb_di_extension_config extends Extension
require($this->config_file);
$container->setParameter('core.table_prefix', $table_prefix);
- $container->setParameter('cache.driver.class', $this->fix_acm_type($acm_type));
- $container->setParameter('dbal.driver.class', 'dbal_'.$dbms);
+ $container->setParameter('cache.driver.class', $this->convert_30_acm_type($acm_type));
+ $container->setParameter('dbal.driver.class', phpbb_convert_30_dbms_to_31($dbms));
$container->setParameter('dbal.dbhost', $dbhost);
$container->setParameter('dbal.dbuser', $dbuser);
$container->setParameter('dbal.dbpasswd', $dbpasswd);
@@ -66,12 +66,12 @@ class phpbb_di_extension_config extends Extension
}
/**
- * Convert old (3.0) values to 3.1 class names
+ * Convert 3.0 ACM type to 3.1 cache driver class name
*
- * @param style $acm_type ACM type
- * @return ACM type class
+ * @param string $acm_type ACM type
+ * @return cache driver class
*/
- protected function fix_acm_type($acm_type)
+ protected function convert_30_acm_type($acm_type)
{
if (preg_match('#^[a-z]+$#', $acm_type))
{
diff --git a/phpBB/includes/extension/manager.php b/phpBB/includes/extension/manager.php
index bfd4edde93..67cc81e407 100644
--- a/phpBB/includes/extension/manager.php
+++ b/phpBB/includes/extension/manager.php
@@ -34,7 +34,7 @@ class phpbb_extension_manager
/**
* Creates a manager and loads information from database
*
- * @param dbal $db A database connection
+ * @param phpbb_db_driver $db A database connection
* @param phpbb_config $config phpbb_config
* @param string $extension_table The name of the table holding extensions
* @param string $phpbb_root_path Path to the phpbb includes directory.
@@ -42,7 +42,7 @@ class phpbb_extension_manager
* @param phpbb_cache_driver_interface $cache A cache instance or null
* @param string $cache_name The name of the cache variable, defaults to _ext
*/
- public function __construct(dbal $db, phpbb_config $config, $extension_table, $phpbb_root_path, $php_ext = '.php', phpbb_cache_driver_interface $cache = null, $cache_name = '_ext')
+ public function __construct(phpbb_db_driver $db, phpbb_config $config, $extension_table, $phpbb_root_path, $php_ext = '.php', phpbb_cache_driver_interface $cache = null, $cache_name = '_ext')
{
$this->phpbb_root_path = $phpbb_root_path;
$this->db = $db;
diff --git a/phpBB/includes/extension/metadata_manager.php b/phpBB/includes/extension/metadata_manager.php
index ea85bd3c4e..36b0f8b184 100644
--- a/phpBB/includes/extension/metadata_manager.php
+++ b/phpBB/includes/extension/metadata_manager.php
@@ -34,12 +34,12 @@ class phpbb_extension_metadata_manager
/**
* Creates the metadata manager
*
- * @param dbal $db A database connection
+ * @param phpbb_db_driver $db A database connection
* @param string $extension_manager An instance of the phpbb extension manager
* @param string $phpbb_root_path Path to the phpbb includes directory.
* @param string $phpEx php file extension
*/
- public function __construct($ext_name, dbal $db, phpbb_extension_manager $extension_manager, $phpbb_root_path, $phpEx = '.php', phpbb_template $template, phpbb_config $config)
+ public function __construct($ext_name, phpbb_db_driver $db, phpbb_extension_manager $extension_manager, $phpbb_root_path, $phpEx = '.php', phpbb_template $template, phpbb_config $config)
{
$this->phpbb_root_path = $phpbb_root_path;
$this->db = $db;
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index e492f97022..4bf991ca9e 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -5550,6 +5550,27 @@ function phpbb_to_numeric($input)
}
/**
+* Convert 3.0 dbms to 3.1 db driver class name
+*
+* @param string $dbms dbms parameter
+* @return db driver class
+*/
+function phpbb_convert_30_dbms_to_31($dbms)
+{
+ if (class_exists($dbms))
+ {
+ return $dbms;
+ }
+
+ if (class_exists('phpbb_db_driver_' . $dbms))
+ {
+ return 'phpbb_db_driver_' . $dbms;
+ }
+
+ throw new \RuntimeException("You have specified an invalid dbms driver: $dbms");
+}
+
+/**
* Create a Symfony Request object from phpbb_request object
*
* @param phpbb_request $request Request object
diff --git a/phpBB/includes/functions_download.php b/phpBB/includes/functions_download.php
index fc6f1cc762..9ae647d806 100644
--- a/phpBB/includes/functions_download.php
+++ b/phpBB/includes/functions_download.php
@@ -596,7 +596,7 @@ function phpbb_parse_range_request($request_array, $filesize)
/**
* Increments the download count of all provided attachments
*
-* @param dbal $db The database object
+* @param phpbb_db_driver $db The database object
* @param array|int $ids The attach_id of each attachment
*
* @return null
@@ -617,7 +617,7 @@ function phpbb_increment_downloads($db, $ids)
/**
* Handles authentication when downloading attachments from a post or topic
*
-* @param dbal $db The database object
+* @param phpbb_db_driver $db The database object
* @param phpbb_auth $auth The authentication object
* @param int $topic_id The id of the topic that we are downloading from
*
@@ -651,7 +651,7 @@ function phpbb_download_handle_forum_auth($db, $auth, $topic_id)
/**
* Handles authentication when downloading attachments from PMs
*
-* @param dbal $db The database object
+* @param phpbb_db_driver $db The database object
* @param phpbb_auth $auth The authentication object
* @param int $user_id The user id
* @param int $msg_id The id of the PM that we are downloading from
@@ -678,7 +678,7 @@ function phpbb_download_handle_pm_auth($db, $auth, $user_id, $msg_id)
/**
* Checks whether a user can download from a particular PM
*
-* @param dbal $db The database object
+* @param phpbb_db_driver $db The database object
* @param int $user_id The user id
* @param int $msg_id The id of the PM that we are downloading from
*
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php
index ab6b3ea009..2b4b7eb10d 100644
--- a/phpBB/includes/functions_install.php
+++ b/phpBB/includes/functions_install.php
@@ -28,7 +28,7 @@ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20
'SCHEMA' => 'firebird',
'MODULE' => 'interbase',
'DELIM' => ';;',
- 'DRIVER' => 'firebird',
+ 'DRIVER' => 'phpbb_db_driver_firebird',
'AVAILABLE' => true,
'2.0.x' => false,
),
@@ -37,7 +37,7 @@ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20
'SCHEMA' => 'mysql_41',
'MODULE' => 'mysqli',
'DELIM' => ';',
- 'DRIVER' => 'mysqli',
+ 'DRIVER' => 'phpbb_db_driver_mysqli',
'AVAILABLE' => true,
'2.0.x' => true,
),
@@ -46,7 +46,7 @@ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20
'SCHEMA' => 'mysql',
'MODULE' => 'mysql',
'DELIM' => ';',
- 'DRIVER' => 'mysql',
+ 'DRIVER' => 'phpbb_db_driver_mysql',
'AVAILABLE' => true,
'2.0.x' => true,
),
@@ -55,7 +55,7 @@ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20
'SCHEMA' => 'mssql',
'MODULE' => 'mssql',
'DELIM' => 'GO',
- 'DRIVER' => 'mssql',
+ 'DRIVER' => 'phpbb_db_driver_mssql',
'AVAILABLE' => true,
'2.0.x' => true,
),
@@ -64,7 +64,7 @@ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20
'SCHEMA' => 'mssql',
'MODULE' => 'odbc',
'DELIM' => 'GO',
- 'DRIVER' => 'mssql_odbc',
+ 'DRIVER' => 'phpbb_db_driver_mssql_odbc',
'AVAILABLE' => true,
'2.0.x' => true,
),
@@ -73,7 +73,7 @@ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20
'SCHEMA' => 'mssql',
'MODULE' => 'sqlsrv',
'DELIM' => 'GO',
- 'DRIVER' => 'mssqlnative',
+ 'DRIVER' => 'phpbb_db_driver_mssqlnative',
'AVAILABLE' => true,
'2.0.x' => false,
),
@@ -82,7 +82,7 @@ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20
'SCHEMA' => 'oracle',
'MODULE' => 'oci8',
'DELIM' => '/',
- 'DRIVER' => 'oracle',
+ 'DRIVER' => 'phpbb_db_driver_oracle',
'AVAILABLE' => true,
'2.0.x' => false,
),
@@ -91,7 +91,7 @@ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20
'SCHEMA' => 'postgres',
'MODULE' => 'pgsql',
'DELIM' => ';',
- 'DRIVER' => 'postgres',
+ 'DRIVER' => 'phpbb_db_driver_postgres',
'AVAILABLE' => true,
'2.0.x' => true,
),
@@ -100,7 +100,7 @@ function get_available_dbms($dbms = false, $return_unavailable = false, $only_20
'SCHEMA' => 'sqlite',
'MODULE' => 'sqlite',
'DELIM' => ';',
- 'DRIVER' => 'sqlite',
+ 'DRIVER' => 'phpbb_db_driver_sqlite',
'AVAILABLE' => true,
'2.0.x' => false,
),
@@ -205,26 +205,19 @@ function connect_check_db($error_connect, &$error, $dbms_details, $table_prefix,
$dbms = $dbms_details['DRIVER'];
- if ($load_dbal)
- {
- // Include the DB layer
- include($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx);
- }
-
// Instantiate it and set return on error true
- $sql_db = 'dbal_' . $dbms;
- $db = new $sql_db();
+ $db = new $dbms();
$db->sql_return_on_error(true);
// Check that we actually have a database name before going any further.....
- if ($dbms_details['DRIVER'] != 'sqlite' && $dbms_details['DRIVER'] != 'oracle' && $dbname === '')
+ if ($dbms_details['DRIVER'] != 'phpbb_db_driver_sqlite' && $dbms_details['DRIVER'] != 'phpbb_db_driver_oracle' && $dbname === '')
{
$error[] = $lang['INST_ERR_DB_NO_NAME'];
return false;
}
// Make sure we don't have a daft user who thinks having the SQLite database in the forum directory is a good idea
- if ($dbms_details['DRIVER'] == 'sqlite' && stripos(phpbb_realpath($dbhost), phpbb_realpath('../')) === 0)
+ if ($dbms_details['DRIVER'] == 'phpbb_db_driver_sqlite' && stripos(phpbb_realpath($dbhost), phpbb_realpath('../')) === 0)
{
$error[] = $lang['INST_ERR_DB_FORUM_PATH'];
return false;
@@ -233,8 +226,8 @@ function connect_check_db($error_connect, &$error, $dbms_details, $table_prefix,
// Check the prefix length to ensure that index names are not too long and does not contain invalid characters
switch ($dbms_details['DRIVER'])
{
- case 'mysql':
- case 'mysqli':
+ case 'phpbb_db_driver_mysql':
+ case 'phpbb_db_driver_mysqli':
if (strspn($table_prefix, '-./\\') !== 0)
{
$error[] = $lang['INST_ERR_PREFIX_INVALID'];
@@ -243,22 +236,22 @@ function connect_check_db($error_connect, &$error, $dbms_details, $table_prefix,
// no break;
- case 'postgres':
+ case 'phpbb_db_driver_postgres':
$prefix_length = 36;
break;
- case 'mssql':
- case 'mssql_odbc':
- case 'mssqlnative':
+ case 'phpbb_db_driver_mssql':
+ case 'phpbb_db_driver_mssql_odbc':
+ case 'phpbb_db_driver_mssqlnative':
$prefix_length = 90;
break;
- case 'sqlite':
+ case 'phpbb_db_driver_sqlite':
$prefix_length = 200;
break;
- case 'firebird':
- case 'oracle':
+ case 'phpbb_db_driver_firebird':
+ case 'phpbb_db_driver_oracle':
$prefix_length = 6;
break;
}
@@ -296,21 +289,21 @@ function connect_check_db($error_connect, &$error, $dbms_details, $table_prefix,
// Make sure that the user has selected a sensible DBAL for the DBMS actually installed
switch ($dbms_details['DRIVER'])
{
- case 'mysqli':
+ case 'phpbb_db_driver_mysqli':
if (version_compare(mysqli_get_server_info($db->db_connect_id), '4.1.3', '<'))
{
$error[] = $lang['INST_ERR_DB_NO_MYSQLI'];
}
break;
- case 'sqlite':
+ case 'phpbb_db_driver_sqlite':
if (version_compare(sqlite_libversion(), '2.8.2', '<'))
{
$error[] = $lang['INST_ERR_DB_NO_SQLITE'];
}
break;
- case 'firebird':
+ case 'phpbb_db_driver_firebird':
// check the version of FB, use some hackery if we can't get access to the server info
if ($db->service_handle !== false && function_exists('ibase_server_info'))
{
@@ -391,7 +384,7 @@ function connect_check_db($error_connect, &$error, $dbms_details, $table_prefix,
}
break;
- case 'oracle':
+ case 'phpbb_db_driver_oracle':
if ($unicode_check)
{
$sql = "SELECT *
@@ -413,7 +406,7 @@ function connect_check_db($error_connect, &$error, $dbms_details, $table_prefix,
}
break;
- case 'postgres':
+ case 'phpbb_db_driver_postgres':
if ($unicode_check)
{
$sql = "SHOW server_encoding;";
diff --git a/phpBB/includes/lock/db.php b/phpBB/includes/lock/db.php
index 6e94dd5a85..ccdaed0b28 100644
--- a/phpBB/includes/lock/db.php
+++ b/phpBB/includes/lock/db.php
@@ -48,7 +48,7 @@ class phpbb_lock_db
/**
* A database connection
- * @var dbal
+ * @var phpbb_db_driver
*/
private $db;
@@ -59,9 +59,9 @@ class phpbb_lock_db
*
* @param string $config_name A config variable to be used for locking
* @param array $config The phpBB configuration
- * @param dbal $db A database connection
+ * @param phpbb_db_driver $db A database connection
*/
- public function __construct($config_name, phpbb_config $config, dbal $db)
+ public function __construct($config_name, phpbb_config $config, phpbb_db_driver $db)
{
$this->config_name = $config_name;
$this->config = $config;
diff --git a/phpBB/includes/questionnaire/questionnaire.php b/phpBB/includes/questionnaire/questionnaire.php
index 2d29fe978e..6f2727a38c 100644
--- a/phpBB/includes/questionnaire/questionnaire.php
+++ b/phpBB/includes/questionnaire/questionnaire.php
@@ -260,6 +260,8 @@ class phpbb_questionnaire_phpbb_data_provider
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,
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php
index ff2e24aa05..324c214e91 100644
--- a/phpBB/includes/search/fulltext_mysql.php
+++ b/phpBB/includes/search/fulltext_mysql.php
@@ -41,8 +41,8 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base
protected $config;
/**
- * DBAL object
- * @var dbal
+ * Database connection
+ * @var phpbb_db_driver
*/
protected $db;
diff --git a/phpBB/includes/search/fulltext_native.php b/phpBB/includes/search/fulltext_native.php
index 4623326fc7..53df8348ae 100644
--- a/phpBB/includes/search/fulltext_native.php
+++ b/phpBB/includes/search/fulltext_native.php
@@ -85,8 +85,8 @@ class phpbb_search_fulltext_native extends phpbb_search_base
protected $config;
/**
- * DBAL object
- * @var dbal
+ * Database connection
+ * @var phpbb_db_driver
*/
protected $db;
diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php
index 2880610655..f22ee2ca16 100644
--- a/phpBB/includes/search/fulltext_postgres.php
+++ b/phpBB/includes/search/fulltext_postgres.php
@@ -66,8 +66,8 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base
protected $config;
/**
- * DBAL object
- * @var dbal
+ * Database connection
+ * @var phpbb_db_driver
*/
protected $db;
diff --git a/phpBB/includes/search/fulltext_sphinx.php b/phpBB/includes/search/fulltext_sphinx.php
index dd5634b623..a84a64825c 100644
--- a/phpBB/includes/search/fulltext_sphinx.php
+++ b/phpBB/includes/search/fulltext_sphinx.php
@@ -84,8 +84,8 @@ class phpbb_search_fulltext_sphinx
protected $config;
/**
- * DBAL object
- * @var dbal
+ * Database connection
+ * @var phpbb_db_driver
*/
protected $db;
se agreement"
msgstr "Lisensieooreenkoms"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Verlaat"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Beskik u oor nog?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Aanvaar"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Weier"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Kies asb. 'n taal om te gebruik"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -551,87 +551,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Alle tale"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Alle tale"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "selfdoen"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Land / Omgewing"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Kies asseblief u land"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier is die volle lys van beskikbare lande"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Ander poorte"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Gevorderd"
-#: any.pm:1250
+#: any.pm:1243
#, fuzzy, c-format
msgid "Input method:"
msgstr "Netwerkmetode:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Geen"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Geen deling"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Laat alle gebruikers toe"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Aangepaste"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -646,32 +646,32 @@ msgstr ""
"\n"
"\"Aangepaste\" laat toe vir per-gebruiker verstellings.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "U kan uitvoer deur NFS of SMB te gebruik. Kies watter u wil gebruik."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Loods userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -681,54 +681,54 @@ msgstr ""
"U kan van 'userdrake' gebruik maak om gebruikers by heirdie\n"
"groep te voeg."
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "U moet afteken en weer inteken alvorens veranderinge bekragtig word"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Tydsone"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Hardewareklok gestel vir GMT"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Hardewareklok gestel vir GMT"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP-bediener"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Outo-tydsinkronisasie met NTP"
@@ -1055,7 +1055,7 @@ msgstr "Domein-administrarteur se Wagwoord"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1070,47 +1070,47 @@ msgstr ""
"vir die verstekopsie.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO met tekskieskaart"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "U kan nie die herlaaistelsel op 'n %s partisie installeer nie\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1119,7 +1119,7 @@ msgstr ""
"U herlaaistelsel se konfigurasie moet opgedateer word omdat 'n partisie se "
"nommer verander het"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1128,7 +1128,7 @@ msgstr ""
"Die herlaaistelsel kan nie korrek geïnstalleer word nie. U moet in redding-"
"modus laai, kies dan \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Her-installeer herlaaistelsel"
@@ -1226,7 +1226,7 @@ msgstr "Hegpunt"
msgid "Options"
msgstr "Opsies"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Verwyder"
@@ -1332,7 +1332,7 @@ msgid "Continue"
msgstr "Gaan voort"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1454,7 +1454,7 @@ msgid "More"
msgstr "Meer Keuses"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Konfigurasie"
@@ -2241,8 +2241,8 @@ msgstr "Verander tipe"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Kanselleer"
@@ -2749,12 +2749,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
@@ -3196,8 +3196,8 @@ msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
-"Hier kan u 'n alternatiewe drywer vir u klankkaart kies ( OSS of ALSA)"
-"klankkaart (%s)."
+"Hier kan u 'n alternatiewe drywer vir u klankkaart kies ( OSS of "
+"ALSA)klankkaart (%s)."
#. -PO: here the first %s is either "OSS" or "ALSA",
#. -PO: the second %s is the name of the current driver
@@ -3249,7 +3249,7 @@ msgstr ""
"- die nuwe ALSA-api gebruik. Dit het heelwat gevorderde\n"
"glanspunte het, maar moet die ALSA programmateek gebruik\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Drywer:"
@@ -3303,61 +3303,74 @@ msgstr "Klank foutopsporing"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Probeer gerus hierdie metode om u klank aan die gang te kry:\n"
-"(vanaf die instruksielyn)\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\"sal vir u aandui watter verstek drywer "
-"u\n"
-"kaart gebruik\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" sal aan u vertoon watter drywer\n"
-"tans gebruik word\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/lsmod\" sal u toelaat om te sien of die kaart se module (drywer)\n"
-"reeds gelaai is of nie.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" en \"/sbin/chkconfig --list alsa\" sal\n"
-"aandui indien 'sound' en 'alsa' dienste loop in init vlak 3\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"aumix -q\" sal vir u aandui of die klank swygend is of nie \n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" sal aandui watter program die klankkaart\n"
-"gebruik.\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Laat ek enige drywer kies"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Kies 'n eiemagtige drywer"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3437,12 +3450,12 @@ msgstr "Nee"
msgid "Choose a file"
msgstr "Kies 'n lêer"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Voeg by"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Verander"
@@ -3477,7 +3490,7 @@ msgstr "Nie 'n gids nie"
msgid "No such file"
msgstr "Nee soos lêer"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4764,17 +4777,17 @@ msgstr "Welkom by %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5134,12 +5147,12 @@ msgstr "Wil u op hierdie knoppie klik?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Benodig wagwoord"
@@ -5369,8 +5382,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Authorize:\n"
"\n"
@@ -5381,8 +5394,8 @@ msgstr ""
"\n"
"- none if set to \"NONE\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
#: security/help.pm:63
#, c-format
@@ -6521,7 +6534,7 @@ msgstr "Eksterne-administrasie"
msgid "Database Server"
msgstr "Databasis-bediener"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Dienste"
@@ -6536,22 +6549,22 @@ msgstr "Kies watter dienste moet outomaties begin met herlaaityd."
msgid "%d activated for %d registered"
msgstr "%d ge-aktiveer vir %d geregistreer"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "aktief"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "onaktief"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Dienste en deamone"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6560,27 +6573,27 @@ msgstr ""
"Jammer, geen ekstra inligting\n"
"rakende hierdie diens nie."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Begin sodra gevra word"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "met herlaai"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Begin"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Stop"
@@ -6918,6 +6931,54 @@ msgid "Installation failed"
msgstr "Installasie het gefaal!"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Probeer gerus hierdie metode om u klank aan die gang te kry:\n"
+#~ "(vanaf die instruksielyn)\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\"sal vir u aandui watter verstek "
+#~ "drywer u\n"
+#~ "kaart gebruik\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" sal aan u vertoon watter drywer\n"
+#~ "tans gebruik word\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" sal u toelaat om te sien of die kaart se module "
+#~ "(drywer)\n"
+#~ "reeds gelaai is of nie.\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" en \"/sbin/chkconfig --list alsa\" "
+#~ "sal\n"
+#~ "aandui indien 'sound' en 'alsa' dienste loop in init vlak 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" sal vir u aandui of die klank swygend is of nie \n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" sal aandui watter program die klankkaart\n"
+#~ "gebruik.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
@@ -7176,8 +7237,8 @@ msgstr "Installasie het gefaal!"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
@@ -7189,8 +7250,8 @@ msgstr "Installasie het gefaal!"
#~ "Indien die netwerk nog nie opgestel is nie, sal Drakx poog om by die "
#~ "domein aan te sluit, as die netwerk reg is.\n"
#~ "Sou dit nie werk nie, kan u later 'smbpasswd -j DOMEIN -U GEBRUIKER%"
-#~ "%WAGWOORD' op die instruksielyn as die supergebruiker intik. Die Windows"
-#~ "(tm) Domein, en Admin gebruiker/wagwoord moet gebruik word.\n"
+#~ "%WAGWOORD' op die instruksielyn as die supergebruiker intik. Die "
+#~ "Windows(tm) Domein, en Admin gebruiker/wagwoord moet gebruik word.\n"
#~ "Die opdrag 'wbinfo -t' sal u 'authentication secrets' ondersoek."
#~ msgid "Authentication Windows Domain"
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index 7040b59f0..41d357d8d 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -23,12 +23,12 @@ msgstr ""
msgid "Please wait"
msgstr "እባክዎ ይጠብቁ"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "የአስጀማሪ ተከላ በመከናወን ላይ"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -55,7 +55,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -65,464 +65,464 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "የአስጀማሪ ተከላ በመከናወን ላይ"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "አስጀማሪውን የት መትከል ይፈልጋሉ?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr ""
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr ""
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "ፍሎፒ ላይ"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "ዝለል"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "የአጀማመር ዘይቤ ምርጫ"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "የአስጀማሪ ዋና ምርጫዎች"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "አስጀማሪያ"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "ጥቅም ላይ የሚውለው አስጀማሪ"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "የመጀመሪያ መሳሪያ"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr ""
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "ACPI አስቻል"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI አስቻል"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI አስቻል"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI አስቻል"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "ደህንነት"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "ሚስጢራዊ ቃል"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "ሚስጢራዊ ቃላቱ አይመሳሰሉም"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "እባክዎ እንደገና ይሞክሩ"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "ሚስጢራዊ ቃል (እንደገና)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "በየጅማሬው /tmpን አጽዳ"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "መልዕክት አስጀምር"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "የFirmware አዘግይ ክፈት"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "ከዲሲ ማስጀመር አስችል?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "ቀዳሚ OS?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "ምስል"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "የቪዲዮ አሰራር ዘዴ"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "የተጠቃሚው እይታ"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "መለያ"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "ቀዳሚ"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "ሊኑክስ"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "ሌሎች የመጠቀሚያ ዜዴዎች (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "የአጀማመር ዘይቤ ምርጫ"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "የX ፕሮግራሞች ማሳያ"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "ፍቀድ \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s በፊት ተጨምሯል)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "እባክዎ የተጠቃሚ ስም ይስጡ"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "የተጠቃሚ ስሙ በጣም ረጅም ነው"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "ይህ የተጠቃሚ ስም በፊትም ነበር"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "የተጠቃሚ መለያ ቁጥር"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "የብድን መለያ ቁጥር"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "(%f በሰነድ-ስም ይተካል፤ %l በመስመር ቁጥር)"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "የተጠቃሚ ስም"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "የroot ሚስጢራዊ ቃል ይምረጡ"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"የተጠቃሚ ስም ያስገቡ\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "ምልክት"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "እውነተኛ ስም"
-#: any.pm:923
+#: any.pm:916
#, fuzzy, c-format
msgid "Login name"
msgstr "Name=ዝምብለህ ይግባ"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "ሼል"
-#: any.pm:971
+#: any.pm:964
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "ሲያትም እባክዎ ይጠብቁ\n"
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "ይህንን ሁኔታ መጠቀም ይፈልጋሉ?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "ቀዳሚ ተጠቃሚ ይምረጡ:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "ዝጋ"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "ውጣ"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "ሌላ አልዎት?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "ተቀበል"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "አትቀበል"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "እባክዎ መጠቀሚያ ቋንቋ ይምረጡ።"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -530,87 +530,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "ሁሉንም ቋንቋዎች"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "የመመሪያ ገጾች"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "ሀገር / አካባቢ"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "እባክዎ ሀገሮን ይምረጡ።"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "እዚህ ያሉት ሀገሮች ሙሉ ዝርዝር ይገኛል"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "ሌላ ምርጫዎች"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "ጠላቂ"
-#: any.pm:1250
+#: any.pm:1243
#, fuzzy, c-format
msgid "Input method:"
msgstr "የX ዘገባ የማስትገባት ዘዴ"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "ምንም"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "መጋራት የለም"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "ለሁሉም ተጠቃሚዎች ፍቀድ"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "ምርጫ"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -620,86 +620,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "userdrake አስጀምር"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "የሰአት ክልል"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "የሰአት ክልሎት የትኛው ነው?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "ለሀርድዌር ሰአት GMT ተመርጧል"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP ሰርቨር"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1022,7 +1022,7 @@ msgid "Domain Admin Password"
msgstr "የዶሜን አስተዳዳሪ ሚስጢራዊ ቃል"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1032,61 +1032,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO ከጽሁፍ መዘርዝር ጋር"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "በ/boot ውስጥ በቂ ቦታ የለም"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "አስጀማሪውን እንደገና ይትከሉ"
@@ -1180,7 +1180,7 @@ msgstr ""
msgid "Options"
msgstr "ምርጫዎች"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "አስወግድ"
@@ -1286,7 +1286,7 @@ msgid "Continue"
msgstr "ቀጥል"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1405,7 +1405,7 @@ msgid "More"
msgstr "ተጨማሪ"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "ስየማ"
@@ -2169,8 +2169,8 @@ msgstr "አይነት ለውጥ"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "ተወው"
@@ -2632,12 +2632,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "መከፋፈል አልተሳካም: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3089,7 +3089,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr ""
@@ -3135,40 +3135,74 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, fuzzy, c-format
msgid "Choosing an arbitrary driver"
msgstr "የነሲብ URLን አታስችል"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3240,12 +3274,12 @@ msgstr "አይ"
msgid "Choose a file"
msgstr "ፋይል ይምረጡ"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "ጨምር"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "ለውጥ"
@@ -3280,7 +3314,7 @@ msgstr "ዶሴ አይደለም"
msgid "No such file"
msgstr "ፋይሉ `%s'ን የለም\n"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4562,17 +4596,17 @@ msgstr "ወደ %s እንኳን ደህና መጡ"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr ""
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -4907,12 +4941,12 @@ msgstr "እዚህ ቁልፍ ላይ መጫን ይፈልጋሉ?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "ሚስጥር-ቃል ያስፈልጋል"
@@ -5119,8 +5153,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6136,7 +6170,7 @@ msgstr ""
msgid "Database Server"
msgstr "ስለተጠሪ መረጃ"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "አገልግሎት"
@@ -6151,49 +6185,49 @@ msgstr ""
msgid "%d activated for %d registered"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "በሥራ ላይ"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr ""
-#: services.pm:248
+#: services.pm:246
#, fuzzy, c-format
msgid "Services and daemons"
msgstr "የገጽ አናት እና የገጽ ግርጌ"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "መረጃ"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "በተጠየቀ ጊዜ ጀምር"
-#: services.pm:262
+#: services.pm:260
#, fuzzy, c-format
msgid "On boot"
msgstr "የተመሠረተው፦"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "ጀምር"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "አቁም"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index e1a0495f0..044935337 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2011-05-19 13:12+0000\n"
"Last-Translator: salim salim <almusalimalmusalimah@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,7 +16,7 @@ msgstr ""
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -25,12 +25,12 @@ msgstr ""
msgid "Please wait"
msgstr "الرجاء الانتظار"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "محمل الإقلاع قيد التثبيت"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,12 +46,12 @@ msgstr ""
"\n"
"أتريد تعيين رقم هويّة كتلة جديد؟"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "فشل تثبيت محمّل الإقلاع. حدث الخطأ التالي:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -69,7 +69,7 @@ msgstr ""
" ثم اكتب: shut-down\n"
"بعد إقلاع النظام التالي يجب أن ترى مُلقّن محمّل الإقلاع."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -84,268 +84,268 @@ msgstr ""
"\n"
"على أي قرص تقوم بالإقلاع؟"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr ""
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "أين تريد تثبيت محمّل الإقلاع؟"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "القطاع الأول من القرص (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "القطاع الأول من التجزيء الجذري"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "على قرص مرن"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "تخطّي"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "تهيئة أسلوب الإقلاع"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "خيارات محمّل الإقلاع الرئيسية"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "محمّل الإقلاع"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "محمّل الإقلاع المُستخدم"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "جهاز الإقلاع"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "توقيت ما قبل إقلاع الصورة الافتراضية"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "تمكين ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr ""
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr ""
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "الأمن"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "كلمة المرور"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "الرجاء المحاولة مجدداً"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "كلمة المرور (مجدداً)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "تنظيف /tmp عند كل إقلاع"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "رسالة Init"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "تأخير Open Firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "الوقت الأقصى لإقلاع النواة"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "تمكين الإقلاع من القرص المدمج؟"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "تمكين إقلاع OF؟"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "نظام التشغيل الافتراضي؟"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "صورة"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "الجذر"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "إلحاق"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "وضعية الفيديو"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "سجلّ إعداد الشبكة "
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "تسمية"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "افتراضي"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "لا فيديو"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "لا يُسمح بالتسميات الفارغة"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "يجب تحديد صورة النواة"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "يجب تحديد تجزيء جذر"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "هذه التسمية مستخدمة مسبقا"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل المُراد إضافته؟"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "لينكس"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "نظام تشغيل آخر (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "نظام تشغيل آخر (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "نظام تشغيل آخر (ويندوز...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -354,194 +354,194 @@ msgstr ""
"هذه هي المدخلات المختلفة في قائمة الإقلاع حتى الآن.\n"
"يمكنك إضافة مدخلات أخرى أو تغيير الموجودة."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "الوصول إلى برامج X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "الوصول إلى أدوات rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "السماح بـ\"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "الوصول إلى ملفات الإدارة"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "الوصول إلى أدوات الشبكة"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "الوصول إلى أدوات التجميع"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(تمت إضافة %s مسبقا)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "الرجاء إعطاء اسم مستخدم"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "اسم المستخدم طويل جداً"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "هوية المستخدم"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "هوية المجموعة"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "ضع كلمة مرور المستخدم الجذر"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "أيقونة"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "اسم الدخول"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "الصدفة"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "انتظر من فضلك، جاري إضافة الوسائط..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "تسجيل دخول آلي"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "يمكن إعداد جهازك لتسجيل الدخول آلياً لمستخدم معين."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "اختيار المستخدم الافتراضي:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "اختيار مدير النوافذ الذي سيتم تشغيله:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "ملاحظات الإصدار"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "إغلاق"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "اتفاقية الترخيص"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "خروج"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "قبول"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "رفض"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "الرجاء اختيار لغة لاستخدامها"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -549,87 +549,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "ماجيّا"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "كل اللغات"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "كل اللغات"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "خيار اللغة"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "الدولة / الإقليم"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "الرجاء اختيار الدولة"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "هذه قائمة كاملة بكل الدول المتوفرة"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "دول أخرى"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "متقدم"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "طريقة الإدخال:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "لاشيء"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "لا مشاركة"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "السماح لكل المستخدمين"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "مخصّص"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -644,14 +644,14 @@ msgstr ""
"\n"
"\"مخصص\" يسمح لك بعمل إعدادات خاص لكل مستخدم.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr "NFS: نظام تقسيم ملفّات يونكس التّقليدي، بدعم أقلّ على ماك و ويندوز."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -660,18 +660,18 @@ msgstr ""
"SMB: نظام تقسيم ملفّات مستعمل من قبل ويندوز، ماك OS X و العديد من أنظمة لينكس "
"الحديثة."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "يمكنك التّصدير باستعمال NFS أو SMB. الرجاء اختيار أيّهما تريد استعماله."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "تشغيل userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -680,54 +680,54 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "تحتاج أن تقوم بالخروج والعودة مجدّداً حتى يسري مفعول التّغييرات"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "المنطقة الزمنية"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "ما هي منطقتك الزمنية؟"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "خادم NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "تزامن وقت آلي (باستخدام NTP)"
@@ -1056,7 +1056,7 @@ msgid "Domain Admin Password"
msgstr "كلمة المرور لمدير النطاق"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1071,54 +1071,54 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO مع قائمة نصية"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "لا توجد مساحة كافية في /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزيء %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "تهيئة محمّل الإقلاع يجب أن يحدّث لأنّ التجزيء تمّ إعادة ترقيمه"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1127,7 +1127,7 @@ msgstr ""
"لا يمكن تثبيت محمّل الإقلاع بشكل صحيح. يجب أن تقوم بإقلاع الإنقاذ وتختار \"%s"
"\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "إعادة تثبيت مُحمِّل الإقلاع"
@@ -1225,7 +1225,7 @@ msgstr "مكان التركيب"
msgid "Options"
msgstr "خيارات"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "حذف"
@@ -1331,7 +1331,7 @@ msgid "Continue"
msgstr "استمرار"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1453,7 +1453,7 @@ msgid "More"
msgstr "المزيد"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "التأكيد"
@@ -2235,8 +2235,8 @@ msgstr "تغيير النوع"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "إلغاء"
@@ -2735,12 +2735,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "فشلت التجزئة: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "لا يمكنك استخدام JFS للتجزئات أصغر من 16 ميغابايت"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "لا يمكنك استخدام ReiserFS للتجزئات أصغر من 32 ميغابايت"
@@ -3214,7 +3214,7 @@ msgstr ""
"- واجهة تطبيق ALSA الجديدة والتي توفّر العديد من الميزات المحسّنة إلّا أنّها "
"تتطلّب مكتبة ALSA.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "المُشغّل:"
@@ -3266,59 +3266,74 @@ msgstr "حل مشاكل الصوت"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"الاختبار الكلاسيكي لعلّة الصوت هو تشغيل الأوامر التّالية:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" سيخبرك باسم مشغّل الذي تستخدمه بطاقتك "
-"الصّوتيّة بشكل افتراضي\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" سيخبرك باسم مشغّل\n"
-"المستخدم حاليّاً\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/lsmod\" سيمكّنك من التحقّق من أن وحدته (مشغّل) هي\n"
-"مُحمّلة أم لا\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" و \"/sbin/chkconfig --list alsa\" سوف\n"
-"يخبرك إن كانت خدمات الصّوت وalsa مُهيّئة للعمل على\n"
-"initlevel 3\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"aumix -q\" سيخبرك ما إذا كان الصّوت مكتوماً أم لا\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" سيخبرك عن أيّ برنامج يستخدم بطاقة الصّوت.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "اسمح لي أن أختار مشغل"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "جاري اختيار مشغل عام"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3398,12 +3413,12 @@ msgstr "لا"
msgid "Choose a file"
msgstr "اختيار ملف"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "إضافة"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "تعديل"
@@ -3438,7 +3453,7 @@ msgstr "لا دليل كذلك"
msgid "No such file"
msgstr "لا ملف كذلك"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4725,17 +4740,17 @@ msgstr "أهلا في %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "حذف الكتل المنطقية أولاً\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5090,12 +5105,12 @@ msgstr "أين تريد تركيب الجهاز %s؟"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr ""
@@ -5310,8 +5325,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6419,7 +6434,7 @@ msgstr "الإدارة عن بعد"
msgid "Database Server"
msgstr "خادم قواعد بيانات"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "الخدمات"
@@ -6434,22 +6449,22 @@ msgstr "اختر أي خدمات تريدها أن تبدأ آلياً عند ا
msgid "%d activated for %d registered"
msgstr "%d منشّطة لـ %d مسجلة"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "تعمل"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "متوقفة"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "الخدمات والعفاريت"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6458,27 +6473,27 @@ msgstr ""
"عفواً، لا توجد معلومات\n"
"اضافية حول هذه الحزمة."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "المعلومات"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "تشغيل عند الطّلب"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "عند الإقلاع"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "تشغيل"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "إيقاف"
@@ -6790,6 +6805,50 @@ msgid "Installation failed"
msgstr "فشل التّثبيت"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "الاختبار الكلاسيكي لعلّة الصوت هو تشغيل الأوامر التّالية:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" سيخبرك باسم مشغّل الذي تستخدمه بطاقتك "
+#~ "الصّوتيّة بشكل افتراضي\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" سيخبرك باسم مشغّل\n"
+#~ "المستخدم حاليّاً\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" سيمكّنك من التحقّق من أن وحدته (مشغّل) هي\n"
+#~ "مُحمّلة أم لا\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" و \"/sbin/chkconfig --list alsa\" سوف\n"
+#~ "يخبرك إن كانت خدمات الصّوت وalsa مُهيّئة للعمل على\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" سيخبرك ما إذا كان الصّوت مكتوماً أم لا\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" سيخبرك عن أيّ برنامج يستخدم بطاقة الصّوت.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 0f62a19ba..8c5708b11 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\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"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Xahiş edirik, gözləyin"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -44,12 +44,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -67,7 +67,7 @@ msgstr ""
" Sonra da bunları yazın: shut-down\n"
"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -82,269 +82,269 @@ msgstr ""
"\n"
"Hansı sürücü üstündən açılış edirsiniz?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Açılış yükləyicisi qurulumu fəaliyyətdədir"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yükləyicisini hara qurmaq istəyirsiniz?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Diskin ilk sektoru (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Kök bolməsinin ilk sektoru"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Disketə"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Keç"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Açılış Tərzi Quraşdırılması"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Sistem yükləyicisinin ana seçimləri"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Açılış yükləyicisi"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI-ni Fəallaşdır"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Təhlükəsizlik"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Şifrə"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Şifrələr uyğun gəlmir"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Xahiş edirik, təkrar sınayın"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"%s bağlama nöqtəsi üçün şifrələnmiş fayl sistemi istifadə edə bilməzsiniz"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Şifrə (təkrar)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "/tmp-i hər açılışda təmizlə"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Init İsmarışı"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Açıq Firmware Gecikməsi"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Çəyirdək Açılış Vaxt Dolması"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "CD Açılışı Fəallaşdırılsın?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "OF Açılışı Fəallaşdırılsın?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Əsas ƏS?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Əks"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Kök"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Sonuna əlavə et"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Video modu"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Şəbəkə profili"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiket"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Ön Qurğulu"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Boş etiket qəbul edilmir"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Çəyirdək əksini bildirməlisiniz"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Kök bölməsini bildirməlisiniz"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Bu etiket onsuzda istifadə edilib"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Nə cür bir giriş əlavə etmək istəyirsiniz?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linuks"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Digər ƏS (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Digər ƏS (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Açılış Tərzi Quraşdırılması"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -353,47 +353,47 @@ msgstr ""
"Buradakı bir birindən fərqli seçimlərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "X proqramlarına yetişmə icazəsi"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "rpm vasitələrinə yetişmə"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "\"su\" icazəsi ver"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "idarəvi fayllara yetişmə"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "şəbəkə vasitələrinə yetişmə"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "dərləmə vasitələrinə yetişmə"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Xahiş edirik, bir istifadəçi adı alın"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -402,150 +402,150 @@ msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "İstifadəçi adı çox uzundur"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Bu istifadəçi adı onsuzda əlavə edilib"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "İstifadəçi ID'si"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Qrup ID'si"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s seçimi rəqəm olmalıdır!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "İstifadəçi adı"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Ali istifadəçi şifrəsini tə'yin et"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Bir istifadəçi daxil edin\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Timsal"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Həqiqi ad"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Giriş adı"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Qabıq"
-#: any.pm:971
+#: any.pm:964
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "ttmkfdir fəaliyyətdədir, xahiş edirik, gözləyin..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Kompüteriniz istifadəçinin avtomatik giriş etməsi üçün qurğulana bilər."
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Bu xüsusiyyəti istifadə etmək istəyirsiniz?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "İşlətmək istədiyiniz pəncərə idarəçisini seçin:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Buraxılış:"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Bağla"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Lisenziya razılığı"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Çıx"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Başqası var?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Qəbul Et"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Rədd Et"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Xahiş edirik, istifadə ediləcək dili seçin"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -556,87 +556,87 @@ msgstr ""
"dilləri seçin. Onlar qurulum tamamlanandan və sistem yenidən\n"
"başlayandan sonra istifadəyə hazır olacaqlar."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Bütün dillər"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Bütün dillər"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Dil seçkisi"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Ölkə / Bölgə"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Xahiş edirik, ölkənizi seçin"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Bütün mövcud ölkələrinn siyahısı"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Diqər Ölkələr"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Ətraflı"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Giriş yöntəmi:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Heç biri"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Bölüşmə yoxdur"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Bütün istifadəçilərə icazə ver"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Xüsusi"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -653,21 +653,21 @@ msgstr ""
"\"Xüsusi\" seçənəyi, hər istifadəçiyə fərqli icazə vermək üçün istifadə "
"edilir.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -675,12 +675,12 @@ msgstr ""
"NFS ya da SMB işlədərək ixrac edə bilərsiniz. Xahiş edirik, işlətmək "
"istədiyinizi seçin."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake-ni başlat"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -690,7 +690,7 @@ msgstr ""
"Bu qrupa istifadəçiləri əlavə etmək üçün userdrake'dən istifadə edə "
"bilərsiniz. "
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -698,48 +698,48 @@ msgid ""
msgstr ""
"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Dəyişikliklərin fəal olması üçün hesabdan çıxış edib, yenidən girməlisiniz."
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Vaxt Zolağı"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Vaxt zolağınız hansıdır?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Avadanlıq saatı GMT'yə görə quruludur"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Avadanlıq saatı GMT'yə görə quruludur"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP Verici"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Avtomatik vaxt sinxronizasiyası (NTP vasitəsiylə)"
@@ -1067,7 +1067,7 @@ msgstr "Domen İdarəçi Şifrəsi"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1077,61 +1077,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "Mətn menyulu LILO"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini %s bölməsinə qura bilməzsiniz\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Sistem Yükləyicisini Yenidən Qur"
@@ -1229,7 +1229,7 @@ msgstr "Bağlama nöqtəsi"
msgid "Options"
msgstr "Seçimlər"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Sil"
@@ -1335,7 +1335,7 @@ msgid "Continue"
msgstr "Davam et"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1458,7 +1458,7 @@ msgid "More"
msgstr "Daha Çox Seçim"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Quraşdırma"
@@ -2245,8 +2245,8 @@ msgstr "Növünü dəyişdir"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Ləğv Et"
@@ -2754,12 +2754,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Bölmələndirmə bacarılmadı: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "16MB'dan kiçik disk bölmələrində JFS istifadə edə bilməzsiniz"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "32MB'dən kiçik disk bölmələrində ReiserFS istifadə edə bilməzsiniz"
@@ -3257,7 +3257,7 @@ msgstr ""
"- köhnə OSS API'si\n"
"- yeni ALSA API'si.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Sürücü:"
@@ -3310,60 +3310,74 @@ msgstr "Səs problemini həll et"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Klasik xəta səs sınaqı aşağıdakı əmrləri icra edir:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" səs kartınızın əsas olaraq hansı\n"
-"sürücünü işlətdiyini bildirir\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" hazırda işlədilən sürücünü\n"
-"bildirir\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/lsmod\" modulun (sürücünün) yüklü olub olmadığını yoxlamaq\n"
-"üçün sizə imkan verir\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" və \"/sbin/chkconfig --list alsa\" səs "
-"və\n"
-"alsa xidmətlərinin initsəviyyəsi3'də işə salınıb salınmayacağını bildirir\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"aumix -q\" səs həcminin bağlı (mute) olub olmadığını bildirir\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" hansı proqramın səs kartını işlətdiyini "
-"bildirir.\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "İstədiyim sürücünü seçməyə icazə ver"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Səbəbsiz bir sürücü seçilir"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3443,12 +3457,12 @@ msgstr "Xeyir"
msgid "Choose a file"
msgstr "Fayl seç"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Əlavə et"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Təkmilləşdir"
@@ -3484,7 +3498,7 @@ msgstr "Belə cərgə yoxdur!"
msgid "No such file"
msgstr "Belə bir fayl yoxdur : `%s'\n"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4771,17 +4785,17 @@ msgstr "%s Sisteminə Xoş Gəldiniz"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Əvvəlcə məntiqi həcmləri sil\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5237,12 +5251,12 @@ msgstr "Bu düyməyə basmaq istəyirsiniz?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Şifrə lazımdır"
@@ -5473,8 +5487,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Səlahiyyətləndirmə:\n"
"\n"
@@ -5519,8 +5533,8 @@ msgid ""
msgstr ""
"crontab və at'ı istifadəçilər üçün fəal/qeyri fəal et.\n"
"\n"
-"İcazə verilən istifadəçiləri /etc/cron.allow və /etc/at.allow (baxın man at"
-"(1)\n"
+"İcazə verilən istifadəçiləri /etc/cron.allow və /etc/at.allow (baxın man "
+"at(1)\n"
"və crontab(1)) içinə daxil edin."
#: security/help.pm:77
@@ -6626,7 +6640,7 @@ msgstr "Uzaqdan İdarə"
msgid "Database Server"
msgstr "Mə'lumat Bazası Vericisi"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Xidmətlər"
@@ -6641,22 +6655,22 @@ msgstr "Açılışda avtomatik olaraq başlayacaq xidmətləri seçin"
msgid "%d activated for %d registered"
msgstr "%d fəal, %d qeydli"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "fəaliyyətdədir"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "dayandırılıb"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Xidmətlər və vasitələr"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6665,27 +6679,27 @@ msgstr ""
"Bu xidmət haqqında təəsüf ki\n"
"əlavə mə'lumat yoxdur."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Mə'lumat"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "İstəniləndə başlat"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Açılışda"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Başlat"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Dayandır"
@@ -7013,6 +7027,52 @@ msgid "Installation failed"
msgstr "Qurulum bacarılmadı"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Klasik xəta səs sınaqı aşağıdakı əmrləri icra edir:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" səs kartınızın əsas olaraq hansı\n"
+#~ "sürücünü işlətdiyini bildirir\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" hazırda işlədilən sürücünü\n"
+#~ "bildirir\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" modulun (sürücünün) yüklü olub olmadığını yoxlamaq\n"
+#~ "üçün sizə imkan verir\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" və \"/sbin/chkconfig --list alsa\" səs "
+#~ "və\n"
+#~ "alsa xidmətlərinin initsəviyyəsi3'də işə salınıb salınmayacağını "
+#~ "bildirir\n"
+#~ "\n"
+#~ "- \"aumix -q\" səs həcminin bağlı (mute) olub olmadığını bildirir\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" hansı proqramın səs kartını işlətdiyini "
+#~ "bildirir.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
@@ -7272,8 +7332,8 @@ msgstr "Qurulum bacarılmadı"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index d89c2a5ef..990369c33 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -23,12 +23,12 @@ msgstr ""
msgid "Please wait"
msgstr "Калі ласка, пачакайце"
-#: any.pm:261
+#: any.pm:255
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Усталяванне загрузчыку"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнікла наступная памылка:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -55,7 +55,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -65,268 +65,268 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Усталяванне загрузчыку"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Першы сектар прылады (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Першы сектар прылады (MBR)"
-#: any.pm:372
+#: any.pm:366
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: any.pm:374
+#: any.pm:368
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Захаванне на дыскету"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Прапусціць"
-#: any.pm:411
+#: any.pm:405
#, fuzzy, c-format
msgid "Boot Style Configuration"
msgstr "Настройка IDE"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Галоўныя опцыі пачатковага загрузчыку"
-#: any.pm:431
+#: any.pm:424
#, fuzzy, c-format
msgid "Bootloader"
msgstr "Усталяванне загрузчыку"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, fuzzy, c-format
msgid "Bootloader to use"
msgstr "Галоўныя опцыі пачатковага загрузчыку"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Загрузачная прылада"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr ""
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Сервер друку"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Сервер друку"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Бясьпека"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Пароль"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Паролі не супадаюць"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Паспрабуйце яшчэ раз"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Паўтарыце пароль"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Ачышчаць /tmp пры кожнай загрузцы"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:470
+#: any.pm:463
#, fuzzy, c-format
msgid "Enable CD Boot?"
msgstr "Дазволіць 6dB павышэнне + цяжкае лімітаванне"
-#: any.pm:471
+#: any.pm:464
#, fuzzy, c-format
msgid "Enable OF Boot?"
msgstr "Дазволіць 6dB павышэнне + цяжкае лімітаванне"
-#: any.pm:472
+#: any.pm:465
#, fuzzy, c-format
msgid "Default OS?"
msgstr "Па дамаўленню"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Вобраз"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Далучыць"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Відэа-рэжым"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "Сеткавы інтэрфейс"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Метка"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Па дамаўленню"
-#: any.pm:575
+#: any.pm:568
#, fuzzy, c-format
msgid "NoVideo"
msgstr "Відэа"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Пустая метка не дазваляецца"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:587
+#: any.pm:580
#, fuzzy, c-format
msgid "You must specify a root partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Гэтая метка ўжо выкарыстоўваецца"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Які тып пункта жадаеце дадаць?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Іншая АС (SunOS,...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Іншая АС (MacOS,...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Іншая АС (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Настройка IDE"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -335,47 +335,47 @@ msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змяніць існуючыя."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:870
+#: any.pm:863
#, fuzzy, c-format
msgid "access to administrative files"
msgstr "Выкарыстоўваць настройкі сыстэмнага адміністратара"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:872
+#: any.pm:865
#, fuzzy, c-format
msgid "access to compilation tools"
msgstr "Канфігурацыя сістэмных сэрвісаў"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(ужо дададзена %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Калі ласка, увядзіце імя карыстальніку"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -384,149 +384,149 @@ msgstr ""
"Імя карыстальніку павінна змяшчаць літары толькі на ніжнім рэгістры, \n"
"лічбы, ‛-’ і ‛_’"
-#: any.pm:886
+#: any.pm:879
#, fuzzy, c-format
msgid "The user name is too long"
msgstr "Імя занадта доўгае"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Гэта імя карыстальніку ўжо дададзена"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID карыстальніка"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID групы"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "UIN павінен утрымліваць толькі лічбы.\n"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Карыстальнік"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Пароль для root"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Увядзіце імя карыстальніку\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Піктаграма"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Уласнае імя"
-#: any.pm:923
+#: any.pm:916
#, fuzzy, c-format
msgid "Login name"
msgstr "Гульня ў косьці"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Абалонка:"
-#: any.pm:971
+#: any.pm:964
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Падрыхтоўка ўсталяваньня"
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Аўтаматычны ўваход у сістэму"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Зачыніць гэтую тэчку"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Абярыце асноўнага карыстальніка:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Абярыце мэнэджар вокнаў:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Калі ласка, пачакайце"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Зачыніць"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Ліцэнзійная дамова"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Выхад"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Ці ёсць у вас іншы?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Прыняць"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Адказаць"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, fuzzy, c-format
msgid "Please choose a language to use"
msgstr "калі ласка, пазначце тып вашай мышы"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -534,87 +534,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Вы можаце абраць іншыя мовы, якія будуць даступны пасля ўсталявання"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Выбар мовы"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, fuzzy, c-format
msgid "All languages"
msgstr "Выбар мовы"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "Выбар мовы"
-#: any.pm:1240
+#: any.pm:1233
#, fuzzy, c-format
msgid "Country / Region"
msgstr "Краіна - рэгіён і мова"
-#: any.pm:1241
+#: any.pm:1234
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "калі ласка, пазначце тып вашай мышы"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Парты вываду:"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Адмысловае"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Нічога"
-#: any.pm:1334
+#: any.pm:1327
#, fuzzy, c-format
msgid "No sharing"
msgstr "Нічога"
-#: any.pm:1334
+#: any.pm:1327
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Дадаць карыстальніка"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Па выбару"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -624,86 +624,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, fuzzy, c-format
msgid "Timezone"
msgstr "Тэма"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Які ваш часавы пояс?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Ваш сістэмны гадзіннік усталяваны на GMT?"
-#: any.pm:1570
+#: any.pm:1563
#, fuzzy, c-format
msgid "NTP Server"
msgstr "NIS сэервер:"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1027,7 +1027,7 @@ msgid "Domain Admin Password"
msgstr "Яшчэ раз пароль:"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1037,61 +1037,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "Не хапае дыскавай прасторы ў /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, fuzzy, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Усталяванне загрузчыку"
@@ -1185,7 +1185,7 @@ msgstr "Кропка манціравання"
msgid "Options"
msgstr "Опцыі"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Выдаліць"
@@ -1291,7 +1291,7 @@ msgid "Continue"
msgstr "Працягнуць"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1410,7 +1410,7 @@ msgid "More"
msgstr "Перанос"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Падцьверджаньне"
@@ -2180,8 +2180,8 @@ msgstr "Змяніць тып раздзелу"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Адмена"
@@ -2656,12 +2656,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Падрыхтоўка разделаў не ўдалася: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, fuzzy, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Вы не можаце разбіваць на разделы, памер якіх меней за 32 Мб"
@@ -3113,7 +3113,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, fuzzy, c-format
msgid "Driver:"
msgstr "Прылада %d"
@@ -3159,40 +3159,74 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3264,12 +3298,12 @@ msgstr "Не"
msgid "Choose a file"
msgstr "Выбар файла"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Дадаць"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Зьмяненьне"
@@ -3304,7 +3338,7 @@ msgstr "Ня тэчка"
msgid "No such file"
msgstr "Няма гэткага ключа '%s'\n"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4584,17 +4618,17 @@ msgstr "Сардэчна запрашаем у %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr ""
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -4939,12 +4973,12 @@ msgstr "Вы жадаеце выкарыстоўваць aboot?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Настроіць паролі"
@@ -5154,8 +5188,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6231,7 +6265,7 @@ msgstr "Сістэмнае адміністраваньне"
msgid "Database Server"
msgstr "Праграма гуказапісу"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Сэрвісы"
@@ -6246,49 +6280,49 @@ msgstr "Абярыце, якія сервісы запускаць аўтама
msgid "%d activated for %d registered"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, fuzzy, c-format
msgid "running"
msgstr "Увага!"
-#: services.pm:243
+#: services.pm:241
#, fuzzy, c-format
msgid "stopped"
msgstr "Далучыць"
-#: services.pm:248
+#: services.pm:246
#, fuzzy, c-format
msgid "Services and daemons"
msgstr "Мэнэджэр сэрвісаў"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Інфармацыя"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, fuzzy, c-format
msgid "On boot"
msgstr "Yaboot"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "У пачатак"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Спыніць"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 2001f46c9..c6d779f24 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-bg\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2009-03-21 13:58+0200\n"
"Last-Translator: Kolio Kolev <kolio_kolev@biotronica.net>\n"
"Language-Team: Bulgarian <Mageia User Group - Bulgaria <mandriva-"
@@ -23,7 +23,7 @@ msgstr ""
"X-Generator: Lokalize 0.3\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -32,12 +32,12 @@ msgstr ""
msgid "Please wait"
msgstr "Моля, изчакайте"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Инсталира се програма за начално зареждане"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -48,14 +48,14 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Инсталацията програмата за начално зареждане се провали. Появи се следната "
"грешка:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -66,7 +66,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -81,268 +81,268 @@ msgstr ""
"\n"
"Кое дисково устройство ще ползвате за начално зареждане?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Инсталация на програма за начално зареждане"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Къде искате да инсталирате програмата за начално зареждане?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Първи сектор (MBR) на дисково устройство %s "
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Първи сектор на дисковото устройство (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Първия сектор на дисковия дял (PBS) с Mageia"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Запазване на дискета"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Пропусни"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Настройка на начина на стартиране"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Опции на програмата за начално зареждане"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Програма за начално зареждане"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Използвана програма за начално зареждане"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Устройство за зареждене"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Основни настойки"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Време за изчакване преди зареждане"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Включи ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Включи SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Включи APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Включи Local APIC"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Сигурност"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Парола"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Паролите не съвпадат"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Моля, опитайте отново"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Вие не можете да използвате парола включваща %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Парола (повтори)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Почистване на директория /tmp при всяко зареждане"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Начално съобщение"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Изчакване на Open Firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Време за изчакване"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Зареждане от оптично устройство (CD/DVD)?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Стартиране от OF ?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Операционна система по подразбиране?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Образ"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Коренов дял"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Параметри"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen параметри"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Видео режим"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Мрежов профил"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Име"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "По подразбиране"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "Без графичен режим"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Полето 'Име' не трябва да е празно"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Трябва да зададете обаз на ядрото"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Трябва да зададете коренов дял"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Това 'Име' вече се използва"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Какъв тип информация искате да прибавите"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Друга ОС (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Друга ОС (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Друга ОС (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Конфигуриране на програмата за начално зареждане"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -351,47 +351,47 @@ msgstr ""
"Това са записите в менюто за начално зареждане.\n"
"Можете да добавите още или да промените съществуващите."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "достъп до X програми"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "достъп до rpm инструменти"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "позволява \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "достъп до файлове за администриране"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "достъп до мрежови инструменти"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "достъп до инструменти за разработка"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(вече прибавих %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Моля, задайте потребителско име"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -399,149 +399,149 @@ msgid ""
msgstr ""
"Потребителското име може да включва само малки букви, номера, `-' и `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Това потребителско име е твърде дълго"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Това потребителско име е вече добавено"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Потребителски номер"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Номер на група"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s трябва да е число"
-#: any.pm:895
+#: any.pm:888
#, fuzzy, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s трябва да е над 500. "
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Управление на потребител"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Въведете парола за root"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Въведете потребител"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Икона"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Истинско име"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Потебителско име"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Обвивка"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Моля, изчакайте. Обновява се източник..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Автоматично влизане"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Мога да настроя компютъра ви за автоматично влизане в системата като някой "
"потребител."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Използвай тази характеристика"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Изберете подразбиращ се потребител:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Изберете графична среда за стартиране:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Бележки към версията"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Затвори"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Лицензионен договор"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Изход"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Приемате ли този лиценз ?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Приеми"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Откажи"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Моля, изберете език"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -552,87 +552,87 @@ msgstr ""
"езиците, които искате да инсталирате. Те ще бъдат налични след\n"
"като завърши инсталацията и рестартирате системата."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Многоезикова поддръжка"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Съвместимост с преди използващи се (различни от UTF-8) кодировки"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Всички езици"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Избор на език"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Страна / Регион"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Моля, изберете вашата държава"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Пълен списък на достръпните страни"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Други държави"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Разширени настройки"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr " Метод за въвеждане:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Няма"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Без споделяне"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Позволи на всички потребители"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Позволи на отделни потребители"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -649,7 +649,7 @@ msgstr ""
"\"Позволи на отделни потребители\" разрешава споделянето само на "
"потребителите, които са членове на групата \"fileshare\".\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -659,7 +659,7 @@ msgstr ""
"ограничено \n"
" приложима за Mac OS X и Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -669,7 +669,7 @@ msgstr ""
"повечето\n"
" съвременни Linux системи."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -677,12 +677,12 @@ msgstr ""
"Вие може да споделяте файлове използвайки NFS или SMB протоколи. \n"
"Моля, изберете кой от тях ще използвате."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Стартира userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -691,7 +691,7 @@ msgstr ""
"За споделянето на потребителски директории използва група \"fileshare\".\n"
"Може да използвате userdrake, за да добавите потребител към тази група."
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -700,49 +700,49 @@ msgstr ""
"За да се активират направените промени е необходимо да излезете от текущата "
"сесия и отново да влезете"
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"За да се активират направените промени е необходимо да излезете от текущата "
"сесия и отново да влезете"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Часова зона"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Коя е вашата времевата зона?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Дата, Часовник и Настройки на часова зона"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Кое е най-доброто време?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (хадруерният часовник е настроен по GMT)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (хадруерният часовник е настроен по локалното време)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP сървър"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматична синхронизация на времето (използва NTP)"
@@ -1069,7 +1069,7 @@ msgstr "Парола за администратор на домейн"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1084,47 +1084,47 @@ msgstr ""
"изчакайте да се зареди избраната по подразбиране.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO с текстово меню"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB в графично меню"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB в графично меню"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB с текстово меню"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "няма достатъчно място в /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Не можете да инсталирате програмата за начално зареждане на дяла %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1133,7 +1133,7 @@ msgstr ""
"Конфигурацията на програмата за начално зареждане трябва да се актуализира, "
"защото дисковите дялове бяха преномерирани"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1142,7 +1142,7 @@ msgstr ""
"Програмата за начално зареждане не може да бъде коректно инсталирана. Трябва "
"да стартирате режим rescue и да изберете \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Преинсталиране на програмата за начално зареждане"
@@ -1241,7 +1241,7 @@ msgstr "Точка на монтиране"
msgid "Options"
msgstr "Опции"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Премахване"
@@ -1349,7 +1349,7 @@ msgid "Continue"
msgstr "Продължи"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1471,7 +1471,7 @@ msgid "More"
msgstr "Още"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Потвърди"
@@ -2281,8 +2281,8 @@ msgstr "Промяни типа"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Отказ"
@@ -2781,12 +2781,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Неуспешно разделяне на: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Не можете да използвате JFS за дял по-малък от 16 МБ"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Не можете да инсталиране ReiserFS на дял по-малък от 32 МБ"
@@ -3274,7 +3274,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Драйвер: "
@@ -3322,40 +3322,74 @@ msgstr "Затруднения при звук"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Ръчно задаване на драйвер"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Избор на произволен драйвер"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3431,12 +3465,12 @@ msgstr "Не"
msgid "Choose a file"
msgstr "Изберете файл"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Добавяне"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Промяна"
@@ -3471,7 +3505,7 @@ msgstr "Няма такава директория"
msgid "No such file"
msgstr "Няма такъв файл"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Внимание, Caps Lock е натиснат"
@@ -4755,17 +4789,17 @@ msgstr "Добре дошли в %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Физически дял %s все още се използва"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Първо премахни логичните дялово\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5215,12 +5249,12 @@ msgstr "Искате ли да натиснете този бутон?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Изисква парола"
@@ -5336,8 +5370,8 @@ msgstr "Scannerdrake"
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
-"Не могат да се инсталират пакетите необходими за да се споделя вашия скенер"
-"(и)."
+"Не могат да се инсталират пакетите необходими за да се споделя вашия "
+"скенер(и)."
#: scanner.pm:202
#, c-format
@@ -5449,8 +5483,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6562,7 +6596,7 @@ msgstr "Отдалечена администрация"
msgid "Database Server"
msgstr "Сървър за бази данни"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Услуги"
@@ -6577,22 +6611,22 @@ msgstr "Избира услугите, които трябва да се пус
msgid "%d activated for %d registered"
msgstr "%d активирани от %d регистрирани"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "стартиране"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "спряна"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Услуги и демони"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6601,27 +6635,27 @@ msgstr ""
"Няма допълнителна информация\n"
"за тази услуга, съжелявам."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Информация"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Стартирай при заявка"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "При зареждане"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Старт"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Стоп"
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index aafbcdd6c..2f8a434c7 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX HEAD\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\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"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -26,12 +26,12 @@ msgstr ""
msgid "Please wait"
msgstr "অনুগ্রহ করে অপেক্ষা করুন"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "বুট লোডার ইনস্টল করা হচ্ছে"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,12 +46,12 @@ msgstr ""
"উইন্ডোজ সমস্যা।\n"
"নতুন একটি ভলিউম আই-ডি দেয়া হবে?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Bootloader ইনষ্টলেশন ব্যর্থ হয়েছে। এ সমস্ত ত্রুটি ঘটেছে:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -67,7 +67,7 @@ msgstr ""
" তারপর টাইপ করুন: shut-down\n"
"পরবর্তীতে বুট হওয়ার সময় বুটলোডার প্রম্প্‌ট দেখতে পাওয়া উচিত।"
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -83,268 +83,268 @@ msgstr ""
"\n"
"আপনি কোন ড্রাইভ থেকে বুট করছেন?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "বুট লোডার ইনস্টল করা হচ্ছে"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "আপনি bootloader টি কোথায় ইনস্টল করতে চান?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "ড্রাইভের প্রথম সেক্টর (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "ড্রাইভের প্রথম সেক্টর (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "রুট পার্টিশনের প্রথম সেক্টর"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "ফ্লপি তে"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "উপেক্ষা"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "বুটের ধরণ কনফিগারেশন"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "বুটলোডারের আসল অপশনসমুহ"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "বুটলোডার"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "ব্যবহারের জন্য বুটলোডার"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "বুট ডিভাইস"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "স্বাভাবিক ইমেজ লোড করার আগে দেরী করো"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "ACPI এনেবল করো"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI এনেবল করো"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI এনেবল করো"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI এনেবল করো"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "সিকিউরিটি"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "পাসওয়ার্ড"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "পাসওয়ার্ডটি মিলছে না"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "অনুগ্রহ করে আবার চেষ্ট করুন"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "আপনি %s মাউন্ট পয়েন্টের জন্য একটি এনক্রিপটেড ফাইল ব্যবহার করতে পারবেন"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "পাসওয়ার্ড (পুনরায়)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "প্রতি বুটে /tmp পরিষ্কার করো"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Init বার্তা"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "বিলম্বিত ওপেন ফার্মওয়্যার"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "কার্নাল বুটের সময় অতিক্রান্ত হয়েছে"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "সিডি বুট সক্রিয় করা হবে?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "OF বুট সক্রিয় করা হবে?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "স্বাভাবিক অবস্থায় ব্যবহৃত OS?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "ইমেজ"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "যুক্ত"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "ভিডিওর ধরণ"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "নেটওয়ার্ক প্রোফাইল"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "শিরোনাম"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "স্বাভাবিক"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "কোন ভিডিও নেই"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "খালি শিরোনাম গ্রহণযোগ্য নয়"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "আপনাকে অবশ্যই একটি কার্নালের ইমেজ নির্ধারণ করে দিতে হবে"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "আপনাকে অবশ্যই একটি রুট পার্টিশন নির্ধারণ করে দিতে হবে"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "এই শিরোনামটি আগেই ব্যবহার হয়েছে"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "আপনি কি ধরণের এন্ট্রি যোগ করতে চান?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "লিনাক্স"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "অন্যান্য OS (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "অন্যান্য OS (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "অন্যান্য OS (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "বুটের ধরণ কনফিগারেশন"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -353,197 +353,197 @@ msgstr ""
"এপর্যন্ত আপনার বুটমেনুর এন্ট্রিগুলি এখানে।\n"
"আপনি অন্যান্য এন্ট্রি তৈরী করতে পারেন অথবা আগের এন্ট্রিগুলি পরিবর্তন করতে পারেন।"
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "X প্রোগ্রামসমূহে প্রবেশাধিকার"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "RPM টুলে প্রবেশাধিকার"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "\"su\" গ্রহন করো"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "এডমিনিষ্ট্রেশন সংক্রান্ত ফাইলে প্রবেশাধিকার"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "নেটওয়ার্ক টুলে প্রবেশাধিকার"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "compilation টুলে প্রবেশাধিকার"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s আগেই যোগ করা হয়েছে)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "অনুগ্রহ করে একটি উইজার নেম দিন"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "ইউজারনেমে অবশ্যই ছোটহাতের অক্ষর, নম্বর \"-\" এবং \"_\" থাকতে হবে"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "ইউজারনেমটি অনেক বড়"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "এই ইউজারনেমটি এর আগেই যোগ করা হয়েছে"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ব্যবহারকারীর ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "দলের ID"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "অপশন %s-কে অবশ্যই একটি সংখ্যা হতে হবে!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "ব্যবহারকারীনাম"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "আ্যাডমিনিস্ট্রেটর (root) পাসওয়ার্ড সেট করুন"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"একটি ইউজার প্রবেশ করান\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "আইকন"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "আসল নাম"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "লগ-ইন নাম"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "শেল"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "মাধ্যম যোগ করা হচ্ছে, অনুগ্রহ করে অপেক্ষা করুন..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "সয়ংক্রিয় লগ-ইন"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"আমি আপনার কম্পিউটারকে সয়ংক্রিয়ভাবে একটি ইউজারকে লগইন করার জন্য সেট করতে পারি।"
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "এই সুবিধাটি কি আপনি ব্যবহার করতে চান?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "স্বাভাবিক ব্যবহারকারীকে পছন্দ করুন:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "রান করার জন্য উইন্ডো ম্যানেজারকে পছন্দ করুন:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "সংস্করণ মন্তব্য"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "বন্ধ"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "লাইসেন্স এগ্রিমেন্ট"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "বাহির"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "আপনার কি আরও একটি আছে?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "গ্রহণ"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "অস্বীকার"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "ব্যবহার করার জন্য একটি ভাষা পছন্দ করুন"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -554,87 +554,87 @@ msgstr ""
"আপনি যেই ভাষাটি ইনস্টল করতে চান তা পছন্দ করুন।\n"
"ইনস্টল শেষে রি-স্টার্ট করার পরে সেই ভাষাগুলি উপলব্ধ হবে।"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "সমস্থ ভাষা"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "পছন্দনীয় ভাষা"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "দেশ / স্থান"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "অনুগ্রহ করে তোমার দেশ পছন্দ করো।"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "উপলব্ধ সমস্থ দেশের নাম এখানে রয়েছে"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "অন্যান্য দেশসমুহ"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "উন্নত"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "ইনপুট মাধ্যম:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "একটিও না"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "শেয়ারিং নেই"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "সব ব্যবহারকারীদের গ্রহণ করো"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "ব্যবস্থা"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -644,7 +644,7 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr "আপনি কি ব্যবহারকারীদের কিছু ডিরেক্টরি শেয়ার করতে দিতে চান?\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -652,7 +652,7 @@ msgid ""
msgstr ""
"NFS: ঐতিহ্যগত ইউনিক্স ফাইল শেয়ারিং সিস্টেম, যা ম্যাক এবং উইন্ডোজে স্বল্প সমর্থিত।"
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -661,7 +661,7 @@ msgstr ""
"SMB: উইন্ডোজ, ম্যাক ও-এস এক্স এবং অনেক আধুনিক লিনাক্স সিস্টেম কর্তৃক ব্যবহৃত ফাইল "
"শেয়ারিং সিস্টেম।"
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -669,12 +669,12 @@ msgstr ""
"আপনি NFS বা SMB ব্যবহার করে ফাইল পাঠাতে পারেন। যেটি আপনি ব্যবহার করতে চান "
"অনুগ্রহ করে নির্বাচন করুন।"
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "userdrake শুরু করো"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -683,54 +683,54 @@ msgstr ""
"প্রত্যেক ব্যবহারকারী গ্রুপের \"ফাইল ভাগাভাগি\" ভাগাভাগি করতে পারেন। \n"
"এই গ্রুপে একজণ ব্যবহারকারী যোগ করতে আপনি userdrake ব্যবহার করতে পারেন।"
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "পরিবর্তন কার্যকর করার পূর্বে আপনাকে লগ-আউট করে তারপর পুণরায় লগ-ইন করতে হবে"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "টাইমজোন"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "আপনার টাইমজোন কি?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "হার্ডওয়্যারে ঘড়ি GMT-এ সেট করা"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP সার্ভার"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "সয়ংক্রিয়ভাবে সময় মেলাও (NTP ব্যবহার করে)"
@@ -1061,7 +1061,7 @@ msgid "Domain Admin Password"
msgstr "ডোমেইন অ্যাডমিনের পাসওয়ার্ড"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1076,48 +1076,48 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "টেক্সট মেনুর সাথে LILO"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "/boot -এ বেশী জায়গা নেই"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "আপনি %s পার্টিশনে বুটলোডার ইনস্টল করতে পারবেননা\n"
# renumber = রি-নাম্বার লিখলাম। আসলটা আমি জানিনা
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1125,7 +1125,7 @@ msgid ""
msgstr ""
"পার্টিশন রি-নাম্বার করার কারনে আপনার বুটলোডারের কনফিগারেশন অবশ্যই আপডেট করতে হবে"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1134,7 +1134,7 @@ msgstr ""
"বুটলোডার সঠিকভাবে ইনস্টল হতে পারবেনা। আপনাকে rescue বুট করতে হবে এবং \"%s\" "
"পছন্দ করতে হবে"
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "বুট লোডার রি-ইনস্টল করো"
@@ -1234,7 +1234,7 @@ msgstr "মাউন্ট পয়েন্ট"
msgid "Options"
msgstr "অপশন"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "মুছে ফেলো"
@@ -1340,7 +1340,7 @@ msgid "Continue"
msgstr "অগ্রসর"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1462,7 +1462,7 @@ msgid "More"
msgstr "আরও"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "কনফিগারেশন"
@@ -2251,8 +2251,8 @@ msgstr "ধরণ বদল করো"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "বাতিল"
@@ -2765,12 +2765,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "পার্টিশনে ব্যার্থ: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "১৬ মেগাবাইটের চাইতে ছোট পার্টিশনে আপনি JFS ব্যবহার করতে পারবেন না"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "৩২ মেগাবাইটের চাইতে ছোট পার্টিশনে আপনি ReiserFS ব্যবহার করতে পারবেন না"
@@ -3269,7 +3269,7 @@ msgstr ""
"- পুরাতন সমর্থিত OSS API\n"
"- নতুন ALSA API যা অনেক সুবিধা প্রদান করে কিন্তু ALSA লাইব্রেরী কতৃক ব্যবহৃত।\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "ড্রাইভার"
@@ -3322,60 +3322,74 @@ msgstr "সাউন্ড ট্রাবল শুটিং"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"ক্লাসিক বাগ সাউন্ড পরীক্ষক নিম্নলিখিত কমান্ডগুলো চালু করে:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" ডিফল্টভাবে আপনার কার্ড যেই ড্রাইভার \n"
-"ব্যবহার করছে তা আপনাকে বলবে\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" আপনার বর্তমানে ব্যবহৃত \n"
-"ড্রাইভারের কথা বলবে\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/lsmod\" যদি এর মডিউল (ড্রাইভার) লোড হয় বা না হয় তবে সে ব্যাপারে "
-"পরীক্ষা \n"
-"করতে আপনাকে সক্রিয় করে তুলবে\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" এবং \"/sbin/chkconfig --list alsa\" যদি\n"
-"সাউন্ড এবং alsa সার্ভিসগুলো initlevel 3 তে চলার জন্য কন্‌ফিগার করা থাকে তাহলে \n"
-"আপনাকে বলবে\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"aumix -q\" যদি সাউন্ড বন্ধ থাকে বা না থাকে তাহলে আপনাকে বলবে\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" কোন প্রোগ্রাম সাউন্ড কার্ড ব্যবহার করছে সেটা বলবে\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "আমাকে যেকোন ড্রাইভার নিতে দাও"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "ইচ্ছেমত ড্রাইভার পছন্দ"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3456,12 +3470,12 @@ msgstr "না"
msgid "Choose a file"
msgstr "একটি ফাইল পছন্দ করুন"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "যোগ"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "পরিবর্তন"
@@ -3501,7 +3515,7 @@ msgstr "এই নামে কোন ডিরেক্টরি নেই"
msgid "No such file"
msgstr "এই নামে কোন ফাইল নেই"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4789,17 +4803,17 @@ msgstr "%s -এ আপনাকে স্বাগতম"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "প্রথমে লজিকাল ভলিউম সরিয়ে ফেলুন\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5171,12 +5185,12 @@ msgstr "আপনি কি এই বাটনে ক্লিক করতে
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "ব্যবহারকারীর পাসওয়ার্ড"
@@ -5415,8 +5429,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"অনুমোদন করো:\n"
"\n"
@@ -6440,8 +6454,8 @@ msgid ""
"Assign raw devices to block devices (such as hard disk drive\n"
"partitions), for the use of applications such as Oracle or DVD players"
msgstr ""
-"Oracle বা DVD প্লেয়ার অ্যাপ্লিকেশন ব্যবহার করার জন্য, raw ডিভাইসগুলোকে ব্লক ডিভাইস"
-"(যেমন হার্ড ড্রাইভ পার্টিশনসমূহ) হিসেবে নির্দিষ্ট করে দিন।"
+"Oracle বা DVD প্লেয়ার অ্যাপ্লিকেশন ব্যবহার করার জন্য, raw ডিভাইসগুলোকে ব্লক "
+"ডিভাইস(যেমন হার্ড ড্রাইভ পার্টিশনসমূহ) হিসেবে নির্দিষ্ট করে দিন।"
#: services.pm:100
#, fuzzy, c-format
@@ -6604,7 +6618,7 @@ msgstr "দূর-নিয়ন্ত্রিত অ্যাডমিনিস
msgid "Database Server"
msgstr "ডেটাবেস সার্ভার"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "সার্ভিস সমূহ"
@@ -6619,22 +6633,22 @@ msgstr "বুট হওয়ার সময় যে সব সার্ভিস
msgid "%d activated for %d registered"
msgstr "%d সক্রিয় হয়েছে %d রেজিষ্টারের জন্য"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "চলন্ত"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "স্থগিত"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "সার্ভিসসমূহ এবং ড্যেমনসমূহ"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6643,27 +6657,27 @@ msgstr ""
"দুঃখিত, এই সার্ভিসটি সম্পর্কে\n"
"অতিরিক্ত আর কোন তথ্য নেই।"
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "তথ্য"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "অনুরোধের ভিত্তিতে সচল করো"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "বুট করার সময় চালু করো"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "আরম্ভ"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "বন্ধ"
@@ -7013,6 +7027,53 @@ msgstr ""
msgid "Installation failed"
msgstr "ইনস্টলেশন ব্যর্থ হয়েছে"
+#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "ক্লাসিক বাগ সাউন্ড পরীক্ষক নিম্নলিখিত কমান্ডগুলো চালু করে:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" ডিফল্টভাবে আপনার কার্ড যেই ড্রাইভার \n"
+#~ "ব্যবহার করছে তা আপনাকে বলবে\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" আপনার বর্তমানে ব্যবহৃত \n"
+#~ "ড্রাইভারের কথা বলবে\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" যদি এর মডিউল (ড্রাইভার) লোড হয় বা না হয় তবে সে ব্যাপারে "
+#~ "পরীক্ষা \n"
+#~ "করতে আপনাকে সক্রিয় করে তুলবে\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" এবং \"/sbin/chkconfig --list alsa\" "
+#~ "যদি\n"
+#~ "সাউন্ড এবং alsa সার্ভিসগুলো initlevel 3 তে চলার জন্য কন্‌ফিগার করা থাকে তাহলে \n"
+#~ "আপনাকে বলবে\n"
+#~ "\n"
+#~ "- \"aumix -q\" যদি সাউন্ড বন্ধ থাকে বা না থাকে তাহলে আপনাকে বলবে\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" কোন প্রোগ্রাম সাউন্ড কার্ড ব্যবহার করছে সেটা "
+#~ "বলবে\n"
+
# সাম
#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
@@ -7209,8 +7270,8 @@ msgstr "ইনস্টলেশন ব্যর্থ হয়েছে"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 426807f58..6a45a5d1f 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2012-04-30 10:42+0200\n"
"Last-Translator: Thierry Vignaud <thierry.vignaud.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1;plural=0\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -25,12 +25,12 @@ msgstr ""
msgid "Please wait"
msgstr "Gortozit mar plij"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "O staliañ ar c'harger loc'hañ"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -41,13 +41,13 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Staliadur ar c'harger loc'hañ zo sac'het. Degouezhet eo ar fazi a heul :"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -58,7 +58,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -68,268 +68,268 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Staliadur ar c'harger loc'hañ"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Rann gentañ (MBR) pladenn %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Rann gentañ ar bladenn (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Rann gentañ ar parzhadur kentañ"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "War bladennig"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Tremen e-biou"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Kefluniadur giz al loc'hañ"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Dibarzhoù pennañ ar c'harger loc'hañ"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Karger loc'hañ"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Karger loc'hañ da implijout"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Trobarzhell loc'hañ"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Dibarzhoù pennañ"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Bevaat ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Bevaat SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Bevaat APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Bevaat APIC lec'hel"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Diogelroez"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Tremenger"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "An tremegerioù ne glot ket"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Gellout a rit implij ur ger tremen gant %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Skarañ /tmp bep ma loc'her"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Amzer-hont ar galon"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr ""
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "RK dre ziouer ?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Skeudenn"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Gwrizienn"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Ouzhpennañ en diwezh"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Mod video"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Profil rouedad"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Skridennad"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Dre ziouer"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "N'eo ket video"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Berzet eo ar skridennadoù goullo"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Ret eo deoc'h kaout ur skeudenn kalon"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Ret eo deoc'h kaout ur parzhadur gwrizienn"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennañ ?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Reizhiadoù all (SunOS ...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Reizhiadoù all (MacOS ...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Reizhiadoù all (Windows ...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Kefluniadur al loc'hañ"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -338,47 +338,47 @@ msgstr ""
"Setu da heul an enmontoù liesseurt.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "Aotreañ « su »"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -387,149 +387,149 @@ msgstr ""
"An anv arveriad a zle krogiñ gant ul lizherenn munut ha war he lerc'h "
"lizherennoù munut, sifroù, `-' ha `_' hepken"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Re hir eo an anv arveriad-se"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID an arveriad"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID ar strollad"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "red eo da bezañ un niver %s"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Merañ an arveriaded"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Termeniñ tremenger ar merour (root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Skrivit anv un arveriad"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Arlun"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Anv gwirion"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Anv ereañ"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Gortozit mar plij, emaon oc'h ouzhpennañ ur media ..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Emereañ"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek gant un arveriad a "
"c'hellañ."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Implij an arc'hwel-mañ"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Dibabit an arveriad dre ziouer :"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dibabit ar merour prenestrer da seveniñ :"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Cheñchamentoù"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Serriñ"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Emglev an aotre"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Kuitaat"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Hag e plij an aotre-mañ deoc'h ?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Plijout a ra din"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Ne blij ket din"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Dibabit ar yezh da implijout, mar plij"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -540,87 +540,87 @@ msgstr ""
" yezhoù all hag a vo hegerz goude staliañ (ur wech e vo bet adloc'het\n"
" ar reizhiad)"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "Lesyezh"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kodadur kozh (n'eo ket UTF-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "An holl yezhoù"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Dibab ho yezh"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Bro / Rannvro"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Dibabit ho pro, mar plij"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Setu eo listenn leun ar broioù holl"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Broioù all"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Barek"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Hentenn enkas :"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Hini ebet"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "N'eo ket lodañ"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Aotreiñ pep arveriad"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Personelañ"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -630,86 +630,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Lañsañ userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Takad-eur"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Kefluniadur an deizid, an eurier hag an amzer"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Peseurt hini zo an amzer gwelloc'h ?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (war UTC eo lakaet ho eurier periantel)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (war GMT eo lakaet ho eurier periantel)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Servijer NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1032,7 +1032,7 @@ msgid "Domain Admin Password"
msgstr "Tremenger merour an domani"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1047,47 +1047,47 @@ msgstr ""
"gortozit \n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO gant meuziad skrid"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB gant meuziad grafek"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB gant meuziad grafek"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB gant meuziad skrid"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "n'eus ket a-walc'h egor e /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ne mennit ket staliañ ar c'harger loc'hañ war ur parzhadur %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1096,7 +1096,7 @@ msgstr ""
"Red eo da vremañat kefluniadur ho karger loc'hañ peogwir e oa cheñchet niver "
"ar parzhiadurioù"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1105,7 +1105,7 @@ msgstr ""
"N'hell ket bet staliet ar c'harger loc'hañ. Dao eo deoc'h loc'hañ gant ar "
"bladenn skoazell ha dibab « %s »"
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Staliañ ar c'harger loc'hañ c'hoazh"
@@ -1199,7 +1199,7 @@ msgstr "Poent marc'hañ"
msgid "Options"
msgstr "Dibarzhoù"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Dilemel"
@@ -1305,7 +1305,7 @@ msgid "Continue"
msgstr "Kenderc'hel"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1427,7 +1427,7 @@ msgid "More"
msgstr "Mui"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Kadarnadur"
@@ -2203,8 +2203,8 @@ msgstr "Kemmañ seurt"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Nullañ"
@@ -2694,12 +2694,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Fazi en ur parzhañ : %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "N'hellit ket implij JFS evit ar parzhadurioù bihanioc'h evel 16Mo"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "N'hellit ket implij ReiserFS evit ar parzhadurioù bihanioc'h evel 32Mo"
@@ -3188,7 +3188,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Sturier :"
@@ -3234,40 +3234,74 @@ msgstr "Defaziañ un diaster klevet"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Choazh ur sturier"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Choazh ur sturier dre ziouer"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3339,12 +3373,12 @@ msgstr "Ket"
msgid "Choose a file"
msgstr "Dibabit ur restr"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Ouzhpennañ"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Kemmañ"
@@ -3379,7 +3413,7 @@ msgstr "Hevelep renkell ebet"
msgid "No such file"
msgstr "Hevelep restr ebet"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Diwall, bev eo Pennlizh"
@@ -4663,17 +4697,17 @@ msgstr "Degemer e %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Sac'het eo dilec'hiañ al levrennioù fizikel implijet war re all"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Implijet eo al levrenn fizikel %s c'hoazh"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Lemel al levrennioù poellek da gentañ\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "N'eus ket moaien da loc'hañ gant /boot war meur a levrenn fizikel"
@@ -5027,12 +5061,12 @@ msgstr "Ha fellout a ra deoc'h da vat lemel ar poent marc'hañ-mañ ?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Semblout a ra mat an tremenger"
@@ -5243,8 +5277,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6332,7 +6366,7 @@ msgstr "Mererezh a-bell"
msgid "Database Server"
msgstr "Servijer ar stlennvon"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servijoù"
@@ -6347,49 +6381,49 @@ msgstr "Dibabit pe servijoù a zlefe bezañ lañset ent emgefreek pa loc'her"
msgid "%d activated for %d registered"
msgstr "%d bev diwar %d enskrivet"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "o seveniñ"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "plaenaozet"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Servijoù ha diaouloù"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Titouroù"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Loc'hañ pa vez red"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "En ur loc'hañ"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Loc'hañ"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Plaenaozañ"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 9407813c1..2d0cb9ee2 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bs\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\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"
@@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "Molim sačekajte"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalacija bootloadera u toku"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -51,12 +51,12 @@ msgstr ""
"\n"
"Da li da podesim novi ID volumena?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -74,7 +74,7 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -89,268 +89,268 @@ msgstr ""
"\n"
"Sa kojeg diska vršite boot?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Instalacija bootloadera u toku"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite smjestiti bootloader?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Prvi sektor diska (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Prvi sektor root particije"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Na disketi"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Preskoči"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Boot uređaj"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Glavne opcije"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Pauza prije pokretanja izabrane opcije"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Uključi ACPI"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Uključi ACPI"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Uključi APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Uključi Local APIC"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sigurnost"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Šifra"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Šifre se ne poklapaju"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Molim pokušajte ponovo"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Ne možete koristiti šifrovani datotečni sistem za tačku montiranja %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Šifra (ponovo)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Očisti /tmp prilikom svakog starta"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Init poruka"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Čekanje na Open Firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Vrijeme za boot kernela"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Omogući boot sa CDa?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Omogući boot sa OFa?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Podrazumjevani OS?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen append"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Video režim"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Mrežni profil"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Oznaka"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Default"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Morate navesti image kernela"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Morate navesti root particiju"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Ova oznaka je već u upotrebi"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu opcije želite dodati?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Ostali OSi (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguracija stila boota"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -359,196 +359,196 @@ msgstr ""
"Ovo su trenutne opcije u vašem boot meniju.\n"
"Možete dodati nove ili promijeniti postojeće."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "pristup mrežnim alatima"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "pristup alatima za kompajliranje"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Molim navedite korisničko ime"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Korisničko ime je predugačko"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Ovo korisničko ime je već dodano"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Korisnički ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Grupni ID"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "Opcija %s mora biti broj"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s mora biti veće od 500. Svejedno prihvati?"
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Korisničko ime"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Podesite administratorsku (root) šifru"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Unesite korisnika\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Pravo ime"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Korisničko ime"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Molim sačekajte, dodajem medije..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mogu podesiti vaš računar da automatski prijavi jednog korisnika."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Koristi ovu mogućnost"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Napomene izdanja"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Zatvori"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Licencni ugovor"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Izlaz"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Imate li neki drugi?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Prihvatam"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Ne prihvatam"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Molim izaberite jezik koji ćete koristiti"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -559,87 +559,87 @@ msgstr ""
"želite instalirati. Oni će biti dostupni kada se završi vaša\n"
"instalacija i restartujete vaš sistem."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Višejezična podrška"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kompatibilnost sa starim (ne-UTF8) kodiranjem"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Svi jezici"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Izbor jezika"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Država / Oblast"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Molim izaberite vašu državu"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ovdje je puna lista svih dostupnih država"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Ostale države"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Više opcija"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Metod unosa:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Ništa"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Vlastito"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -657,7 +657,7 @@ msgstr ""
"\"Izaberi korisnike\" vam omogućuje da podesite ovu opciju zasebno za svakog "
"korisnika.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -666,7 +666,7 @@ msgstr ""
"NFS: tradicionalni Unix sistem za dijeljenje datoteka, koji ima slabiju "
"podršku na Macintoshu i Windowsu."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -675,7 +675,7 @@ msgstr ""
"SMB: sistem za dijeljenje datoteka koji koristi Windows, Mac OS X i većina "
"modernih Linux sistema."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -683,12 +683,12 @@ msgstr ""
"Možete eksportovati koristeći NFS ili Sambu. Molim izaberite sistem koji "
"želite koristiti."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -697,7 +697,7 @@ msgstr ""
"Dijeljenje na nivou korisnika koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -706,49 +706,49 @@ msgstr ""
"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
"snagu"
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Trebate se odjaviti i ponovo prijaviti na sistem kako bi izmjene stupile na "
"snagu"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Vremenska zona"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Postavke datuma, sata i vremenske zone"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Koje je vrijeme tačnije?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardverski sat podešen na UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardverski sat podešen na lokalno vrijeme)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP server"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
@@ -1081,7 +1081,7 @@ msgid "Domain Admin Password"
msgstr "Administratorska šifra domena"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1096,47 +1096,47 @@ msgstr ""
"sacekajte da se pokrene podrazumjevani OS.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB sa grafičkim menijem"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB sa grafičkim menijem"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB sa tekstualnim menijem"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1145,7 +1145,7 @@ msgstr ""
"Konfiguracija vašeg bootloadera mora biti ažurirana pošto su particije "
"renumerisane"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1154,7 +1154,7 @@ msgstr ""
"Ne mogu ispravno instalirati bootloader. Morate pokrenuti \"rescue\" sistem "
"i izabrati \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstalacija bootloadera"
@@ -1252,7 +1252,7 @@ msgstr "Tačka montiranja"
msgid "Options"
msgstr "Opcije"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Pobriši"
@@ -1358,7 +1358,7 @@ msgid "Continue"
msgstr "Nastavak"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1480,7 +1480,7 @@ msgid "More"
msgstr "Još"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Potvrda"
@@ -2286,8 +2286,8 @@ msgstr "Promijeni tip"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Odustani"
@@ -2801,12 +2801,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Particioniranje nije uspjelo: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Ne možete koristiti JFS za particije manje od 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Ne možete koristiti ReiserFS za particije manje od 32MB"
@@ -3307,7 +3307,7 @@ msgstr ""
"- novi ALSA API koji pruža mnoge napredne mogućnosti, ali zahtijeva upotrebu "
"ALSA biblioteke.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Drajver:"
@@ -3361,61 +3361,74 @@ msgstr "Rješavanje problema sa zvukom"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Klasični način utvrđivanja bugova u zvučnom sistemu je izvršavanje\n"
-"sljedećih naredbi:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" će vam reći koji drajver inače koristi\n"
-"vaša kartica\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" će vam reći koji drajver je\n"
-"trenutno u upotrebi\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- sa \"/sbin/lsmod\" možete provjeriti da li je modul (drajver) učitan\n"
-"ili ne\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" i \"/sbin/chkconfig --list alsa\" vam\n"
-"govore da li su servisi sound i alsa podešeni da se pokreću na\n"
-"initlevel 3\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"aumix -q\" će vam reći da li je zvuk utišan (muted) ili ne\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" vam govori koji program koristi zvučnu "
-"karticu.\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Dozvoli da sam odaberem drajver"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Slobodan izbor drajvera"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3495,12 +3508,12 @@ msgstr "Ne"
msgid "Choose a file"
msgstr "Izaberi datoteku"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Dodaj"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Izmijeni"
@@ -3535,7 +3548,7 @@ msgstr "Nema tog direktorija"
msgid "No such file"
msgstr "Nema te datoteke"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4822,17 +4835,17 @@ msgstr "Dobro došli u %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Premještanje fizičkih extents na druge fizičke volumene nije uspjela"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Fizički volumen %s se još uvijek koristi"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Najprije ukloni logičke volumene\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Bootloader ne može rukovati /boot particijom na više fizičkih volumena"
@@ -5290,12 +5303,12 @@ msgstr "Da li želite kliknuti na ovo dugme?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Šifra za korisnika"
@@ -5528,8 +5541,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Autorizuj:\n"
"\n"
@@ -6679,7 +6692,7 @@ msgstr "Udaljena administracija"
msgid "Database Server"
msgstr "Server baze podataka"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servisi"
@@ -6694,22 +6707,22 @@ msgstr "Izaberite koji servisi se trebaju pokretati automatski prilikom boota"
msgid "%d activated for %d registered"
msgstr "%d aktiviran za %d registrovan"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "aktivan"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "zaustavljen"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Servisi i demoni"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6718,27 +6731,27 @@ msgstr ""
"Nema dodatnih informacija\n"
"o ovom servisu, žalim."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Pokreni po potrebi"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Prilikom boota"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Start"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Stop"
@@ -7075,6 +7088,53 @@ msgid "Installation failed"
msgstr "Instalacija nije uspjela"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Klasični način utvrđivanja bugova u zvučnom sistemu je izvršavanje\n"
+#~ "sljedećih naredbi:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" će vam reći koji drajver inače "
+#~ "koristi\n"
+#~ "vaša kartica\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" će vam reći koji drajver je\n"
+#~ "trenutno u upotrebi\n"
+#~ "\n"
+#~ "- sa \"/sbin/lsmod\" možete provjeriti da li je modul (drajver) učitan\n"
+#~ "ili ne\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" i \"/sbin/chkconfig --list alsa\" vam\n"
+#~ "govore da li su servisi sound i alsa podešeni da se pokreću na\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" će vam reći da li je zvuk utišan (muted) ili ne\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" vam govori koji program koristi zvučnu "
+#~ "karticu.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
@@ -7343,8 +7403,8 @@ msgstr "Instalacija nije uspjela"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 93ddb31a0..e01fbf8b9 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2013-02-23 16:50+0100\n"
"Last-Translator: Francesc Pinyol\n"
"Language-Team: Catalan <kde-i18n-ca@kde.org>\n"
@@ -15,7 +15,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Generator: Lokalize 1.4\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -24,12 +24,12 @@ msgstr ""
msgid "Please wait"
msgstr "Espereu si us plau"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instal·lació del carregador de l'arrencada en curs"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -40,14 +40,14 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Ha fallat la instal·lació del carregador de l'arrencada. S'ha produït "
"l'error següent:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -66,7 +66,7 @@ msgstr ""
"En l'arrencada següent heu de veure l'indicador del carregador de "
"l'arrencada."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -81,268 +81,268 @@ msgstr ""
"\n"
"En quina unitat arrenqueu?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Instal·lació del carregador d'arrencada"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "On voleu instal·lar el carregador de l'arrencada?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primer sector (MBR) del disc %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primer sector del disc (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Primer sector de la partició de root"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "En el disquet"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Omet"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuració del tipus d'arrencada"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Opcions principals del carregador de l'arrencada"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Carregador d'arrencada"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Carregador de l'arrencada a utilitzar"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Opcions principals"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Habilita ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Habilita SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Habilita APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Habilita APIC local"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguretat"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contrasenya"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "No podeu fer servir una contrasenya amb %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Buida /tmp en cada arrencada"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Missatge d'inicialització"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Demora per al firmware obert"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Temps màxim d'arrencada del nucli"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Voleu habilitar l'arrencada des de CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Voleu habilitar l'arrencada des d'OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "SO per defecte?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Imatge"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Arrel"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Afegeix"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Cal una contrasenya per a arrencar"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Mode de vídeo"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Perfil de xarxa"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predeterminat"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Heu d'especificar una imatge del nucli"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Heu d'especificar una partició arrel"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Aquesta etiqueta ja està en ús"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Un altre SO (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuració del carregador d'arrencada"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -351,198 +351,198 @@ msgstr ""
"Aquestes són les diferents entrades en el menú d'arrencada.\n"
"Podeu afegir-ne més o canviar les existents."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "accés a programes X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "accés a les eines rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "permet «su»"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "accés a fitxers administratius"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "accés a les eines de xarxa"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "accés a les eines de compilació"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Si us plau, introduïu un nom d'usuari"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-"El nom d'usuari ha de començar amb una lletra minúscula seguida només "
-"per lletres minúscules, nombres, «-» i «_»"
+"El nom d'usuari ha de començar amb una lletra minúscula seguida només per "
+"lletres minúscules, nombres, «-» i «_»"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "El nom d'usuari és massa llarg"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID d'usuari"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID de grup"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s ha de ser un número"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s hauria de ser superior a 500. Continuar tot i això?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Gestió d'usuaris"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Habilita el compte de convidat"
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Estableix la contrasenya de l'administrador (root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Introduïu un usuari"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Icona"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Nom real"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Nom d'accés"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Si us plau espereu, s'estan afegint fonts..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Entrada automàtica"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Puc configurar el vostre ordinador de manera que entri automàticament amb un "
"nom d'usuari."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Utilitza aquesta característica"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Notes de versió"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Tanca"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Acord de llicència"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Surt"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Accepteu aquesta llicència?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Accepta"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Rebutja"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Si us plau, trieu un idioma per utilitzar"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -553,87 +553,87 @@ msgstr ""
"les llengües que voleu instal·lar. Estaran disponibles\n"
"quan la instal·lació hagi acabat i reinicieu l'ordinador."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "diferents llengües"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr "Selecciona llengües addicionals"
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Tots els idiomes"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Tria d'idioma"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "País / Regió"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Si us plau, seleccioneu el vostre país"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquesta és la llista completa de països"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Altres països"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avançat"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Mètode d'entrada:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Cap"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "No es comparteix"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Permet tots els usuaris"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Personalitzada"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -648,7 +648,7 @@ msgstr ""
"\n"
"«Personalitzat» permet configurar cada usuari per separat.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -657,7 +657,7 @@ msgstr ""
"NFS: el sistema de compartició de fitxers tradicional de Unix, amb menys "
"suport a Mac i Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -666,18 +666,18 @@ msgstr ""
"SMB: un sistema de compartició de fitxers usat per Windows, Mac OS X i "
"bastants sistemes Linux moderns."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Podeu exportar utilitzant NFS o SMB. Seleccioneu quin voleu utilitzar."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -686,7 +686,7 @@ msgstr ""
"La compartició per usuari utilitza el grup «fileshare».\n"
"Podeu utilitzar userdrake per a afegir un usuari a aquest grup."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -695,47 +695,47 @@ msgstr ""
"Heu de sortir i tornar a entrar perquè els canvis siguin efectius. Premeu "
"«D'acord» per a sortir ara mateix."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Heu de sortir i tornar a entrar per tal que els canvis tinguin efecte"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Fus horari"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "En quina zona horària us trobeu?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Configuració de data, rellotge i fus horari"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Quina és la millor hora?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (el rellotge de maquinari està establert a UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (el rellotge de maquinari està establert a hora local)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronització automàtica de l'hora (usant NTP)"
@@ -849,8 +849,8 @@ msgid ""
"You have selected LDAP authentication. Please review the configuration "
"options below "
msgstr ""
-"Heu seleccionat l'autenticació LDAP. Reviseu a continuació les opcions "
-"de configuració "
+"Heu seleccionat l'autenticació LDAP. Reviseu a continuació les opcions de "
+"configuració "
#: authentication.pm:111 authentication.pm:166
#, c-format
@@ -1072,7 +1072,7 @@ msgid "Domain Admin Password"
msgstr "Contrasenya de l'administrador del domini"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1087,47 +1087,47 @@ msgstr ""
"per arrencar en el sistema operatiu predeterminat.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO amb menú de text"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 amb menú gràfic"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB amb menú gràfic"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB amb menú de text"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "No podeu instal·lar el carregador de l'arrencada a una partició %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1136,7 +1136,7 @@ msgstr ""
"La configuració del vostre carregador d'arrencada s'ha d'actualitzar ja que "
"la partició ha estat renumerada"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1145,7 +1145,7 @@ msgstr ""
"El carregador d'arrencada no s'ha pogut instal·lar correctament. Heu "
"d'arrencar amb l'opció de rescat i escollir «%s»"
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstal·la el carregador de l'arrencada"
@@ -1244,7 +1244,7 @@ msgstr "Punt de muntatge"
msgid "Options"
msgstr "Opcions"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Elimina"
@@ -1352,7 +1352,7 @@ msgid "Continue"
msgstr "Continua"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1474,7 +1474,7 @@ msgid "More"
msgstr "Més"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Confirmació"
@@ -2019,9 +2019,8 @@ msgstr ""
"El directori %s ja conté dades\n"
"(%s)\n"
"\n"
-"Podeu triar entre moure els fitxers cap a la partició que s'hi muntarà, "
-"o bé deixar-los on són (però quedaran ocults pel contingut "
-"de la partició muntada)"
+"Podeu triar entre moure els fitxers cap a la partició que s'hi muntarà, o bé "
+"deixar-los on són (però quedaran ocults pel contingut de la partició muntada)"
#: diskdrake/interactive.pm:1324
#, c-format
@@ -2272,8 +2271,8 @@ msgstr "Canvia el tipus"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Cancel·la"
@@ -2675,11 +2674,11 @@ msgstr ""
"\n"
"\n"
"Aneu amb compte: aquesta operació és perillosa. Si encara no ho heu fet, "
-"sortiu de la instal·lació, executeu «chkdsk c:» a la línia d'ordres "
-"sota Windows (atenció el programa gràfic «scandisk» no és suficient, "
-"assegureu-vos d'usar «chkdsk» en una línia d'ordres), opcionalment "
-"executeu defrag, després torneu a començar la instal·lació. També hauríeu de "
-"fer una còpia de seguretat de les vostres dades.\n"
+"sortiu de la instal·lació, executeu «chkdsk c:» a la línia d'ordres sota "
+"Windows (atenció el programa gràfic «scandisk» no és suficient, assegureu-"
+"vos d'usar «chkdsk» en una línia d'ordres), opcionalment executeu defrag, "
+"després torneu a començar la instal·lació. També hauríeu de fer una còpia de "
+"seguretat de les vostres dades.\n"
"\n"
"\n"
"Quan estigueu segur, premeu %s."
@@ -2792,12 +2791,12 @@ msgstr "Aquest és el contingut del disc dur "
msgid "Partitioning failed: %s"
msgstr "Ha fallat el particionament: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
@@ -2876,8 +2875,8 @@ msgid ""
"Metadata version unsupported for a boot partition. Please be sure to add a "
"separate /boot partition."
msgstr ""
-"Versió de metadades no suportada per a una partició d'arrencada. "
-"Assegureu-vos d'afegir una partició /boot separada."
+"Versió de metadades no suportada per a una partició d'arrencada. Assegureu-"
+"vos d'afegir una partició /boot separada."
#: fsedit.pm:448
#, c-format
@@ -3244,7 +3243,7 @@ msgstr ""
"Aquí podeu seleccionar un controlador alternatiu (tant OSS com ALSA) per a "
"la targeta de so (%s)"
-#. -PO: here the first %s is either "OSS" or "ALSA",
+#. -PO: here the first %s is either "OSS" or "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:369
@@ -3295,7 +3294,7 @@ msgstr ""
"- la nova API d'ALSA que proporciona moltes característiques millorades però "
"que necessita fer servir la llibreria ALSA.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Controlador:"
@@ -3348,60 +3347,74 @@ msgstr "Resolució de problemes amb el so"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"El comprovador de sons d'error clàssic pot executar les ordres següents:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- «lspcidrake -v | fgrep -i AUDIO» us dirà el programa de control que la\n"
-"vostra targeta utilitza per defecte\n"
"\n"
-"- «grep sound-slot /etc/modprobe.conf» us dirà el programa de control\n"
-"que està utilitzant actualment\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- «/sbin/lsmod» us permetrà comprovar si el seu mòdul (programa de\n"
-"control) està carregat o no\n"
"\n"
-"- «/sbin/chkconfig --list sound» i «/sbin/chkconfig --list alsa» us\n"
-"diran si els serveis de so i alsa estan configurats per executar-se en\n"
-"initlevel 3\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- «aumix -q» us dirà si el so està silenciat o no\n"
"\n"
-"- «/sbin/fuser -v /dev/dsp» us dirà quin programa utilitza la targeta de "
-"so.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Deixa'm agafar qualsevol programa de control"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Selecció d'un programa de control arbitrari"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3482,12 +3495,12 @@ msgstr "No"
msgid "Choose a file"
msgstr "Trieu un fitxer"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Afegeix"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Modifica"
@@ -3522,7 +3535,7 @@ msgstr "No és un directori"
msgid "No such file"
msgstr "No hi ha fitxer"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Atenció, la tecla de fixació de majúscules està habilitada"
@@ -4809,17 +4822,17 @@ msgstr "Benvingut a %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "El volum físic %s encara està en ús"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Elimineu primer els volums lògics\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5184,12 +5197,12 @@ msgstr "Esteu segur que voleu sortir?"
msgid "Password is trivial to guess"
msgstr "La contrasenya es pot endevinar fàcilment"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "La contrasenya sembla segura"
@@ -5389,8 +5402,7 @@ msgid ""
"\n"
"- \"None\" (no connection)."
msgstr ""
-"Permet les connexions X:|n "
-"\n"
+"Permet les connexions X:|n \n"
"- «Totes» (es permeten totes les connexions),\n"
"\n"
"- «Local» (només les connexions des de la màquina local),\n"
@@ -5419,8 +5431,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -5453,8 +5465,8 @@ msgid ""
msgstr ""
"Habilita crontab i at per als usuaris.\n"
"\n"
-"Poseu els usuaris permesos a /etc/cron.allow i /etc/at.allow (vegeu man at"
-"(1)\n"
+"Poseu els usuaris permesos a /etc/cron.allow i /etc/at.allow (vegeu man "
+"at(1)\n"
"i crontab(1))."
#: security/help.pm:77
@@ -6506,8 +6518,8 @@ msgid ""
"Secure Shell is a network protocol that allows data to be exchanged over a "
"secure channel between two computers"
msgstr ""
-"Secure Shell és un protocol de xarxa que permet l'intercanvi de dades "
-"sobre un canal segur entre dos ordinadors"
+"Secure Shell és un protocol de xarxa que permet l'intercanvi de dades sobre "
+"un canal segur entre dos ordinadors"
#: services.pm:117
#, c-format
@@ -6576,7 +6588,7 @@ msgstr "Administració remota"
msgid "Database Server"
msgstr "Servidor de base de dades"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Serveis"
@@ -6592,22 +6604,22 @@ msgstr ""
msgid "%d activated for %d registered"
msgstr "%d activats de %d registrats"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "s'està executant"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "aturat"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Serveis i dimonis"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6616,27 +6628,27 @@ msgstr ""
"Malauradament no hi ha més informació\n"
"sobre aquest servei."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Informació"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Inicia quan el demanin"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "En arrencar"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Inicia"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Atura"
@@ -6945,6 +6957,51 @@ msgid "Installation failed"
msgstr "La instal·lació ha fallat"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "El comprovador de sons d'error clàssic pot executar les ordres següents:\n"
+#~ "\n"
+#~ "\n"
+#~ "- «lspcidrake -v | fgrep -i AUDIO» us dirà el programa de control que la\n"
+#~ "vostra targeta utilitza per defecte\n"
+#~ "\n"
+#~ "- «grep sound-slot /etc/modprobe.conf» us dirà el programa de control\n"
+#~ "que està utilitzant actualment\n"
+#~ "\n"
+#~ "- «/sbin/lsmod» us permetrà comprovar si el seu mòdul (programa de\n"
+#~ "control) està carregat o no\n"
+#~ "\n"
+#~ "- «/sbin/chkconfig --list sound» i «/sbin/chkconfig --list alsa» us\n"
+#~ "diran si els serveis de so i alsa estan configurats per executar-se en\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- «aumix -q» us dirà si el so està silenciat o no\n"
+#~ "\n"
+#~ "- «/sbin/fuser -v /dev/dsp» us dirà quin programa utilitza la targeta de "
+#~ "so.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index a6ea477f2..d4151fc53 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2012-03-10 14:30+0000\n"
"Last-Translator: Oliver Burger <oliver.bgr@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -24,12 +24,12 @@ msgstr ""
msgid "Please wait"
msgstr "Prosím počkejte"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Probíhá instalace zaváděcího programu"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -47,12 +47,12 @@ msgstr ""
"\n"
"Přiřadit nové ID svazku?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalace zaváděcího programu selhala. Stala se tato chyba:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -69,7 +69,7 @@ msgstr ""
" Potom zadejte: shut-down\n"
"Při dalším spuštění už uvidíte prompt."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -84,268 +84,268 @@ msgstr ""
"\n"
"Z jakého disku startujete systém?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Instalace zaváděcího programu"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zaváděcí program?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "První sektor (MBR) disku %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "První sektor disku (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "První sektor kořenového oddílu"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Na disketu"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Přeskočit"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Nastavení stylu zavádění"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Základní nastavení zaváděcího programu"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Zaváděcí program"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Zaváděcí program"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Startovací zařízení"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Hlavní volby"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Prodleva před zavedením výchozího obrazu"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Povolit ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Povolit SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Povolit APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Povolit lokální APIC"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Bezpečnost"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Heslo"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Hesla nejsou shodná"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Zkuste to znovu, prosím"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nemůžete použít heslo s %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Heslo (podruhé)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Vyčistit adresář /tmp při každém startu"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Úvodní zpráva"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Prodleva pro firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Prodleva při spuštění"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Povolit spuštění z CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Povolit zavaděč OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Výchozí OS?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Obraz(image)"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Kořenový(root)"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Připojit"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Připojit Xen"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Vyžaduje pro zavedení heslo"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Video režim"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Síťový profil"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Značka"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Výchozí"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "Bez Videa"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Prázdná značka není povolena"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Musíte zadat soubor s jádrem"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Musíte zadat kořenový oddíl"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Tato značka se již používá"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Jaký typ záznamu chcete přidat?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Jiný systém (SunOs...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Jiný systém (MacOs...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Jiný systém (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Nastavení zaváděcího programu"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -354,47 +354,47 @@ msgstr ""
"Zde jsou záznamy z vašeho zaváděcího menu.\n"
"Můžete přidat další nebo změnit stávající."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "přístup k programům v X prostředí"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "přístup k rpm nástrojům"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "povolit \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "přístup k administrativním souborům"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "přístup k síťovým nástrojům"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "přístup k nástrojům pro kompilaci"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(už byl přidán %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Prosím zadejte uživatelské jméno"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -403,148 +403,148 @@ msgstr ""
"Uživatelské jméno musí začínat malým písmenem a pokračovat pouze malými "
"písmeny, číslicemi nebo znaky „-” a „_”"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Toto uživatelské jméno je příliš dlouhé"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Toto uživatelské jméno už bylo přidáno"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID uživatele"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID skupiny"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s musí být číslo"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s by mělo být vyšší než 500. Přesto použít?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Správa uživatelů"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Povolit účet hosta"
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Heslo správce (uživatele root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Zadejte uživatele"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Skutečné jméno"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Přihlašovací jméno"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Prosím počkejte, přidávám zdroje..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatické přihlášení"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Můžu nastavit váš počítač tak, aby automaticky přihlásil vybraného uživatele."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Použít tuto vlastnost"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Zvolte standardního uživatele:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vyberte si, který správce oken má být spouštěn:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Poznámky k vydání"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Zavřít"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Souhlas s licencí"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Konec"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Přijímáte tuto licenci?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Přijmout"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Odmítnout"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Prosím zvolte si jazyk, který chcete používat"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -555,87 +555,87 @@ msgstr ""
"chcete nainstalovat podporu. Tyto budou dostupné po dokončení\n"
"instalace a restartu systému."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "Více jazyků"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Stará (ne UTF-8) kódování pro kompatibilitu"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Všechny jazyky"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Výběr jazyka"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Země"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Vyberte si prosím svoji zem"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Zde je kompletní seznam dostupných zemí"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Jiné země"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Rozšíření"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Vstupní metoda:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Žádné"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Nesdílet"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Povolit všem uživatelům"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Vlastní"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -651,7 +651,7 @@ msgstr ""
"\n"
"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -660,7 +660,7 @@ msgstr ""
"NFS: tradiční systém pro sdílení souborů v prostředí Unix, s menší podporou "
"operačních systémů Mac a Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -669,7 +669,7 @@ msgstr ""
"SMB: systém pro sdílení souborů používaný ve Windows, MacOS X a mnohými "
"moderními Linuxovými systémy."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -677,12 +677,12 @@ msgstr ""
"Nyní lze provést export přes protokol NFS nebo SMB. Vyberte prosím, který "
"chcete použít."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Spustit UserDrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -691,7 +691,7 @@ msgstr ""
"Sdílení mezi uživateli používá skupinu \"fileshare\". \n"
"Uživatele lze do této skupiny přidat pomocí nástroje UserDrake."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -700,47 +700,47 @@ msgstr ""
"Aby se změny projevily, je nutné se odhlásit a opět přihlásit. Stisknutím OK "
"se ihned odhlásíte."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Aby se změna projevila, je nutné se odhlásit a opět přihlásit"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Časová zóna"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Jaké je vaše časové pásmo?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Nastavení data, hodin a časové zóny"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Jaké vedení času je nejvhodnější?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardwarové hodiny nastaveny na UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardwarové hodiny nastaveny na místní čas)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP Server"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatická synchronizace času (pomocí NTP)"
@@ -1079,7 +1079,7 @@ msgid "Domain Admin Password"
msgstr "Heslo Správce domény"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1094,47 +1094,47 @@ msgstr ""
"vyckejte na automaticke zavedeni.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO s textovým menu"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB s grafickým menu"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB s grafickým menu"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB s textovým menu"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "není dost místa v adresáři /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Na oddíl %s nelze instalovat zavaděč\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1143,7 +1143,7 @@ msgstr ""
"Nastavení vašeho zavaděče musí být aktualizováno, protože se změnilo pořadí "
"oddílů na disku"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1152,7 +1152,7 @@ msgstr ""
"Zavaděč se nepodařilo řádně nainstalovat. Spusťte systém v záchranném režimu "
"a zvolte \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Znovu instalovat zaváděcí program"
@@ -1252,7 +1252,7 @@ msgstr "Přípojný bod"
msgid "Options"
msgstr "Volby"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Odebrat"
@@ -1358,7 +1358,7 @@ msgid "Continue"
msgstr "Pokračovat"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1481,7 +1481,7 @@ msgid "More"
msgstr "Více"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Potvrzení"
@@ -2277,8 +2277,8 @@ msgstr "Změnit typ"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Zrušit"
@@ -2788,12 +2788,12 @@ msgstr "Zde je obsah vašeho disku "
msgid "Partitioning failed: %s"
msgstr "Vytváření diskových oddílů selhalo: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Pro oddíl menší než 16MB nelze použít JFS"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Pro oddíl menší než 32MB nelze použít ReiserFS"
@@ -3289,7 +3289,7 @@ msgstr ""
"- nové ALSA API které má mnoho pokročilých vlastností, ale musíte používat "
"knihovny ALSA.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Ovladač:"
@@ -3342,60 +3342,74 @@ msgstr "Řešení problémů se zvukem"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Klasický postup při řešení problémů se zvukem je pomocí těchto příkazů:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" vám řekne, jaký ovladač je výchozí pro\n"
-"danou zvukovou kartu\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" vám řekne, který ovladač se nyní\n"
-"používá\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/lsmod\" provede kontrolu toho, zda modul (ovladač) je nahrán nebo "
-"ne\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" a \"/sbin/chkconfig --list alsa\" vám "
-"sdělí\n"
-"zda je pro initlevel nastaveny služby alsa a sound\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"aumix -q\" vám řekne, zda je zvuk ztlumen nebo ne\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" vám řekne, který program používá zvukovou "
-"kartu.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Umožnit výběr ovladače"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Výběr libovolného ovladače"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3474,12 +3488,12 @@ msgstr "Ne"
msgid "Choose a file"
msgstr "Vyberte soubor"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Přidat"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Změnit"
@@ -3514,7 +3528,7 @@ msgstr "Adresář neexistuje"
msgid "No such file"
msgstr "Soubor neexistuje"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Pozor, jsou povolena velká písmena"
@@ -4801,17 +4815,17 @@ msgstr "Vítá vás %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Přesunutí používaných fyzických oblastí na jiné svazky selhalo"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Fyzický svazek %s se stále používá"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Odeberte nejdříve logické disky\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Zavaděč neumí pracovat s adresářem /boot na více fyzických svazcích"
@@ -5225,13 +5239,13 @@ msgstr "Chcete opravdu smazat tento mount point?"
msgid "Password is trivial to guess"
msgstr "Heslo je jednoduché na uhodnutí"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
"Heslo by mělo odolat alespoň těm nejzákladnějším kryptografickým útokům"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Heslo se zdá být bezpečné"
@@ -5467,8 +5481,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Autorizace:\n"
"\n"
@@ -6625,7 +6639,7 @@ msgstr "Vzdálená administrace"
msgid "Database Server"
msgstr "Databázové servery"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Služby"
@@ -6640,22 +6654,22 @@ msgstr "Zvolte si, které služby by měly být automaticky spuštěny při star
msgid "%d activated for %d registered"
msgstr "aktivováno %d z %d registrovaných"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "spuštěno"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "zastaveno"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Služby a démoni"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6664,27 +6678,27 @@ msgstr ""
"Nejsou žádné další\n"
"informace o službě, promiňte."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Informace"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Spustit na žádost"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Při spuštění"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Start"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Stop"
@@ -7022,6 +7036,53 @@ msgid "Installation failed"
msgstr "Instalace selhala"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Klasický postup při řešení problémů se zvukem je pomocí těchto příkazů:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" vám řekne, jaký ovladač je výchozí "
+#~ "pro\n"
+#~ "danou zvukovou kartu\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" vám řekne, který ovladač se "
+#~ "nyní\n"
+#~ "používá\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" provede kontrolu toho, zda modul (ovladač) je nahrán "
+#~ "nebo ne\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" a \"/sbin/chkconfig --list alsa\" vám "
+#~ "sdělí\n"
+#~ "zda je pro initlevel nastaveny služby alsa a sound\n"
+#~ "\n"
+#~ "- \"aumix -q\" vám řekne, zda je zvuk ztlumen nebo ne\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" vám řekne, který program používá zvukovou "
+#~ "kartu.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index a4d3e3399..8ff8e016d 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia DrakX.cy\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2009-10-01 20:12-0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: Cymraeg <post@meddal.com>\n"
@@ -17,7 +17,7 @@ msgstr ""
"X-Poedit-Country: UNITED KINGDOM\n"
"X-Poedit-SourceCharset: utf-8\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -26,12 +26,12 @@ msgstr ""
msgid "Please wait"
msgstr "Aros..."
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Wrthi'n gosod cychwynnwr"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -47,12 +47,12 @@ msgstr ""
"\n"
"Neilltuo enw Cyfrol newydd?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Methodd gosod cychwynnwr. Digwyddodd y gwall canlynol:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -69,7 +69,7 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y cychwynnwr."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -84,268 +84,268 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Gosod Cychwynnwr"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Lle rydych chi eisiau gosod y cychwynnwr?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Adran gyntaf (MBR) o ddisg %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r disg (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Adran gyntaf o'r rhaniad gwraidd"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Ar Ddisg Meddal"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Hepgor"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Prif ddewisiadau'r cychwynnwr"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Cychwynnwr"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Dewis cychwynnwr"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Prif ddewisiadau"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Galluogi ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Galluogi SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Galluogi APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Galluogi APIC Lleol"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Diogelwch"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Cyfrinair"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cyd-fynd"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nid oes modd defnyddio cyfrinair gyda %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Neges Init"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Agor Oedi Cadarnwedd"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Goramser Cychwyn y Cnewyllyn"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Galluogi Cychwyn o CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Galluogi Cychwyn OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "System Weithredu Rhagosodedig?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Delwedd"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Gwraidd"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Atodi"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Atodiad Xen"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Modd fideo"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Proffil rhwydwaith"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Rhagosodedig"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Nid yw label wag yn cael ei chaniatáu"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad gwraidd"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Systemau Gweithredu eraill (SunOS..)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Systemau Gweithredu Eraill (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Ffurfweddu'r Cychwynnwr"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -354,47 +354,47 @@ msgstr ""
"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "caniatáu \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "mynediad i offer rhwydwaith"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "mynediad i offer crynhoad"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -402,147 +402,147 @@ msgid ""
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Enw Defnyddiwr"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Enw Grŵp"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "Rhaid i %s fod yn rhif!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "Dylai %s fod dros 500. Parhau beth bynnag?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Rheoli defnyddiwr"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Gosod cyfrinair gweinyddwr (root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Rhowch enw defnyddiwr"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Eicon"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Enw cywir"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Enw mewngofnodi"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Cragen"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Arhoswch, ychwanegu cyfrwng..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Awto mewngofnodi"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mewngofnodi'n awtomatig ar gyfer un defnyddiwr."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Defnyddiwch y nodwedd"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i redeg:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Nodiadau Ryddhau"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Cau"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Cytundeb trwyddedu"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Gadael"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "A ydych chi'n derbyn y drwydded hon?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Derbyn"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Gwrthod"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Dewiswch iaith i'w defnyddio"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -553,87 +553,87 @@ msgstr ""
"pa iaith yr hoffech ei osod. Byddant ar gael pan fydd eich gosodiad\n"
"wedi ei gwblhau a phan fyddwch yn ail gychwyn eich system."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Amlieithog"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Hen Amgodiad (nid utf-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Pob iaith"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Dewis iaith"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Gwlad / Ardal"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Dewiswch eich gwlad"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Dyma restr lawn o'r gwledydd sydd ar gael"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Gwledydd eraill"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Uwch"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Dull mewnbwn:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Dim"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Peidio rhannu"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Arddull"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -648,7 +648,7 @@ msgstr ""
"\n"
"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -657,7 +657,7 @@ msgstr ""
"NFS: system rhannu ffeiliau traddodiadol Unix, sydd â llai o gefnogaeth ar "
"Mac a Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -666,19 +666,19 @@ msgstr ""
"SMB: system rhannu ffeiliau sy'n cael ei ddefnyddio yn Windows, Mac OSX a "
"nifer o systemau Linux diweddar."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Gallwch allforio gan ddefnyddio NFS neu SMB. Pa un hoffech chi ei ddefnyddio?"
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -687,7 +687,7 @@ msgstr ""
"Mae'r rhannu yn ôl defnyddiwr yn defnyddio grŵp \"rhannu ffeiliau\" .\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grŵp. "
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -696,47 +696,47 @@ msgstr ""
"Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd. Cliciwch Iawn i "
"allgofnodi nawr."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Rhaid allgofnodi ac i mewn eto i newidiadau ddigwydd."
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Cylchfa amser"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Gosodiadau Dyddiad Cloc a Chylchedd Amser"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Beth yw'r amser gorau?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (cloc caledwedd wedi ei osod i UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (cloc caledwedd wedi ei osod i'r amser lleol)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
@@ -1071,7 +1071,7 @@ msgid "Domain Admin Password"
msgstr "Cyfrinair Gweinyddol y Parth"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1086,47 +1086,47 @@ msgstr ""
"aros am y cychwyn rhagosodedig\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO gyda dewislen testun"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB gyda dewislen raffigol"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB gyda dewislen raffigol"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB gyda dewislen testun"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y cychwynnwr ar raniad %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1135,7 +1135,7 @@ msgstr ""
"Rhaid i ffurfweddiad eich cychwynnwr gael ei ddiweddaru am i'r rhaniadau "
"gael eu hail rifo."
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1144,7 +1144,7 @@ msgstr ""
"Methu gosod eich cychwynnwr yn iawn, Rhaid defnyddio achub cychwyn a dewis "
"\"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ail osod Cychwynnwr"
@@ -1242,7 +1242,7 @@ msgstr "Pwynt arosod"
msgid "Options"
msgstr "Dewisiadau"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Tynnu"
@@ -1349,7 +1349,7 @@ msgid "Continue"
msgstr "Parhau"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1471,7 +1471,7 @@ msgid "More"
msgstr "Rhagor"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Gwiriad"
@@ -2276,8 +2276,8 @@ msgstr "Newid y math"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Diddymu"
@@ -2790,12 +2790,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Methodd creu'r rhaniad: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar raniadau llai na 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
@@ -3295,7 +3295,7 @@ msgstr ""
"- API ALSA newydd sy'n darparu llawer o nodweddion gell ond sydd angen "
"defnyddio llyfrgell ALSA.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Gyrrwr:"
@@ -3348,60 +3348,74 @@ msgstr "Datrys problemau sain"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Prawf gwall sain - rhedeg y gorchmynion canlynol:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" pa yrwyr i'w defnyddio\n"
-"drwy ragosodiad\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" pa yrwyr mae'n defnyddio\n"
-"- \"/sbin/fuser -v /dev/dsp\" pa raglen sy'n defnyddio'r cerdyn sain.\n"
-"ar hyn o bryd\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/lsmod\" gwirio os yw ei yrrwr wedi ei lwytho\n"
-"a'i peidio\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" a \"/sbin/chkconfig --list alsa\" dangos\n"
-"os yw sain a gwasanaethau alsa services sydd wedi eu ffurfweddu yn rhedeg\n"
-"ar initlevel 3\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"aumix -q\" a yw'r sain wedi ei ddistewi a'i peidio\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" pa rhaglen sy'n defnyddio'r cerdyn sain.\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Dewis gyrrwr fy hun"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Dewis gyrrwr ar hap"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3481,12 +3495,12 @@ msgstr "Na"
msgid "Choose a file"
msgstr "Dewis ffeil"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Ychwanegu"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Newid"
@@ -3521,7 +3535,7 @@ msgstr "Dim cyfeiriadur o'r fath ar gael"
msgid "No such file"
msgstr "Dim ffeil o'r fath ar gael"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Gwyliwch, Mae Caps Lock ymlaen"
@@ -4808,17 +4822,17 @@ msgstr "Croeso i %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Methodd symud ystentiau ffisegol i gyfrolau ffisegol eraill"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Cyfrol ffisegol %s yn dal i gael ei defnyddio"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Nid yw'r cychwynnydd yn gallu trin /boot ar gyfrolau ffisegol niferus"
@@ -5278,12 +5292,12 @@ msgstr "Ydych chi eisiau dileu'r pwynt arosod?"
msgid "Password is trivial to guess"
msgstr "Cyfrinair yn rhy hawdd ei ddyfalu"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "Dylai'r cyfrinair wrthod ymosodiad sylfaenol"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Cyfrinair i weld yn ddiogel"
@@ -5515,8 +5529,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Ymresymiadau: (arg)\n"
"\n"
@@ -6679,7 +6693,7 @@ msgstr "Gweinyddu Pell"
msgid "Database Server"
msgstr "Gweinydd Cronfa Ddata"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Gwasanaethau"
@@ -6696,49 +6710,49 @@ msgstr ""
msgid "%d activated for %d registered"
msgstr "%d wedi eu cychwyn ar gyfer %d wedi eu cofrestru"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "rhedeg"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "ataliwyd"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Gwasanaethau a daemonau"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr "Dim gwybodaeth ychwanegol am y gwasanaeth hwn."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Gwybodaeth"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Cychwyn yn ôl y gofyn"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Cychwyn"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Cychwyn"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Aros"
@@ -7076,6 +7090,53 @@ msgid "Installation failed"
msgstr "Methodd y gosod"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Prawf gwall sain - rhedeg y gorchmynion canlynol:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" pa yrwyr i'w defnyddio\n"
+#~ "drwy ragosodiad\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" pa yrwyr mae'n defnyddio\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" pa raglen sy'n defnyddio'r cerdyn sain.\n"
+#~ "ar hyn o bryd\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" gwirio os yw ei yrrwr wedi ei lwytho\n"
+#~ "a'i peidio\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" a \"/sbin/chkconfig --list alsa\" "
+#~ "dangos\n"
+#~ "os yw sain a gwasanaethau alsa services sydd wedi eu ffurfweddu yn "
+#~ "rhedeg\n"
+#~ "ar initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" a yw'r sain wedi ei ddistewi a'i peidio\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" pa rhaglen sy'n defnyddio'r cerdyn sain.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
@@ -7532,8 +7593,8 @@ msgstr "Methodd y gosod"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 091b46b9e..667d6e61b 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: da\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2010-06-06 12:39+0200\n"
"Last-Translator: Keld Simonsen <keld@keldix.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@@ -21,7 +21,7 @@ msgstr ""
"X-Generator: Lokalize 1.0\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -30,12 +30,12 @@ msgstr ""
msgid "Please wait"
msgstr "Vent venligst"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation af systemopstarteren er i gang"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -52,12 +52,12 @@ msgstr ""
"\n"
"Tildel en ny Volumen-ID?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Installation af opstarter mislykkedes. Den følgende fejl opstod:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -74,7 +74,7 @@ msgstr ""
" Skriv så: shut-down\n"
"Ved næste opstart burde du se systemstarteren."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -89,268 +89,268 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Installation af systemopstarter"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du placere opstartsprogrammet?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Første sektor (MBR) på drev %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Første sektor på disken (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Første sektor af rodpartitionen"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "På diskette"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Spring over"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration af opstartsudseende"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Systemopstarterens hovedindstillinger"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Systemopstarter"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Systemopstarter der skal bruges"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Opstartsenhed"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Hovedvalg"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Ventetid før opstart af forvalgt styresystem"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Aktivér ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Aktivér SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Aktivér APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Aktivér lokal APIC"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sikkerhed"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Adgangskode"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Prøv igen"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Du kan ikke bruge en adgangskode med %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Adgangskode (igen)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Rens /tmp ved hver systemopstart"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Init-besked"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Åben firmwareforsinkelse"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ventetid før kerneopstart"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Skal det være muligt at starte fra CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Skal det være muligt at starte fra OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Forvalgt styresystem?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Billede"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Rod"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Vedhæft"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen-tilføjning"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Kræver adgangskode for at starte op"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Videoindstilling"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Netværksprofil"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Mærkat"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "Ingen video"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Tom mærkat er ikke tilladt"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Du skal angive en kerne-fil"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Du skal angive en root-partition"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Denne mærkat er allerede brugt"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Hvilken type ønsker du at tilføje"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Andet styresystem (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Andet styresystem (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Andet styresystem (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguration af opstarter"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -359,47 +359,47 @@ msgstr ""
"Her er følgende typer indgange.\n"
"Du kan tilføje flere eller ændre de eksisterende."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "adgang til rpm-værktøjer"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "adgang til netværksværktøjer"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "adgang til oversættelsesværktøjer"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilføjet %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -408,148 +408,148 @@ msgstr ""
"Brugernavnet skal starte et lille bogstav, efterfulgt kun af små bogstaver, "
"tal, `-' og `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Dette brugernavn eksisterer allerede"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Bruger-id"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Gruppe-id"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s skal være et tal"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s burde være over 500. Acceptér alligevel?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Administration af brugere"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Aktivér kontoen guest"
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Sæt administrator (root) adgangskode"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Indtast en bruger"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Rigtige navn"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Logindnavn"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Skal"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Vent venligst, tilføjer medie..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Jeg kan sætte din maskine op til automatisk at logge en bestemt bruger på."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Brug denne facilitet"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Vælg den forvalgte bruger:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Vælg den vindueshåndtering du ønsker at benytte:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Udgivelsesnoter"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Luk"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Licensaftale"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Afslut"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Accepterer du denne licens?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Acceptér"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Nægt"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Vælg det sprog, der skal bruges"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,87 +558,87 @@ msgid ""
msgstr ""
"Du kan vælge andre sprog der vil være tilgængelige efter installationen"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Flere sprog"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Gammel kompatibilitetskoding (ikke UTF-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Alle sprog"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Sprogvalg"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Land / Region"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Vælg dit land"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Her er den komplette liste over tilgængelige lande"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Andre lande"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avanceret"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Indtastningsmetode:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Ingen"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Ingen fildeling"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Tilpasset"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -652,7 +652,7 @@ msgstr ""
"Tilladelse af dette vil sætte brugere i stand til simpelthen at klikke på "
"'Fildeling' i konqueror og nautilus.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -661,7 +661,7 @@ msgstr ""
"NFS: det traditionlle Unix fildelingssystem, med mindre funktionalitet på "
"Mac og Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -670,18 +670,18 @@ msgstr ""
"SMB: et fildelingssystem brugt på Windows, Mac OS X og mange moderne Linux-"
"systemer."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Du kan eksportere med NFS eller SMB. Hvilken vil du bruge"
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -690,7 +690,7 @@ msgstr ""
"Deling per bruger bruger gruppen 'fileshare'. \n"
"Du kan bruge userdrake til at tilføje en bruger til denne gruppe."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -699,47 +699,47 @@ msgstr ""
"Du skal logge ud og ind igen for at ændringerne skal gælde. Tryk O.k. for at "
"logge ud nu."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Du skal logge ud og ind igen for at ændringerne skal gælde"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Tidszone"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dato-, klokke- og tidszoneopsætning"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Hvad er den bedste tid?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (Maskin-ur sat til UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Maskin-ur sat til lokal tid)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP-server"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjælp af NTP)"
@@ -1084,7 +1084,7 @@ msgstr "Adgangskode for domæneadministrator"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1099,47 +1099,47 @@ msgstr ""
"vent paa at starte standard-systemet.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO med tekstmenu"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB med grafisk menu"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB med grafisk menu"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB med tekstmenu"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "Ikke nok plads i /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Du kan ikke installere opstartsindlæseren på en %s-partition\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1148,7 +1148,7 @@ msgstr ""
"Din opstartsindlæserkonfiguration behøver at opdateres da rækkefølgen på "
"dine partitioner er blevet ændret"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1157,7 +1157,7 @@ msgstr ""
"Opstartsindlæseren kan ikke blive installeret korrekt. Du skal lave "
"nødopstart og vælge \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Geninstallér systemopstarter"
@@ -1256,7 +1256,7 @@ msgstr "Monteringssti"
msgid "Options"
msgstr "Valg"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Fjern"
@@ -1362,7 +1362,7 @@ msgid "Continue"
msgstr "Fortsæt"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1484,7 +1484,7 @@ msgid "More"
msgstr "Mere"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Bekræftelse"
@@ -2286,8 +2286,8 @@ msgstr "Skift type"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Annullér"
@@ -2795,12 +2795,12 @@ msgstr "Her er indholdet af dit diskdrev "
msgid "Partitioning failed: %s"
msgstr "Partitionering mislykkedes: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Du kan ikke bruge JFS på partitioner mindre end 16Mb"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Du kan ikke bruge ReiserFS på partitioner mindre end 32Mb"
@@ -3299,7 +3299,7 @@ msgstr ""
"- den nye ALSA API som tilbyder mange forbedrede faciliteter men som kræver "
"brug af ALSA-biblioteket.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Drivprogram:"
@@ -3352,58 +3352,74 @@ msgstr "Problemløsning omkring lyd"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Den klassiske metode for at fejlsøge lydopsætningten er at køre følgende\n"
-"kommandoer:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" vil vise hvilken driver lydkortet "
-"bruger \n"
-"som standard\n"
-"- \"grep sound-slot /etc/modprobe.conf\" vil vise hvilken driver som er i "
-"brug\n"
"\n"
-"- \"/sbin/lsmod\" lader dig se om denne driver er indlæst\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" og \"/sbin/chkconfig --list alsa\" vil\n"
-"vise om disse tjenester er sat op til at startes.\n"
"\n"
-"- \"aumix -q\" vil vise om lyden er slukket ned eller ikke\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" vil vise hvilke programmer som bruger "
-"lydkortet\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Lad mig vælge hvilkensomhelst driver"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Vælger en vilkårlig driver"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3483,12 +3499,12 @@ msgstr "Nej"
msgid "Choose a file"
msgstr "Vælg en fil"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Tilføj"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Ændr"
@@ -3523,7 +3539,7 @@ msgstr "Ikke noget katalog"
msgid "No such file"
msgstr "Ikke nogen fil"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Obs! 'Caps Lock' er aktiveret"
@@ -4811,17 +4827,17 @@ msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
"Flytning af brugte fysiske områder til andre fysiske volumener lykkedes ikke"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Fysisk volumen %s er stadig i brug"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Fjern de logiske delarkiver først\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Opstartsindlæseren kan ikke håndtere /boot på flere fysiske volumer"
@@ -5254,12 +5270,12 @@ msgstr "Er du sikker på at du ønsker at slette dette monteringspunkt?"
msgid "Password is trivial to guess"
msgstr "Adgangskode er nem at gætte"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "Adgangskode bør kunne modstå basale angreb"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Adgangskode ser sikker ud"
@@ -5494,8 +5510,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Autorisér:\n"
"\n"
@@ -6661,7 +6677,7 @@ msgstr "Ekstern administration"
msgid "Database Server"
msgstr "Databaseserver"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Tjenester"
@@ -6676,22 +6692,22 @@ msgstr "Vælg hvilke tjenester der skal startes automatisk ved opstart"
msgid "%d activated for %d registered"
msgstr "%d aktiverede for %d registrerede"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "kører"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "stoppet"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Tjenester og dæmoner"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6700,27 +6716,27 @@ msgstr ""
"Beklager, der er ingen ekstra\n"
"information om denne tjeneste."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Start når der bedes om det"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Ved opstart"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Start"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Stop"
@@ -7058,6 +7074,50 @@ msgid "Installation failed"
msgstr "Installation mislykkedes"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Den klassiske metode for at fejlsøge lydopsætningten er at køre følgende\n"
+#~ "kommandoer:\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" vil vise hvilken driver lydkortet "
+#~ "bruger \n"
+#~ "som standard\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" vil vise hvilken driver som er i "
+#~ "brug\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" lader dig se om denne driver er indlæst\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" og \"/sbin/chkconfig --list alsa\" "
+#~ "vil\n"
+#~ "vise om disse tjenester er sat op til at startes.\n"
+#~ "\n"
+#~ "- \"aumix -q\" vil vise om lyden er slukket ned eller ikke\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" vil vise hvilke programmer som bruger "
+#~ "lydkortet\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 977661ae9..277ad6fa7 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2013-01-09 09:58+0100\n"
"Last-Translator: Oliver Burger <obgr_seneca@mageia.org>\n"
"Language-Team: German <mageia-i18n@mageia.org>\n"
@@ -15,7 +15,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Generator: Lokalize 1.4\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -24,12 +24,12 @@ msgstr ""
msgid "Please wait"
msgstr "Bitte warten"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation des Bootloaders ..."
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,14 +46,14 @@ msgstr ""
"\n"
"Neue Datenträger-ID zuweisen?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Die Installation des Betriebssytemstarters schlug fehl. Folgender Fehler "
"trat auf:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -71,7 +71,7 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -87,268 +87,268 @@ msgstr ""
"\n"
"Von welchem Laufwerk booten Sie?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Installation des Bootloaders"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Bootloader installiert werden?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Erster Sektor der %s Platte (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Erster Sektor der Platte (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Erster Sektor der Root-Partition"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Auf Diskette"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Überspringen"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Haupt-Optionen des Bootloaders"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Zu verwendender Bootloader"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Boot-Gerät"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Haupt-Optionen"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Wartezeit vor dem Starten des Standard-Betriebssystems"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "ACPI aktivieren"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "SMP aktivieren"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "APIC aktivieren"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Lokales APIC aktivieren"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sicherheit"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Passwort"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Die Passwörter stimmen nicht überein"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Sie können kein Passwort mit %s benutzen"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Passwort (erneut)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr " „/tmp“ bei jedem Systemstart säubern"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Init-Nachricht"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Open-Firmware-Verzögerung"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Kernel-Start-Wartezeit"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Booten von CD erlauben?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Open-Firmware-Start erlauben?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Standard-Betriebssystem?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Abbild"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Hinzufügen / Erweitern"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen hinzufügen"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Benötigt Passwort zum Booten"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Video-Modus"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Init-RamDisk"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Netzwerk Profil"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Bezeichnung"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Leere Einträge sind nicht erlaubt"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Sie müssen ein Kernel-Image angeben"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Sie müssen die Root-Partition festlegen"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufügen?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Anderes OS (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Anderes OS (MacOS ...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Anderes OS (Windows ...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfiguration des Bootloaders"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -357,47 +357,47 @@ msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "Zugriff auf Netzwerk-Werkzeuge"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "Zugriff auf Kompilier-Werkzeuge"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefügt)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Bitte geben Sie einen Benutzernamen an"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -406,149 +406,149 @@ msgstr ""
"Der Benutzername muss mit einem Kleinbuchstaben beginnen und sollte nur aus "
"Kleinbuchstaben, Ziffern, „-“ und „_“ bestehen."
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Dieser Benutzername ist zu lang"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Dieser Benutzername existiert bereits"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Benutzer-ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Gruppen-ID"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s muss eine Zahl sein"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s sollte größer als 500 sein. Trotzdem akzeptieren?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Benutzerverwaltung"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Den Gastzugang aktivieren"
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Administratorpasswort setzen"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Benutzer einrichten"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Symbol"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Vollständiger Name"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Benutzername"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Bitte warten, füge Medien hinzu ..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatisch anmelden"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Ich kann Ihren Computer so einrichten, dass ein Benutzer automatisch "
"angemeldet wird."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Diese Möglichkeit nutzen"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Versionshinweise"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Schließen"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Lizenzvereinbarung"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Verlassen"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Akzeptieren Sie diese Lizenz?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Akzeptieren"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Ablehnen"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Bitte wählen Sie die zu verwendende Sprache"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -560,87 +560,87 @@ msgstr ""
"sein,\n"
"wenn Ihre Installation beendet ist und Sie das System neu starten."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "Mehrere Sprachen"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr "Wählen Sie zusätzliche Sprachen aus"
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Alte (nicht UTF-8) Kodierung"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Alle Sprachen"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Sprachauswahl"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Staat / Region"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Bitte wählen Sie Ihr Land"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier ist die komplette Liste aller Länder"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Andere Länder"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Fortgeschritten"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Eingabe-Methode:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Keine"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Keine Freigaben"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Benutzerdefiniert"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -655,7 +655,7 @@ msgstr ""
"\n"
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Benutzer vornehmen.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -664,7 +664,7 @@ msgstr ""
"NFS: das traditionelle Unix-Dateisystem für Freigaben im Netz, mit weniger "
"Unterstützung für Mac und Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -673,7 +673,7 @@ msgstr ""
"SMB: ein Dateisystem für Freigaben im Netz von Windows, Mac OS X und vielen "
"modernen Linux-Systemen verwendet"
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -681,12 +681,12 @@ msgstr ""
"Sie können die Dateien mittels SMB oder NFS anbieten. Welche Variante wollen "
"Sie verwenden?"
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "UserDrake starten"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -695,7 +695,7 @@ msgstr ""
"Die Freigaben zwischen Benutzern regelt die Gruppe „fileshare“. \n"
"Sie können UserDrake verwenden, um Benutzer in diese Gruppe aufzunehmen."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -704,49 +704,49 @@ msgstr ""
"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
"werden. Klicken Sie auf OK, um sich nun abzumelden."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen wirksam "
"werden"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Zeitzone"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Datum, Zeit und Zeitzonen Einstellungen"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Welches ist die beste Zeit?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (Hardware Uhr gestellt auf GMT)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Hardware Uhr gestellt auf Ortszeit)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP-Server"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
@@ -1089,7 +1089,7 @@ msgid "Domain Admin Password"
msgstr "Passwort des Domänen-Administrators"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1104,47 +1104,47 @@ msgstr ""
"oder warten Sie auf das Starten des Standard-Betriebssystems.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO mit Textmenü"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 mit grafischem Menü"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB mit grafischem Menü"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB mit Textmenü"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Sie können den Bootloader nicht auf einer %s-Partition installieren.\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1153,7 +1153,7 @@ msgstr ""
"Ihre Bootloaderkonfiguration muss geändert werden, da sich Ihre "
"Partitionsnummerierung geändert hat"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1162,7 +1162,7 @@ msgstr ""
"Der Bootloader kann nicht richtig installiert werden. Sie müssen ins "
"Rettungssystem booten und „%s“ wählen"
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Bootloader neu installieren"
@@ -1261,7 +1261,7 @@ msgstr "Einhängepunkt"
msgid "Options"
msgstr "Optionen"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Entfernen"
@@ -1369,7 +1369,7 @@ msgid "Continue"
msgstr "Fortfahren"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1491,7 +1491,7 @@ msgid "More"
msgstr "Mehr"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Bestätigung"
@@ -2305,8 +2305,8 @@ msgstr "Typ ändern"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Abbrechen"
@@ -2843,13 +2843,13 @@ msgstr "Hier sehen Sie den Inhalt ihres Festplattenlaufwerkes "
msgid "Partitioning failed: %s"
msgstr "Partitionierunsgfehler: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
"Sie können JFS nicht für Partitionen nutzen, die kleiner als 16 MB sind."
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3304,7 +3304,7 @@ msgstr ""
"Hier können Sie einen alternativen Treiber (entweder OSS oder ALSA) für Ihre "
"Soundkarte (%s) auswählen"
-#. -PO: here the first %s is either "OSS" or "ALSA",
+#. -PO: here the first %s is either "OSS" or "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:369
@@ -3354,7 +3354,7 @@ msgstr ""
"- die alte OSS-Kompatibilitäts-API - die neue ALSA-API, die viele erweiterte "
"Funktionen bietet, aber die Benutzung der ALSA-Bibliothek erfordert.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Treiber:"
@@ -3407,62 +3407,74 @@ msgstr "Soundprobleme beheben"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Der klassische Test, um Fehler im Sound-System zu finden:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- „lspcidrake -v | fgrep -i AUDIO“ verrät Ihnen, welcher Treiber Ihre "
-"Soundkarte \n"
-" standardmäßig verwendet.\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" sagt Ihnen, welchen Treiber Ihre "
-"Soundkarte momentan benutzt. \n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/lsmod\" erlaubt es Ihnen zu überprüfen, ob das entsprechende Modul "
-"(Treiber) geladen ist. \n"
"\n"
-"- „/sbin/chkconfig --list sound“ und „/sbin/chkconfig --list alsa“ verraten\n"
-" Ihnen, ob die Sound- und ALSA-Dienste konfiguriert sind, um im\n"
-" Initlevel 3 zu laufen.\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"aumix -q\" sagt Ihnen, ob die Sound-Ausgabe stummgeschaltet wurde oder "
-"nicht. \n"
"\n"
-"- „/sbin/fuser -v /dev/dsp“ verrät das Programm, das die Soundkarte "
-"benutzt.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Soll irgendeinen Treiber ausgewählt werden?"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Einen willkürlicher Treiber wird gewählt"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3543,12 +3555,12 @@ msgstr "Nein"
msgid "Choose a file"
msgstr "Wählen Sie eine Datei"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Hinzufügen"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Ändern"
@@ -3583,7 +3595,7 @@ msgstr "Das Verzeichnis existiert nicht"
msgid "No such file"
msgstr "Die Datei existiert nicht"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Achtung, die „Feststelltaste“ ist aktiviert"
@@ -4871,17 +4883,17 @@ msgstr ""
"Das Verschieben der verwendeten physischen Erweiterungen auf andere "
"physische Datenträger ist fehlgeschlagen"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Der physische Datenträger %s wird noch verwendet"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die logischen Geräte\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5074,11 +5086,9 @@ msgstr ""
"Die meisten der Lizenzen erlauben es, die Komponenten, die diesen Lizenzen "
"unterliegen, zu benutzen, zu duplizieren, anzupassen, und weiterzugeben. "
"Bitte lesen sie sorgfältig die Bedingungen der Lizenzabkommen jeder "
-"Komponente, "
-"bevor Sie sie benutzen.\n"
+"Komponente, bevor Sie sie benutzen.\n"
"Jegliche Frage zur Lizenz einer Komponente ist an den Lizenzgeber oder "
-"Vertreiber "
-"der Komponente und nicht an Mageia zu richten.\n"
+"Vertreiber der Komponente und nicht an Mageia zu richten.\n"
"Die von Mageia erstellten Programme unterliegen der GPL.\n"
"Von Mageia geschriebene Dokumentation unterliegt einer \"%s\" Lizenz."
@@ -5334,12 +5344,12 @@ msgstr "Sind Sie sicher, dass Sie beenden möchten?"
msgid "Password is trivial to guess"
msgstr "Das Passwort ist zu einfach zu erraten"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "Passwörter sollten grundlegenden Angriffen widerstehen können"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Das Passwort scheint sicher zu sein"
@@ -5581,8 +5591,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Autorisieren:\n"
"\n"
@@ -6792,7 +6802,7 @@ msgstr "Fernwartung"
msgid "Database Server"
msgstr "Datenbankserver"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Dienste"
@@ -6809,22 +6819,22 @@ msgstr ""
msgid "%d activated for %d registered"
msgstr "%d aktiviert von %d registrierten"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "aktiv"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "gestoppt"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Dienste und Dämonen"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6834,27 +6844,27 @@ msgstr ""
"weiteren Informationen zu\n"
"diesem Dienst."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Starten wenn verlangt"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Beim Systemstart"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Start"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Stopp"
@@ -7195,6 +7205,54 @@ msgid "Installation failed"
msgstr "Die Installation schlug fehl"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Der klassische Test, um Fehler im Sound-System zu finden:\n"
+#~ "\n"
+#~ "\n"
+#~ "- „lspcidrake -v | fgrep -i AUDIO“ verrät Ihnen, welcher Treiber Ihre "
+#~ "Soundkarte \n"
+#~ " standardmäßig verwendet.\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" sagt Ihnen, welchen Treiber Ihre "
+#~ "Soundkarte momentan benutzt. \n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" erlaubt es Ihnen zu überprüfen, ob das entsprechende "
+#~ "Modul (Treiber) geladen ist. \n"
+#~ "\n"
+#~ "- „/sbin/chkconfig --list sound“ und „/sbin/chkconfig --list alsa“ "
+#~ "verraten\n"
+#~ " Ihnen, ob die Sound- und ALSA-Dienste konfiguriert sind, um im\n"
+#~ " Initlevel 3 zu laufen.\n"
+#~ "\n"
+#~ "- \"aumix -q\" sagt Ihnen, ob die Sound-Ausgabe stummgeschaltet wurde "
+#~ "oder nicht. \n"
+#~ "\n"
+#~ "- „/sbin/fuser -v /dev/dsp“ verrät das Programm, das die Soundkarte "
+#~ "benutzt.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index cd1f8b276..40c15a89c 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2012-12-26 07:15+0100\n"
"Last-Translator: Dimitrios Glentadakis <dglent@gmail.com>\n"
"Language-Team: Greek <i18n-el@ml.mageia.org>\n"
@@ -22,7 +22,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Generator: Lokalize 1.4\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -31,12 +31,12 @@ msgstr ""
msgid "Please wait"
msgstr "Παρακαλώ περιμένετε"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Γίνεται εγκατάσταση του προγράμματος εκκίνησης του υπολογιστή"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -55,14 +55,14 @@ msgstr ""
"\n"
"Να γίνει ανάθεση μιας νέα Ταυτότητας Τόμου;"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Η εγκατάσταση του προγράμματος εκκίνησης απέτυχε. Παρουσιάστηκε το ακόλουθο "
"σφάλμα:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -81,7 +81,7 @@ msgstr ""
"Στην επόμενη εκκίνηση θα πρέπει να δείτε την προτροπή του προγράμματος "
"εκκίνησης ."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -96,270 +96,270 @@ msgstr ""
"\n"
"Ποιος είναι ο δίσκος εκκίνησης;"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Εγκατάσταση του προγράμματος εκκίνησης"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Πού θέλετε να εγκαταστήσετε το πρόγραμμα εκκίνησης;"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Πρώτος τομέας (MBR) του δίσκου %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Πρώτος τομέας του δίσκου (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Πρώτος τομέας της κατάτμησης root"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Στη δισκέτα"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Παράλειψη"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Ρύθμιση του στυλ εκκίνησης"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Κύριες επιλογές του προγράμματος εκκίνησης"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Πρόγραμμα εκκίνησης"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Χρήση του προγράμματος εκκίνησης"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Συσκευή εκκίνησης"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Κύριες επιλογές"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr ""
"Καθυστέρηση πριν την εκκίνηση\n"
"της προεπιλεγμένης εικόνας"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Ενεργοποίηση του ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Ενεργοποίηση του SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Ενεργοποίηση του APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Ενεργοποίηση του τοπικού APIC"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Ασφάλεια"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Κωδικός πρόσβασης"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Οι κωδικοί πρόσβασης δεν ταιριάζουν"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Παρακαλώ προσπαθήστε ξανά"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Δεν μπορείτε να χρησιμοποιήσετε έναν κωδικό πρόσβασης με %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Κωδικός πρόσβασης (ξανά)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Καθαρισμός του φακέλου /tmp σε κάθε εκκίνηση"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Μήνυμα εκκίνησης"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Καθυστέρηση του Open Firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Χρονικό όριο εκκίνησης του πυρήνα"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Ενεργοποίηση της εκκίνησης από CD;"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Ενεργοποίηση της εκκίνησης στο OF;"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Προκαθορισμένο λειτουργικό σύστημα ;"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Εικόνα"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Κατάτμηση root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Επιλογές περασμένες στον πυρήνα"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Επιλογές Xen περασμένες στον πυρήνα"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Απαιτείται ένας κωδικός πρόσβασης για την εκκίνηση"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Λειτουργία βίντεο"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Προφίλ δικτύου"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Ετικέτα"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Προκαθορισμένο"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Δεν επιτρέπεται μια κενή ετικέτα"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Πρέπει να ορίσετε μια εικόνα πυρήνα"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Πρέπει να ορίσετε μια κατάτμηση root"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Αυτή η ετικέτα χρησιμοποιείται ήδη"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Τι τύπου σύστημα θέλετε να προσθέσετε;"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Άλλο λειτουργικό (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Άλλο λειτουργικό (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Άλλο λειτουργικό (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Ρύθμιση του προγράμματος εκκίνησης"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -368,47 +368,47 @@ msgstr ""
"Ορίστε οι καταχωρήσεις στο μενού εκκίνησης.\n"
"Μπορείτε να προσθέσετε κι άλλες ή να αλλάξετε τις υπάρχουσες."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "πρόσβαση σε προγράμματα γραφικού περιβάλλοντος"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "πρόσβαση σε εργαλεία rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "επιτρέπεται η «su»"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "πρόσβαση σε αρχεία διαχείρισης"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "πρόσβαση σε εργαλεία δικτύου"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "πρόσβαση σε εργαλεία σύνθεσης"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s έχει ήδη προστεθεί)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Παρακαλώ εισάγετε ένα όνομα χρήστη"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -417,149 +417,149 @@ msgstr ""
"Το όνομα χρήστη πρέπει να αρχίζει με πεζό γράμμα και τα γράμματα που "
"ακολουθούν να είναι επίσης πεζά, αριθμοί, «-» και «_»"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Αυτό το όνομα χρήστη είναι πολύ μακρύ"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Αυτό το όνομα χρήστη έχει ήδη προστεθεί"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Αναγνωριστικό χρήστη"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Αναγνωριστικό ομάδας"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "Το %s πρέπει να είναι αριθμός"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
"Το %s πρέπει να είναι μεγαλύτερο ή ίσο του 500. Αποδοχή έτσι κι αλλιώς;"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Διαχείριση χρηστών"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Ενεργοποίηση του λογαριασμού επισκέπτη "
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ορίστε τον κωδικό πρόσβασης του διαχειριστή (root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Εισάγετε ένα χρήστη"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Εικονίδιο"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Πραγματικό όνομα"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Όνομα χρήστη"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Κέλυφος"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Παρακαλώ περιμένετε, προσθήκη μέσου..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Αυτόματη σύνδεση"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Μπορώ να ρυθμίσω το σύστημά σας έτσι ώστε να συνδέει αυτόματα ένα χρήστη."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Χρήση αυτού του χαρακτηριστικού"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Επιλέξτε τον προκαθορισμένο χρήστη:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Επιλέξτε το διαχειριστή παραθύρων που θέλετε να χρησιμοποιήσετε:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Σημειώσεις έκδοσης"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Κλείσιμο"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Άδεια χρήσης"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Έξοδος"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Αποδέχεστε αυτήν την άδεια ;"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Αποδοχή"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Άρνηση"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Παρακαλώ επιλέξτε τη γλώσσα"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -570,87 +570,87 @@ msgstr ""
"τις γλώσσες που επιθυμείτε να εγκαταστήσετε. Θα είναι διαθέσιμες\n"
"μετά την ολοκλήρωση της εγκατάστασης και την επανεκκίνηση του υπολογιστή."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "Πολλαπλές γλώσσες"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr "Επιλογή επιπλέον γλωσσών"
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Κωδικοποίηση παλιάς συμβατότητας (μη UTF-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Όλες οι γλώσσες"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Επιλογή γλώσσας"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Χώρα / Περιοχή"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Παρακαλώ επιλέξτε τη χώρα σας"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Αυτή είναι η πλήρης λίστα των διαθέσιμων χωρών"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Άλλες χώρες"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Για προχωρημένους"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Μέθοδος εισαγωγής:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Κανένα"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Χωρίς κοινή χρήση"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Επιτρέπεται για όλους τους χρήστες"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Προσαρμοσμένο"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -665,7 +665,7 @@ msgstr ""
"\n"
"Το \"Προσαρμοσμένο\" επιτρέπει την ανά χρήστη ρύθμιση.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -674,7 +674,7 @@ msgstr ""
"NFS: το παραδοσιακό σύστημα κοινής χρήσης του Unix, με περιορισμένη "
"υποστήριξη για Mac και Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -683,7 +683,7 @@ msgstr ""
"SMB: ένα σύστημα κοινής χρήσης, που χρησιμοποιείται από τα Windows, από το "
"Mac OS X και από πολλά μοντέρνα συστήματα Linux."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -691,12 +691,12 @@ msgstr ""
"Μπορείτε να κάνετε εξαγωγή με τη χρήση NFS ή SMB. Παρακαλώ επιλέξτε ποιο θα "
"θέλατε να χρησιμοποιήσετε."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Εκκίνηση του userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -706,7 +706,7 @@ msgstr ""
"Μπορείτε να προσθέσετε ένα χρήστη σε αυτήν την ομάδα χρησιμοποιώντας το "
"userdrake."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -715,49 +715,49 @@ msgstr ""
"Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να "
"επανασυνδεθείτε. Πατήστε «Εντάξει» για να αποσυνδεθείτε τώρα."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Για να εφαρμοστούν οι αλλαγές, θα πρέπει να αποσυνδεθείτε και μετά να "
"επανασυνδεθείτε."
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Ωρολογιακή ζώνη"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Ποια είναι η ζώνη ώρας σας;"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Ρυθμίσεις της ημερομηνίας, της ώρας και της ωρολογιακής ζώνης"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Ποια είναι η σωστή ώρα;"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί σε UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (το ρολόι της μητρικής κάρτας έχει οριστεί στην τοπική ώρα)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Εξυπηρετητής NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Αυτόματος συγχρονισμός της ώρας (μέσω NTP)"
@@ -1101,7 +1101,7 @@ msgid "Domain Admin Password"
msgstr "Κωδικός πρόσβασης του διαχειριστή τομέα"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1116,48 +1116,48 @@ msgstr ""
"περιμένετε την εκκίνηση από προεπιλογή.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO με μενού κειμένου"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 με γραφικό περιβάλλον"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB με γραφικό περιβάλλον "
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB με μενού κειμένου"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "δεν υπάρχει αρκετός χώρος στο /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
"Δεν μπορείτε να εγκαταστήσετε το πρόγραμμα εκκίνησης σε μια κατάτμηση %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1166,7 +1166,7 @@ msgstr ""
"Η ρύθμιση του προγράμματος εκκίνησης πρέπει να ενημερωθεί επειδή κάποιες "
"κατατμήσεις έχουν επαναριθμηθεί"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1176,7 +1176,7 @@ msgstr ""
"εκκινήσετε το CD-ROM της εγκατάστασης με την επιλογή «διάσωση» και να "
"επιλέξετε «%s»"
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Επανεγκατάσταση του προγράμματος εκκίνησης"
@@ -1277,7 +1277,7 @@ msgstr "Σημείο προσάρτησης"
msgid "Options"
msgstr "Επιλογές"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Αφαίρεση"
@@ -1385,7 +1385,7 @@ msgid "Continue"
msgstr "Συνέχεια"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1507,7 +1507,7 @@ msgid "More"
msgstr "Περισσότερα"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Επιβεβαίωση"
@@ -2319,8 +2319,8 @@ msgstr "Αλλαγή του τύπου"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Ακύρωση"
@@ -2851,13 +2851,13 @@ msgstr "Εδώ είναι το περιεχόμενο του δίσκου σας
msgid "Partitioning failed: %s"
msgstr "Η κατάτμηση απέτυχε: %s "
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
"Δεν μπορείτε να χρησιμοποιήσετε το JFS για κατατμήσεις μικρότερες από 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3317,7 +3317,7 @@ msgstr ""
"Εδώ μπορείτε να επιλέξετε έναν εναλλακτικό οδηγό (OSS ή ALSA) για την κάρτα "
"ήχου σας (%s)"
-#. -PO: here the first %s is either "OSS" or "ALSA",
+#. -PO: here the first %s is either "OSS" or "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:369
@@ -3369,7 +3369,7 @@ msgstr ""
"- το νέο ALSA API που παρέχει ένα μεγάλο αριθμό προχωρημένων "
"χαρακτηριστικών αλλά απαιτεί την βιβλιοθήκη ALSA.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Οδηγός:"
@@ -3422,63 +3422,74 @@ msgstr "Αντιμετώπιση προβλημάτων ήχου"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Ο κλασικός τρόπος ελέγχου του ήχου για δυσλειτουργίες, είναι ή εκτέλεση των "
-"παρακάτω εντολών:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- «lspcidrake -v | fgrep -i AUDIO» θα σας πει ποιον οδηγό συσκευής "
-"χρησιμοποιεί η κάρτα σας,\n"
-"από προεπιλογή\n"
"\n"
-"- «grep sound-slot /etc/modprobe.conf» θα σας πει ποιον οδηγό συσκευής "
-"χρησιμοποιεί η κάρτα σας\n"
-" τώρα\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- «/sbin/lsmod» θα σας επιτρέψει να ελέγξετε αν το άρθρωμα (module)\n"
-"έχει φορτωθεί ή όχι\n"
"\n"
-"- «/sbin/chkconfig --list sound» και «/sbin/chkconfig --list alsa» \n"
-" θα σας πει αν οι υπηρεσίες ήχου και alsa έχουν ρυθμιστεί να ξεκινούν στο\n"
-"επίπεδο εκτέλεσης 3 (init runlevel 3)\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- «aumix -q» θα σας πει αν η ένταση του ήχου είναι κλειστή ή όχι\n"
"\n"
-"- «/sbin/fuser -v /dev/dsp» θα σας πει ποιο πρόγραμμα χρησιμοποιεί την κάρτα "
-"ήχου.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Επιλογή ενός οδηγού"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Αυθαίρετη επιλογή ενός οδηγού"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3560,12 +3571,12 @@ msgstr "Όχι"
msgid "Choose a file"
msgstr "Επιλέξτε ένα αρχείο"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Προσθήκη"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Επεξεργασία"
@@ -3600,7 +3611,7 @@ msgstr "Δεν υπάρχει τέτοιος κατάλογος"
msgid "No such file"
msgstr "Δεν υπάρχει τέτοιο αρχείο"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Προσοχή, τα κεφαλαία είναι ενεργοποιημένα (πλήκτρο Caps Lock)"
@@ -4888,17 +4899,17 @@ msgstr "Καλώς ήλθατε στο %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Η μεταφορά των φυσικών εκτάσεων προς άλλους φυσικούς τόμους, απέτυχε"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Ο φυσικός τόμος %s εξακολουθεί να είναι σε χρήση"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Αφαίρεσε πρώτα τους λογικούς τόμους\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5371,13 +5382,13 @@ msgstr "Θέλετε σίγουρα να εγκαταλείψετε;"
msgid "Password is trivial to guess"
msgstr "Αυτόν τον κωδικό πρόσβασης μπορεί να τον μαντέψει κάνεις εύκολα"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
"Αυτός ο κωδικός πρόσβασης φαίνεται ικανός να αντισταθεί σε απλές επιθέσεις"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Αυτός ο κωδικός πρόσβασης φαίνεται να είναι ασφαλής"
@@ -5621,8 +5632,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Αδειοδότηση:\n"
"\n"
@@ -6827,7 +6838,7 @@ msgstr "Απομακρυσμένη διαχείριση"
msgid "Database Server"
msgstr "Εξυπηρετητής βάσης δεδομένων"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Υπηρεσίες"
@@ -6842,22 +6853,22 @@ msgstr "Επιλέξτε τις υπηρεσίες που θα ξεκινούν
msgid "%d activated for %d registered"
msgstr "%d ενεργοποιημένες για %d εγγεγραμμένες"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "εκτελείται"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "δεν εκτελείται"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Υπηρεσίες και δαίμονες"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6866,27 +6877,27 @@ msgstr ""
"Χωρίς επιπλέον πληροφορίες\n"
"για αυτή την υπηρεσία, λυπούμαστε."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Πληροφορίες"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Εκκινείται όταν ζητηθεί"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Στην εκκίνηση"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Εκκίνηση"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Τερματισμός"
@@ -7100,8 +7111,8 @@ msgstr ""
"--force : χρήση μαζί με το (dis)connect : εξαναγκασμός (από-)σύνδεσης.\n"
"--status : επιστρέφει 1 αν είναι συνδεδεμένο, αν όχι, 0, στη συνέχεια "
"εγκαταλείπει.\n"
-"--quiet : να μην είναι διαδραστικό. Για χρήση μαζί με την επιλογή (dis)"
-"connect."
+"--quiet : να μην είναι διαδραστικό. Για χρήση μαζί με την επιλογή "
+"(dis)connect."
#: standalone.pm:112
#, c-format
@@ -7234,6 +7245,55 @@ msgid "Installation failed"
msgstr "Η εγκατάσταση απέτυχε"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Ο κλασικός τρόπος ελέγχου του ήχου για δυσλειτουργίες, είναι ή εκτέλεση "
+#~ "των παρακάτω εντολών:\n"
+#~ "\n"
+#~ "\n"
+#~ "- «lspcidrake -v | fgrep -i AUDIO» θα σας πει ποιον οδηγό συσκευής "
+#~ "χρησιμοποιεί η κάρτα σας,\n"
+#~ "από προεπιλογή\n"
+#~ "\n"
+#~ "- «grep sound-slot /etc/modprobe.conf» θα σας πει ποιον οδηγό συσκευής "
+#~ "χρησιμοποιεί η κάρτα σας\n"
+#~ " τώρα\n"
+#~ "\n"
+#~ "- «/sbin/lsmod» θα σας επιτρέψει να ελέγξετε αν το άρθρωμα (module)\n"
+#~ "έχει φορτωθεί ή όχι\n"
+#~ "\n"
+#~ "- «/sbin/chkconfig --list sound» και «/sbin/chkconfig --list alsa» \n"
+#~ " θα σας πει αν οι υπηρεσίες ήχου και alsa έχουν ρυθμιστεί να ξεκινούν "
+#~ "στο\n"
+#~ "επίπεδο εκτέλεσης 3 (init runlevel 3)\n"
+#~ "\n"
+#~ "- «aumix -q» θα σας πει αν η ένταση του ήχου είναι κλειστή ή όχι\n"
+#~ "\n"
+#~ "- «/sbin/fuser -v /dev/dsp» θα σας πει ποιο πρόγραμμα χρησιμοποιεί την "
+#~ "κάρτα ήχου.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 1783a6db6..707d0935f 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\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"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.6\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -24,12 +24,12 @@ msgstr ""
msgid "Please wait"
msgstr "Bonvole atendu"
-#: any.pm:261
+#: any.pm:255
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Startŝargila instalado"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -40,12 +40,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalado de startŝargilo malsukcesis. La sekvanta eraro okazis:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -56,7 +56,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -71,268 +71,268 @@ msgstr ""
"\n"
"En kiu drajvo vi startigas?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Startŝargila instalado"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kie vi deziras instali la startŝargilon?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Unu sektoro de drajvo (ĈefStartRikordo)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Unu sektoro de drajvo (ĈefStartRikordo)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Unua sektoro de radika subdisko"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Sur disketo"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Ellasu"
-#: any.pm:411
+#: any.pm:405
#, fuzzy, c-format
msgid "Boot Style Configuration"
msgstr "Post-instala konfigurado"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Startŝargilo ĉefaj opcioj"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Startŝargilo"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Startŝargilo por uzi"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Starta aparato"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Prokrastoperiodo antaŭ starti defaŭltan sistemon"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Ebligu ACPI"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Ebligu ACPI"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Ebligu ACPI"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Ebligu ACPI"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sekureco"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasvorto"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Vi ne povas uzi kriptan dosiersistemon por surmetingo %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasvorto (denove)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Purigu /tmp dum ĉiuj startadoj"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Ĉu ebligi CD Boot?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Ĉu ebligi OF Boot?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Defaŭlta Mastruma Sistemo?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Kerna bildo"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Radiko"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Alfiksu"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Grafika reĝimo"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "Nova profilo..."
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etikedo"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Defaŭlta"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Vi devas decidi pri kerno-bildo"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Vi devas difini radikan (root) subdiskon"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Ĉi tiu etikedo estas jam uzata"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kiun specon de enskribo vi deziras aldoni"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linukso"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Post-instala konfigurado"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -341,196 +341,196 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "aliro al X-programoj"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "aliro al rpm-iloj"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "permesu \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "aliro al administraj dosieroj"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "aliro al retiloj"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "aliro al kompililoj"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Ĉi tiu salutnomo estas tro longa"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Ĉi tiu salutnomo estas jam aldonita"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Uzula ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Grupa ID"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Uzulnomo"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Difinu pasvorton de root"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Enigu uzanton\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Piktogramo"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Vera nomo"
-#: any.pm:923
+#: any.pm:916
#, fuzzy, c-format
msgid "Login name"
msgstr "Domajna nomo"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Ŝelo"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Bonvole atendu, mi aldonas datumportilon..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Aŭtomata-enregistrado"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Mi povas konfiguri vian komputilon por aŭtomate enirigi unu uzulon"
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Ĉu vi deziras uzi tiun funkcion?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Elektu la defaŭltan uzulon:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanĉi:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Bonvole atendu"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Malfermu"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Licenca kontrakto"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Ĉesu"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Ĉu vi havas alian?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Akceptu"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Malakceptu"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Bonvole elektu lingvon por uzi"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -539,87 +539,87 @@ msgid ""
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaŭ la instalado"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Ĉiuj lingvoj"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Ĉiuj lingvoj"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "Mianmaro"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Lando"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Bonvole elektu vian landon"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Jen la kompleta listo de atingeblaj landoj"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Aliaj pordoj"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Progresinta"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Neniom"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Ne kundivido"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Permesu ĉiujn uzulojn"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Akomodata"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -635,86 +635,86 @@ msgstr ""
"\n"
"\"Custum\" ebligas per-uzulan.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Vi povas eksporti uzante NFS aŭ SMB. Bonvole elektu kiun vi ŝatus uzi."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Lanĉu userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Horzono"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Aparata horloĝo estas ĝustigita laŭ GMT"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Aparata horloĝo estas ĝustigita laŭ GMT"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP Servilo"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Auxtomata hor-sinkronizado (uzante NTP) "
@@ -1038,7 +1038,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1053,61 +1053,61 @@ msgstr ""
"atendu por defauxlta starto.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "mankas sufiĉe da spaco en /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Vi ne povas instali la startŝargilon en %s-subdiskon\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Instalu restart-ŝargilon"
@@ -1206,7 +1206,7 @@ msgstr "Surmetingo"
msgid "Options"
msgstr "Opcioj"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Forigu"
@@ -1312,7 +1312,7 @@ msgid "Continue"
msgstr "Ĉu mi devus daŭri?"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1434,7 +1434,7 @@ msgid "More"
msgstr "Plu"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Konfirmo"
@@ -2221,8 +2221,8 @@ msgstr "Ŝanĝu specon"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Nuligu"
@@ -2716,12 +2716,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Dispartigado malsukcesis: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Vi ne povas uzi JFS por subdisko pli malgranda ol 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Vi ne povas uzi ReiserFS por subdisko pli malgranda ol 32MB"
@@ -3203,7 +3203,7 @@ msgstr ""
"OSS (Open Sound System - Libera Sonsistemo) estis la nuna son-API. Ĝi estas "
"son-API "
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Pelilo:"
@@ -3251,40 +3251,74 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Lasu min kapti ajnan pelilon"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3360,12 +3394,12 @@ msgstr "Ne"
msgid "Choose a file"
msgstr "Elektu dosieron"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Aldonu"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Ŝanĝu"
@@ -3400,7 +3434,7 @@ msgstr "Ne estas dosierujo"
msgid "No such file"
msgstr "Ne ekzistas tia dosiero"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4680,17 +4714,17 @@ msgstr "Bonvenon al %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Forigu la logikajn spacojn unue\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5054,12 +5088,12 @@ msgstr "Ĉu vi deziras alklaki tiun butonon?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Pasvorto"
@@ -5272,8 +5306,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6365,7 +6399,7 @@ msgstr "Malproksima administrado"
msgid "Database Server"
msgstr "Datumbaz-servilo"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servoj"
@@ -6380,22 +6414,22 @@ msgstr "Elektu kiuj servoj estu aŭtomate startigotaj dum starto"
msgid "%d activated for %d registered"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "ruliĝante"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "haltigita"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Servoj kaj demonoj"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6404,27 +6438,27 @@ msgstr ""
"Ne pli da informo\n"
"pri tiu servo, bedaŭrinde."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Informo"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Startante"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Startu"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Haltu"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index fa7fe42c8..bcf6b9172 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2013-01-28 21:44-0500\n"
"Last-Translator: Diego Bello <dbello@gmail.com>\n"
"Language-Team: Spanish <mdktrans@blogdrake.net>\n"
@@ -15,33 +15,26 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: any.pm:261
-#: any.pm:971
-#: diskdrake/interactive.pm:645
-#: diskdrake/interactive.pm:869
-#: diskdrake/interactive.pm:931
-#: diskdrake/interactive.pm:1036
-#: diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324
-#: do_pkgs.pm:242
-#: do_pkgs.pm:287
-#: harddrake/sound.pm:270
-#: interactive.pm:588
-#: pkgs.pm:287
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
+#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
+#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
+#: harddrake/sound.pm:270 interactive.pm:588 pkgs.pm:287
#, c-format
msgid "Please wait"
msgstr "Espere, por favor"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalación del cargador de arranque en progreso"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
-"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows error.\n"
+"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
+"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
@@ -53,12 +46,13 @@ msgstr ""
"\n"
"¿Asignar un nuevo ID de Volumen?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
-msgstr "Falló la instalación del cargador de arranque. Ocurrió el siguiente error:"
+msgstr ""
+"Falló la instalación del cargador de arranque. Ocurrió el siguiente error:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -76,304 +70,283 @@ msgstr ""
" Luego escriba: shut-down\n"
"La próxima vez que arranque debería ver el prompt del cargador de arranque."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
-"This implies you already have a bootloader on the hard disk drive you boot (eg: System Commander).\n"
+"This implies you already have a bootloader on the hard disk drive you boot "
+"(eg: System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Decidió instalar el cargador de arranque en una partición.\n"
-"Esto implica que ya tiene un cargador de arranque en el disco desde el que arranca (ej.: System Commander).\n"
+"Esto implica que ya tiene un cargador de arranque en el disco desde el que "
+"arranca (ej.: System Commander).\n"
"\n"
"¿Desde qué disco arranca?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Instalación del cargador de arranque"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "¿Dónde quiere instalar el cargador de arranque?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primer sector (MBR) del disco %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primer sector del disco (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Primer sector de la partición raíz"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "En disquete"
-#: any.pm:376
-#: pkgs.pm:283
-#: ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Omitir"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuración del estilo de arranque"
-#: any.pm:427
-#: any.pm:460
-#: any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Opciones principales del cargador de arranque"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Cargador de arranque"
-#: any.pm:432
-#: any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Cargador de arranque a usar"
-#: any.pm:435
-#: any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Dispositivo de arranque"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Opciones principales"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Demora antes de arrancar la imagen predeterminada"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Habilitar ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Habilitar SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Habilitar APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Habilitar APIC local"
-#: any.pm:445
-#: security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguridad"
-#: any.pm:446
-#: any.pm:906
-#: any.pm:925
-#: authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contraseña"
-#: any.pm:449
-#: authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Las contraseñas no coinciden"
-#: any.pm:449
-#: authentication.pm:260
-#: diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Vuelva a intentarlo, por favor"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "No puede usar una contraseña con %s"
-#: any.pm:455
-#: any.pm:909
-#: any.pm:927
-#: authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contraseña (de nuevo)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Limpiar /tmp en cada inicio del equipo"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Mensaje de inicio"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Demora de Open firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Tiempo de espera de arranque del núcleo"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "¿Habilitar el arranque desde CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "¿Habilitar el arranque de OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "¿SO predeterminado?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Imagen"
-#: any.pm:547
-#: any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Raíz"
-#: any.pm:548
-#: any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Añadir"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Añadir Xen"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Requiere contraseña para iniciar"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Modo de vídeo"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Perfil de red"
-#: any.pm:566
-#: any.pm:571
-#: any.pm:573
-#: diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:568
-#: any.pm:576
-#: harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defecto"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "Sin vídeo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "No se admite una etiqueta vacía"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Debe especificar una imagen del núcleo"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Debe especificar una partición raíz"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta ya está en uso"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué tipo de entrada desea añadir?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Otro SO (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Otro SO (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Otro SO (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuración del cargador de arranque"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -382,202 +355,198 @@ msgstr ""
"Aquí están las diferentes entradas.\n"
"Puede añadir otras o cambiar las que ya existen."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "acceso a programas X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "acceso a herramientas rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "acceso a archivos administrativos"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "acceso a herramientas de red"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "acceso a herramientas de compilación"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s ya fue añadido)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Introduzca el nombre de usuario"
-#: any.pm:885
+#: any.pm:878
#, c-format
-msgid "The user name must start with a lower case letter followed by only lower cased letters, numbers, `-' and `_'"
-msgstr "El nombre de usuario (login) debe comenzar con una letra minúscula seguida sólo letras minúsculas, números, `-' y `_'"
+msgid ""
+"The user name must start with a lower case letter followed by only lower "
+"cased letters, numbers, `-' and `_'"
+msgstr ""
+"El nombre de usuario (login) debe comenzar con una letra minúscula seguida "
+"sólo letras minúsculas, números, `-' y `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "El nombre de usuario es muy largo"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Este nombre de usuario ya fue añadido"
-#: any.pm:893
-#: any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID de usuario"
-#: any.pm:893
-#: any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID de grupo"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "¡%s debe ser un número!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s debería ser superior a 500. ¿Aceptarlo igual?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Administración de usuarios"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Habilitar cuenta de invitado"
-#: any.pm:905
-#: authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Introduzca contraseña del administrador (root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Ingrese un usuario"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Icono"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Nombre y apellidos"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Nombre de conexión"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Por favor espere, agregando soportes..."
-#: any.pm:1003
-#: security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Conexión automática"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
-msgstr "Puedo configurar su computadora para que entre automáticamente con un usuario."
+msgstr ""
+"Puedo configurar su computadora para que entre automáticamente con un "
+"usuario."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Utilizar esa característica"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Elija el usuario predeterminado:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Elija el gestor de ventanas a ejecutar:"
-#: any.pm:1018
-#: any.pm:1032
-#: any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Notas de versión"
-#: any.pm:1039
-#: any.pm:1389
-#: interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Cerrar"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Acuerdo de licencia"
-#: any.pm:1088
-#: diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Salir"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "¿Acepta esta licencia?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Aceptar"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Rechazar"
-#: any.pm:1122
-#: any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Por favor, elija el idioma a usar"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -588,124 +557,132 @@ msgstr ""
"los idiomas que desea instalar. Estarán disponibles\n"
"cuando la instalación esté completa y reinicie el sistema."
-#: any.pm:1152
-#: fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "Múltiples idiomas"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr "Seleccionar idiomas adicionales"
-#: any.pm:1163
-#: any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codificación (no UTF-8) para compatibilidad antigua"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Todos los idiomas"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Selección del idioma"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "País / Región"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Seleccione su país, por favor"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Aquí tiene la lista completa de países disponibles"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Otros países"
-#: any.pm:1244
-#: interactive.pm:489
-#: interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avanzada"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Método de entrada:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Ninguno"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "No compartir"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Permitir a todos los usuarios"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Personalizada"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror and nautilus.\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"¿Desea permitir a los usuarios exportar algunos directorios personales?\n"
-"Si lo hace, los usuarios podrán simplemente hacer clic sobre \"Compartir\" en Konqueror y Nautilus.\n"
+"Si lo hace, los usuarios podrán simplemente hacer clic sobre \"Compartir\" "
+"en Konqueror y Nautilus.\n"
"\n"
"\"Personalizada\" permite una granularidad por usuario.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
-msgid "NFS: the traditional Unix file sharing system, with less support on Mac and Windows."
-msgstr "NFS: sistema tradicional Unix para compartir archivos, con menos soporte en Mac y Windows."
+msgid ""
+"NFS: the traditional Unix file sharing system, with less support on Mac and "
+"Windows."
+msgstr ""
+"NFS: sistema tradicional Unix para compartir archivos, con menos soporte en "
+"Mac y Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
-msgid "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux systems."
-msgstr "SMB: sistema para compartir archivos usado por Windows, Mac OS X y muchos sistemas Linux modernos."
+msgid ""
+"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
+"systems."
+msgstr ""
+"SMB: sistema para compartir archivos usado por Windows, Mac OS X y muchos "
+"sistemas Linux modernos."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
-msgid "You can export using NFS or SMB. Please select which you would like to use."
-msgstr "Puede exportar usando NFS o SMB. Por favor, elija el que desea utilizar."
+msgid ""
+"You can export using NFS or SMB. Please select which you would like to use."
+msgstr ""
+"Puede exportar usando NFS o SMB. Por favor, elija el que desea utilizar."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Lanzar UserDrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -714,53 +691,57 @@ msgstr ""
"Los recursos compartidos por usuario utilizan el grupo \"fileshare\". \n"
"Puede utilizar UserDrake para añadir un usuario a este grupo."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
-msgid "You need to logout and back in again for changes to take effect. Press OK to logout now."
-msgstr "Debe desconectarse y volver a conectarse para que los cambios tengan efecto. Pulse OK para conectarse ahora."
+msgid ""
+"You need to logout and back in again for changes to take effect. Press OK to "
+"logout now."
+msgstr ""
+"Debe desconectarse y volver a conectarse para que los cambios tengan efecto. "
+"Pulse OK para conectarse ahora."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
-msgstr "Debe desconectarse y volver a conectarse para que los cambios tengan efecto"
+msgstr ""
+"Debe desconectarse y volver a conectarse para que los cambios tengan efecto"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Huso horario"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "¿Cuál es su huso horario?"
-#: any.pm:1560
-#: any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Configuración de la fecha, hora y huso horario"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "¿Cuál es la mejor hora?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (reloj interno puesto en hora UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (reloj interno puesto en hora local)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización automática de hora (usando NTP)"
@@ -785,8 +766,7 @@ msgstr "NIS"
msgid "Smart Card"
msgstr "Tarjeta inteligente (Smart Card)"
-#: authentication.pm:28
-#: authentication.pm:215
+#: authentication.pm:28 authentication.pm:215
#, c-format
msgid "Windows Domain"
msgstr "Dominio Windows"
@@ -803,8 +783,11 @@ msgstr "Archivo local:"
#: authentication.pm:65
#, c-format
-msgid "Use local for all authentication and information user tell in local file"
-msgstr "Usar local para toda autenticación y la información que el usuario brinda en archivo local"
+msgid ""
+"Use local for all authentication and information user tell in local file"
+msgstr ""
+"Usar local para toda autenticación y la información que el usuario brinda en "
+"archivo local"
#: authentication.pm:66
#, c-format
@@ -813,8 +796,12 @@ msgstr "LDAP:"
#: authentication.pm:66
#, c-format
-msgid "Tells your computer to use LDAP for some or all authentication. LDAP consolidates certain types of information within your organization."
-msgstr "Le dice a la computadora que use LDAP para alguna o toda la autenticación. LDAP consolida ciertos tipos de información dentro de su organización."
+msgid ""
+"Tells your computer to use LDAP for some or all authentication. LDAP "
+"consolidates certain types of information within your organization."
+msgstr ""
+"Le dice a la computadora que use LDAP para alguna o toda la autenticación. "
+"LDAP consolida ciertos tipos de información dentro de su organización."
#: authentication.pm:67
#, c-format
@@ -823,8 +810,12 @@ msgstr "NIS:"
#: authentication.pm:67
#, c-format
-msgid "Allows you to run a group of computers in the same Network Information Service domain with a common password and group file."
-msgstr "Le permite correr un grupo de computadoras en el mismo dominio NIS con archivos comunes de grupo y contraseñas."
+msgid ""
+"Allows you to run a group of computers in the same Network Information "
+"Service domain with a common password and group file."
+msgstr ""
+"Le permite correr un grupo de computadoras en el mismo dominio NIS con "
+"archivos comunes de grupo y contraseñas."
#: authentication.pm:68
#, c-format
@@ -833,8 +824,12 @@ msgstr "Dominio Windows:"
#: authentication.pm:68
#, c-format
-msgid "Winbind allows the system to retrieve information and authenticate users in a Windows domain."
-msgstr "Winbind permite que el sistema obtenga información y autentique a los usuarios en un dominio Windows."
+msgid ""
+"Winbind allows the system to retrieve information and authenticate users in "
+"a Windows domain."
+msgstr ""
+"Winbind permite que el sistema obtenga información y autentique a los "
+"usuarios en un dominio Windows."
#: authentication.pm:69
#, c-format
@@ -846,20 +841,14 @@ msgstr "Kerberos 5: "
msgid "With Kerberos and LDAP for authentication in Active Directory Server "
msgstr "Con Kerberos y LDAP para autenticación en servidor Active Directory"
-#: authentication.pm:106
-#: authentication.pm:140
-#: authentication.pm:159
-#: authentication.pm:160
-#: authentication.pm:186
-#: authentication.pm:210
+#: authentication.pm:106 authentication.pm:140 authentication.pm:159
+#: authentication.pm:160 authentication.pm:186 authentication.pm:210
#: authentication.pm:865
#, c-format
msgid " "
msgstr " "
-#: authentication.pm:107
-#: authentication.pm:141
-#: authentication.pm:187
+#: authentication.pm:107 authentication.pm:141 authentication.pm:187
#: authentication.pm:211
#, c-format
msgid "Welcome to the Authentication Wizard"
@@ -867,17 +856,19 @@ msgstr "Bienvenido al asistente de autenticación"
#: authentication.pm:109
#, c-format
-msgid "You have selected LDAP authentication. Please review the configuration options below "
-msgstr "Seleccionó la autenticación LDAP. Por favor, revise las opciones de configuración "
+msgid ""
+"You have selected LDAP authentication. Please review the configuration "
+"options below "
+msgstr ""
+"Seleccionó la autenticación LDAP. Por favor, revise las opciones de "
+"configuración "
-#: authentication.pm:111
-#: authentication.pm:166
+#: authentication.pm:111 authentication.pm:166
#, c-format
msgid "LDAP Server"
msgstr "Servidor LDAP"
-#: authentication.pm:112
-#: authentication.pm:167
+#: authentication.pm:112 authentication.pm:167
#, c-format
msgid "Base dn"
msgstr "DN base"
@@ -887,46 +878,38 @@ msgstr "DN base"
msgid "Fetch base Dn "
msgstr "Obtener DN base "
-#: authentication.pm:115
-#: authentication.pm:170
+#: authentication.pm:115 authentication.pm:170
#, c-format
msgid "Use encrypt connection with TLS "
msgstr "Usar conexión cifrada con TLS "
-#: authentication.pm:116
-#: authentication.pm:171
+#: authentication.pm:116 authentication.pm:171
#, c-format
msgid "Download CA Certificate "
msgstr "Descargar Certificado CA "
-#: authentication.pm:118
-#: authentication.pm:151
+#: authentication.pm:118 authentication.pm:151
#, c-format
msgid "Use Disconnect mode "
msgstr "Usar modo Desconectado "
-#: authentication.pm:119
-#: authentication.pm:172
+#: authentication.pm:119 authentication.pm:172
#, c-format
msgid "Use anonymous BIND "
msgstr "Usar BIND anónimo "
-#: authentication.pm:120
-#: authentication.pm:123
-#: authentication.pm:125
+#: authentication.pm:120 authentication.pm:123 authentication.pm:125
#: authentication.pm:129
#, c-format
msgid " "
msgstr " "
-#: authentication.pm:121
-#: authentication.pm:173
+#: authentication.pm:121 authentication.pm:173
#, c-format
msgid "Bind DN "
msgstr "Asociar DN "
-#: authentication.pm:122
-#: authentication.pm:174
+#: authentication.pm:122 authentication.pm:174
#, c-format
msgid "Bind Password "
msgstr "Asociar contraseña"
@@ -953,8 +936,12 @@ msgstr "'Shadow' base"
#: authentication.pm:143
#, c-format
-msgid "You have selected Kerberos 5 authentication. Please review the configuration options below "
-msgstr "Seleccionó la autenticación Kerberos 5. Por favor revise las opciones de configuración "
+msgid ""
+"You have selected Kerberos 5 authentication. Please review the configuration "
+"options below "
+msgstr ""
+"Seleccionó la autenticación Kerberos 5. Por favor revise las opciones de "
+"configuración "
#: authentication.pm:145
#, c-format
@@ -988,8 +975,12 @@ msgstr "Usar LDAP para información de usuarios"
#: authentication.pm:162
#, c-format
-msgid "You have selected Kerberos 5 for authentication, now you must choose the type of users information "
-msgstr "Seleccionó Kerberos 5 para la autenticación, ahora debe elegir el tipo de información de usuarios "
+msgid ""
+"You have selected Kerberos 5 for authentication, now you must choose the "
+"type of users information "
+msgstr ""
+"Seleccionó Kerberos 5 para la autenticación, ahora debe elegir el tipo de "
+"información de usuarios "
#: authentication.pm:168
#, c-format
@@ -998,8 +989,12 @@ msgstr "Obtener DN base "
#: authentication.pm:189
#, c-format
-msgid "You have selected NIS authentication. Please review the configuration options below "
-msgstr "Seleccionó la autenticación NIS. Por favor, revise las opciones de configuración "
+msgid ""
+"You have selected NIS authentication. Please review the configuration "
+"options below "
+msgstr ""
+"Seleccionó la autenticación NIS. Por favor, revise las opciones de "
+"configuración "
#: authentication.pm:191
#, c-format
@@ -1013,8 +1008,12 @@ msgstr "Servidor NIS"
#: authentication.pm:213
#, c-format
-msgid "You have selected Windows Domain authentication. Please review the configuration options below "
-msgstr "Seleccionó la autenticación en un dominio Windows®. Por favor, revise las opciones de configuración "
+msgid ""
+"You have selected Windows Domain authentication. Please review the "
+"configuration options below "
+msgstr ""
+"Seleccionó la autenticación en un dominio Windows®. Por favor, revise las "
+"opciones de configuración "
#: authentication.pm:217
#, c-format
@@ -1036,8 +1035,7 @@ msgstr "Dominio DNS"
msgid "DC Server"
msgstr "Servidor DC"
-#: authentication.pm:235
-#: authentication.pm:251
+#: authentication.pm:235 authentication.pm:251
#, c-format
msgid "Authentication"
msgstr "Autentificación"
@@ -1086,7 +1084,7 @@ msgid "Domain Admin Password"
msgstr "Contraseña del Administrador del Dominio"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1101,57 +1099,65 @@ msgstr ""
"a que arranque el sistema predeterminado.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO con menú de texto"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 con menú gráfico"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menú gráfico"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB con menú de texto"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "no hay espacio suficiente en /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "No puede instalar el cargador de arranque en una partición %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
-msgid "Your bootloader configuration must be updated because partition has been renumbered"
-msgstr "Se debe actualizar la configuración de su cargador de arranque debido a que cambió el número de la partición"
+msgid ""
+"Your bootloader configuration must be updated because partition has been "
+"renumbered"
+msgstr ""
+"Se debe actualizar la configuración de su cargador de arranque debido a que "
+"cambió el número de la partición"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
-msgid "The bootloader cannot be installed correctly. You have to boot rescue and choose \"%s\""
-msgstr "No se puede instalar correctamente el cargador de arranque. Debe arrancar con rescate y elegir \"%s\""
+msgid ""
+"The bootloader cannot be installed correctly. You have to boot rescue and "
+"choose \"%s\""
+msgstr ""
+"No se puede instalar correctamente el cargador de arranque. Debe arrancar "
+"con rescate y elegir \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Volver a instalar cargador de arranque"
@@ -1176,8 +1182,7 @@ msgstr "MB"
msgid "GB"
msgstr "GB"
-#: common.pm:142
-#: common.pm:151
+#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "TB"
@@ -1211,7 +1216,8 @@ msgid ""
"points, select \"New\"."
msgstr ""
"WebDAV es un protocolo que le permite montar localmente un directorio de un\n"
-"servidor web, y tratarlo como un sistema de archivos local (siempre y cuando\n"
+"servidor web, y tratarlo como un sistema de archivos local (siempre y "
+"cuando\n"
"el servidor web está configurado como servidor WebDAV). Si desea añadir\n"
"puntos de montaje WebDAV, seleccione \"Nuevo\"."
@@ -1220,16 +1226,12 @@ msgstr ""
msgid "New"
msgstr "Nuevo"
-#: diskdrake/dav.pm:63
-#: diskdrake/interactive.pm:418
-#: diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Desmontar"
-#: diskdrake/dav.pm:64
-#: diskdrake/interactive.pm:414
-#: diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Montar"
@@ -1239,76 +1241,44 @@ msgstr "Montar"
msgid "Server"
msgstr "Servidor"
-#: diskdrake/dav.pm:66
-#: diskdrake/interactive.pm:408
-#: diskdrake/interactive.pm:722
-#: diskdrake/interactive.pm:740
-#: diskdrake/interactive.pm:744
-#: diskdrake/removable.pm:23
+#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/interactive.pm:722 diskdrake/interactive.pm:740
+#: diskdrake/interactive.pm:744 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Punto de montaje"
-#: diskdrake/dav.pm:67
-#: diskdrake/interactive.pm:410
-#: diskdrake/interactive.pm:1163
-#: diskdrake/removable.pm:24
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/interactive.pm:1163 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opciones"
-#: diskdrake/dav.pm:68
-#: interactive.pm:388
-#: interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Quitar"
-#: diskdrake/dav.pm:69
-#: diskdrake/hd_gtk.pm:193
-#: diskdrake/removable.pm:26
-#: diskdrake/smbnfs_gtk.pm:82
-#: interactive/http.pm:151
+#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:193 diskdrake/removable.pm:26
+#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Hecho"
-#: diskdrake/dav.pm:78
-#: diskdrake/hd_gtk.pm:133
-#: diskdrake/hd_gtk.pm:299
-#: diskdrake/interactive.pm:247
-#: diskdrake/interactive.pm:260
-#: diskdrake/interactive.pm:456
-#: diskdrake/interactive.pm:527
-#: diskdrake/interactive.pm:545
-#: diskdrake/interactive.pm:550
-#: diskdrake/interactive.pm:712
-#: diskdrake/interactive.pm:1002
-#: diskdrake/interactive.pm:1054
-#: diskdrake/interactive.pm:1209
-#: diskdrake/interactive.pm:1222
-#: diskdrake/interactive.pm:1225
-#: diskdrake/interactive.pm:1499
-#: diskdrake/smbnfs_gtk.pm:42
-#: do_pkgs.pm:23
-#: do_pkgs.pm:28
-#: do_pkgs.pm:44
-#: do_pkgs.pm:60
-#: do_pkgs.pm:65
-#: do_pkgs.pm:83
-#: fsedit.pm:246
-#: interactive/http.pm:117
-#: interactive/http.pm:118
-#: modules/interactive.pm:19
-#: scanner.pm:95
-#: scanner.pm:106
-#: scanner.pm:113
-#: scanner.pm:120
-#: wizards.pm:96
-#: wizards.pm:100
-#: wizards.pm:122
+#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:133 diskdrake/hd_gtk.pm:299
+#: diskdrake/interactive.pm:247 diskdrake/interactive.pm:260
+#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
+#: diskdrake/interactive.pm:712 diskdrake/interactive.pm:1002
+#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
+#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
+#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
+#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
#, c-format
msgid "Error"
msgstr "Error"
@@ -1323,24 +1293,13 @@ msgstr "Por favor, ingrese la URL del servidor WebDAV"
msgid "The URL must begin with http:// or https://"
msgstr "La URL debería empezar con http:// o https://"
-#: diskdrake/dav.pm:106
-#: diskdrake/hd_gtk.pm:424
-#: diskdrake/interactive.pm:306
-#: diskdrake/interactive.pm:391
-#: diskdrake/interactive.pm:597
-#: diskdrake/interactive.pm:815
-#: diskdrake/interactive.pm:880
-#: diskdrake/interactive.pm:1034
-#: diskdrake/interactive.pm:1076
-#: diskdrake/interactive.pm:1077
-#: diskdrake/interactive.pm:1309
-#: diskdrake/interactive.pm:1347
-#: diskdrake/interactive.pm:1498
-#: do_pkgs.pm:19
-#: do_pkgs.pm:39
-#: do_pkgs.pm:57
-#: do_pkgs.pm:78
-#: harddrake/sound.pm:399
+#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:424 diskdrake/interactive.pm:306
+#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
+#: diskdrake/interactive.pm:815 diskdrake/interactive.pm:880
+#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
+#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Advertencia"
@@ -1355,32 +1314,23 @@ msgstr "¿Está seguro de que desea eliminar este punto de montaje?"
msgid "Server: "
msgstr "Servidor: "
-#: diskdrake/dav.pm:125
-#: diskdrake/interactive.pm:501
-#: diskdrake/interactive.pm:1371
-#: diskdrake/interactive.pm:1459
+#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/interactive.pm:1371 diskdrake/interactive.pm:1459
#, c-format
msgid "Mount point: "
msgstr "Punto de montaje: "
-#: diskdrake/dav.pm:126
-#: diskdrake/interactive.pm:1466
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1466
#, c-format
msgid "Options: %s"
msgstr "Opciones: %s"
-#: diskdrake/hd_gtk.pm:61
-#: diskdrake/interactive.pm:301
-#: diskdrake/smbnfs_gtk.pm:22
-#: fs/mount_point.pm:108
-#: fs/partitioning_wizard.pm:55
-#: fs/partitioning_wizard.pm:238
-#: fs/partitioning_wizard.pm:246
-#: fs/partitioning_wizard.pm:285
-#: fs/partitioning_wizard.pm:433
-#: fs/partitioning_wizard.pm:496
-#: fs/partitioning_wizard.pm:579
-#: fs/partitioning_wizard.pm:582
+#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:301
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:108
+#: fs/partitioning_wizard.pm:55 fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:246 fs/partitioning_wizard.pm:285
+#: fs/partitioning_wizard.pm:433 fs/partitioning_wizard.pm:496
+#: fs/partitioning_wizard.pm:579 fs/partitioning_wizard.pm:582
#, c-format
msgid "Partitioning"
msgstr "Particionando"
@@ -1388,12 +1338,12 @@ msgstr "Particionando"
#: diskdrake/hd_gtk.pm:73
#, c-format
msgid "Click on a partition, choose a filesystem type then choose an action"
-msgstr "Haga clic sobre una partición, elija un sist. de archivos y luego elija una acción"
+msgstr ""
+"Haga clic sobre una partición, elija un sist. de archivos y luego elija una "
+"acción"
-#: diskdrake/hd_gtk.pm:115
-#: diskdrake/interactive.pm:1184
-#: diskdrake/interactive.pm:1194
-#: diskdrake/interactive.pm:1247
+#: diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1194 diskdrake/interactive.pm:1247
#, c-format
msgid "Read carefully"
msgstr "¡Lea con cuidado"
@@ -1403,8 +1353,7 @@ msgstr "¡Lea con cuidado"
msgid "Please make a backup of your data first"
msgstr "Por favor, haga primero una copia de seguridad de sus datos"
-#: diskdrake/hd_gtk.pm:116
-#: diskdrake/interactive.pm:240
+#: diskdrake/hd_gtk.pm:116 diskdrake/interactive.pm:240
#, c-format
msgid "Exit"
msgstr "Salir"
@@ -1414,12 +1363,8 @@ msgstr "Salir"
msgid "Continue"
msgstr "Continuar"
-#: diskdrake/hd_gtk.pm:188
-#: fs/partitioning_wizard.pm:555
-#: interactive.pm:654
-#: interactive/gtk.pm:809
-#: interactive/gtk.pm:827
-#: interactive/gtk.pm:848
+#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1441,8 +1386,7 @@ msgstr ""
msgid "Please click on a partition"
msgstr "Por favor, haga clic sobre una partición"
-#: diskdrake/hd_gtk.pm:250
-#: diskdrake/smbnfs_gtk.pm:63
+#: diskdrake/hd_gtk.pm:250 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Detalles"
@@ -1462,45 +1406,37 @@ msgstr "Desconocido"
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:395
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:395
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "Swap"
msgstr "Intercambio"
-#: diskdrake/hd_gtk.pm:395
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:395
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:395
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:396
-#: fs/partitioning_wizard.pm:404
-#: services.pm:193
+#: diskdrake/hd_gtk.pm:396 fs/partitioning_wizard.pm:404 services.pm:193
#, c-format
msgid "Other"
msgstr "Otros"
-#: diskdrake/hd_gtk.pm:396
-#: diskdrake/interactive.pm:1386
+#: diskdrake/hd_gtk.pm:396 diskdrake/interactive.pm:1386
#: fs/partitioning_wizard.pm:404
#, c-format
msgid "Empty"
@@ -1526,10 +1462,8 @@ msgstr "Use \"Desmontar\" primero"
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Usar \"%s\" en su lugar (en modo experto)"
-#: diskdrake/hd_gtk.pm:433
-#: diskdrake/interactive.pm:409
-#: diskdrake/interactive.pm:639
-#: diskdrake/removable.pm:25
+#: diskdrake/hd_gtk.pm:433 diskdrake/interactive.pm:409
+#: diskdrake/interactive.pm:639 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
msgid "Type"
@@ -1545,16 +1479,14 @@ msgstr "Elija otra partición"
msgid "Choose a partition"
msgstr "Elija una partición"
-#: diskdrake/interactive.pm:273
-#: diskdrake/interactive.pm:382
+#: diskdrake/interactive.pm:273 diskdrake/interactive.pm:382
#: interactive/curses.pm:532
#, c-format
msgid "More"
msgstr "Más"
-#: diskdrake/interactive.pm:281
-#: diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Confirmación"
@@ -1579,11 +1511,12 @@ msgstr "¿Salir del programa sin grabar la tabla de particiones?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "¿Desea guardar las modificaciones en /etc/fstab?"
-#: diskdrake/interactive.pm:301
-#: fs/partitioning_wizard.pm:285
+#: diskdrake/interactive.pm:301 fs/partitioning_wizard.pm:285
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
-msgstr "Necesita reiniciar el equipo para que se efectúe la modificación de la tabla de particiones"
+msgstr ""
+"Necesita reiniciar el equipo para que se efectúe la modificación de la tabla "
+"de particiones"
#: diskdrake/interactive.pm:306
#, c-format
@@ -1593,7 +1526,8 @@ msgid ""
"Quit anyway?"
msgstr ""
"Debe formatear las particiones %s.\n"
-"Si no, no se escribirá ninguna entrada en fstab para el punto de montaje %s.\n"
+"Si no, no se escribirá ninguna entrada en fstab para el punto de montaje "
+"%s.\n"
"¿Salir de todas formas?"
#: diskdrake/interactive.pm:319
@@ -1633,8 +1567,12 @@ msgstr "No se pueden agregar más particiones"
#: diskdrake/interactive.pm:373
#, c-format
-msgid "To have more partitions, please delete one to be able to create an extended partition"
-msgstr "Por favor, para tener más particiones borre alguna para poder crear una partición extendida"
+msgid ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr ""
+"Por favor, para tener más particiones borre alguna para poder crear una "
+"partición extendida"
#: diskdrake/interactive.pm:384
#, c-format
@@ -1651,8 +1589,7 @@ msgstr "Información detallada"
msgid "View"
msgstr "Visualizar"
-#: diskdrake/interactive.pm:412
-#: diskdrake/interactive.pm:828
+#: diskdrake/interactive.pm:412 diskdrake/interactive.pm:828
#, c-format
msgid "Resize"
msgstr "Redimensionar"
@@ -1662,14 +1599,12 @@ msgstr "Redimensionar"
msgid "Format"
msgstr "Formatear"
-#: diskdrake/interactive.pm:415
-#: diskdrake/interactive.pm:965
+#: diskdrake/interactive.pm:415 diskdrake/interactive.pm:965
#, c-format
msgid "Add to RAID"
msgstr "Añadir al RAID"
-#: diskdrake/interactive.pm:416
-#: diskdrake/interactive.pm:984
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:984
#, c-format
msgid "Add to LVM"
msgstr "Añadir al LVM"
@@ -1719,8 +1654,7 @@ msgstr "Crear"
msgid "Failed to mount partition"
msgstr "Error al montar partición"
-#: diskdrake/interactive.pm:490
-#: diskdrake/interactive.pm:492
+#: diskdrake/interactive.pm:490 diskdrake/interactive.pm:492
#, c-format
msgid "Create a new partition"
msgstr "Crear una partición nueva"
@@ -1730,14 +1664,12 @@ msgstr "Crear una partición nueva"
msgid "Start sector: "
msgstr "Sector de comienzo: "
-#: diskdrake/interactive.pm:497
-#: diskdrake/interactive.pm:1069
+#: diskdrake/interactive.pm:497 diskdrake/interactive.pm:1069
#, c-format
msgid "Size in MB: "
msgstr "Tamaño en MB: "
-#: diskdrake/interactive.pm:499
-#: diskdrake/interactive.pm:1070
+#: diskdrake/interactive.pm:499 diskdrake/interactive.pm:1070
#, c-format
msgid "Filesystem type: "
msgstr "Tipo de sistema de. archivos: "
@@ -1762,14 +1694,12 @@ msgstr "Cifrar partición"
msgid "Encryption key "
msgstr "Clave de cifrado"
-#: diskdrake/interactive.pm:512
-#: diskdrake/interactive.pm:1503
+#: diskdrake/interactive.pm:512 diskdrake/interactive.pm:1503
#, c-format
msgid "Encryption key (again)"
msgstr "Clave de cifrado (otra vez)"
-#: diskdrake/interactive.pm:524
-#: diskdrake/interactive.pm:1499
+#: diskdrake/interactive.pm:524 diskdrake/interactive.pm:1499
#, c-format
msgid "The encryption keys do not match"
msgstr "Las claves de cifrado no coinciden"
@@ -1797,16 +1727,17 @@ msgstr "¿Borrar el archivo de loopback?"
#: diskdrake/interactive.pm:620
#, c-format
-msgid "After changing type of partition %s, all data on this partition will be lost"
-msgstr "Se perderán todos los datos de la partición %s después de cambiar su tipo"
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr ""
+"Se perderán todos los datos de la partición %s después de cambiar su tipo"
#: diskdrake/interactive.pm:636
#, c-format
msgid "Change partition type"
msgstr "Cambiar el tipo de partición"
-#: diskdrake/interactive.pm:638
-#: diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:638 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "¿Qué sistema de archivos desea?"
@@ -1866,10 +1797,8 @@ msgstr ""
msgid "Where do you want to mount %s?"
msgstr "¿Dónde desea montar a %s?"
-#: diskdrake/interactive.pm:773
-#: diskdrake/interactive.pm:869
-#: fs/partitioning_wizard.pm:131
-#: fs/partitioning_wizard.pm:207
+#: diskdrake/interactive.pm:773 diskdrake/interactive.pm:869
+#: fs/partitioning_wizard.pm:131 fs/partitioning_wizard.pm:207
#, c-format
msgid "Resizing"
msgstr "Cambiando tamaño"
@@ -1887,7 +1816,8 @@ msgstr "No se puede cambiar el tamaño a esta partición"
#: diskdrake/interactive.pm:820
#, c-format
msgid "All data on this partition should be backed up"
-msgstr "Debería hacer una copia de seguridad de todos los datos de esta partición"
+msgstr ""
+"Debería hacer una copia de seguridad de todos los datos de esta partición"
#: diskdrake/interactive.pm:822
#, c-format
@@ -1914,19 +1844,18 @@ msgstr "Tamaño mínimo: %s MB"
msgid "Maximum size: %s MB"
msgstr "Tamaño máximo: %s MB"
-#: diskdrake/interactive.pm:880
-#: fs/partitioning_wizard.pm:215
+#: diskdrake/interactive.pm:880 fs/partitioning_wizard.pm:215
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
"Para asegurar la integridad de los datos luego de cambiar el tamaño a\n"
-"las particiones, se pueden ejecutar verificaciones de los sistemas de archivos\n"
+"las particiones, se pueden ejecutar verificaciones de los sistemas de "
+"archivos\n"
"la próxima vez que arranque en Microsoft Windows®"
-#: diskdrake/interactive.pm:946
-#: diskdrake/interactive.pm:1494
+#: diskdrake/interactive.pm:946 diskdrake/interactive.pm:1494
#, c-format
msgid "Filesystem encryption key"
msgstr "Clave de cifrado del sistema de archivos"
@@ -1936,8 +1865,7 @@ msgstr "Clave de cifrado del sistema de archivos"
msgid "Enter your filesystem encryption key"
msgstr "Ingrese la clave de cifrado de su sistema de archivos"
-#: diskdrake/interactive.pm:948
-#: diskdrake/interactive.pm:1502
+#: diskdrake/interactive.pm:948 diskdrake/interactive.pm:1502
#, c-format
msgid "Encryption key"
msgstr "Clave de cifrado"
@@ -1952,8 +1880,7 @@ msgstr "Clave no válida"
msgid "Choose an existing RAID to add to"
msgstr "Elegir un RAID existente al que añadir"
-#: diskdrake/interactive.pm:967
-#: diskdrake/interactive.pm:986
+#: diskdrake/interactive.pm:967 diskdrake/interactive.pm:986
#, c-format
msgid "new"
msgstr "nuevo"
@@ -1963,8 +1890,7 @@ msgstr "nuevo"
msgid "Choose an existing LVM to add to"
msgstr "Elegir un LVM existente al que añadir"
-#: diskdrake/interactive.pm:996
-#: diskdrake/interactive.pm:1005
+#: diskdrake/interactive.pm:996 diskdrake/interactive.pm:1005
#, c-format
msgid "LVM name"
msgstr "Nombre de LVM"
@@ -2023,8 +1949,7 @@ msgstr "El archivo ya lo utiliza otro dispositivo loopback, seleccione otro"
msgid "File already exists. Use it?"
msgstr "El archivo ya existe. ¿Desea usarlo?"
-#: diskdrake/interactive.pm:1109
-#: diskdrake/interactive.pm:1112
+#: diskdrake/interactive.pm:1109 diskdrake/interactive.pm:1112
#, c-format
msgid "Mount options"
msgstr "Opciones de montaje"
@@ -2074,9 +1999,7 @@ msgstr "Necesita reiniciar el equipo para que la modificación tenga efecto"
msgid "Partition table of drive %s is going to be written to disk"
msgstr "¡Se escribirá al disco la tabla de particiones de la unidad %s"
-#: diskdrake/interactive.pm:1266
-#: fs/format.pm:107
-#: fs/format.pm:114
+#: diskdrake/interactive.pm:1266 fs/format.pm:107 fs/format.pm:114
#, c-format
msgid "Formatting partition %s"
msgstr "Formateando la partición %s"
@@ -2086,8 +2009,7 @@ msgstr "Formateando la partición %s"
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Se perderán todos los datos de la partición %s después de formatearla"
-#: diskdrake/interactive.pm:1293
-#: fs/partitioning.pm:48
+#: diskdrake/interactive.pm:1293 fs/partitioning.pm:48
#, c-format
msgid "Check for bad blocks?"
msgstr "¿Verificar el disco en busca de bloques malos?"
@@ -2108,12 +2030,16 @@ msgid ""
"Directory %s already contains data\n"
"(%s)\n"
"\n"
-"You can either choose to move the files into the partition that will be mounted there or leave them where they are (which results in hiding them by the contents of the mounted partition)"
+"You can either choose to move the files into the partition that will be "
+"mounted there or leave them where they are (which results in hiding them by "
+"the contents of the mounted partition)"
msgstr ""
"El directorio %s ya contiene datos\n"
"(%s)\n"
"\n"
-"Puede elegir mover los archivos a la partición que se montará allí o dejarlos donde están (lo cual hará que los mismos queden ocultos por los contenidos de la partición montada)"
+"Puede elegir mover los archivos a la partición que se montará allí o "
+"dejarlos donde están (lo cual hará que los mismos queden ocultos por los "
+"contenidos de la partición montada)"
#: diskdrake/interactive.pm:1324
#, c-format
@@ -2140,8 +2066,7 @@ msgstr "la partición %s ahora se conoce como %s"
msgid "Partitions have been renumbered: "
msgstr "Las particiones han sido renumeradas: "
-#: diskdrake/interactive.pm:1372
-#: diskdrake/interactive.pm:1443
+#: diskdrake/interactive.pm:1372 diskdrake/interactive.pm:1443
#, c-format
msgid "Device: "
msgstr "Dispositivo: "
@@ -2161,15 +2086,13 @@ msgstr "UUID: "
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Letra DOS: %s (simplemente una adivinanza)\n"
-#: diskdrake/interactive.pm:1379
-#: diskdrake/interactive.pm:1388
+#: diskdrake/interactive.pm:1379 diskdrake/interactive.pm:1388
#: diskdrake/interactive.pm:1462
#, c-format
msgid "Type: "
msgstr "Tipo: "
-#: diskdrake/interactive.pm:1383
-#: diskdrake/interactive.pm:1447
+#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1447
#, c-format
msgid "Name: "
msgstr "Nombre: "
@@ -2365,19 +2288,10 @@ msgstr "Algoritmo de cifrado"
msgid "Change type"
msgstr "Cambiar tipo"
-#: diskdrake/smbnfs_gtk.pm:81
-#: interactive.pm:130
-#: interactive.pm:551
-#: interactive/curses.pm:267
-#: interactive/http.pm:104
-#: interactive/http.pm:160
-#: interactive/stdio.pm:39
-#: interactive/stdio.pm:148
-#: mygtk2.pm:846
-#: ugtk2.pm:415
-#: ugtk2.pm:517
-#: ugtk2.pm:526
-#: ugtk2.pm:812
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
+#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Cancelar"
@@ -2385,10 +2299,11 @@ msgstr "Cancelar"
#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Cannot login using username %s (bad password?)"
-msgstr "No se puede conectar utilizando el nombre de usuario %s (¿contraseña incorrecta?)"
+msgstr ""
+"No se puede conectar utilizando el nombre de usuario %s (¿contraseña "
+"incorrecta?)"
-#: diskdrake/smbnfs_gtk.pm:168
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Se necesita autenticación de dominio"
@@ -2405,8 +2320,11 @@ msgstr "Otro"
#: diskdrake/smbnfs_gtk.pm:178
#, c-format
-msgid "Please enter your username, password and domain name to access this host."
-msgstr "Por favor, ingrese su nombre de usuario, contraseña y nombre de dominio para acceder a este host."
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Por favor, ingrese su nombre de usuario, contraseña y nombre de dominio para "
+"acceder a este host."
#: diskdrake/smbnfs_gtk.pm:180
#, c-format
@@ -2428,28 +2346,22 @@ msgstr "Buscar servidores"
msgid "Search for new servers"
msgstr "Buscar servidores nuevos"
-#: do_pkgs.pm:19
-#: do_pkgs.pm:57
+#: do_pkgs.pm:19 do_pkgs.pm:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Se necesita instalar el paquete %s. ¿Quiere instalarlo?"
-#: do_pkgs.pm:23
-#: do_pkgs.pm:44
-#: do_pkgs.pm:60
-#: do_pkgs.pm:83
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "¡No se pudo instalar el paquete %s!"
-#: do_pkgs.pm:28
-#: do_pkgs.pm:65
+#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Falta el paquete obligatorio %s"
-#: do_pkgs.pm:39
-#: do_pkgs.pm:78
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Se deben instalar los siguientes paquetes:\n"
@@ -2459,19 +2371,22 @@ msgstr "Se deben instalar los siguientes paquetes:\n"
msgid "Installing packages..."
msgstr "Instalando paquetes..."
-#: do_pkgs.pm:287
-#: pkgs.pm:287
+#: do_pkgs.pm:287 pkgs.pm:287
#, c-format
msgid "Removing packages..."
msgstr "Quitando paquetes..."
#: fs/any.pm:18
#, c-format
-msgid "An error occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem"
-msgstr "Ocurrió un error - no se encontró ningún dispositivo válido para crear los nuevos sistemas de archivos. Por favor, verifique su equipo para saber la razón de este fallo"
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
+msgstr ""
+"Ocurrió un error - no se encontró ningún dispositivo válido para crear los "
+"nuevos sistemas de archivos. Por favor, verifique su equipo para saber la "
+"razón de este fallo"
-#: fs/any.pm:76
-#: fs/partitioning_wizard.pm:64
+#: fs/any.pm:76 fs/partitioning_wizard.pm:64
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Debe tener una partición FAT montada en /boot/efi"
@@ -2496,8 +2411,7 @@ msgstr "La definición de la etiqueta %s falló, ¿está formateada?"
msgid "I do not know how to format %s in type %s"
msgstr "No sé cómo formatear %s en el tipo %s"
-#: fs/format.pm:189
-#: fs/format.pm:191
+#: fs/format.pm:189 fs/format.pm:191
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formateo de %s falló"
@@ -2517,14 +2431,12 @@ msgstr "Montando la partición %s"
msgid "mounting partition %s in directory %s failed"
msgstr "falló el montaje de la partición %s en el directorio %s"
-#: fs/mount.pm:92
-#: fs/mount.pm:109
+#: fs/mount.pm:92 fs/mount.pm:109
#, c-format
msgid "Checking %s"
msgstr "Verificando %s"
-#: fs/mount.pm:126
-#: partition_table.pm:422
+#: fs/mount.pm:126 partition_table.pm:422
#, c-format
msgid "error unmounting %s: %s"
msgstr "error desmontando %s: %s"
@@ -2547,7 +2459,9 @@ msgstr "Vaciar el cache de escritura al cerrar los archivos"
#: fs/mount_options.pm:117
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
-msgstr "Permitir la contabilidad de las cuotas del disco y opcionalmente, forzar límites"
+msgstr ""
+"Permitir la contabilidad de las cuotas del disco y opcionalmente, forzar "
+"límites"
#: fs/mount_options.pm:119
#, c-format
@@ -2556,7 +2470,8 @@ msgid ""
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"No actualizar los tiempos de acceso al inodo en este sistema de archivos\n"
-"(ej: para un acceso más rápido al spool de noticias en un servidor de noticias)"
+"(ej: para un acceso más rápido al spool de noticias en un servidor de "
+"noticias)"
#: fs/mount_options.pm:122
#, c-format
@@ -2564,7 +2479,8 @@ msgid ""
"Update inode access times on this filesystem in a more efficient way\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
-"Actualizar más eficientemente tiempo de acceso a inodos en este sist. de archivos\n"
+"Actualizar más eficientemente tiempo de acceso a inodos en este sist. de "
+"archivos\n"
"(ej: para mejorar el tiempo de respuesta de un servidor de noticias)"
#: fs/mount_options.pm:125
@@ -2579,7 +2495,9 @@ msgstr ""
#: fs/mount_options.pm:128
#, c-format
msgid "Do not interpret character or block special devices on the filesystem."
-msgstr "No interpretar dispositivos especiales de bloque o carácter en el sistema de archivos."
+msgstr ""
+"No interpretar dispositivos especiales de bloque o carácter en el sistema de "
+"archivos."
#: fs/mount_options.pm:130
#, c-format
@@ -2599,7 +2517,8 @@ msgid ""
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""
-"No permitir que tengan efecto el ajuste de los bits set-user-id o set-group-id\n"
+"No permitir que tengan efecto el ajuste de los bits set-user-id o set-group-"
+"id\n"
"(Esto parece seguro, pero de hecho es bastante inseguro si tiene\n"
"suidperl(1) instalado)"
@@ -2611,7 +2530,8 @@ msgstr "Montar el sistema de archivos como sólo de lectura."
#: fs/mount_options.pm:140
#, c-format
msgid "All I/O to the filesystem should be done synchronously."
-msgstr "Toda la E/S del sistema de archivos debería hacerse de manera sincrónica."
+msgstr ""
+"Toda la E/S del sistema de archivos debería hacerse de manera sincrónica."
#: fs/mount_options.pm:142
#, c-format
@@ -2626,7 +2546,9 @@ msgstr "Permitir a un usuario común montar el sistema de archivos."
#: fs/mount_options.pm:146
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
-msgstr "Permitir la contabilidad de las cuotas de disco para los usuarios, y opcionalmente forzar límites"
+msgstr ""
+"Permitir la contabilidad de las cuotas de disco para los usuarios, y "
+"opcionalmente forzar límites"
#: fs/mount_options.pm:148
#, c-format
@@ -2670,13 +2592,19 @@ msgstr "Elija las particiones que desea formatear"
#: fs/partitioning.pm:75
#, c-format
-msgid "Failed to check filesystem %s. Do you want to repair the errors? (beware, you can lose data)"
-msgstr "Falló la verificación del sistema de archivos %s. ¿Desea reparar los errores? (cuidado, puede perder datos)"
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
+msgstr ""
+"Falló la verificación del sistema de archivos %s. ¿Desea reparar los "
+"errores? (cuidado, puede perder datos)"
#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
-msgstr "Espacio de intercambio insuficiente para completar la instalación, añada un poco más"
+msgstr ""
+"Espacio de intercambio insuficiente para completar la instalación, añada un "
+"poco más"
#: fs/partitioning_wizard.pm:55
#, c-format
@@ -2737,8 +2665,14 @@ msgstr "¿A qué partición desea cambiarle el tamaño?"
#: fs/partitioning_wizard.pm:174
#, c-format
-msgid "Your Microsoft Windows® partition is too fragmented. Please reboot your computer under Microsoft Windows®, run the ``defrag'' utility, then restart the %s installation."
-msgstr "Su partición Microsoft Windows® está muy fragmentada. Por favor reinicie su computador bajo Microsoft Windows®, ejecute la utilidad ``defrag'',luego reinicie la instalación %s."
+msgid ""
+"Your Microsoft Windows® partition is too fragmented. Please reboot your "
+"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
+"the %s installation."
+msgstr ""
+"Su partición Microsoft Windows® está muy fragmentada. Por favor reinicie su "
+"computador bajo Microsoft Windows®, ejecute la utilidad ``defrag'',luego "
+"reinicie la instalación %s."
#: fs/partitioning_wizard.pm:182
#, c-format
@@ -2749,7 +2683,12 @@ msgid ""
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
-"Be careful: this operation is dangerous. If you have not already done so, you first need to exit the installation, run \"chkdsk c:\" from a Command Prompt under Microsoft Windows® (beware, running graphical program \"scandisk\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), optionally run defrag, then restart the installation. You should also backup your data.\n"
+"Be careful: this operation is dangerous. If you have not already done so, "
+"you first need to exit the installation, run \"chkdsk c:\" from a Command "
+"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
+"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
+"optionally run defrag, then restart the installation. You should also backup "
+"your data.\n"
"\n"
"\n"
"When sure, press %s."
@@ -2760,17 +2699,19 @@ msgstr ""
"Ahora DrakX cambiará el tamaño de su partición Windows.\n"
"\n"
"\n"
-"Proceda con cuidado: esta operación es peligrosa. Si aún no lo hizo, primero debería salir de la instalación, ejecutar \"chkdsk c:\" desde una Línea de Comandos bajo Windows (atención, ejecutar el programa gráfico \"scandisk\" no es suficiente, ¡asegúrese de usar \"chkdsk\" en una Línea de Comandos!), ejecutar \"defrag\" opcionalmente, y luego volver a iniciar la instalación. También debería hacer una copia de seguridad de sus datos.\n"
+"Proceda con cuidado: esta operación es peligrosa. Si aún no lo hizo, primero "
+"debería salir de la instalación, ejecutar \"chkdsk c:\" desde una Línea de "
+"Comandos bajo Windows (atención, ejecutar el programa gráfico \"scandisk\" "
+"no es suficiente, ¡asegúrese de usar \"chkdsk\" en una Línea de Comandos!), "
+"ejecutar \"defrag\" opcionalmente, y luego volver a iniciar la instalación. "
+"También debería hacer una copia de seguridad de sus datos.\n"
"\n"
"\n"
"Cuando esté seguro, pulse sobre %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:191
-#: fs/partitioning_wizard.pm:559
-#: interactive.pm:550
-#: interactive/curses.pm:270
-#: ugtk2.pm:519
+#: fs/partitioning_wizard.pm:191 fs/partitioning_wizard.pm:559
+#: interactive.pm:550 interactive/curses.pm:270 ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Siguiente"
@@ -2783,7 +2724,8 @@ msgstr "Particionando"
#: fs/partitioning_wizard.pm:197
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
-msgstr "¿Qué tamaño desea conservar para Microsoft Windows® en la partición %s?"
+msgstr ""
+"¿Qué tamaño desea conservar para Microsoft Windows® en la partición %s?"
#: fs/partitioning_wizard.pm:198
#, c-format
@@ -2803,7 +2745,8 @@ msgstr "Falló el redimensionado de la FAT: %s"
#: fs/partitioning_wizard.pm:228
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
-msgstr "No hay particiones FAT para redimensionar (o no queda espacio suficiente)"
+msgstr ""
+"No hay particiones FAT para redimensionar (o no queda espacio suficiente)"
#: fs/partitioning_wizard.pm:233
#, c-format
@@ -2817,11 +2760,14 @@ msgstr "Borrar y usar el disco entero"
#: fs/partitioning_wizard.pm:237
#, c-format
-msgid "You have more than one hard disk drive, which one do you want the installer to use?"
-msgstr "Usted tiene más de una unidad de disco duro, ¿cuál quiere que use el instalador?"
+msgid ""
+"You have more than one hard disk drive, which one do you want the installer "
+"to use?"
+msgstr ""
+"Usted tiene más de una unidad de disco duro, ¿cuál quiere que use el "
+"instalador?"
-#: fs/partitioning_wizard.pm:245
-#: fsedit.pm:634
+#: fs/partitioning_wizard.pm:245 fsedit.pm:634
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Se perderán TODAS las particiones y sus datos en la unidad %s"
@@ -2850,17 +2796,16 @@ msgstr ""
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:433
-#: fs/partitioning_wizard.pm:579
+#: fs/partitioning_wizard.pm:433 fs/partitioning_wizard.pm:579
#, c-format
msgid "I cannot find any room for installing"
msgstr "No se puede encontrar nada de espacio para instalar"
-#: fs/partitioning_wizard.pm:442
-#: fs/partitioning_wizard.pm:586
+#: fs/partitioning_wizard.pm:442 fs/partitioning_wizard.pm:586
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "El asistente de particionamiento de DrakX encontró las siguientes soluciones:"
+msgstr ""
+"El asistente de particionamiento de DrakX encontró las siguientes soluciones:"
#: fs/partitioning_wizard.pm:512
#, c-format
@@ -2872,12 +2817,12 @@ msgstr "Éste es el contenido de su disco"
msgid "Partitioning failed: %s"
msgstr "Falló el particionamiento: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "No se puede usar JFS para particiones menores de 32MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "No se puede usar ReiserFS para particiones menores de 32MB"
@@ -2900,12 +2845,14 @@ msgstr "servidor"
#: fsedit.pm:137
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
-msgstr "Se detectó RAID por software para los discos %s en el BIOS ¿Desea activarlo?"
+msgstr ""
+"Se detectó RAID por software para los discos %s en el BIOS ¿Desea activarlo?"
#: fsedit.pm:247
#, c-format
msgid ""
-"I cannot read the partition table of device %s, it's too corrupted for me :(\n"
+"I cannot read the partition table of device %s, it's too corrupted for me :"
+"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
@@ -2913,8 +2860,10 @@ msgid ""
"Do you agree to lose all the partitions?\n"
msgstr ""
"No se puede leer la tabla de particiones de %s, está demasiado corrupta :(\n"
-"Se puede seguir, borrando las particiones malas (¡perderá TODOS LOS DATOS!).\n"
-"La otra solución es no permitir que DrakX modifique la tabla de particiones.\n"
+"Se puede seguir, borrando las particiones malas (¡perderá TODOS LOS "
+"DATOS!).\n"
+"La otra solución es no permitir que DrakX modifique la tabla de "
+"particiones.\n"
"(el error es %s)\n"
"\n"
"¿Está de acuerdo en perder todas las particiones?\n"
@@ -2942,13 +2891,18 @@ msgid ""
"Please be sure to add a separate /boot partition"
msgstr ""
"Usted ha seleccionado una partición de RAID de software como raíz (/).\n"
-"No hay un cargador de arranque capaz de manejar esto sin una partición /boot.\n"
+"No hay un cargador de arranque capaz de manejar esto sin una partición /"
+"boot.\n"
"Por favor, asegúrese de añadir una partición /boot"
#: fsedit.pm:440
#, c-format
-msgid "Metadata version unsupported for a boot partition. Please be sure to add a separate /boot partition."
-msgstr "Versión de metadatos no soportada para una partición de arranque. Por favor asegúrese de agregar una partición /boot separada."
+msgid ""
+"Metadata version unsupported for a boot partition. Please be sure to add a "
+"separate /boot partition."
+msgstr ""
+"Versión de metadatos no soportada para una partición de arranque. Por favor "
+"asegúrese de agregar una partición /boot separada."
#: fsedit.pm:448
#, c-format
@@ -2962,7 +2916,8 @@ msgstr ""
#: fsedit.pm:452
#, c-format
msgid "Metadata version unsupported for a boot partition."
-msgstr "La versión de meta datos no está soportada para una partición de arranque."
+msgstr ""
+"La versión de meta datos no está soportada para una partición de arranque."
#: fsedit.pm:459
#, c-format
@@ -2975,40 +2930,47 @@ msgstr ""
"Ningún cargador de arranque puede manejar esto sin una partición raíz.\n"
"Por favor asegúrese de agregar una partición /boot separada"
-#: fsedit.pm:465
-#: fsedit.pm:485
+#: fsedit.pm:465 fsedit.pm:485
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
-msgstr "No puede usar un sistema de archivos cifrado para el punto de montaje %s"
+msgstr ""
+"No puede usar un sistema de archivos cifrado para el punto de montaje %s"
#: fsedit.pm:469
#, c-format
-msgid "You cannot use the LVM Logical Volume for mount point %s since it spans physical volumes"
-msgstr "No puede usar un Volumen Lógico LVM para el punto de montaje %s ya que cubre varios volúmenes físicos"
+msgid ""
+"You cannot use the LVM Logical Volume for mount point %s since it spans "
+"physical volumes"
+msgstr ""
+"No puede usar un Volumen Lógico LVM para el punto de montaje %s ya que cubre "
+"varios volúmenes físicos"
#: fsedit.pm:471
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
-"The bootloader is not able to handle this when the volume spans physical volumes.\n"
+"The bootloader is not able to handle this when the volume spans physical "
+"volumes.\n"
"You should create a separate /boot partition first"
msgstr ""
"Ha seleccionado el volumen lógico LVM como raíz (/).\n"
-"El cargador de arranque no puede manejar esto cuando el volumen cruza volúmenes físicos.\n"
+"El cargador de arranque no puede manejar esto cuando el volumen cruza "
+"volúmenes físicos.\n"
"Debe primero crear una partición /boot separada"
-#: fsedit.pm:475
-#: fsedit.pm:477
+#: fsedit.pm:475 fsedit.pm:477
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Este directorio debería permanecer dentro del sistema de archivos raíz"
-#: fsedit.pm:479
-#: fsedit.pm:481
-#: fsedit.pm:483
+#: fsedit.pm:479 fsedit.pm:481 fsedit.pm:483
#, c-format
-msgid "You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount point\n"
-msgstr "Necesita un sistema de archivos verdadero (ext2/3/4, reiserfs, xfs o jfs) para este punto de montaje\n"
+msgid ""
+"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
+"point\n"
+msgstr ""
+"Necesita un sistema de archivos verdadero (ext2/3/4, reiserfs, xfs o jfs) "
+"para este punto de montaje\n"
#: fsedit.pm:550
#, c-format
@@ -3293,8 +3255,12 @@ msgstr "No hay controlador alternativo"
#: harddrake/sound.pm:355
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s) which currently uses \"%s\""
-msgstr "No hay controlador alternativo OSS/ALSA conocido para su tarjeta de sonido (%s) que en este momento usa \"%s\""
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
+msgstr ""
+"No hay controlador alternativo OSS/ALSA conocido para su tarjeta de sonido "
+"(%s) que en este momento usa \"%s\""
#: harddrake/sound.pm:362
#, c-format
@@ -3303,10 +3269,14 @@ msgstr "Configuración de sonido"
#: harddrake/sound.pm:364
#, c-format
-msgid "Here you can select an alternative driver (either OSS or ALSA) for your sound card (%s)."
-msgstr "Aquí puede seleccionar un controlador alternativo (OSS o ALSA) para su tarjeta de sonido (%s)"
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr ""
+"Aquí puede seleccionar un controlador alternativo (OSS o ALSA) para su "
+"tarjeta de sonido (%s)"
-#. -PO: here the first %s is either "OSS" or "ALSA",
+#. -PO: here the first %s is either "OSS" or "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:369
@@ -3314,28 +3284,36 @@ msgstr "Aquí puede seleccionar un controlador alternativo (OSS o ALSA) para su
msgid ""
"\n"
"\n"
-"Your card currently uses the %s\"%s\" driver (the default driver for your card is \"%s\")"
+"Your card currently uses the %s\"%s\" driver (the default driver for your "
+"card is \"%s\")"
msgstr ""
"\n"
"\n"
-"Actualmente su tarjeta usa el controlador %s\"%s\" (el controlador predeterminado para su tarjeta es \"%s\")"
+"Actualmente su tarjeta usa el controlador %s\"%s\" (el controlador "
+"predeterminado para su tarjeta es \"%s\")"
#: harddrake/sound.pm:371
#, c-format
msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independent sound API (it's available on most UNIX(tm) systems) but it's a very basic and limited API.\n"
+"OSS (Open Sound System) was the first sound API. It's an OS independent "
+"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
+"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture which\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS API\n"
-"- the new ALSA API that provides many enhanced features but requires using the ALSA library.\n"
+"- the new ALSA API that provides many enhanced features but requires using "
+"the ALSA library.\n"
msgstr ""
-"OSS (Open Sound System) fue el primer API de sonido. Es un API de sonido independiente del sistema operativo (está disponible en la mayoría de los sistemas UNIX(tm)) pero es un API muy básico y limitado.\n"
+"OSS (Open Sound System) fue el primer API de sonido. Es un API de sonido "
+"independiente del sistema operativo (está disponible en la mayoría de los "
+"sistemas UNIX(tm)) pero es un API muy básico y limitado.\n"
"Es más, todos los controladores OSS reinventan la rueda.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) es una arquitectura modular que\n"
@@ -3345,10 +3323,10 @@ msgstr ""
"\n"
"Para utilizar ALSA, uno puede utilizar:\n"
"- el API antiguo de compatibilidad OSS\n"
-"- el API nuevo de ALSA que brinda muchas características mejoradas pero necesita del uso de la biblioteca ALSA.\n"
+"- el API nuevo de ALSA que brinda muchas características mejoradas pero "
+"necesita del uso de la biblioteca ALSA.\n"
-#: harddrake/sound.pm:385
-#: harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Controlador:"
@@ -3375,8 +3353,12 @@ msgstr "No hay controlador de código libre"
#: harddrake/sound.pm:408
#, c-format
-msgid "There's no free driver for your sound card (%s), but there's a proprietary driver at \"%s\"."
-msgstr "No hay controlador libre para su tarjeta de sonido (%s), pero hay uno propietario en \"%s\"."
+msgid ""
+"There's no free driver for your sound card (%s), but there's a proprietary "
+"driver at \"%s\"."
+msgstr ""
+"No hay controlador libre para su tarjeta de sonido (%s), pero hay uno "
+"propietario en \"%s\"."
#: harddrake/sound.pm:411
#, c-format
@@ -3397,62 +3379,78 @@ msgstr "Solución de problemas de sonido"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"El probador de sonido clásico va a ejecutar los comandos siguientes:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" le dirá qué controlador predet. usa su\n"
-"tarjeta de sonido\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\n"
-"\" le dirá qué controlador usa la misma\n"
-"en este momento\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/lsmod\" le permitirá verificar si su módulo (controlador) está\n"
-"cargado o no\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" y \"/sbin/chkconfig --list alsa\" le dirá\n"
-"si los servicios alsa y sonido están configurados para correr en el nivel\n"
-"de ejecución 3\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"aumix -q\" le dirá si el volumen del sonido está mudo o no\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" le dirá qué programa utiliza la tarjeta de sonido.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Permitirme elegir cualquier controlador"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Eligiendo un controlador arbitrario"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
-"If you really think that you know which driver is the right one for your card\n"
+"If you really think that you know which driver is the right one for your "
+"card\n"
"you can pick one from the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
@@ -3467,9 +3465,7 @@ msgstr ""
msgid "Auto-detect"
msgstr "Detección automática"
-#: harddrake/v4l.pm:97
-#: harddrake/v4l.pm:285
-#: harddrake/v4l.pm:337
+#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Desconocido|Genérico"
@@ -3487,11 +3483,16 @@ msgstr "Desconocido|CPH06X (bt878) [muchos fabricantes]"
#: harddrake/v4l.pm:475
#, c-format
msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-detect the rights parameters.\n"
-"If your card is misdetected, you can force the right tuner and card types here. Just select your TV card parameters if needed."
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your TV card parameters if needed."
msgstr ""
-"El módulo bttv del núcleo GNU/Linux simplemente detecta automáticamente los parámetros correctos para la mayoría de las tarjetas de TV modernas.\n"
-"Si no se detecta correctamente la suya, aquí puede forzar los tipos de tarjeta y sintonizador adecuados. Simplemente seleccione los parámetros de su tarjeta de TV si lo necesita."
+"El módulo bttv del núcleo GNU/Linux simplemente detecta automáticamente los "
+"parámetros correctos para la mayoría de las tarjetas de TV modernas.\n"
+"Si no se detecta correctamente la suya, aquí puede forzar los tipos de "
+"tarjeta y sintonizador adecuados. Simplemente seleccione los parámetros de "
+"su tarjeta de TV si lo necesita."
#: harddrake/v4l.pm:478
#, c-format
@@ -3503,35 +3504,20 @@ msgstr "Modelo de la tarjeta :"
msgid "Tuner type:"
msgstr "Tipo de sintonizador :"
-#: interactive.pm:129
-#: interactive.pm:550
-#: interactive/curses.pm:270
-#: interactive/http.pm:103
-#: interactive/http.pm:156
-#: interactive/stdio.pm:39
-#: interactive/stdio.pm:148
-#: interactive/stdio.pm:149
-#: mygtk2.pm:846
-#: ugtk2.pm:421
-#: ugtk2.pm:519
-#: ugtk2.pm:812
-#: ugtk2.pm:835
+#: interactive.pm:129 interactive.pm:550 interactive/curses.pm:270
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
+#: ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
#, c-format
msgid "Ok"
msgstr "Aceptar"
-#: interactive.pm:229
-#: modules/interactive.pm:72
-#: ugtk2.pm:811
-#: wizards.pm:157
+#: interactive.pm:229 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:157
#, c-format
msgid "Yes"
msgstr "Sí"
-#: interactive.pm:229
-#: modules/interactive.pm:72
-#: ugtk2.pm:811
-#: wizards.pm:157
+#: interactive.pm:229 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:157
#, c-format
msgid "No"
msgstr "No"
@@ -3541,69 +3527,57 @@ msgstr "No"
msgid "Choose a file"
msgstr "Elija un archivo"
-#: interactive.pm:388
-#: interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Agregar"
-#: interactive.pm:388
-#: interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Modificar"
-#: interactive.pm:550
-#: interactive/curses.pm:270
-#: ugtk2.pm:519
+#: interactive.pm:550 interactive/curses.pm:270 ugtk2.pm:519
#, c-format
msgid "Finish"
msgstr "Finalizar"
-#: interactive.pm:551
-#: interactive/curses.pm:267
-#: ugtk2.pm:517
+#: interactive.pm:551 interactive/curses.pm:267 ugtk2.pm:517
#, c-format
msgid "Previous"
msgstr "Anterior"
-#: interactive/curses.pm:576
-#: ugtk2.pm:872
+#: interactive/curses.pm:576 ugtk2.pm:872
#, c-format
msgid "No file chosen"
msgstr "No se ha especificado ningún archivo"
-#: interactive/curses.pm:580
-#: ugtk2.pm:876
+#: interactive/curses.pm:580 ugtk2.pm:876
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Ha especificado un directorio, no un archivo"
-#: interactive/curses.pm:582
-#: ugtk2.pm:878
+#: interactive/curses.pm:582 ugtk2.pm:878
#, c-format
msgid "No such directory"
msgstr "No existe ese directorio"
-#: interactive/curses.pm:582
-#: ugtk2.pm:878
+#: interactive/curses.pm:582 ugtk2.pm:878
#, c-format
msgid "No such file"
msgstr "No existe ese archivo"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Atención, está habilitado el bloqueo de mayúsculas"
-#: interactive/stdio.pm:29
-#: interactive/stdio.pm:154
+#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, c-format
msgid "Bad choice, try again\n"
msgstr "Elección incorrecta, inténtelo de nuevo\n"
-#: interactive/stdio.pm:30
-#: interactive/stdio.pm:155
+#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, c-format
msgid "Your choice? (default %s) "
msgstr "¿Su elección? (por defecto %s)"
@@ -3685,8 +3659,7 @@ msgstr "default:LTR"
msgid "Andorra"
msgstr "Andorra"
-#: lang.pm:221
-#: timezone.pm:228
+#: lang.pm:221 timezone.pm:228
#, c-format
msgid "United Arab Emirates"
msgstr "Emiratos Árabes Unidos"
@@ -3731,8 +3704,7 @@ msgstr "Angola"
msgid "Antarctica"
msgstr "Antártica"
-#: lang.pm:230
-#: timezone.pm:273
+#: lang.pm:230 timezone.pm:273
#, c-format
msgid "Argentina"
msgstr "Argentina"
@@ -3742,16 +3714,12 @@ msgstr "Argentina"
msgid "American Samoa"
msgstr "Samoa Americana"
-#: lang.pm:232
-#: mirror.pm:12
-#: timezone.pm:231
+#: lang.pm:232 mirror.pm:12 timezone.pm:231
#, c-format
msgid "Austria"
msgstr "Austria"
-#: lang.pm:233
-#: mirror.pm:11
-#: timezone.pm:269
+#: lang.pm:233 mirror.pm:11 timezone.pm:269
#, c-format
msgid "Australia"
msgstr "Australia"
@@ -3776,15 +3744,12 @@ msgstr "Bosnia Herzegovina"
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:238
-#: timezone.pm:213
+#: lang.pm:238 timezone.pm:213
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"
-#: lang.pm:239
-#: mirror.pm:13
-#: timezone.pm:233
+#: lang.pm:239 mirror.pm:13 timezone.pm:233
#, c-format
msgid "Belgium"
msgstr "Bélgica"
@@ -3794,8 +3759,7 @@ msgstr "Bélgica"
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:241
-#: timezone.pm:234
+#: lang.pm:241 timezone.pm:234
#, c-format
msgid "Bulgaria"
msgstr "Bulgaria"
@@ -3830,9 +3794,7 @@ msgstr "Brunei Darussalam"
msgid "Bolivia"
msgstr "Bolivia"
-#: lang.pm:248
-#: mirror.pm:14
-#: timezone.pm:274
+#: lang.pm:248 mirror.pm:14 timezone.pm:274
#, c-format
msgid "Brazil"
msgstr "Brasil"
@@ -3857,8 +3819,7 @@ msgstr "Isla Bouvet"
msgid "Botswana"
msgstr "Botswana"
-#: lang.pm:253
-#: timezone.pm:232
+#: lang.pm:253 timezone.pm:232
#, c-format
msgid "Belarus"
msgstr "Bielorrusia"
@@ -3868,9 +3829,7 @@ msgstr "Bielorrusia"
msgid "Belize"
msgstr "Belice"
-#: lang.pm:255
-#: mirror.pm:15
-#: timezone.pm:263
+#: lang.pm:255 mirror.pm:15 timezone.pm:263
#, c-format
msgid "Canada"
msgstr "Canadá"
@@ -3895,9 +3854,7 @@ msgstr "República Centroafricana"
msgid "Congo (Brazzaville)"
msgstr "Congo (Brazzaville)"
-#: lang.pm:260
-#: mirror.pm:39
-#: timezone.pm:257
+#: lang.pm:260 mirror.pm:39 timezone.pm:257
#, c-format
msgid "Switzerland"
msgstr "Suiza"
@@ -3912,8 +3869,7 @@ msgstr "Costa de Marfil"
msgid "Cook Islands"
msgstr "Islas Cook"
-#: lang.pm:263
-#: timezone.pm:275
+#: lang.pm:263 timezone.pm:275
#, c-format
msgid "Chile"
msgstr "Chile"
@@ -3923,8 +3879,7 @@ msgstr "Chile"
msgid "Cameroon"
msgstr "Camerún"
-#: lang.pm:265
-#: timezone.pm:214
+#: lang.pm:265 timezone.pm:214
#, c-format
msgid "China"
msgstr "China"
@@ -3934,8 +3889,7 @@ msgstr "China"
msgid "Colombia"
msgstr "Colombia"
-#: lang.pm:267
-#: mirror.pm:16
+#: lang.pm:267 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"
@@ -3965,16 +3919,12 @@ msgstr "Isla Navidad"
msgid "Cyprus"
msgstr "Chipre"
-#: lang.pm:273
-#: mirror.pm:17
-#: timezone.pm:235
+#: lang.pm:273 mirror.pm:17 timezone.pm:235
#, c-format
msgid "Czech Republic"
msgstr "República Checa"
-#: lang.pm:274
-#: mirror.pm:22
-#: timezone.pm:240
+#: lang.pm:274 mirror.pm:22 timezone.pm:240
#, c-format
msgid "Germany"
msgstr "Alemania"
@@ -3984,9 +3934,7 @@ msgstr "Alemania"
msgid "Djibouti"
msgstr "Djibuti"
-#: lang.pm:276
-#: mirror.pm:18
-#: timezone.pm:236
+#: lang.pm:276 mirror.pm:18 timezone.pm:236
#, c-format
msgid "Denmark"
msgstr "Dinamarca"
@@ -4011,9 +3959,7 @@ msgstr "Argelia"
msgid "Ecuador"
msgstr "Ecuador"
-#: lang.pm:281
-#: mirror.pm:19
-#: timezone.pm:237
+#: lang.pm:281 mirror.pm:19 timezone.pm:237
#, c-format
msgid "Estonia"
msgstr "Estonia"
@@ -4033,9 +3979,7 @@ msgstr "Sahara Oeste"
msgid "Eritrea"
msgstr "Eritrea"
-#: lang.pm:285
-#: mirror.pm:37
-#: timezone.pm:255
+#: lang.pm:285 mirror.pm:37 timezone.pm:255
#, c-format
msgid "Spain"
msgstr "España"
@@ -4045,9 +3989,7 @@ msgstr "España"
msgid "Ethiopia"
msgstr "Etiopía"
-#: lang.pm:287
-#: mirror.pm:20
-#: timezone.pm:238
+#: lang.pm:287 mirror.pm:20 timezone.pm:238
#, c-format
msgid "Finland"
msgstr "Finlandia"
@@ -4072,9 +4014,7 @@ msgstr "Micronesia"
msgid "Faroe Islands"
msgstr "Islas Feroe"
-#: lang.pm:292
-#: mirror.pm:21
-#: timezone.pm:239
+#: lang.pm:292 mirror.pm:21 timezone.pm:239
#, c-format
msgid "France"
msgstr "Francia"
@@ -4084,8 +4024,7 @@ msgstr "Francia"
msgid "Gabon"
msgstr "Gabón"
-#: lang.pm:294
-#: timezone.pm:259
+#: lang.pm:294 timezone.pm:259
#, c-format
msgid "United Kingdom"
msgstr "Reino Unido"
@@ -4140,9 +4079,7 @@ msgstr "Guadalupe"
msgid "Equatorial Guinea"
msgstr "Guinea Ecuatorial"
-#: lang.pm:305
-#: mirror.pm:23
-#: timezone.pm:241
+#: lang.pm:305 mirror.pm:23 timezone.pm:241
#, c-format
msgid "Greece"
msgstr "Grecia"
@@ -4152,8 +4089,7 @@ msgstr "Grecia"
msgid "South Georgia and the South Sandwich Islands"
msgstr "Islas Georgia del Sur y Sandwich del Sur"
-#: lang.pm:307
-#: timezone.pm:264
+#: lang.pm:307 timezone.pm:264
#, c-format
msgid "Guatemala"
msgstr "Guatemala"
@@ -4198,35 +4134,27 @@ msgstr "Croacia"
msgid "Haiti"
msgstr "Haití"
-#: lang.pm:316
-#: mirror.pm:24
-#: timezone.pm:242
+#: lang.pm:316 mirror.pm:24 timezone.pm:242
#, c-format
msgid "Hungary"
msgstr "Hungría"
-#: lang.pm:317
-#: timezone.pm:217
+#: lang.pm:317 timezone.pm:217
#, c-format
msgid "Indonesia"
msgstr "Indonesia"
-#: lang.pm:318
-#: mirror.pm:25
-#: timezone.pm:243
+#: lang.pm:318 mirror.pm:25 timezone.pm:243
#, c-format
msgid "Ireland"
msgstr "Irlanda"
-#: lang.pm:319
-#: mirror.pm:26
-#: timezone.pm:219
+#: lang.pm:319 mirror.pm:26 timezone.pm:219
#, c-format
msgid "Israel"
msgstr "Israel"
-#: lang.pm:320
-#: timezone.pm:216
+#: lang.pm:320 timezone.pm:216
#, c-format
msgid "India"
msgstr "India"
@@ -4241,8 +4169,7 @@ msgstr "Territorio Británico del Océano Índico"
msgid "Iraq"
msgstr "Iraq"
-#: lang.pm:323
-#: timezone.pm:218
+#: lang.pm:323 timezone.pm:218
#, c-format
msgid "Iran"
msgstr "Irán"
@@ -4252,9 +4179,7 @@ msgstr "Irán"
msgid "Iceland"
msgstr "Islandia"
-#: lang.pm:325
-#: mirror.pm:27
-#: timezone.pm:244
+#: lang.pm:325 mirror.pm:27 timezone.pm:244
#, c-format
msgid "Italy"
msgstr "Italia"
@@ -4269,9 +4194,7 @@ msgstr "Jamaica"
msgid "Jordan"
msgstr "Jordania"
-#: lang.pm:328
-#: mirror.pm:28
-#: timezone.pm:220
+#: lang.pm:328 mirror.pm:28 timezone.pm:220
#, c-format
msgid "Japan"
msgstr "Japón"
@@ -4311,8 +4234,7 @@ msgstr "Saint Kitts y Nevis"
msgid "Korea (North)"
msgstr "Corea (del Norte)"
-#: lang.pm:336
-#: timezone.pm:221
+#: lang.pm:336 timezone.pm:221
#, c-format
msgid "Korea"
msgstr "Corea"
@@ -4367,14 +4289,12 @@ msgstr "Liberia"
msgid "Lesotho"
msgstr "Lesoto"
-#: lang.pm:347
-#: timezone.pm:245
+#: lang.pm:347 timezone.pm:245
#, c-format
msgid "Lithuania"
msgstr "Lituania"
-#: lang.pm:348
-#: timezone.pm:246
+#: lang.pm:348 timezone.pm:246
#, c-format
msgid "Luxembourg"
msgstr "Luxemburgo"
@@ -4474,14 +4394,12 @@ msgstr "Maldivas"
msgid "Malawi"
msgstr "Malawi"
-#: lang.pm:368
-#: timezone.pm:265
+#: lang.pm:368 timezone.pm:265
#, c-format
msgid "Mexico"
msgstr "México"
-#: lang.pm:369
-#: timezone.pm:222
+#: lang.pm:369 timezone.pm:222
#, c-format
msgid "Malaysia"
msgstr "Malasia"
@@ -4521,16 +4439,12 @@ msgstr "Nigeria"
msgid "Nicaragua"
msgstr "Nicaragua"
-#: lang.pm:377
-#: mirror.pm:29
-#: timezone.pm:247
+#: lang.pm:377 mirror.pm:29 timezone.pm:247
#, c-format
msgid "Netherlands"
msgstr "Holanda"
-#: lang.pm:378
-#: mirror.pm:31
-#: timezone.pm:248
+#: lang.pm:378 mirror.pm:31 timezone.pm:248
#, c-format
msgid "Norway"
msgstr "Noruega"
@@ -4550,9 +4464,7 @@ msgstr "Nauru"
msgid "Niue"
msgstr "Niue"
-#: lang.pm:382
-#: mirror.pm:30
-#: timezone.pm:270
+#: lang.pm:382 mirror.pm:30 timezone.pm:270
#, c-format
msgid "New Zealand"
msgstr "Nueva Zelanda"
@@ -4582,8 +4494,7 @@ msgstr "Polinesia Francesa"
msgid "Papua New Guinea"
msgstr "Papúa Nueva Guinea"
-#: lang.pm:388
-#: timezone.pm:223
+#: lang.pm:388 timezone.pm:223
#, c-format
msgid "Philippines"
msgstr "Filipinas"
@@ -4593,9 +4504,7 @@ msgstr "Filipinas"
msgid "Pakistan"
msgstr "Pakistán"
-#: lang.pm:390
-#: mirror.pm:32
-#: timezone.pm:249
+#: lang.pm:390 mirror.pm:32 timezone.pm:249
#, c-format
msgid "Poland"
msgstr "Polonia"
@@ -4620,9 +4529,7 @@ msgstr "Puerto Rico"
msgid "Palestine"
msgstr "Palestina"
-#: lang.pm:395
-#: mirror.pm:33
-#: timezone.pm:250
+#: lang.pm:395 mirror.pm:33 timezone.pm:250
#, c-format
msgid "Portugal"
msgstr "Portugal"
@@ -4647,14 +4554,12 @@ msgstr "Qatar"
msgid "Reunion"
msgstr "Reunión"
-#: lang.pm:400
-#: timezone.pm:251
+#: lang.pm:400 timezone.pm:251
#, c-format
msgid "Romania"
msgstr "Rumanía"
-#: lang.pm:401
-#: mirror.pm:34
+#: lang.pm:401 mirror.pm:34
#, c-format
msgid "Russia"
msgstr "Rusia"
@@ -4684,15 +4589,12 @@ msgstr "Seychelles"
msgid "Sudan"
msgstr "Sudán"
-#: lang.pm:407
-#: mirror.pm:38
-#: timezone.pm:256
+#: lang.pm:407 mirror.pm:38 timezone.pm:256
#, c-format
msgid "Sweden"
msgstr "Suecia"
-#: lang.pm:408
-#: timezone.pm:224
+#: lang.pm:408 timezone.pm:224
#, c-format
msgid "Singapore"
msgstr "Singapur"
@@ -4702,8 +4604,7 @@ msgstr "Singapur"
msgid "Saint Helena"
msgstr "Santa Helena"
-#: lang.pm:410
-#: timezone.pm:254
+#: lang.pm:410 timezone.pm:254
#, c-format
msgid "Slovenia"
msgstr "Eslovenia"
@@ -4713,9 +4614,7 @@ msgstr "Eslovenia"
msgid "Svalbard and Jan Mayen Islands"
msgstr "Islas Svalbard e Islas Jan Mayen"
-#: lang.pm:412
-#: mirror.pm:35
-#: timezone.pm:253
+#: lang.pm:412 mirror.pm:35 timezone.pm:253
#, c-format
msgid "Slovakia"
msgstr "Eslovaquia"
@@ -4785,9 +4684,7 @@ msgstr "Territorios Franceses del Sur"
msgid "Togo"
msgstr "Togo"
-#: lang.pm:426
-#: mirror.pm:41
-#: timezone.pm:226
+#: lang.pm:426 mirror.pm:41 timezone.pm:226
#, c-format
msgid "Thailand"
msgstr "Tailandia"
@@ -4822,8 +4719,7 @@ msgstr "Tunicia"
msgid "Tonga"
msgstr "Tonga"
-#: lang.pm:433
-#: timezone.pm:227
+#: lang.pm:433 timezone.pm:227
#, c-format
msgid "Turkey"
msgstr "Turquía"
@@ -4838,21 +4734,17 @@ msgstr "Trinidad y Tobago"
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:436
-#: mirror.pm:40
-#: timezone.pm:225
+#: lang.pm:436 mirror.pm:40 timezone.pm:225
#, c-format
msgid "Taiwan"
msgstr "Taiwán"
-#: lang.pm:437
-#: timezone.pm:210
+#: lang.pm:437 timezone.pm:210
#, c-format
msgid "Tanzania"
msgstr "Tanzania"
-#: lang.pm:438
-#: timezone.pm:258
+#: lang.pm:438 timezone.pm:258
#, c-format
msgid "Ukraine"
msgstr "Ucrania"
@@ -4867,9 +4759,7 @@ msgstr "Uganda"
msgid "United States Minor Outlying Islands"
msgstr "Islas Circundantes Menores de los Estados Unidos"
-#: lang.pm:441
-#: mirror.pm:42
-#: timezone.pm:266
+#: lang.pm:441 mirror.pm:42 timezone.pm:266
#, c-format
msgid "United States"
msgstr "Estados Unidos"
@@ -4939,9 +4829,7 @@ msgstr "Yemen"
msgid "Mayotte"
msgstr "Mayotte"
-#: lang.pm:455
-#: mirror.pm:36
-#: timezone.pm:209
+#: lang.pm:455 mirror.pm:36 timezone.pm:209
#, c-format
msgid "South Africa"
msgstr "Sudáfrica"
@@ -4966,20 +4854,21 @@ msgstr "Bienvenido a %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Falló el movimiento de espacio físico a otros volúmenes físicos"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "El volumen físico %s todavía está en uso"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Quite los volúmenes lógicos primero\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
-msgstr "El cargador de arranque no puede manejar /boot en múltiples volúmenes físicos"
+msgstr ""
+"El cargador de arranque no puede manejar /boot en múltiples volúmenes físicos"
#. -PO: Only write something if needed:
#: messages.pm:11
@@ -4995,18 +4884,26 @@ msgstr "Introducción"
#: messages.pm:20
#, c-format
msgid ""
-"The operating system and the different components available in the Mageia distribution \n"
-"shall be called the \"Software Products\" hereafter. The Software Products include, but are not \n"
-"restricted to, the set of programs, methods, rules and documentation related to the operating \n"
-"system and the different components of the Mageia distribution, and any applications \n"
+"The operating system and the different components available in the Mageia "
+"distribution \n"
+"shall be called the \"Software Products\" hereafter. The Software Products "
+"include, but are not \n"
+"restricted to, the set of programs, methods, rules and documentation related "
+"to the operating \n"
+"system and the different components of the Mageia distribution, and any "
+"applications \n"
"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-"El sistema operativo y los diferentes componentes disponibles en la distribución Mageia \n"
-"se denominarán \"Productos de Software\" en adelante. Los Productos de Software incluyen, pero no \n"
-"están restringidos a, el conjunto de programas, métodos, reglas y documentación relativas al \n"
+"El sistema operativo y los diferentes componentes disponibles en la "
+"distribución Mageia \n"
+"se denominarán \"Productos de Software\" en adelante. Los Productos de "
+"Software incluyen, pero no \n"
+"están restringidos a, el conjunto de programas, métodos, reglas y "
+"documentación relativas al \n"
"sistema operativo y a los diferentes componentes de la\n"
"distribución Mageia, y cualquier \n"
-"aplicación distribuida con estos productos proporcionados por los proveedores o licenciatarios\n"
+"aplicación distribuida con estos productos proporcionados por los "
+"proveedores o licenciatarios\n"
"de Mageia."
#: messages.pm:27
@@ -5017,28 +4914,41 @@ msgstr "1. Acuerdo de Licencia"
#: messages.pm:29
#, c-format
msgid ""
-"Please read this document carefully. This document is a license agreement between you and \n"
+"Please read this document carefully. This document is a license agreement "
+"between you and \n"
"Mageia which applies to the Software Products.\n"
-"By installing, duplicating or using any of the Software Products in any manner, you explicitly \n"
-"accept and fully agree to conform to the terms and conditions of this License. \n"
-"If you disagree with any portion of the License, you are not allowed to install, duplicate or use \n"
+"By installing, duplicating or using any of the Software Products in any "
+"manner, you explicitly \n"
+"accept and fully agree to conform to the terms and conditions of this "
+"License. \n"
+"If you disagree with any portion of the License, you are not allowed to "
+"install, duplicate or use \n"
"the Software Products. \n"
-"Any attempt to install, duplicate or use the Software Products in a manner which does not comply \n"
-"with the terms and conditions of this License is void and will terminate your rights under this \n"
-"License. Upon termination of the License, you must immediately destroy all copies of the \n"
+"Any attempt to install, duplicate or use the Software Products in a manner "
+"which does not comply \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
+"License. Upon termination of the License, you must immediately destroy all "
+"copies of the \n"
"Software Products."
msgstr ""
-"Por favor, lea con cuidado este documento. El documento constituye un contrato de licencia entre usted \n"
+"Por favor, lea con cuidado este documento. El documento constituye un "
+"contrato de licencia entre usted \n"
"y Mageia que se aplica a los Produrctos Software.\n"
-"Al instalar, duplicar o usar cualquiera de los Productos de Software de cualquier manera, indica \n"
+"Al instalar, duplicar o usar cualquiera de los Productos de Software de "
+"cualquier manera, indica \n"
"que acepta explícitamente, y está de acuerdo\n"
"con los términos y condiciones de esta Licencia.\n"
"Si no está de acuerdo con cualquier porción de esta Licencia. \n"
-"Si usted no está de acuerdo con una parte de la Licencia, usted no tendrá permitido instalar, \n"
+"Si usted no está de acuerdo con una parte de la Licencia, usted no tendrá "
+"permitido instalar, \n"
"duplicar o utilizar los Productos Software.\n"
-"Cualquier intento de instalar, duplicar o usar los Productos de Software en una manera tal que no cumpla \n"
-"con los términos y condiciones de esta Licencia es nulo y terminará sus derechos bajo esta \n"
-"Licencia. En caso de anulación de la Licencia, Usted deberá destruir inmediatamente todas las copias de los Productos de Software."
+"Cualquier intento de instalar, duplicar o usar los Productos de Software en "
+"una manera tal que no cumpla \n"
+"con los términos y condiciones de esta Licencia es nulo y terminará sus "
+"derechos bajo esta \n"
+"Licencia. En caso de anulación de la Licencia, Usted deberá destruir "
+"inmediatamente todas las copias de los Productos de Software."
#: messages.pm:41
#, c-format
@@ -5049,45 +4959,71 @@ msgstr "2. Garantía limitada"
#: messages.pm:44
#, c-format
msgid ""
-"The Software Products and attached documentation are provided \"as is\", with no warranty, to the \n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
"extent permitted by law.\n"
-"Neither Mageia nor its licensors or suppliers will, in any circumstances and to the extent \n"
-"permitted by law, be liable for any special, incidental, direct or indirect damages whatsoever \n"
-"(including without limitation damages for loss of business, interruption of business, financial \n"
-"loss, legal fees and penalties resulting from a court judgment, or any other consequential loss) \n"
-"arising out of the use or inability to use the Software Products, even if Mageia or its \n"
-"licensors or suppliers have been advised of the possibility or occurrence of such damages.\n"
+"Neither Mageia nor its licensors or suppliers will, in any circumstances and "
+"to the extent \n"
+"permitted by law, be liable for any special, incidental, direct or indirect "
+"damages whatsoever \n"
+"(including without limitation damages for loss of business, interruption of "
+"business, financial \n"
+"loss, legal fees and penalties resulting from a court judgment, or any other "
+"consequential loss) \n"
+"arising out of the use or inability to use the Software Products, even if "
+"Mageia or its \n"
+"licensors or suppliers have been advised of the possibility or occurrence of "
+"such damages.\n"
"\n"
-"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME COUNTRIES\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
"\n"
-"To the extent permitted by law, neither Mageia nor its licensors, suppliers or\n"
-"distributors will, in any circumstances, be liable for any special, incidental, direct or indirect \n"
-"damages whatsoever (including without limitation damages for loss of business, interruption of \n"
-"business, financial loss, legal fees and penalties resulting from a court judgment, or any \n"
-"other consequential loss) arising out of the possession and use of software components or \n"
-"arising out of downloading software components from one of Mageia sites which are \n"
+"To the extent permitted by law, neither Mageia nor its licensors, suppliers "
+"or\n"
+"distributors will, in any circumstances, be liable for any special, "
+"incidental, direct or indirect \n"
+"damages whatsoever (including without limitation damages for loss of "
+"business, interruption of \n"
+"business, financial loss, legal fees and penalties resulting from a court "
+"judgment, or any \n"
+"other consequential loss) arising out of the possession and use of software "
+"components or \n"
+"arising out of downloading software components from one of Mageia sites "
+"which are \n"
"prohibited or restricted in some countries by local laws.\n"
-"This limited liability applies to, but is not restricted to, the strong cryptography components \n"
+"This limited liability applies to, but is not restricted to, the strong "
+"cryptography components \n"
"included in the Software Products.\n"
-"However, because some jurisdictions do not allow the exclusion or limitation or liability for \n"
-"consequential or incidental damages, the above limitation may not apply to you."
+"However, because some jurisdictions do not allow the exclusion or limitation "
+"or liability for \n"
+"consequential or incidental damages, the above limitation may not apply to "
+"you."
msgstr ""
-"Los Productos de Software y la documentación que los acompaña se proporcionan \"tal cual\", sin garantía alguna \n"
+"Los Productos de Software y la documentación que los acompaña se "
+"proporcionan \"tal cual\", sin garantía alguna \n"
"hasta donde lo permita la ley.\n"
-"Ni Mageia, ni sus licencitarios o proveedores se responsabilizarán, bajo circunstancia alguna, y hasta \n"
-"donde lo permita la ley, por cualquier daño directo, indirecto, especial o incidental, de cualquier \n"
+"Ni Mageia, ni sus licencitarios o proveedores se responsabilizarán, bajo "
+"circunstancia alguna, y hasta \n"
+"donde lo permita la ley, por cualquier daño directo, indirecto, especial o "
+"incidental, de cualquier \n"
"naturaleza (incluyendo sin limitación daños por pérdidas\n"
"de negocios, interrupción de negocio, \n"
-"pérdidas financieras, costos legales y penalidades resultantes de un juicio en la corte,\n"
-"o cualquier pérdida consecuente) que resulte del uso o de la incapacidad de uso de los Productos de Software,\n"
+"pérdidas financieras, costos legales y penalidades resultantes de un juicio "
+"en la corte,\n"
+"o cualquier pérdida consecuente) que resulte del uso o de la incapacidad de "
+"uso de los Productos de Software,\n"
"aún cuando Mageia, o sus licenciatarios o\n"
-"proveedores hubieran sido informados de la posibilidad de ocurrencia de tales daños.\n"
+"proveedores hubieran sido informados de la posibilidad de ocurrencia de "
+"tales daños.\n"
"\n"
-"RESPONSABILIDAD LIMITADA ASOCIADA A LA POSESIÓN O USO DE PROGRAMAS PROHIBIDOS EN ALGUNOS PAÍSES\n"
+"RESPONSABILIDAD LIMITADA ASOCIADA A LA POSESIÓN O USO DE PROGRAMAS "
+"PROHIBIDOS EN ALGUNOS PAÍSES\n"
"\n"
-"Dentro de lo que permita la ley, ni Mageia ni sus licenciatarios, proveedores o\n"
+"Dentro de lo que permita la ley, ni Mageia ni sus licenciatarios, "
+"proveedores o\n"
"distribuidores podrán ser responsabilizados en circunstancia alguna\n"
-"por un perjuicio especial, incidental, directo o indirecto, de cualquier naturaleza\n"
+"por un perjuicio especial, incidental, directo o indirecto, de cualquier "
+"naturaleza\n"
"(incluyendo sin limitación daños por pérdidas de negocios, interrupción\n"
"de negocio, pérdidas financieras, costes legales y penalidades resultantes\n"
"de un juicio en la corte, o cualquier pérdida consecuente) como\n"
@@ -5098,7 +5034,8 @@ msgstr ""
"Esta responsabilidad limitada aplica, pero no esta limitada, a los\n"
"componentes de criptografía fuerte incluidos en los Productos de Software.\n"
"Sin embargo, debido a que algunas jurisdicciones no permiten la exclusión\n"
-"o limitación o responsabilización por daños incidentales o consecuentes, la limitación \n"
+"o limitación o responsabilización por daños incidentales o consecuentes, la "
+"limitación \n"
"anterior puede no aplicar a Usted. "
#: messages.pm:68
@@ -5109,21 +5046,31 @@ msgstr "3. La Licencia GPL y Licencias Relacionadas"
#: messages.pm:70
#, c-format
msgid ""
-"The Software Products consist of components created by different persons or entities.\n"
-"Most of these licenses allow you to use, duplicate, adapt or redistribute the components which \n"
-"they cover. Please read carefully the terms and conditions of the license agreement for each component \n"
-"before using any component. Any question on a component license should be addressed to the component \n"
+"The Software Products consist of components created by different persons or "
+"entities.\n"
+"Most of these licenses allow you to use, duplicate, adapt or redistribute "
+"the components which \n"
+"they cover. Please read carefully the terms and conditions of the license "
+"agreement for each component \n"
+"before using any component. Any question on a component license should be "
+"addressed to the component \n"
"licensor or supplier and not to Mageia.\n"
-"The programs developed by Mageia are governed by the GPL License. Documentation written \n"
+"The programs developed by Mageia are governed by the GPL License. "
+"Documentation written \n"
"by Mageia is governed by \"%s\" License."
msgstr ""
-"Los Productos de Software consisten en componentes creados por personas o entidades diferentes.\n"
-"La mayoría de estas licencias le permiten utilizar, duplicar, adaptar o redistribuir los componentes \n"
-"que cubren. Por favor lea cuidadosamente los términos y condiciones de las licencias para cada \n"
+"Los Productos de Software consisten en componentes creados por personas o "
+"entidades diferentes.\n"
+"La mayoría de estas licencias le permiten utilizar, duplicar, adaptar o "
+"redistribuir los componentes \n"
+"que cubren. Por favor lea cuidadosamente los términos y condiciones de las "
+"licencias para cada \n"
"componente antes de usar cualquier componente.\n"
-"Cualquier pregunta sobre la licencia de un componente debe ser dirigida autor o representante o \n"
+"Cualquier pregunta sobre la licencia de un componente debe ser dirigida "
+"autor o representante o \n"
"proveedor de dicho componente, y no a Mageia.\n"
-"Los programas desarrollados por Mageia están sometidos a la Licencia GPL. La documentación \n"
+"Los programas desarrollados por Mageia están sometidos a la Licencia GPL. La "
+"documentación \n"
"escrita por Mageia está sometida a la licencia \"%s\"."
#: messages.pm:79
@@ -5134,17 +5081,24 @@ msgstr "4. Derechos de propiedad intelectual"
#: messages.pm:81
#, c-format
msgid ""
-"All rights to the components of the Software Products belong to their respective authors and are \n"
-"protected by intellectual property and copyright laws applicable to software programs.\n"
-"Mageia and its suppliers and licensors reserves their rights to modify or adapt the Software \n"
+"All rights to the components of the Software Products belong to their "
+"respective authors and are \n"
+"protected by intellectual property and copyright laws applicable to software "
+"programs.\n"
+"Mageia and its suppliers and licensors reserves their rights to modify or "
+"adapt the Software \n"
"Products, as a whole or in parts, by all means and for all purposes.\n"
"\"Mageia\" and associated logos are trademarks of %s"
msgstr ""
-"Todos los derechos de los componentes de los Productos de Software pertenecen a sus autores respectivos \n"
-"y están protegidos por leyes de propiedad intelectual y de derechos de autor aplicables a los programas\n"
+"Todos los derechos de los componentes de los Productos de Software "
+"pertenecen a sus autores respectivos \n"
+"y están protegidos por leyes de propiedad intelectual y de derechos de autor "
+"aplicables a los programas\n"
"de software.\n"
-"Mageia y sus licenciatarios y proveedores se reservan el derecho de modificar o adaptar los \n"
-"Productos de Software, como un todo o en parte, por todos los medios y para cualquier propósito.\n"
+"Mageia y sus licenciatarios y proveedores se reservan el derecho de "
+"modificar o adaptar los \n"
+"Productos de Software, como un todo o en parte, por todos los medios y para "
+"cualquier propósito.\n"
"\"Mageia\" y los logos asociados son marca registrada de %s"
#: messages.pm:88
@@ -5155,34 +5109,48 @@ msgstr "5. Disposiciones diversas"
#: messages.pm:90
#, c-format
msgid ""
-"If any portion of this agreement is held void, illegal or inapplicable by a court judgment, this \n"
-"portion is excluded from this contract. You remain bound by the other applicable sections of the \n"
+"If any portion of this agreement is held void, illegal or inapplicable by a "
+"court judgment, this \n"
+"portion is excluded from this contract. You remain bound by the other "
+"applicable sections of the \n"
"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of France.\n"
-"All disputes on the terms of this license will preferably be settled out of court. As a last \n"
-"resort, the dispute will be referred to the appropriate Courts of Law of Paris - France.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
+"All disputes on the terms of this license will preferably be settled out of "
+"court. As a last \n"
+"resort, the dispute will be referred to the appropriate Courts of Law of "
+"Paris - France.\n"
"For any question on this document, please contact Mageia."
msgstr ""
"Si cualquier parte de este contrato fuera declarada\n"
"nula, ilegal o inaplicable por un tribunal competente, esta\n"
-"porción se excluye del presente contrato. Usted permanecerá sometido a las otras disposiciones\n"
+"porción se excluye del presente contrato. Usted permanecerá sometido a las "
+"otras disposiciones\n"
"aplicables del acuerdo.\n"
-"Los términos y condiciones de esta Licencia están regidos por las Leyes de Francia.\n"
-"Toda disputa relativa a los términos de esta licencia será resuelta, preferentemente, fuera de una corte.\n"
-"Como último recurso, la disputa será tramitada en la Corte de Ley correspondiente a París, Francia.\n"
-"Para cualquier pregunta relacionada con este documento, por favor ponerse en contacto con Mageia"
+"Los términos y condiciones de esta Licencia están regidos por las Leyes de "
+"Francia.\n"
+"Toda disputa relativa a los términos de esta licencia será resuelta, "
+"preferentemente, fuera de una corte.\n"
+"Como último recurso, la disputa será tramitada en la Corte de Ley "
+"correspondiente a París, Francia.\n"
+"Para cualquier pregunta relacionada con este documento, por favor ponerse en "
+"contacto con Mageia"
#: messages.pm:102
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
-"Software included may be covered by patents in your country. For example, the\n"
+"Software included may be covered by patents in your country. For example, "
+"the\n"
"MP3 decoders included may require a license for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a patent\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
"may be applicable to you, check your local laws."
msgstr ""
-"Atención: El software libre (Free Software) puede no ser estar necesariamente\n"
-"libre de patentes, y alguno software libre incluido puede estar cubierto por\n"
+"Atención: El software libre (Free Software) puede no ser estar "
+"necesariamente\n"
+"libre de patentes, y alguno software libre incluido puede estar cubierto "
+"por\n"
"patentes en su país. Por ejemplo, los decodificadores MP3 incluídos pueden\n"
"necesitar una licencia para uso adicional (vea http://www.mp3licensing.com\n"
"para más detalles). Si no está seguro si una patente puede o no aplicarse\n"
@@ -5214,7 +5182,8 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mageia User's Guide."
msgstr ""
-"Hay información disponible sobre cómo configurar su sistema en el capítulo de\n"
+"Hay información disponible sobre cómo configurar su sistema en el capítulo "
+"de\n"
"configuración tras la instalación de la Guía del Usuario de Mageia oficial."
#: modules/interactive.pm:19
@@ -5319,14 +5288,17 @@ msgstr "¿Qué controlador de %s debo probar?"
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
-"properly, although it normally works fine without them. Would you like to specify\n"
+"properly, although it normally works fine without them. Would you like to "
+"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
-"information it needs? Occasionally, probing will hang a computer, but it should\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
"not cause any damage."
msgstr ""
"En algunos casos, el controlador de %s necesita información extra\n"
"para funcionar correctamente, aunque normalmente funcione sin ella.\n"
-"¿Desea especificar información extra para el controlador o dejar que el mismo\n"
+"¿Desea especificar información extra para el controlador o dejar que el "
+"mismo\n"
"pruebe su equipo y encuentre la información que necesita? A veces,\n"
"el probar el equipo puede provocar que éste se cuelgue, pero no debería\n"
"causar ningún daño."
@@ -5355,19 +5327,17 @@ msgstr ""
msgid "Are you sure you want to quit?"
msgstr "¿Está seguro de que desea salir?"
-#: mygtk2.pm:1563
-#: mygtk2.pm:1564
+#: mygtk2.pm:1563 mygtk2.pm:1564
#, c-format
msgid "Password is trivial to guess"
msgstr "La contraseña es muy fácil de adivinar"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "La contraseña debería resistir ataques básicos"
-#: mygtk2.pm:1543
-#: mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "La contraseña parece segura"
@@ -5386,25 +5356,27 @@ msgstr "La partición extendida no está disponible en esta plataforma"
#, c-format
msgid ""
"You have a hole in your partition table but I cannot use it.\n"
-"The only solution is to move your primary partitions to have the hole next to the extended partitions."
+"The only solution is to move your primary partitions to have the hole next "
+"to the extended partitions."
msgstr ""
"Tiene un hueco en la tabla de particiones, pero no se puede usar.\n"
-"La única solución es desplazar sus particiones primarias para que el hueco esté después de las particiones extendidas"
+"La única solución es desplazar sus particiones primarias para que el hueco "
+"esté después de las particiones extendidas"
#: partition_table/raw.pm:296
#, c-format
msgid ""
"Something bad is happening on your hard disk drive. \n"
"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random, corrupted data."
+"It means writing anything on the disk will end up with random, corrupted "
+"data."
msgstr ""
"Está ocurriendo algo malo en su unidad. \n"
"Ha fallado una prueba para verificar la integridad de los datos. \n"
-"Esto significa que escribir cualquier cosa en el disco terminará produciendo datos aleatorios, corruptos."
+"Esto significa que escribir cualquier cosa en el disco terminará produciendo "
+"datos aleatorios, corruptos."
-#: pkgs.pm:254
-#: pkgs.pm:257
-#: pkgs.pm:270
+#: pkgs.pm:254 pkgs.pm:257 pkgs.pm:270
#, c-format
msgid "Unused packages removal"
msgstr "Quitar paquetes no usados"
@@ -5421,22 +5393,24 @@ msgstr "Encontrando paquetes de localización no usados..."
#: pkgs.pm:271
#, c-format
-msgid "We have detected that some packages are not needed for your system configuration."
-msgstr "Se detectaron algunos paquetes que no son necesarios para la configuración de su sistema."
+msgid ""
+"We have detected that some packages are not needed for your system "
+"configuration."
+msgstr ""
+"Se detectaron algunos paquetes que no son necesarios para la configuración "
+"de su sistema."
#: pkgs.pm:272
#, c-format
msgid "We will remove the following packages, unless you choose otherwise:"
msgstr "A menos que elija lo contrario, se quitarán los paquetes siguientes:"
-#: pkgs.pm:275
-#: pkgs.pm:276
+#: pkgs.pm:275 pkgs.pm:276
#, c-format
msgid "Unused hardware support"
msgstr "Soporte para hardware no utilizado"
-#: pkgs.pm:279
-#: pkgs.pm:280
+#: pkgs.pm:279 pkgs.pm:280
#, c-format
msgid "Unused localization"
msgstr "Idiomas no utilizados"
@@ -5464,7 +5438,8 @@ msgstr "¡No se pudo crear vínculo /usr/share/sane/%s!"
#: scanner.pm:114
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
-msgstr "¡No se pudo copiar el archivo de firmware %s a /usr/share/sane/firmware!"
+msgstr ""
+"¡No se pudo copiar el archivo de firmware %s a /usr/share/sane/firmware!"
#: scanner.pm:121
#, c-format
@@ -5479,12 +5454,14 @@ msgstr "Scannerdrake"
#: scanner.pm:201
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
-msgstr "No se pueden instalar los paquetes necesarios para compartir sus escáneres."
+msgstr ""
+"No se pueden instalar los paquetes necesarios para compartir sus escáneres."
#: scanner.pm:202
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
-msgstr "Sus escáneres no estarán disponibles para los usuarios no privilegiados."
+msgstr ""
+"Sus escáneres no estarán disponibles para los usuarios no privilegiados."
#: security/help.pm:11
#, c-format
@@ -5539,8 +5516,11 @@ msgstr "Permitir conexión directa del administrador del sistema."
#: security/help.pm:33
#, c-format
-msgid "Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Permitir la lista de usuarios del sistema en administradores de conexión (kdm y gdm)."
+msgid ""
+"Allow the list of users on the system on display managers (kdm and gdm)."
+msgstr ""
+"Permitir la lista de usuarios del sistema en administradores de conexión "
+"(kdm y gdm)."
#: security/help.pm:35
#, c-format
@@ -5589,23 +5569,27 @@ msgstr ""
msgid ""
"Authorize:\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if set to \"ALL\",\n"
+"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
+"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"Local\"\n"
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Autorizar:\n"
"\n"
-"- todos los servicios controlados por tcp_wrappers (ver hosts.deny(5)) si se configura en \"TODO\",\n"
+"- todos los servicios controlados por tcp_wrappers (ver hosts.deny(5)) si se "
+"configura en \"TODO\",\n"
"\n"
"- sólo los locales si se configura en \"LOCAL\"\n"
"\n"
"- ninguno si se configura en \"NINGUNO\".\n"
"\n"
-"Para autorizar los servicios que necesita, use /etc/hosts.allow (ver hosts.allow(5))."
+"Para autorizar los servicios que necesita, use /etc/hosts.allow (ver hosts."
+"allow(5))."
#: security/help.pm:63
#, c-format
@@ -5682,8 +5666,12 @@ msgstr "Habilitar las verificaciones de msec todas las horas."
#: security/help.pm:90
#, c-format
-msgid "Enable su only from members of the wheel group. If set to no, allows su from any user."
-msgstr "Permitir su sólo a miembros del grupo wheel. Si es No, permite hacer su a cualquier usuario."
+msgid ""
+"Enable su only from members of the wheel group. If set to no, allows su from "
+"any user."
+msgstr ""
+"Permitir su sólo a miembros del grupo wheel. Si es No, permite hacer su a "
+"cualquier usuario."
#: security/help.pm:92
#, c-format
@@ -5708,27 +5696,39 @@ msgstr "Habilitar sulogin(8) en nivel de usuario único."
#: security/help.pm:100
#, c-format
msgid "Add the name as an exception to the handling of password aging by msec."
-msgstr "Añadir el nombre como una excepción al manejo de edad de contraseñas por msec."
+msgstr ""
+"Añadir el nombre como una excepción al manejo de edad de contraseñas por "
+"msec."
#: security/help.pm:102
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr "Configurar edad de contraseñas en \"max\" días y demorar el cambio a \"inactive\"."
+msgstr ""
+"Configurar edad de contraseñas en \"max\" días y demorar el cambio a "
+"\"inactive\"."
#: security/help.pm:104
#, c-format
msgid "Set the password history length to prevent password reuse."
-msgstr "Configurar la longitud de la historia de contraseñas para prevenir reutilización de contraseñas."
+msgstr ""
+"Configurar la longitud de la historia de contraseñas para prevenir "
+"reutilización de contraseñas."
#: security/help.pm:106
#, c-format
-msgid "Set the password minimum length and minimum number of digit and minimum number of capitalized letters."
-msgstr "Configurar la longitud mínima de contraseña y la cantidad mínima de dígitos y cantidad mínima de letras mayúsculas."
+msgid ""
+"Set the password minimum length and minimum number of digit and minimum "
+"number of capitalized letters."
+msgstr ""
+"Configurar la longitud mínima de contraseña y la cantidad mínima de dígitos "
+"y cantidad mínima de letras mayúsculas."
#: security/help.pm:108
#, c-format
msgid "Set the root's file mode creation mask."
-msgstr "Configurar la máscara de modo de creación de archivos para el administrador del sistema."
+msgstr ""
+"Configurar la máscara de modo de creación de archivos para el administrador "
+"del sistema."
#: security/help.pm:109
#, c-format
@@ -5757,12 +5757,16 @@ msgstr ""
#: security/help.pm:117
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
-msgstr "si se pone en sí, verificar permisos de archivos en dirs. personales de usuarios."
+msgstr ""
+"si se pone en sí, verificar permisos de archivos en dirs. personales de "
+"usuarios."
#: security/help.pm:118
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
-msgstr "si se pone en sí, verificar si los dispositivos de red están en modo promiscuo."
+msgstr ""
+"si se pone en sí, verificar si los dispositivos de red están en modo "
+"promiscuo."
#: security/help.pm:119
#, c-format
@@ -5787,7 +5791,8 @@ msgstr "si se pone en sí, verificar suma de los archivos suid/sgid."
#: security/help.pm:123
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
-msgstr "si se pone en sí, verificar adiciones/remociones de archivos suid root."
+msgstr ""
+"si se pone en sí, verificar adiciones/remociones de archivos suid root."
#: security/help.pm:124
#, c-format
@@ -5797,7 +5802,8 @@ msgstr "si se pone en sí, reportar archivos sin dueño."
#: security/help.pm:125
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
-msgstr "si se pone en sí, verificar archivos/directorios que todos pueden escribir."
+msgstr ""
+"si se pone en sí, verificar archivos/directorios que todos pueden escribir."
#: security/help.pm:126
#, c-format
@@ -5806,8 +5812,11 @@ msgstr "si se pone en sí, ejecutar verificaciones chkrootkit."
#: security/help.pm:127
#, c-format
-msgid "if set, send the mail report to this email address else send it to root."
-msgstr "si está activo, enviar el correo de reporte a esta dirección, caso contrario al administrador del sistema."
+msgid ""
+"if set, send the mail report to this email address else send it to root."
+msgstr ""
+"si está activo, enviar el correo de reporte a esta dirección, caso contrario "
+"al administrador del sistema."
#: security/help.pm:128
#, c-format
@@ -5822,7 +5831,8 @@ msgstr "No enviar correo si no hay advertencias"
#: security/help.pm:130
#, c-format
msgid "if set to yes, run some checks against the rpm database."
-msgstr "si se pone en sí, correr algunas pruebas contra la base de datos de rpm."
+msgstr ""
+"si se pone en sí, correr algunas pruebas contra la base de datos de rpm."
#: security/help.pm:131
#, c-format
@@ -5837,7 +5847,9 @@ msgstr "si se pone en sí, reportar resultados de verificación en tty."
#: security/help.pm:134
#, c-format
msgid "Set shell commands history size. A value of -1 means unlimited."
-msgstr "Ajustar el tamaño de la historia de comandos. Un valor de -1 significa ilimitada."
+msgstr ""
+"Ajustar el tamaño de la historia de comandos. Un valor de -1 significa "
+"ilimitada."
#: security/help.pm:136
#, c-format
@@ -5897,7 +5909,9 @@ msgstr "Listar usuarios del sistema en administradores de conexión (kdm y gdm)"
#: security/l10n.pm:20
#, c-format
msgid "Export display when passing from root to the other users"
-msgstr "Exportar pantalla cuando se pasa del administrador del sistema a otras cuentas"
+msgstr ""
+"Exportar pantalla cuando se pasa del administrador del sistema a otras "
+"cuentas"
#: security/l10n.pm:21
#, c-format
@@ -5987,7 +6001,8 @@ msgstr "Sin edad de contraseñas para"
#: security/l10n.pm:38
#, c-format
msgid "Set password expiration and account inactivation delays"
-msgstr "Ajustar expiración de contraseñas y demoras de desactivación de cuentas"
+msgstr ""
+"Ajustar expiración de contraseñas y demoras de desactivación de cuentas"
#: security/l10n.pm:39
#, c-format
@@ -5997,7 +6012,8 @@ msgstr "Longitud de historia de contraseñas"
#: security/l10n.pm:40
#, c-format
msgid "Password minimum length and number of digits and upcase letters"
-msgstr "Longitud mínima y cantidad de dígitos y letras mayúsculas para contraseñas"
+msgstr ""
+"Longitud mínima y cantidad de dígitos y letras mayúsculas para contraseñas"
#: security/l10n.pm:41
#, c-format
@@ -6087,7 +6103,9 @@ msgstr "No enviar por correo electrónico los reportes vacíos"
#: security/l10n.pm:58
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
-msgstr "Si está activo, enviar el correo de reporte a esta dirección, caso contrario al administrador del sistema."
+msgstr ""
+"Si está activo, enviar el correo de reporte a esta dirección, caso contrario "
+"al administrador del sistema."
#: security/l10n.pm:59
#, c-format
@@ -6128,15 +6146,20 @@ msgstr "Seguro"
#, c-format
msgid ""
"This level is to be used with care, as it disables all additional security\n"
-"provided by msec. Use it only when you want to take care of all aspects of system security\n"
+"provided by msec. Use it only when you want to take care of all aspects of "
+"system security\n"
"on your own."
msgstr ""
-"Este nivel es para ser usado con mucho cuidado, yá que esto desabilita toda la\n"
-"seguridad. Utilícelo sólo si usted maneja a sí mismo la seguridad de su sistema."
+"Este nivel es para ser usado con mucho cuidado, yá que esto desabilita toda "
+"la\n"
+"seguridad. Utilícelo sólo si usted maneja a sí mismo la seguridad de su "
+"sistema."
#: security/level.pm:55
#, c-format
-msgid "This is the standard security recommended for a computer that will be used to connect to the Internet as a client."
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
"Éste es el nivel de seguridad estándar recomendado para una máquina que se\n"
"utilizará para conectarse a la Internet como cliente."
@@ -6144,13 +6167,18 @@ msgstr ""
#: security/level.pm:56
#, c-format
msgid ""
-"With this security level, the use of this system as a server becomes possible.\n"
-"The security is now high enough to use the system as a server which can accept\n"
-"connections from many clients. Note: if your machine is only a client on the Internet, you should choose a lower level."
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
msgstr ""
-"Con este nivel de seguridad, es posible utilizar el sistema como un servidor.\n"
+"Con este nivel de seguridad, es posible utilizar el sistema como un "
+"servidor.\n"
"La seguridad es lo suficientemente alta como para usar el sistema como un\n"
-"servidor que acepte conexiones de múltiples clientes. Nota: si su máquina sólo es un cliente en la Internet, mejor debería elegir un nivel inferior."
+"servidor que acepte conexiones de múltiples clientes. Nota: si su máquina "
+"sólo es un cliente en la Internet, mejor debería elegir un nivel inferior."
#: security/level.pm:63
#, c-format
@@ -6186,7 +6214,8 @@ msgstr "Escuchar y despachar eventos ACPI desde el kernel"
#: services.pm:19
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
-msgstr "Lanzar el sistema de sonido ALSA (Arquitectura avanzada de sonido de Linux)"
+msgstr ""
+"Lanzar el sistema de sonido ALSA (Arquitectura avanzada de sonido de Linux)"
#: services.pm:20
#, c-format
@@ -6227,17 +6256,23 @@ msgstr "Establecer los parámetros de frecuencia de CPU"
#, c-format
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the basic\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
"cron es un programa UNIX estándar que ejecuta programas especificados por\n"
-"el usuario periódicamente. El cron de Vixie añade varias funcionalidades al cron de Unix \n"
-"básico, incluyendo una mayor seguridad y opciones de configuración más potentes."
+"el usuario periódicamente. El cron de Vixie añade varias funcionalidades al "
+"cron de Unix \n"
+"básico, incluyendo una mayor seguridad y opciones de configuración más "
+"potentes."
#: services.pm:30
#, c-format
-msgid "Common UNIX Printing System (CUPS) is an advanced printer spooling system"
-msgstr "CUPS (Common UNIX Printing System) es un sistema de cola de impresión avanzado"
+msgid ""
+"Common UNIX Printing System (CUPS) is an advanced printer spooling system"
+msgstr ""
+"CUPS (Common UNIX Printing System) es un sistema de cola de impresión "
+"avanzado"
#: services.pm:31
#, c-format
@@ -6247,43 +6282,56 @@ msgstr "Lanza el administrador de conexión gráfico"
#: services.pm:32
#, c-format
msgid ""
-"FAM is a file monitoring daemon. It is used to get reports when files change.\n"
+"FAM is a file monitoring daemon. It is used to get reports when files "
+"change.\n"
"It is used by GNOME and KDE"
msgstr ""
-"FAM es un demonio de monitoreo de archivos. Se usa para obtener reportes cuando cambian los archivos.\n"
+"FAM es un demonio de monitoreo de archivos. Se usa para obtener reportes "
+"cuando cambian los archivos.\n"
"Lo utilizan GNOME y KDE"
#: services.pm:34
#, c-format
msgid ""
"G15Daemon allows users access to all extra keys by decoding them and \n"
-"pushing them back into the kernel via the linux UINPUT driver. This driver must be loaded \n"
-"before g15daemon can be used for keyboard access. The G15 LCD is also supported. By default, \n"
-"with no other clients active, g15daemon will display a clock. Client applications and \n"
+"pushing them back into the kernel via the linux UINPUT driver. This driver "
+"must be loaded \n"
+"before g15daemon can be used for keyboard access. The G15 LCD is also "
+"supported. By default, \n"
+"with no other clients active, g15daemon will display a clock. Client "
+"applications and \n"
"scripts can access the LCD via a simple API."
msgstr ""
-"El demonio G15Daemon permite a los usuarios acceder a todas las teclas extra decodificándolas y \n"
-"devolviéndolas al kernel por medio del controlador de linux UINPUT. Este controlador debe estar \n"
-"cargado antes de que el demonio g15daemon pueda ser utilizado para acceso de teclado. El G15 \n"
-"LCD también está soportado. El g15daemon mostrará un reloj de manera predeterminada si no hay \n"
-"otros clientes activos. Las aplicaciones y scripts de clientes y pueden acceder el LCD por medio de \n"
+"El demonio G15Daemon permite a los usuarios acceder a todas las teclas extra "
+"decodificándolas y \n"
+"devolviéndolas al kernel por medio del controlador de linux UINPUT. Este "
+"controlador debe estar \n"
+"cargado antes de que el demonio g15daemon pueda ser utilizado para acceso de "
+"teclado. El G15 \n"
+"LCD también está soportado. El g15daemon mostrará un reloj de manera "
+"predeterminada si no hay \n"
+"otros clientes activos. Las aplicaciones y scripts de clientes y pueden "
+"acceder el LCD por medio de \n"
"una API simple."
#: services.pm:39
#, c-format
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste operations,\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"GPM añade soporte del ratón para los programas Linux en modo texto, como\n"
"el Midnight Commander. También permite operaciones de cortar-y-pegar con\n"
-"el ratón en la consola, e incluye soporte para menús emergentes en la consola."
+"el ratón en la consola, e incluye soporte para menús emergentes en la "
+"consola."
#: services.pm:42
#, c-format
msgid "HAL is a daemon that collects and maintains information about hardware"
-msgstr "HAL es un servicio que recolecta y mantiene información acerca del hardware"
+msgstr ""
+"HAL es un servicio que recolecta y mantiene información acerca del hardware"
#: services.pm:43
#, c-format
@@ -6296,21 +6344,28 @@ msgstr ""
#: services.pm:45
#, c-format
-msgid "Apache is a World Wide Web server. It is used to serve HTML files and CGI."
-msgstr "Apache es un servidor de páginas web. Se usa para servir archivos HTML y programas CGI."
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr ""
+"Apache es un servidor de páginas web. Se usa para servir archivos HTML y "
+"programas CGI."
#: services.pm:46
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd disables\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
"all of the services it is responsible for."
msgstr ""
-"El demonio para el superservidor de Internet (normalmente llamado inetd) inicia\n"
+"El demonio para el superservidor de Internet (normalmente llamado inetd) "
+"inicia\n"
"una variedad de servicios adicionales de internet según sea necesario.\n"
"Es el responsable de iniciar varios servicios, incluyendo telnet, ftp, rsh\n"
-"y rlogin. Al desactivar inetd, se desactivan todos los servicios que dependen de él."
+"y rlogin. Al desactivar inetd, se desactivan todos los servicios que "
+"dependen de él."
#: services.pm:50
#, c-format
@@ -6324,8 +6379,11 @@ msgstr "Automatiza un cortafuegos para filtro de paquetes con ip6tables"
#: services.pm:52
#, c-format
-msgid "Evenly distributes IRQ load across multiple CPUs for enhanced performance"
-msgstr "Distribuye la carga IRQ de manera equitativa a través de múltiples CPUs para un desempeño mejorado"
+msgid ""
+"Evenly distributes IRQ load across multiple CPUs for enhanced performance"
+msgstr ""
+"Distribuye la carga IRQ de manera equitativa a través de múltiples CPUs para "
+"un desempeño mejorado"
#: services.pm:53
#, c-format
@@ -6355,7 +6413,8 @@ msgstr "Detección y configuración automática del hardware al arrancar."
#: services.pm:59
#, c-format
msgid "Tweaks system behavior to extend battery life"
-msgstr "Afina el comportamiento del sistema para extender la vida de la batería"
+msgstr ""
+"Afina el comportamiento del sistema para extender la vida de la batería"
#: services.pm:60
#, c-format
@@ -6397,8 +6456,12 @@ msgstr "Monitoreo y administración de RAID por software"
#: services.pm:68
#, c-format
-msgid "DBUS is a daemon which broadcasts notifications of system events and other messages"
-msgstr "DBUS es un servicio que difunde notificaciones de los eventos del sistema y otros mensajes"
+msgid ""
+"DBUS is a daemon which broadcasts notifications of system events and other "
+"messages"
+msgstr ""
+"DBUS es un servicio que difunde notificaciones de los eventos del sistema y "
+"otros mensajes"
#: services.pm:69
#, c-format
@@ -6407,8 +6470,12 @@ msgstr "Habilita la política de seguridad de MSEC al inicio del sistema"
#: services.pm:70
#, c-format
-msgid "named (BIND) is a Domain Name Server (DNS) that is used to resolve host names to IP addresses."
-msgstr "named (BIND) es un servidor de nombres de dominio (DNS) usado para convertir los nombres de máquinas en direcciones IP."
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) es un servidor de nombres de dominio (DNS) usado para convertir "
+"los nombres de máquinas en direcciones IP."
#: services.pm:71
#, c-format
@@ -6452,7 +6519,8 @@ msgid ""
"/etc/exports file."
msgstr ""
"NFS es un protocolo muy popular para compartir archivos en redes TCP/IP.\n"
-"Este servicio proporciona la funcionalidad de servidor NFS, que se configura\n"
+"Este servicio proporciona la funcionalidad de servidor NFS, que se "
+"configura\n"
"a través del archivo /etc/exports."
#: services.pm:81
@@ -6492,7 +6560,8 @@ msgstr "Comprueba si una partición está pronto a llenarse"
#, c-format
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
-"modems in laptops. It will not get started unless configured so it is safe to have\n"
+"modems in laptops. It will not get started unless configured so it is safe "
+"to have\n"
"it installed on machines that do not need it."
msgstr ""
"El soporte PCMCIA se usa por lo general para admitir cosas como tarjetas\n"
@@ -6504,11 +6573,13 @@ msgstr ""
#, c-format
msgid ""
"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on machines\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
"El portmapper gestiona las conexiones RPC; que usan protocolos como\n"
-"NFS y NIS. El servidor portmap se debe estar ejecutando en los sistemas que actúan\n"
+"NFS y NIS. El servidor portmap se debe estar ejecutando en los sistemas que "
+"actúan\n"
"como servidores para protocolos que usan el mecanismo RPC."
#: services.pm:94
@@ -6518,8 +6589,12 @@ msgstr "Reserva algunos puertos TCP"
#: services.pm:95
#, c-format
-msgid "Postfix is a Mail Transport Agent, which is the program that moves mail from one machine to another."
-msgstr "Postfix es un agente de transporte de correo (MTA), es decir el programa encargado de enviar el correo electrónico de una máquina a otra."
+msgid ""
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
+msgstr ""
+"Postfix es un agente de transporte de correo (MTA), es decir el programa "
+"encargado de enviar el correo electrónico de una máquina a otra."
#: services.pm:96
#, c-format
@@ -6535,7 +6610,9 @@ msgstr ""
msgid ""
"Assign raw devices to block devices (such as hard disk drive\n"
"partitions), for the use of applications such as Oracle or DVD players"
-msgstr "Asignar dispositivos 'crudos' a dispositivos de bloque (como las particiones de los discos), para usar aplicaciones como Oracle o reproductores DVD"
+msgstr ""
+"Asignar dispositivos 'crudos' a dispositivos de bloque (como las particiones "
+"de los discos), para usar aplicaciones como Oracle o reproductores DVD"
#: services.pm:100
#, c-format
@@ -6549,9 +6626,12 @@ msgid ""
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-"El demonio routed permite actualizar automáticamente las tablas de enrutamiento IP\n"
-"gracias al protocolo RIP. Mientras que RIP se usa bastante en redes pequeñas,\n"
-"para redes más complejas, se necesitan protocolos de enrutamiento más complejos."
+"El demonio routed permite actualizar automáticamente las tablas de "
+"enrutamiento IP\n"
+"gracias al protocolo RIP. Mientras que RIP se usa bastante en redes "
+"pequeñas,\n"
+"para redes más complejas, se necesitan protocolos de enrutamiento más "
+"complejos."
#: services.pm:104
#, c-format
@@ -6564,8 +6644,12 @@ msgstr ""
#: services.pm:106
#, c-format
-msgid "Syslog is the facility by which many daemons use to log messages to various system log files. It is a good idea to always run rsyslog."
-msgstr "Syslog es el servicio con el cual muchos demonios envían mensajes a varios archivos de registro del sistema. Es una buena idea siempre ejecutar rsyslog."
+msgid ""
+"Syslog is the facility by which many daemons use to log messages to various "
+"system log files. It is a good idea to always run rsyslog."
+msgstr ""
+"Syslog es el servicio con el cual muchos demonios envían mensajes a varios "
+"archivos de registro del sistema. Es una buena idea siempre ejecutar rsyslog."
#: services.pm:107
#, c-format
@@ -6588,8 +6672,11 @@ msgstr ""
#: services.pm:111
#, c-format
-msgid "SANE (Scanner Access Now Easy) enables to access scanners, video cameras, ..."
-msgstr "SANE (Scanner Access Now Easy) permite acceder a escáner, cámaras de vídeo, ..."
+msgid ""
+"SANE (Scanner Access Now Easy) enables to access scanners, video cameras, ..."
+msgstr ""
+"SANE (Scanner Access Now Easy) permite acceder a escáner, cámaras de "
+"vídeo, ..."
#: services.pm:112
#, c-format
@@ -6598,8 +6685,12 @@ msgstr "Cortafuegos de filtro de paquetes"
#: services.pm:113
#, c-format
-msgid "The SMB/CIFS protocol enables to share access to files & printers and also integrates with a Windows Server domain"
-msgstr "El protocolo SMB/CIFS permite compartir el acceso a archivos e impresoras y también la integración a un dominio de Windows Server"
+msgid ""
+"The SMB/CIFS protocol enables to share access to files & printers and also "
+"integrates with a Windows Server domain"
+msgstr ""
+"El protocolo SMB/CIFS permite compartir el acceso a archivos e impresoras y "
+"también la integración a un dominio de Windows Server"
#: services.pm:114
#, c-format
@@ -6613,8 +6704,12 @@ msgstr "capa para análisis de voz"
#: services.pm:116
#, c-format
-msgid "Secure Shell is a network protocol that allows data to be exchanged over a secure channel between two computers"
-msgstr "Secure Shell es un protocolo de red que permite que se intercambien datos entre dos computadoras usando un canal seguro"
+msgid ""
+"Secure Shell is a network protocol that allows data to be exchanged over a "
+"secure channel between two computers"
+msgstr ""
+"Secure Shell es un protocolo de red que permite que se intercambien datos "
+"entre dos computadoras usando un canal seguro"
#: services.pm:117
#, c-format
@@ -6685,8 +6780,7 @@ msgstr "Administración remota"
msgid "Database Server"
msgstr "Servidor de base de datos"
-#: services.pm:188
-#: services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servicios"
@@ -6701,22 +6795,22 @@ msgstr "Seleccione qué servicios se deben iniciar automáticamente al arrancar"
msgid "%d activated for %d registered"
msgstr "%d activados de %d registrados"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "corriendo"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "parado"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Servicios y demonios"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6725,28 +6819,27 @@ msgstr ""
"No hay información adicional para\n"
"este servicio. Disculpe."
-#: services.pm:259
-#: ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Información"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Comenzar cuando se pida"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Al iniciar"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Iniciar"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Parar"
@@ -6766,7 +6859,8 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n"
+"Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
msgstr ""
" Este programa es software libre; puede redistribuirlo y/o modificarlo\n"
" bajo los términos de la Licencia Pública General GNU publicada por la\n"
@@ -6780,7 +6874,8 @@ msgstr ""
"\n"
" Debería haber recibido una copia de la Licencia Pública General GNU\n"
" junto con este programa; de no ser así, escriba a la Free Software\n"
-" Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\n"
+" Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, "
+"USA.\n"
#: standalone.pm:45
#, c-format
@@ -6791,7 +6886,8 @@ msgid ""
"--default : save default directories.\n"
"--debug : show all debug messages.\n"
"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X users).\n"
+"--config-info : explain configuration file options (for non-X "
+"users).\n"
"--daemon : use daemon configuration. \n"
"--help : show this message.\n"
"--version : show version number.\n"
@@ -6802,7 +6898,8 @@ msgstr ""
"--default : guarda directorios predeterminados.\n"
"--debug : mostrar todos los mensajes de depuración.\n"
"--show-conf : lista los archivos o directorios a respaldar.\n"
-"--config-info : explica las opciones de configuración (para usuarios no-X)\n"
+"--config-info : explica las opciones de configuración (para usuarios "
+"no-X)\n"
"--daemon : usa la configuración de demonio. \n"
"--help : muestra este mensaje.\n"
"--version : muestra el número de versión.\n"
@@ -6818,7 +6915,8 @@ msgstr ""
"[--boot]\n"
"OPCIONES:\n"
" --boot - permitir configurar el cargador de arranque\n"
-"modo predeterminado: ofrecer la configuración de la característica de conexión automática."
+"modo predeterminado: ofrecer la configuración de la característica de "
+"conexión automática."
#: standalone.pm:61
#, c-format
@@ -6875,10 +6973,12 @@ msgstr ""
"Aplicación de importación y monitoreo de tipografías\n"
"\n"
"OPCIONES:\n"
-"--windows_import : importar desde todas las particiones Windows disponibles.\n"
+"--windows_import : importar desde todas las particiones Windows "
+"disponibles.\n"
"--xls_fonts : mostrar todas las tipografías que ya existen en xls\n"
"--strong : verificación fuerte de las tipografías.\n"
-"--install : aceptar cualquier tipografía o directorio de tipografías.\n"
+"--install : aceptar cualquier tipografía o directorio de "
+"tipografías.\n"
"--uninstall : desinstalar cualquier tipografía o directorio de tipog.\n"
"--replace : reemplazar las tipografías si ya existen.\n"
"--application : 0 ninguna aplicación.\n"
@@ -6896,9 +6996,12 @@ msgid ""
"--start : start MTS\n"
"--stop : stop MTS\n"
"--adduser : add an existing system user to MTS (requires username)\n"
-"--deluser : delete an existing system user from MTS (requires username)\n"
-"--addclient : add a client machine to MTS (requires MAC address, IP, nbi image name)\n"
-"--delclient : delete a client machine from MTS (requires MAC address, IP, nbi image name)"
+"--deluser : delete an existing system user from MTS (requires "
+"username)\n"
+"--addclient : add a client machine to MTS (requires MAC address, IP, "
+"nbi image name)\n"
+"--delclient : delete a client machine from MTS (requires MAC address, "
+"IP, nbi image name)"
msgstr ""
"[OPCIONES]...\n"
"Configurador del Servidor de Terminales de %s\n"
@@ -6906,10 +7009,14 @@ msgstr ""
"--disable : deshabilitar MTS\n"
"--start : iniciar MTS\n"
"--stop : detener MTS\n"
-"--adduser : añadir usuario existente en el sistema a MTS (necesita nombre_de_usuario)\n"
-"--deluser : quitar usuario existente de MTS (necesita nombre_de_usuario)\n"
-"--addclient : añadir máquina cliente a MTS (necesita dirección MAC, IP, nombre imagen nbi)\n"
-"--delclient : quitar máquina cliente de MTS (necesita dirección MAC, IP, nombre imagen nbi)"
+"--adduser : añadir usuario existente en el sistema a MTS (necesita "
+"nombre_de_usuario)\n"
+"--deluser : quitar usuario existente de MTS (necesita "
+"nombre_de_usuario)\n"
+"--addclient : añadir máquina cliente a MTS (necesita dirección MAC, IP, "
+"nombre imagen nbi)\n"
+"--delclient : quitar máquina cliente de MTS (necesita dirección MAC, "
+"IP, nombre imagen nbi)"
#: standalone.pm:100
#, c-format
@@ -6941,28 +7048,38 @@ msgstr ""
"--connect : conectar a la Internet si no está conectado\n"
"--disconnect : desconectar de la Internet si está conectado\n"
"--force : utilizado con (dis)connect: forzar (des)conexión.\n"
-"--status : devuelve 1 si está conectado, 0 en caso contrario.\n"
+"--status : devuelve 1 si está conectado, 0 en caso "
+"contrario.\n"
"--quiet : no ser interactivo. A utilizar con (dis)connect."
#: standalone.pm:112
#, c-format
msgid ""
"[OPTION]...\n"
-" --no-confirmation do not ask first confirmation question in %s Update mode\n"
+" --no-confirmation do not ask first confirmation question in %s Update "
+"mode\n"
" --no-verify-rpm do not verify packages signatures\n"
-" --changelog-first display changelog before filelist in the description window\n"
+" --changelog-first display changelog before filelist in the "
+"description window\n"
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
"[OPCIÓN]...\n"
-" --no-confirmation no hacer la primer apregunta de confirmación en modo %s Update\n"
+" --no-confirmation no hacer la primer apregunta de confirmación en modo "
+"%s Update\n"
" --no-verify-rpm no verificar firmas de los paquetes\n"
-" --changelog-first mostrar changelog antes de lista de archivos en ventana de descripción\n"
-" --merge-all-rpmnew proponer mezclar todos los archivos .rpmnew/.rpmsave encontrados"
+" --changelog-first mostrar changelog antes de lista de archivos en "
+"ventana de descripción\n"
+" --merge-all-rpmnew proponer mezclar todos los archivos .rpmnew/.rpmsave "
+"encontrados"
#: standalone.pm:117
#, c-format
-msgid "[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-usbtable] [--dynamic=dev]"
-msgstr "[--manual] [--device=disp.] [--update-sane=dir_fuente_sane] [--update-usbtable] [--dynamic=disp.]"
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
+"usbtable] [--dynamic=dev]"
+msgstr ""
+"[--manual] [--device=disp.] [--update-sane=dir_fuente_sane] [--update-"
+"usbtable] [--dynamic=disp.]"
#: standalone.pm:118
#, c-format
@@ -6979,13 +7096,14 @@ msgstr ""
#, c-format
msgid ""
"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--testing] [-v|--version] "
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
"\n"
-"Uso: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--testing] [-v|--version] "
+"Uso: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--testing] "
+"[-v|--version] "
-#: timezone.pm:161
-#: timezone.pm:162
+#: timezone.pm:161 timezone.pm:162
#, c-format
msgid "All servers"
msgstr "Todos los servidores"
@@ -7065,6 +7183,55 @@ msgid "Installation failed"
msgstr "Falló la instalación"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "El probador de sonido clásico va a ejecutar los comandos siguientes:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" le dirá qué controlador predet. usa "
+#~ "su\n"
+#~ "tarjeta de sonido\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\n"
+#~ "\" le dirá qué controlador usa la misma\n"
+#~ "en este momento\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" le permitirá verificar si su módulo (controlador) está\n"
+#~ "cargado o no\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" y \"/sbin/chkconfig --list alsa\" le "
+#~ "dirá\n"
+#~ "si los servicios alsa y sonido están configurados para correr en el "
+#~ "nivel\n"
+#~ "de ejecución 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" le dirá si el volumen del sonido está mudo o no\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" le dirá qué programa utiliza la tarjeta de "
+#~ "sonido.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 1267f26f3..327bce0a5 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2013-01-21 16:25+0000\n"
"Last-Translator: Marek Laane <bald@smail.ee>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -26,12 +26,12 @@ msgstr ""
msgid "Please wait"
msgstr "Palun oodake"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Paigaldatakse alglaadurit..."
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -48,12 +48,12 @@ msgstr ""
"\n"
"Kas anda kettale uus ID?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Alglaaduri paigaldamine nurjus. Tekkis järgmine viga:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -70,7 +70,7 @@ msgstr ""
" Seejärel kirjutage: shut-down\n"
"Järgmisel käivitusel peaksite nägema alglaaduri käsurida."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -85,268 +85,268 @@ msgstr ""
"\n"
"Milliselt kettalt Te alglaadimise sooritate?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Alglaaduri paigaldamine"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kuhu soovite alglaaduri paigaldada?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Ketta %s algusesse (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Ketta algusesse (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Juurpartitsiooni algusesse"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Disketil"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Jäta vahele"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Alglaaduri stiil"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Alglaaduri põhiseadistused"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Alglaadur"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Eelistatav alglaadur"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Alglaadimisseade"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Põhivalikud"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "ACPI lubamine"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "SMP lubamine"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "APIC lubamine"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Kohaliku APIC lubamine"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Turvalisus"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Parool"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Paroolid ei klapi"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Palun proovige veel"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "%s puhul ei saa parooli kasutada"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Parool (uuesti)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "/tmp puhastatakse igal käivitumisel"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Initsialiseerimisteade"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware viivitus"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ajapiirang kerneli laadimisel"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "CD-lt laadimine lubatud?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "OF laadimine lubatud?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Vaikimisi OS?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Laadefail"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Juurpartitsioon"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Lisaargumendid"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen'i lisaargument"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Alglaadimiseks on vajalik parool"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Ekraanilahutus"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Võrguprofiil"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nimi"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Vaikimisi"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Nimi ei tohi puududa"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Teil peab olema kerneli laadepilt"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Teil peab olema juurpartitsioon"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Selline nimi on juba kasutusel"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Millist kirjet soovite lisada?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Muu OS (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Muu OS (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Muu OS (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Alglaaduri seadistamine"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -355,47 +355,47 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te võite neid lisada ning olemasolevaid muuta."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "ligipääs X'i rakendustele"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "ligipääs rpm-tööriistadele"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "\"su\" lubamine"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "ligipääs administreerimisfailidele"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "ligipääs võrgutööriistadele"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "ligipääs kompileerimistööriistadele"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Palun andke kasutajanimi"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -404,148 +404,148 @@ msgstr ""
"Kasutajanimi peab algama väiketähega ja tohib sisaldada ainult väikesi "
"tähti, arve ning märke \"-\" ja \"_\""
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "See kasutajanimi on liiga pikk"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "See kasutajanimi on juba lisatud"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Kasutaja ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Grupi ID"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s peab olema arv"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s peab olema suurem kui 500. Kas ikkagi lisada?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Kasutajate haldamine"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Külaliskonto (guest) lubamine"
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Administraatori (root) parool"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Kasutaja lisamine"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Ikoon"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Pärisnimi"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Kasutajatunnus"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Palun oodake, lisatakse andmekandja..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automaatne sisselogimine"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Teie arvutis saab määrata kasutaja, kel on lubatud automaatselt sisse logida."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Selle võimaluse lubamine"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Valige kasutaja:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Valige käivitatav aknahaldur:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Info väljalaske kohta"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Sulge"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Lõppkasutaja litsentsileping"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Välju"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Kas olete selle litsentsiga nõus?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Nõustun"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Keeldun"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Valige palun kasutatav keel"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -557,87 +557,87 @@ msgstr ""
"Need muutuvad kasutatavaks, kui olete paigaldamise\n"
"lõpetanud ja süsteemi taaskäivitanud."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "Mitme keele valimine"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr "Lisakeelte valimine"
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Varasemaga ühilduv kodeering (mitte-UTF-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Kõik keeled"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Keelevalik"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Riik / Piirkond"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Palun valige oma riik"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "See on kõigi riikide täielik nimekiri"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Muud riigid"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Edasijõudnuile"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Sisestusmeetod:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Puudub"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Jagamiseta"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Lubatud kõigile kasutajatele"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Kohandatud"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -652,7 +652,7 @@ msgstr ""
"\n"
"\"Kohandatud\" lubab määrata seda kasutajate kaupa.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -661,7 +661,7 @@ msgstr ""
"NFS: UNIX-i traditsiooniline failijagamissüsteem, mida Mac ja Windows eriti "
"ei toeta."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -670,18 +670,18 @@ msgstr ""
"SMB: failijagamissüsteem, mida toetavad Windows, Mac OS X ja enamik moodsaid "
"Linuxi süsteeme."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Eksportida saab NFS või SMB abil. Palun valige, kumba kasutada."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake käivitamine"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -690,7 +690,7 @@ msgstr ""
"Kasutaja kaupa jagamise lubamine rakendab gruppi \"fileshare\". \n"
"Sellesse gruppi kasutajate lisamiseks saab tarvitada userdraket."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -699,47 +699,47 @@ msgstr ""
"Muudatuste rakendamiseks tuleb end uuesti sisse logida. Vajutage "
"väljalogimiseks OK."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Muudatuste rakendamiseks tuleb end uuesti sisse logida"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Ajavöönd"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Millises ajavöötmes asute?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Kuupäeva, kellaaja ja ajavööndi seadistamine"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Milline on korrektne aeg?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (arvuti sisekell on seatud GMT ajale)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (arvuti sisekell on seatud kohalikule ajale)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP server"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Aja automaatne sünkroniseerimine (NTP abil)"
@@ -1076,7 +1076,7 @@ msgid "Domain Admin Password"
msgstr "Domeeni administraatori parool"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1091,54 +1091,54 @@ msgstr ""
"ehk oodake, kuni laetakse vaikimisi valitu.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LiLo tekstirežiimis"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 graafilise menüüga"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB graafilise menüüga"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB tekstirežiimis"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "/boot on liiga täis"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Alglaadurit ei saa paigaldada %s partitsioonile\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "Alglaaduri seadistust tuleb uuendada, sest partitsioon on ümber seatud"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1147,7 +1147,7 @@ msgstr ""
"Alglaadurit ei saa korrektselt paigaldada. Peate tegema taaskäivituse "
"päästerežiimi (rescue) ja valima \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Alglaaduri taaspaigaldamine"
@@ -1245,7 +1245,7 @@ msgstr "Haakepunkt"
msgid "Options"
msgstr "Eelistused"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Eemalda"
@@ -1351,7 +1351,7 @@ msgid "Continue"
msgstr "Jätka"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1474,7 +1474,7 @@ msgid "More"
msgstr "Veel..."
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Kinnitus"
@@ -2270,8 +2270,8 @@ msgstr "Muuda tüüpi"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Loobu"
@@ -2781,12 +2781,12 @@ msgstr "Partitsioonide jaotus Teie kettal "
msgid "Partitioning failed: %s"
msgstr "Ketta jagamine nurjus: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "JFS-i ei saa kasutada väiksemate kui 16 MB partitsioonide puhul"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS-i ei saa kasutada väiksemate kui 32 MB partitsioonide puhul"
@@ -3285,7 +3285,7 @@ msgstr ""
"- uut ALSA API-t, mis pakub hulga täiustatud võimalusi, kuid nõuab ALSA "
"teegi kasutamist.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Draiver: "
@@ -3338,59 +3338,74 @@ msgstr "Heliprobleemide lahendamine"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Klassikaline võimalus Teie arvuti heliprobleeme kindlaks teha on käivitada "
-"järgmised käsud:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" näitab, millist draiverit Teie\n"
-"helikaart vaikimisi kasutab\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" näitab, millist draiverit\n"
-"praegu kasutatakse\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/lsmod\" näitab, kas vastav moodul (draiver) on hetkel laetud\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" ja \"/sbin/chkconfig --list alsa\"\n"
-"näitavad, kas teenused \"sound\" ja \"alsa\" käivituvad.\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"aumix -q\" näitab, kas heli pole mitte summutatud (M - mute)\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" näitab, milline programm hetkel\n"
-"helikaarti kasutab.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Suvalise draiveri valimine"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Suvalise draiveri valimine"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3470,12 +3485,12 @@ msgstr "Ei"
msgid "Choose a file"
msgstr "Faili valimine"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Lisa"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Muuda"
@@ -3510,7 +3525,7 @@ msgstr "Sellist kataloogi pole"
msgid "No such file"
msgstr "Sellist faili pole"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Ettevaatust, Caps Lock on sees"
@@ -4797,17 +4812,17 @@ msgstr "See ongi %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Füüsiliste osade liigutamine teistele füüsilistele ketastele nurjus"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Füüsiline ketas %s on veel kasutusel"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Eemaldage esmalt loogilised kettad\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5269,12 +5284,12 @@ msgstr "Kas tõesti väljuda?"
msgid "Password is trivial to guess"
msgstr "Parool on liiga lihtne ära arvata"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "Parool peaks pidama vastu lihtsamatele rünnakutele"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Parool tundub olevat turvaline"
@@ -5509,8 +5524,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Autoriseeritakse:\n"
"\n"
@@ -6656,7 +6671,7 @@ msgstr "Võrguhaldus"
msgid "Database Server"
msgstr "Andmebaasi server"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Teenused"
@@ -6671,22 +6686,22 @@ msgstr "Valige, millised teenused tuleks alglaadimisel käivitada"
msgid "%d activated for %d registered"
msgstr "%d aktiveeritud, kokku %d"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "töötab"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "peatatud"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Teenused ja deemonid"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6695,27 +6710,27 @@ msgstr ""
"Selle teenuse kohta\n"
"ei oska lisainfot anda."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Vajaduse korral"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Alglaadimisel"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Käivita"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Peata"
@@ -7054,6 +7069,50 @@ msgid "Installation failed"
msgstr "Paigaldamine nurjus"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Klassikaline võimalus Teie arvuti heliprobleeme kindlaks teha on "
+#~ "käivitada järgmised käsud:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" näitab, millist draiverit Teie\n"
+#~ "helikaart vaikimisi kasutab\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" näitab, millist draiverit\n"
+#~ "praegu kasutatakse\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" näitab, kas vastav moodul (draiver) on hetkel laetud\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" ja \"/sbin/chkconfig --list alsa\"\n"
+#~ "näitavad, kas teenused \"sound\" ja \"alsa\" käivituvad.\n"
+#~ "\n"
+#~ "- \"aumix -q\" näitab, kas heli pole mitte summutatud (M - mute)\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" näitab, milline programm hetkel\n"
+#~ "helikaarti kasutab.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index f8696f28c..6c3fa593d 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2010-06-29 13:27+0200\n"
"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Basque <kde-i18n-doc@kde.org>\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Lokalize 1.0\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -27,12 +27,12 @@ msgstr ""
msgid "Please wait"
msgstr "Itxoin mesedez"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Abio zamatzailearen instalaketa egiten ari da"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -50,12 +50,12 @@ msgstr ""
"\n"
"Bolumen ID berria ezarri nahi duzu?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Abio zamatzailearen instalaketak huts egin du. Akats hau gertatu da:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -73,7 +73,7 @@ msgstr ""
" Gero, idatzi: shut-down\n"
"Hurrengo abiaraztean abio zamatzailearen gonbita ikusi beharko zenuke."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -88,268 +88,268 @@ msgstr ""
"\n"
"Zein unitatetik abiatzen duzu?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Abio zamatzailearen instalaketa"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Non instalatu nahi duzu abio zamatzailea?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "%s unitatearen lehen sektorea (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Unitatearen lehen sektorea (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Erro partizioko lehen sektorea"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Disketean"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Utzi"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Abio tankera konfiguraketa"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Abio zamatzailearen aukera nagusiak"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Abio zamatzailea"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Erabili beharreko abio zamatzailea"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Abio gailua"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Aukera nagusiak"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Imajina lehenetsia abiarazi arteko denbora"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Gaitu ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Gaitu SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Gaitu APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Gaitu bertako APIC"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Segurtasuna"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasahitza"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Pasahitzak ez datoz bat"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Saiatu berriro"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Ezin duzu %s-rekin pasahitz bat erabili"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasahitza (berriro)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Garbitu /tmp abiatzen den bakoitzean"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Hasierako mezua"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware-ren atzerapena"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Nukleoaren abioaren denbora-muga"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Gaitu CDtik abiaraztea?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Gaitu OF abiaraztea?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "SE lehenetsia?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Imajina"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Erroa"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Erantsi"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen erantsi"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Abiarazteko pasahitza behar da"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Bideo modua"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Sare profila"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiketa"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Lehenetsia"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "BideorikEz"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Ez da etiketa hutsik onartzen"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Nukleo-imajina bat zehaztu behar duzu"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Erroko partizio bat zehaztu behar duzu"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Etiketa hau jadanik erabili da"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Zer sarrera-mota gehitu nahi duzu?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Beste SE bat (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Beste SE bat (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Beste SE bat (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Abio zamatzailearen konfiguraketa"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -358,47 +358,47 @@ msgstr ""
"Hona hemen abioko menuko orain arteko sarrerak.\n"
"Sarrera gehgiago sor ditzakezu, edo lehendik daudenak aldatu."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "X programen atzipena"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "rpm tresnen atzipena"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "onartu \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "administrazio-fitxategien atzipena"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "sare-tresnen atzipena"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "konpilazio-tresnen atzipena"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s jadanik gehituta)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Eman erabiltzaile-izen bat"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -407,147 +407,147 @@ msgstr ""
"Erabiltzaile izena letra minuskulaz hasi behar da eta jarraian soilik letra "
"minuskulak, zenbakiak, `-' eta `_' izan ditzake"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Erabiltzaile-izena luzeegia da"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Erabiltzaile ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Talde ID"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s zenbakia izan behar da"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s 500 gainetik egon behar luke. Onartu hala ere?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Erabiltzaile kudeaketa"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Gaitu gonbidatuaren kontua"
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ezarri administratzaile (root) pasahitza"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Sartu erabiltzaile bat"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Ikonoa"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Benetako izena"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Saioa hasteko izena"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Itxoin mesedez, euskarria eransten..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatikoki hasi saioa"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Ezaugarri hau erabili"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Aukeratu erabiltzaile lehenetsia:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Askapen Oharrak"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Itxi"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Lizentzia-kontratua"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Irten"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Lizentzia hau onartzen duzu ?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Onartu"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Ezetsi"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Aukeratu erabiltzeko hizkuntza bat"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,87 +558,87 @@ msgstr ""
"instalatu nahi dituzun hizkuntzak. Instalazioa osatzean eta\n"
"sistema berrabiaraztean, erabilgarri egongo dira."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Hizkuntza anitz"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Kodeketa bateragarritasun zaharra (ez UTF-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Hizkuntza guztiak"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Hizkuntza aukera"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Estatua / Eskualdea"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Aukeratu zure herrialdea edo estatua"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hona hemen herrialde erabilgarri guztien zerrenda"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Beste Herrialde batzuk"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Aurreratua"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Sarrera metodoa:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Bat ere ez"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Ez partekatu"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Eman baimena erabiltzaile guztiei"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Pertsonalizatua"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -653,7 +653,7 @@ msgstr ""
"\n"
"\"Custom\"ek erabiltzaileen araberako banaketa egiteko aukera ematen du.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -662,7 +662,7 @@ msgstr ""
"NFS: usadioz Unixen fitxategiak elkarbanatzeko sistema, Mac eta Windowsen "
"euskarri gutxiago duena."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -671,18 +671,18 @@ msgstr ""
"SMB: fitxategiak elkarbanatzeko sistema, Windows, Mac OS X eta gaur egungo "
"hainbat Linux sistemek erabiltzen dutena."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "NFS edo SMB-rekin esporta dezakezu. Hautatu zein erabili nahi duzun."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Abiarazi userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -692,7 +692,7 @@ msgstr ""
"taldea erabiltzen du. \n"
"Userdrake erabil dezakezu talde honetan erabiltzaileak gehitzeko."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -701,48 +701,48 @@ msgstr ""
"Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten. "
"Sakatu Ados saioa orain amaitzeko."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Saioa amaitu eta berriro hasi behar duzu aldaketek eragina izan dezaten"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Ordu-zona"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Zein da zure ordu-zona?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Data, ordulari eta ordu gune ezarpenak"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Zein da ordu onena?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (hardware ordularia UTC-ra ezarria)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (hardware ordularia bertako ordura ezarria)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP Zerbitzaria"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
@@ -1086,7 +1086,7 @@ msgid "Domain Admin Password"
msgstr "Domeinu-administratzailearen pasahitza"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1101,47 +1101,47 @@ msgstr ""
"itxaron lehenespenez berrabiarazi arte.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO testu-menuarekin"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB menu grafikoarekin"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB menu grafikoarekin"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB testu menuarekin"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "ez dago nahikoa leku /boot-en"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Abioko kargatzailea ezin da instalatu %s partizio batean\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1150,7 +1150,7 @@ msgstr ""
"Abioko kargatzailearen konfigurazioa eguneratu egin behar da, partizioa "
"berriro zenbakitu delako"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1159,7 +1159,7 @@ msgstr ""
"Abioko kargatzailea ezin da behar bezala instalatu. Berrabiarazi "
"berreskuratzea, eta hautatu \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Berriro instalatu abioko kargatzailea"
@@ -1257,7 +1257,7 @@ msgstr "Muntatze-puntua"
msgid "Options"
msgstr "Aukerak"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Kendu"
@@ -1365,7 +1365,7 @@ msgid "Continue"
msgstr "Jarraitu"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1487,7 +1487,7 @@ msgid "More"
msgstr "Gehiago"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Baieztapena"
@@ -2289,8 +2289,8 @@ msgstr "Aldatu mota"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Utzi"
@@ -2802,12 +2802,12 @@ msgstr "Hemen dago zure disko unitatearen edukia"
msgid "Partitioning failed: %s"
msgstr "Partizioak huts egin du: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Ezin da JFS erabili 16MB baino gutxiagoko partizioetarako"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Ezin da ReiserFS erabili 32MB baino gutxiagoko partizioetarako"
@@ -3307,7 +3307,7 @@ msgstr ""
"- ALSA API berria, hobetutako eginbide asko dituena, baina ALSA liburutegia "
"erabiltzea eskatzen duena.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Kontrolatzailea:"
@@ -3361,60 +3361,74 @@ msgstr "Soinu-arazoak konpontzea"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Soinu-probatzaileak ondorengo komandoak exekutatzen ditu:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" : zure txartelaren kontrolatzaile \n"
-"lehenetsia zein den adierazten du\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" : unean zein kontrolatzaile\n"
-"darabilen adierazten du\n"
"\n"
-"- \"/sbin/lsmod\" : bere modulua (kontrolatzailea) kargatuta dagoen ala\n"
-"ez begiratzeko aukera emango dizu\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" eta \"/sbin/chkconfig --list alsa\" :\n"
-"soinu- eta alsa-zerbitzuak 3. mailan (initlevel 3) exekutatzeko \n"
-"konfiguratuta dauden adierazten du\n"
"\n"
-"- \"aumix -q\" : soinuaren bolumena mutututa dagoen edo ez adierazten du\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" : soinu-txartela erabiltzen duten programak\n"
-"adierazten ditu.\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Edozein kontrolatzaile hartuko dut"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Kontrolatzaile arbitrario bat aukeratzen"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3495,12 +3509,12 @@ msgstr "Ez"
msgid "Choose a file"
msgstr "Aukeratu fitxategi bat"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Gehitu"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Aldatu"
@@ -3535,7 +3549,7 @@ msgstr "Ez dago horrelako direktoriorik"
msgid "No such file"
msgstr "Ez dago horrelako fitxategirik"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Kontuz, Blok Maius gaituta dago"
@@ -4824,17 +4838,17 @@ msgstr ""
"Erabilitako luzapen fisikoak beste bolumen fisiko batzuetara mugitzeko "
"saioak huts egin du"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "%s bolumen fisikoa oraindik erabilia izaten ari da"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Kendu bolumen logikoak lehendabizi\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Abio-zamatzaileak ezin du /boot bolumen fisiko anitzetan maneiatu"
@@ -5287,12 +5301,12 @@ msgstr "Ziur zaude muntaia puntu hau ezabatu nahi duzu?"
msgid "Password is trivial to guess"
msgstr "Pasahitza antzematen errazegia da"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "Pasahitzak oinarrizko erasoa jasan beharko luke"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Pasahitza segurua dirudi"
@@ -5530,8 +5544,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Baimendu:\n"
"\n"
@@ -6716,7 +6730,7 @@ msgstr "Urruneko administrazioa"
msgid "Database Server"
msgstr "Datu-baseen zerbitzaria"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Zerbitzuak"
@@ -6731,22 +6745,22 @@ msgstr "Aukeratu zein zerbitzu abiarazi behar diren automatikoki abioan"
msgid "%d activated for %d registered"
msgstr "%d aktibatuta / %d erregistratuta"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "martxan"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "geldituta"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Zerbitzuak eta daemon-ak"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6755,27 +6769,27 @@ msgstr ""
"Ez dago zerbitzu honi buruzko\n"
"informazio gehiago."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Informazioa"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Eskatutakoan hasi"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Abioan"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Hasi"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Gelditu"
@@ -6943,8 +6957,8 @@ msgstr ""
"--disable : ezgaitu MTS\n"
"--start : abiarazi MTS\n"
"--stop : gelditu MTS\n"
-"--adduser : erantsi existiten den sistema erabiltzaile bat MTS-ra"
-"(erabiltzaile-izena behar da)\n"
+"--adduser : erantsi existiten den sistema erabiltzaile bat MTS-"
+"ra(erabiltzaile-izena behar da)\n"
"--deluser : ezabatu existitzen den sistema erabiltzaile bat MTS-tik "
"(erabiltzaile-izena behar da)\n"
"--addclient : erantsi bezero makina bat MTS-ra (MAC helbidea, IP, nbi "
@@ -7115,6 +7129,52 @@ msgid "Installation failed"
msgstr "Instalazioak huts egin du"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Soinu-probatzaileak ondorengo komandoak exekutatzen ditu:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" : zure txartelaren kontrolatzaile \n"
+#~ "lehenetsia zein den adierazten du\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" : unean zein kontrolatzaile\n"
+#~ "darabilen adierazten du\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" : bere modulua (kontrolatzailea) kargatuta dagoen ala\n"
+#~ "ez begiratzeko aukera emango dizu\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" eta \"/sbin/chkconfig --list alsa\" :\n"
+#~ "soinu- eta alsa-zerbitzuak 3. mailan (initlevel 3) exekutatzeko \n"
+#~ "konfiguratuta dauden adierazten du\n"
+#~ "\n"
+#~ "- \"aumix -q\" : soinuaren bolumena mutututa dagoen edo ez adierazten du\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" : soinu-txartela erabiltzen duten "
+#~ "programak\n"
+#~ "adierazten ditu.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index d8da8d0d7..438e875eb 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-fa\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2005-02-26 06:31+0100\n"
"Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n"
"Language-Team: Persian\n"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -24,12 +24,12 @@ msgstr ""
msgid "Please wait"
msgstr "لطفاً صبر کنید"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "نصب بارگذارآغازگر در پیشروی است"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,12 +46,12 @@ msgstr ""
"\n"
"شناسه‌ی جدید حجم گذارده شود؟ "
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "نصب بارگذار آغازگر شکست خورد. خطای بدنبال آمده رخ داد:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -70,7 +70,7 @@ msgstr ""
" سپس تایپ کنید: shut-down\n"
"در آغازگری بعدی بایستی اعلان بارگذار آغازگر را مشاهده کنید."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -85,269 +85,269 @@ msgstr ""
"\n"
"شما از روی کدام دستگاه آغازگری می‌کنید؟"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "نصب بارگذارآغازگر در پیشروی است"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "کجا می‌خواهید بارگذارآغازگر را نصب کنید؟"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "اولین بند گرداننده (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "اولین بند گرداننده (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "اولین بند قسمت‌بندی ریشه"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "بر دیسکچه"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "پرش"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "پیکربندی سبک آغازگری"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "گزینه‌های اصلی بارگذارآغازگری"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "بارگذار آغازگر"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "بارگذارآغازگری برای استفاده"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "دستگاه آغازگری"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "تأخیر قبل از آغازگری تصویر پیش‌فرض"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "بکار انداختن ACPI"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "بکار انداختن ACPI"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "بکار انداختن ACPI"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "بکار انداختن ACPI"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "امنیت"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "گذرواژه"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "گذرواژه‌ها مطابقت نمی‌کنند"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "لطفاً دوباره امتحان کنید"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"نمی‌توانید از سیستم پرونده‌ی رمزگذاری شده برای نقطه سوارسازی %s استفاده کنید"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "گذرواژه (دوباره)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "پاک کردن شاخه‌ی /tmp در هر آغازگری"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "پیغام init"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "تأخیر Firmware متن باز"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "مدت انتظار آغازگری هسته"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "بکار انداختن آغازگری سی‌دی؟"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "بکار انداختن آغازگری OF؟"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "سیستم‌عامل پیش‌فرض؟"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "تصویر"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "ریشه"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "پیوست به انتها"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "حالت ویدیوئی"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "نمایه‌ی شبکه"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "برچسب"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "پیش‌فرض"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "بدون‌ ویدیو"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "برچسب خالی اجازه داده نمی‌شود"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "تصویر هسته‌ایی را باید مشخص کنید"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "قسمت‌بندی ریشه‌ایی را باید مشخص کنید"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "این جدول از قبل مورد استفاده است"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "چه نوع از ورودیی را می‌خواهید اضافه کنید؟"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "لینوکس"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "سیستم عامل دیگر (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "سیستم عامل دیگر (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "سیستم عامل دیگر (ویندوز...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "پیکربندی سبک آغازگری"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -356,196 +356,196 @@ msgstr ""
"اینها فعلاً ورودی‌های منوی آغازگری شما هستند.\n"
"می‌توانید ورودی‌های بیشتری را ایجاد کرده یا ورودی‌های موجود را تغییر دهید."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "دستیابی به برنامه‌های X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "دستیابی به ابزارهای rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "اجازه دادن به \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "دستیابی به پرونده‌های مدیریت"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "دستیابی به ابزارهای شبکه"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "دستیابی به ابزارهای کمپایل کردن"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s از قبل اضافه شده است)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "لطفاً نام کاربریی را بدهید"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "نام کاربر باید فقط دارای حروف کوچک، `-' و `_' باشد"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "نام کاربر بسیار طولانی است"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "این نام کاربر از قبل اضافه شده است"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "شناسه‌ی کاربر"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "شناسه‌ی گروه"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "گزینه‌ی %s باید یک عدد باشد!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "نام‌کاربر"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "تعیین گذرواژه‌ی مدیر"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"کاربری را وارد کنید\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "شمایل"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "نام واقعی"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "نام ثبت‌ورود"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "پوسته"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "لطفا صبر کنید، در حال افزودن رسانه..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "ثبت‌ورود خودکار"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "می‌توانم رایانه‌اتان را برای ثبت‌ورود خودکار یک کاربر برپاسازی کنم."
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "آیا می‌خواهید از این قابلیت استفاده کنید؟"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "انتخاب کردن کاربر پیش‌فرض:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "انتخاب کردن مدیر پنجره‌ی برای اجرا:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "یادداشتهای پخش"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "بستن"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "توافق‌نامه‌ی مجوز"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "ترک"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "یکی دیگر دارید؟"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "پذیرش"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "امتناع"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "لطفاً زبان برای استفاده را انتخاب کنید"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -556,87 +556,87 @@ msgstr ""
"را که می‌خواهید نصب کنید انتخاب نمایید. آنها وقتی نصب شما تکمیل \n"
"شود و شما سیستم خود را راه‌اندازی مجدد کنید قابل دسترسی می‌باشند."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "ماندریبا لینوکس"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "همه‌ی زبان‌ها"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "همه‌ی زبان‌ها"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "گزینش زبان"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "کشور / منطقه"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "لطفاً کشور خود را انتخاب کنید"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "این لیست کامل کشورهای در دسترس می‌باشد"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "کشورهای دیگر"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "پیشرفته"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "روش درونداد:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "هيچکدام"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "بدون اشتراک"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "اجازه دادن به تمام کاربرها"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "سفارشی"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -651,7 +651,7 @@ msgstr ""
"\n"
"\"سفارشی\" اجازه‌ی هر-کاربر تکی را می‌دهد.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -659,7 +659,7 @@ msgid ""
msgstr ""
"NFS: سیستم سنتی اشتراک پرونده یونیکس، با پشتیبانی کمتر بر Mac و ویندوز."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -668,7 +668,7 @@ msgstr ""
"SMB: سیستم اشتراک پرونده که بوسیله ویندوز، Mac OS X و بسیاری از سیستم‌‌های "
"مدرن لینوکس استفاده می‌گردد."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -676,12 +676,12 @@ msgstr ""
"می‌توانید با استفاده از NFS یا SMB صادر کنید. لطفاً آن را که می‌خواهید استفاده "
"کنید را انتخاب کنید."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "راه‌اندازی userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -690,54 +690,54 @@ msgstr ""
"اشتراک هر-کاربر از گروه \"fileshare\" استفاده می‌کند. \n"
"برای افزودن کاربری به این گروه می‌توانید از userdrake استفاده کنید."
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "باید ثبت خروج کرده و باز برگردید برای اینکه تغییرات تأثیر کنند"
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "باید ثبت خروج کرده و باز برگردید برای اینکه تغییرات تأثیر کنند"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "زمان منطقه‌ای"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "منطقه‌ی زمانی شما کدام است؟"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "گذاردن ساعت سخت‌افزار به GMT"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "گذاردن ساعت سخت‌افزار به GMT"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "کارگزار NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "هم‌گاه‌سازی خودکار زمان (با استفاده از NTP)"
@@ -1070,7 +1070,7 @@ msgstr "گذرواژه‌ی مدیریت دامنه"
# this text MUST be in ASCII! it has to be rewritten in ascii-transliteration
# of Farsi (or left in english)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1085,47 +1085,47 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO با منوی متنی"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "فضای کافی در شاخه‌ی /boot وجود ندارد"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "نمی‌توانید بارگذارآغازگر را بر یک قسمت‌بندی %s نصب کنید\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1134,7 +1134,7 @@ msgstr ""
"پیکربندی بارگذار آغازگر باید بروزسازی شود برای اینکه قسمت‌بندی شماره‌گذاری "
"مجدد گردیده است"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1143,7 +1143,7 @@ msgstr ""
"بارگذار آغازگر نمی‌تواند بدرستی نصب گردد. شما باید با گزینه‌ی نجات آغازگری "
"کرده و \"%s\" را انتخاب کنید"
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "نصب-مجدد بارگذار آغازگر"
@@ -1243,7 +1243,7 @@ msgstr "نقطه‌ی سوارکردن"
msgid "Options"
msgstr "گزینه‌ها"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "برداشتن"
@@ -1349,7 +1349,7 @@ msgid "Continue"
msgstr "ادامه"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1471,7 +1471,7 @@ msgid "More"
msgstr "بیشتر"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "پیکربندی"
@@ -2263,8 +2263,8 @@ msgstr "تغییر نوع"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "لغو"
@@ -2775,12 +2775,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "قسمت‌بندی ناموفق بود: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "نمی‌توانید از JFS برای قسمت‌بندی‌های کوچکتر از ۱۶ مگابایت استفاده کنید"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3281,7 +3281,7 @@ msgstr ""
"- ALSA API جدید که قابلیت‌های بهینه شده‌ی بسیاری را عرضه می‌دارد ولی با لزوم "
"استفاده از کتابخانه ALSA .\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "راه‌انداز:"
@@ -3334,61 +3334,74 @@ msgstr "اشکال‌زدایی صوت"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"آزمایش‌گر اشکال صوت کلاسیک فرمان‌های بدنبال آمده را برای اجرا دارد:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" به شما می‌گوید که کارت شما از چه "
-"راه‌اندازی\n"
-"توسط پیش‌فرض استفاده می‌کند.\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" به شما می‌گوید از چه راه‌اندازی در\n"
-"حال حاضر استفاده می‌شود\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/lsmod\" شما را برای بررسی این که آیا راه‌انداز بارگذاری شده یا نه\n"
-"قادر می‌سازد\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" و \"/sbin/chkconfig --list alsa\" به \n"
-"شما می‌گوید که آیا صوت و سرویس‌های alsa برای اجرا در initlevel 3 \n"
-"پیکربندی شده‌اند\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"aumix -q\" به شما می‌کوید که آیا حجم صدا خاموش است یا نه\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" به شما می‌گوید کدام برنامه از کارت صوت استفاده "
-"می‌کند.\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "اجازه بده تا هر راه‌اندازی را انتخاب کنم"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "انتخاب یک راه‌انداز دلخواه"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3468,12 +3481,12 @@ msgstr "نه"
msgid "Choose a file"
msgstr "انتخاب پرونده‌ای"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "افزودن"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "تغییر"
@@ -3508,7 +3521,7 @@ msgstr "چنین شاخه‌ای نیست"
msgid "No such file"
msgstr "چنین پرونده‌ای نیست"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4795,17 +4808,17 @@ msgstr "به %s خوش آمدید"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "نخست حجم‌های منطقی برداشته شوند\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5232,12 +5245,12 @@ msgstr "آیا می‌خواهید بر این دکمه کلیک کنید؟"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "گذرواژه برای کاربر"
@@ -5469,8 +5482,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"اجازه دادن:\n"
"\n"
@@ -6609,7 +6622,7 @@ msgstr "مدیریت از راه دور"
msgid "Database Server"
msgstr "کارگزار‌ بانک اطلاعات"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "سرویس‌ها"
@@ -6624,22 +6637,22 @@ msgstr "انتخاب سرویس‌هایی که باید بطور خودکار
msgid "%d activated for %d registered"
msgstr "%d فعال شده برای %d ثبت شده"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "در حال اجرا است"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "متوقف شد."
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "سرویس‌ها و شبح‌ها"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6648,27 +6661,27 @@ msgstr ""
"هیچ اطلاعات بیشتری\n"
"درباره‌ی این سرویس، متأسفم."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "اطلاعات"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "شروع در صورت تقاضا"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "در آغازگری"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "شروع"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "ایست"
@@ -7006,6 +7019,54 @@ msgid "Installation failed"
msgstr "نصب شکست خورد"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "آزمایش‌گر اشکال صوت کلاسیک فرمان‌های بدنبال آمده را برای اجرا دارد:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" به شما می‌گوید که کارت شما از چه "
+#~ "راه‌اندازی\n"
+#~ "توسط پیش‌فرض استفاده می‌کند.\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" به شما می‌گوید از چه راه‌اندازی "
+#~ "در\n"
+#~ "حال حاضر استفاده می‌شود\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" شما را برای بررسی این که آیا راه‌انداز بارگذاری شده یا "
+#~ "نه\n"
+#~ "قادر می‌سازد\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" و \"/sbin/chkconfig --list alsa\" به \n"
+#~ "شما می‌گوید که آیا صوت و سرویس‌های alsa برای اجرا در initlevel 3 \n"
+#~ "پیکربندی شده‌اند\n"
+#~ "\n"
+#~ "- \"aumix -q\" به شما می‌کوید که آیا حجم صدا خاموش است یا نه\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" به شما می‌گوید کدام برنامه از کارت صوت "
+#~ "استفاده می‌کند.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
@@ -7261,8 +7322,8 @@ msgstr "نصب شکست خورد"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index 43c7b5860..cc6597340 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -16,7 +16,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX-fi\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2011-08-08 22:43+0300\n"
"Last-Translator: Jani Välimaa <wally@mageia.org>\n"
"Language-Team: Finnish <mageia-i18n@mageia.org>\n"
@@ -26,7 +26,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -35,12 +35,12 @@ msgstr ""
msgid "Please wait"
msgstr "Odota hetki"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Käyttöjärjestelmän lataimen asennus käynnissä"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -58,12 +58,12 @@ msgstr ""
"\n"
"Määritetäänkö uusi Volume ID?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Käynnistyslataimen asennus epäonnistui. Tapahtui seuraava virhe:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -81,7 +81,7 @@ msgstr ""
" shut-down\n"
"Seuraavalla käynnistyskerralla käynnistyslataimen pitäisi näkyä."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -96,268 +96,268 @@ msgstr ""
"\n"
"Miltä kiintolevyltä käynnistys tapahtuu?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Käynnistyslataimen asennus"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Minne käyttöjärjestelmän latain asennetaan?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Kiintolevyn %s käynnistyssektorille (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Kiintolevyn käynnistyssektorille (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Juuriosion ensimmäiselle sektorille"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Levykkeelle"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Ohita"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Käynnistystavan asetukset"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Käynnistyslataimen asetukset"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Käynnistyslatain"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Käytettävä käynnistyslatain"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Käynnistyslaite"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Asetukset"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Viive ennen oletusjärjestelmän käynnistystä"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Ota ACPI käyttöön"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Ota moniprosessorituki käyttöön"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Ota APIC käyttöön"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Ota paikallinen APIC käyttöön"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Tietoturva"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Salasana"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Salasanat eivät täsmää"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Yritä uudelleen"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Et voi käyttää salasanaa %s kanssa"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Tyhjennä /tmp jokaisella käynnistyskerralla"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Käynnistysviesti"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware -viive"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ytimen käynnistämisen aikakatkaisu"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Ota käynnistäminen CD/DVD-levyltä käyttöön?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Ota Open Firmware -käynnistäminen käyttöön?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Oletuskäyttöjärjestelmä?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Kuva"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Juuri"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Lisäys"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen-lisäys"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Käynnistys vaati salasanan"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Näyttötila"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Verkkoprofiili"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nimi"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Oletus"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "Ei näyttöä"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Tyhjää nimiä ei sallita"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Sinun täytyy määritellä ydin"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Sinun täytyy määritellä juuriosio"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Nimi on jo käytössä"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Minkä tyyppisen tietueen haluat lisätä?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Muu käyttöjärjestelmä (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Muu käyttöjärjestelmä (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Muu käyttöjärjestelmä (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Käynnistyslataimen asetukset"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -366,47 +366,47 @@ msgstr ""
"Tämän hetkiset käynnistysvalikon tietueet.\n"
"Voit lisätä uusia tai muuttaa olemassa olevia."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "Oikeudet X-ohjelmiin"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "Oikeudet RPM-työkaluihin"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "Salli \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "Oikeudet ylläpidollisiin tiedostoihin"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "Oikeudet verkkotyökaluihin"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "Oikeudet ohjelmointityökaluihin"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(lisätty jo: %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Anna käyttäjätunnus"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -414,148 +414,148 @@ msgid ""
msgstr ""
"Käyttäjätunnus saa sisältää vain pieniä kirjaimia, numeroita ja merkit - ja _"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Käyttäjätunnus on liian pitkä"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Käyttäjätunnus on jo olemassa"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Käyttäjän tunnistenumero (UID)"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Ryhmän tunnistenumero (GID)"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s pitää olla luku"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s pitäisi olla suurempi kuin 500. Jatka silti?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Käyttäjien hallinta"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Aktivoi vierastili"
# Asennuksen sivuvalikko
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Aseta pääkäyttäjän (root) salasana"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Lisää käyttäjä"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Kuvake"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Oikea nimi"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Käyttäjätunnus"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Komentotulkki"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Odota, lisätään lähteitä..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Yksi käyttäjä voidaan asettaa kirjautumaan sisään automaattisesti."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Käytä automaattista kirjautumista"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Valitse oletuskäyttäjä:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Julkaisutiedote"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Sulje"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Käyttöoikeussopimus"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Lopeta"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Hyväksy käyttöoikeussopimus?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Hyväksy"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Kieltäydy"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Valitse käytettävä kieli"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -566,89 +566,89 @@ msgstr ""
"kielet. Kielet ovat käytettävissä asennuksen ja koneen\n"
"uudelleenkäynnistämisen jälkeen."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "Asenna useita kieliä"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Vanhempi ei-UTF-8-merkistö"
# Asennuksen sivuvalikko
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Kaikki kielet"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Kielivalinta"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Maa / alue"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Valitse maa, jossa olet"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Lista kaikista käytettävissä olevista maista"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Muut maat"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Lisäasetukset"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Syöttömenetelmä:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Ei mitään"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Ei jaettu"
# Asennuksen sivuvalikko
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Salli kaikille käyttäjille"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Mukautettu"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -663,7 +663,7 @@ msgstr ""
"\n"
"\"Mukautettu\" sallii käyttäjäkohtaiset oikeudet.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -672,7 +672,7 @@ msgstr ""
"NFS: perinteinen Unix-tiedostonjakojärjestelmä, jota Mac ja Windows tukevat "
"huonosti."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -681,7 +681,7 @@ msgstr ""
"SMB: tiedostonjakojärjestelmä, jota käyttävät Windows, Mac OS X ja monet "
"nykyaikaiset Linux-järjestelmät."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -689,12 +689,12 @@ msgstr ""
"Tiedostoja voidaan jakaa sekä NFS:llä että Samballa. Valitse kumpaa "
"käytetään."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Käynnistä Userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -703,7 +703,7 @@ msgstr ""
"Käyttäjäkohtainen jako käyttää ryhmää \"fileshare\".\n"
"Käyttäjä voidaan lisätä ryhmään Userdrake:n avulla."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -712,47 +712,47 @@ msgstr ""
"Muutosten ottaminen käyttöön vaatii uloskirjautumisen. Valitse OK "
"kirjautuaksesi ulos."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Muutosten ottaminen käyttöön vaatii uloskirjautumisen."
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Aikavyöhyke"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Valitse järjestelmän aikavyöhyke"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Päivämäärän, kellonajan ja aikavyöhykkeen asetukset"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Valitse aika, joka on lähimpänä oikeata aikaa"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (laitteistokello UTC-ajassa)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (laitteistokello paikallisessa ajassa)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP-palvelin"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon tahdistus NTP:n avulla"
@@ -1104,7 +1104,7 @@ msgstr "Toimialueen pääkäyttäjän salasana"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1119,47 +1119,47 @@ msgstr ""
"odota oletuskaynnistysta.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO tekstipohjaisella valikolla"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB graafisella valikolla"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB graafisella valikolla"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB tekstipohjaisella valikolla"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "/boot-osiolla tai -hakemistossa ei ole tarpeeksi vapaata tilaa"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Käyttöjärjestelmän lataajaa ei voida asentaa osiolle %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1168,7 +1168,7 @@ msgstr ""
"Käynnistyslataimen asetukset pitää päivittää, koska levyosiot on numeroitu "
"uudelleen"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1178,7 +1178,7 @@ msgstr ""
"rescue-tilaan ja valita \"%s\""
# Asennuksen sivuvalikko
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Asenna käynnistyslatain uudelleen"
@@ -1277,7 +1277,7 @@ msgstr "Liitospiste"
msgid "Options"
msgstr "Valinnat"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Poista"
@@ -1385,7 +1385,7 @@ msgid "Continue"
msgstr "Jatka"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1507,7 +1507,7 @@ msgid "More"
msgstr "Lisää"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Vahvistaminen"
@@ -2314,8 +2314,8 @@ msgstr "Muuta tyyppiä"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Peruuta"
@@ -2833,12 +2833,12 @@ msgstr "Kiintolevyn sisältö"
msgid "Partitioning failed: %s"
msgstr "Osiointi epäonnistui: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "JFS-tiedostojärjestelmää ei voida käyttää alle 16 Mt osioilla"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS-tiedostojärjestelmää ei voida käyttää alle 32 Mt osioilla"
@@ -3336,7 +3336,7 @@ msgstr ""
"- uusi ALSA-api, joka tarjoaa useita parannettuja ominaisuuksia,\n"
"mutta vaatii ALSA-kirjaston käyttöä.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Ajuri:"
@@ -3389,60 +3389,74 @@ msgstr "Äänen vianetsintä"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Klassinen tapa etsiä virheitä ääniasetuksissa on suorittaa \n"
-"seuraavat komennot:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" kertoo mitä ajuria äänikorttisi \n"
-"käyttää oletuksena.\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" kertoo mitä ajuria äänikorttisi\n"
-"käyttää tällä hetkellä.\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/lsmod\" komennolla tarkistat onko äänikortin moduuli (ajuri)\n"
-"ladattu vai ei .\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" ja \"/sbin/chkconfig --list alsa\"\n"
-"kertoo sinulle jos ääni- ja ALSA-palvelut ovat asetettu toimimaan\n"
-"initlevel 3 -tasossa.\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"aumix -q\" kertoo onko ääni mykistetty vai ei.\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" kertoo mikä ohjelma käyttää äänikorttia.\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Anna valita mikä ajuri tahansa"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Summittaisen ajurin valinta"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3522,12 +3536,12 @@ msgstr "Ei"
msgid "Choose a file"
msgstr "Valitse tiedosto"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Lisää"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Muokkaa"
@@ -3562,7 +3576,7 @@ msgstr "Hakemistoa ei ole olemassa"
msgid "No such file"
msgstr "Tiedostoa ei ole olemassa"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "HUOM: Caps Lock on käytössä"
@@ -4850,17 +4864,17 @@ msgstr "Tervetuloa %s:n"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Käytettyjen fyysisten jatkeiden siirto toiselle levylle epäonnistui"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Fyysinen osio %s on edelleen käytössä"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Poista ensin loogiset osiot\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5429,12 +5443,12 @@ msgstr "Haluatko varmasti poistaa liitospisteen?"
msgid "Password is trivial to guess"
msgstr "Salasana on yksinkertainen arvata"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "Salasanan pitäisi kestää normaalit hyökkäykset"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Salasana vaikuttaa turvalliselta"
@@ -5669,20 +5683,20 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Salli:\n"
"\n"
-"- kaikki palvelut joita ohjataan tcp_wrappers:ien kautta (katso hosts.deny"
-"(5)) jos valittuna on asetus \"KAIKKI\",\n"
+"- kaikki palvelut joita ohjataan tcp_wrappers:ien kautta (katso hosts."
+"deny(5)) jos valittuna on asetus \"KAIKKI\",\n"
"\n"
"- vain paikalliset palvelut, jos valittuna on asetus \"PAIKALLINEN\",\n"
"\n"
"- ei mitään palvelua, jos valittuna on asetus \"EI\". \n"
"\n"
-"Salliaksesi tarvitsemasi palvelut, käytä /etc/hosts.allow (katso hosts.allow"
-"(5))."
+"Salliaksesi tarvitsemasi palvelut, käytä /etc/hosts.allow (katso hosts."
+"allow(5))."
#: security/help.pm:63
#, c-format
@@ -6837,7 +6851,7 @@ msgstr "Etähallinta"
msgid "Database Server"
msgstr "Tietokantapalvelin"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Palvelut"
@@ -6852,22 +6866,22 @@ msgstr "Valitse automaattisesti käynnistettävät palvelut"
msgid "%d activated for %d registered"
msgstr "%d aktivoitu, %d asennettu"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "käynnissä"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "pysäytetty"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Palvelut ja taustaprosessit"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6876,27 +6890,27 @@ msgstr ""
"Valitettavasti palvelusta\n"
"ei löydy lisätietoja."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Tietoja"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Käynnistä tarvittaessa"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Käynnistyksen yhteydessä"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Käynnistä"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Pysäytä"
@@ -7235,6 +7249,51 @@ msgid "Installation failed"
msgstr "Asennus epäonnistui"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Klassinen tapa etsiä virheitä ääniasetuksissa on suorittaa \n"
+#~ "seuraavat komennot:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" kertoo mitä ajuria äänikorttisi \n"
+#~ "käyttää oletuksena.\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" kertoo mitä ajuria äänikorttisi\n"
+#~ "käyttää tällä hetkellä.\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" komennolla tarkistat onko äänikortin moduuli (ajuri)\n"
+#~ "ladattu vai ei .\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" ja \"/sbin/chkconfig --list alsa\"\n"
+#~ "kertoo sinulle jos ääni- ja ALSA-palvelut ovat asetettu toimimaan\n"
+#~ "initlevel 3 -tasossa.\n"
+#~ "\n"
+#~ "- \"aumix -q\" kertoo onko ääni mykistetty vai ei.\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" kertoo mikä ohjelma käyttää äänikorttia.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
@@ -7685,8 +7744,8 @@ msgstr "Asennus epäonnistui"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index 52af0aa0c..69ae4b6d4 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2012-12-14 15:22+0100\n"
"Last-Translator: Oliver Burger <oliver.bgr@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1)\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -24,12 +24,12 @@ msgstr ""
msgid "Please wait"
msgstr "Veuillez patienter"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation du programme d'amorçage en cours"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -47,13 +47,13 @@ msgstr ""
"\n"
"Voulez-vous assigner un nouvel identifiant de volume ?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"L'installation du programme d'amorçage a échoué pour la raison suivante :"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -73,7 +73,7 @@ msgstr ""
"Au prochain démarrage vous devriez voir apparaître l'invite du\n"
"programme d'amorçage."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -88,268 +88,268 @@ msgstr ""
"\n"
"Sur quel disque amorcez vous ?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Installation du programme d'amorçage"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Où désirez-vous installer le programme d'amorçage ?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Premier secteur (MBR) du disque %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Premier secteur du disque (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Premier secteur de la partition racine"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Sur disquette"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Passer"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuration du style de démarrage"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Principales options du programme d'amorçage"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Programme d'amorçage"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Programme d'amorçage à utiliser"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Périphérique d'amorçage"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Options principales"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Délai avant l'activation du choix par défaut"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Activer l'ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Activer le SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Activer l'APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Activer l'APIC local"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sécurité"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Mot de passe"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Les mots de passe ne sont pas identiques"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Veuillez réessayer"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Vous ne pouvez pas utiliser de mot de passe avec %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Mot de passe (vérification)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Vider le dossier /tmp à chaque démarrage"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Message de démarrage"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Délai de l'Open Firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Délai d'amorçage du noyau"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Autoriser le démarrage sur CD-ROM ?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Autoriser le démarrage sur l'OF ?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Système d'exploitation par défaut ?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Partition racine"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Options passées au noyau"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Options Xen passées au noyau"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Nécessite un mot de passe pour le démarrage"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Mode vidéo"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Fichier RamDisk"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Profil réseau"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Choix par défaut"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Un label vide n'est pas autorisé"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Vous devez spécifier l'image noyau désirée"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Vous devez spécifier une partition racine"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Ce label est déjà utilisé"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Quel type de système souhaitez-vous ajouter ?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Autre système (SunOS, etc.)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Autre système (MacOS, etc.)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Autre système (Windows, etc.)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuration du programme d'amorçage"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -358,47 +358,47 @@ msgstr ""
"Voici les différentes entrées.\n"
"Vous pouvez en ajouter de nouvelles ou modifier les entrées existantes."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "accès aux programmes graphiques"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "accès aux outils rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "autoriser « su »"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "accès aux fichiers d'administration"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "accès aux outils réseaux"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "accès aux outils de compilation"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "Utilisateur(s) existant(s) : %s"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Veuillez taper un nom d'utilisateur"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -407,147 +407,147 @@ msgstr ""
"Le nom d'utilisateur doit commencer par une minuscule suivie seulement de "
"minuscules, de nombres, de « - » et « _ »"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Ce nom d'utilisateur est trop long"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Ce nom d'utilisateur est déjà utilisé"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Identifiant de l'utilisateur"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Identifiant du groupe"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s doit être un nombre"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s devrait être supérieur ou égal à 500. Accepter quand même ?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Gestion des utilisateurs"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Activer le compte Invité"
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Définissez le mot de passe administrateur (root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Tapez un nom d'utilisateur"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Icône"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Nom et prénom"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Identifiant de connexion"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Interpréteur"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Veuillez patienter, ajout du média…"
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Connexion automatique"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "Connexion automatique d'un utilisateur au démarrage."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Utiliser cette fonctionnalité"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Choisissez l'utilisateur par défaut :"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Choisissez l'environnement graphique :"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Notes de version"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Fermer"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Licence"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Quitter"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Acceptez-vous cette licence ?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Accepter"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Refuser"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Choisissez la langue à utiliser"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,87 +558,87 @@ msgstr ""
"les langages que vous souhaitez installer. Ils seront disponibles\n"
"quand votre installation sera terminée et que vous aurez redémarré."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "Multilingue"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr "Sélectionner des langues supplémentaires"
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Compatibilité encodage ancien (non UTF-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Toutes les langues"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Choix de la langue"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Pays / Région"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Veuillez choisir votre pays"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Voici la liste complète des pays disponibles"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Autres Pays"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avancé"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Méthode d'entrée :"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Aucun"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Pas de partage"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Autoriser tous les utilisateurs"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Personnalisé"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -654,7 +654,7 @@ msgstr ""
"\n"
"« Personnalisée » permet d'autoriser le partage pour certains utilisateurs.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -663,7 +663,7 @@ msgstr ""
"NFS : le système de partage de fichiers traditionnel d'UNIX, moins supporté "
"sur les systèmes Mac et Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -672,19 +672,19 @@ msgstr ""
"SMB : un système de partage de fichiers utilisé par Windows, Mac OS X et de "
"nombreux systèmes Linux modernes."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Souhaitez-vous partager par NFS (protocole Unix) ou SMB (protocole Windows) ?"
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Lancer Userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -694,7 +694,7 @@ msgstr ""
"cet utilisateur dans le groupe « fileshare ».\n"
"Ceci peut se faire grâce au programme « Userdrake »."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -704,49 +704,49 @@ msgstr ""
"les changements en considération. Cliquez sur « OK » pour vous déconnecter "
"maintenant."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Vous devez vous déconnecter puis vous connecter à nouveau afin de prendre "
"les changements en considération"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Fuseau horaire"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Quel est votre fuseau horaire ?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Réglages de la date, de l'heure et du fuseau horaire"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Quelle est l'heure correcte ?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (horloge système réglée sur le temps universel - UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (horloge système réglée sur l'heure locale)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Serveur NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Synchronisation automatique de l'horloge (via NTP)"
@@ -1086,7 +1086,7 @@ msgid "Domain Admin Password"
msgstr "Mot de passe de l'administrateur du domaine"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1101,48 +1101,48 @@ msgstr ""
"ou attendez le demarrage par defaut.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO en mode texte"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 en mode graphique"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB en mode graphique"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB en mode texte"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "il n'y a pas assez de place dans le dossier /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
"Vous ne pouvez pas installer le chargeur d'amorçage sur une partition %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1151,7 +1151,7 @@ msgstr ""
"La configuration de votre programme d'amorçage doit être mise à jour car les "
"partitions ont été renumérotées"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1160,7 +1160,7 @@ msgstr ""
"Le chargeur d'amorçage ne peut pas être installé correctement. Vous devez "
"redémarrer en mode secours et choisir « %s »"
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Réinstaller le programme d'amorçage"
@@ -1260,7 +1260,7 @@ msgstr "Point de montage"
msgid "Options"
msgstr "Options"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Enlever"
@@ -1370,7 +1370,7 @@ msgid "Continue"
msgstr "Continuer"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1492,7 +1492,7 @@ msgid "More"
msgstr "Davantage"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Confirmation"
@@ -2302,8 +2302,8 @@ msgstr "Changer le type"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Annuler"
@@ -2831,13 +2831,13 @@ msgstr "Voici le contenu de votre disque "
msgid "Partitioning failed: %s"
msgstr "Échec du partitionnement : %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
"Vous ne pouvez pas utiliser JFS pour des partitions inférieures à 16Mio"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3345,7 +3345,7 @@ msgstr ""
"- la nouvelle API ALSA qui fournit nombre de caractéristiques évoluées mais "
"exige l'utilisation de la bibliothèque ALSA.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Pilote :"
@@ -3399,59 +3399,74 @@ msgstr "Dépannage du son"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Pour résoudre un problème de son,\n"
-"veuillez lancer les commandes suivantes dans une console :\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- « lspcidrake -v | fgrep -i AUDIO » vous indique quel pilote votre carte\n"
-" utilise par défaut\n"
"\n"
-"- « grep sound-slot /etc/modprobe.conf » vous affiche quel pilote\n"
-"(module) est actuellement utilisé.\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- « /sbin/lsmod » vous permet de vérifier si ce module est chargé\n"
"\n"
-"- « /sbin/chkconfig --list sound » et « /sbin/chkconfig --list alsa »\n"
-"vous diront si les services « sound » et « alsa » sont configurés pour\n"
-"être démarrés dès le niveau d'exécution 3 (init runlevel 3)\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- « aumix -q » vous permettra de voir si le volume sonore est coupé ou non…\n"
"\n"
-"- « /sbin/fuser -v /dev/dsp » indiquera quel programme est en train\n"
-"d'utiliser ou de bloquer la carte son.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Choix d'un pilote"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Choix arbitraire d'un pilote…"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3532,12 +3547,12 @@ msgstr "Non"
msgid "Choose a file"
msgstr "Choisissez un fichier"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Ajouter"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Modifier"
@@ -3572,7 +3587,7 @@ msgstr "Aucun répertoire de ce nom"
msgid "No such file"
msgstr "Aucun fichier de ce nom"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Attention, le verrouillage majuscule (caps lock) est actif"
@@ -4861,17 +4876,17 @@ msgstr ""
"Le déplacement des unités d'allocation physique (Physical Extents (PE)) "
"utilisées vers d'autres volumes a échoué"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Le volume physique %s est toujours utilisé"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Enlevez d'abord les volumes logiques\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5307,12 +5322,12 @@ msgstr "Êtes-vous sûr de vouloir quitter ?"
msgid "Password is trivial to guess"
msgstr "Le mot de passe est facile à deviner"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "Le mot de passe doit résister aux attaques basiques"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Le mot de passe semble sûr"
@@ -5554,8 +5569,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Autoriser :\n"
"\n"
@@ -6774,7 +6789,7 @@ msgstr "Administration à distance"
msgid "Database Server"
msgstr "Serveur de base de données"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Services"
@@ -6791,49 +6806,49 @@ msgstr ""
msgid "%d activated for %d registered"
msgstr "%d activés sur %d enregistrés"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "actif"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "arrêté"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Services et démons"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr "Pas d'autre information au sujet de ce service, désolé."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Information"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Démarré si nécessaire"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Au démarrage"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Démarrer"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Arrêter"
@@ -7177,6 +7192,52 @@ msgid "Installation failed"
msgstr "Échec de l'installation"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Pour résoudre un problème de son,\n"
+#~ "veuillez lancer les commandes suivantes dans une console :\n"
+#~ "\n"
+#~ "- « lspcidrake -v | fgrep -i AUDIO » vous indique quel pilote votre "
+#~ "carte\n"
+#~ " utilise par défaut\n"
+#~ "\n"
+#~ "- « grep sound-slot /etc/modprobe.conf » vous affiche quel pilote\n"
+#~ "(module) est actuellement utilisé.\n"
+#~ "\n"
+#~ "- « /sbin/lsmod » vous permet de vérifier si ce module est chargé\n"
+#~ "\n"
+#~ "- « /sbin/chkconfig --list sound » et « /sbin/chkconfig --list alsa »\n"
+#~ "vous diront si les services « sound » et « alsa » sont configurés pour\n"
+#~ "être démarrés dès le niveau d'exécution 3 (init runlevel 3)\n"
+#~ "\n"
+#~ "- « aumix -q » vous permettra de voir si le volume sonore est coupé ou "
+#~ "non…\n"
+#~ "\n"
+#~ "- « /sbin/fuser -v /dev/dsp » indiquera quel programme est en train\n"
+#~ "d'utiliser ou de bloquer la carte son.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index 5519505fd..6ec948174 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\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"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -24,12 +24,12 @@ msgstr ""
msgid "Please wait"
msgstr "Par plasè, spiete"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr ""
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -40,12 +40,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -56,7 +56,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -66,464 +66,464 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Instalazion LILO/grub"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Prin setôr dal disc (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prin setôr dal disc (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Prin setôr de partizion lidrie"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Su dischet"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Salte"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Configurazion dal stîl di inviament"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr ""
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr ""
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr ""
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Dispositîf di inviament"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Ritart prin di inviâ le imagjin predefinide"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Abilite ACPI"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Abilite ACPI"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Abilite ACPI"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Abilite ACPI"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sigurece"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Password"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Le password no corispuint"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Par plasè torne a provâ"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Password (ancjemò)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Nete /tmp a ducj i inviaments"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Abilite l'inviament di CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Sisteme Operatîf predefinît?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Imagjin"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Lidrie"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Modalitât video"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "Gnûf profîl..."
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etichete"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predefinît"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Etichete vueide no permitude"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Tu âs di specificâ une imagjin kernel"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Tu âs di specificâ une partizion lidrie"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Le etichete e je dizà in vore"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Cuâle sorte di vôs vuelistu zontâ?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Altri sisteme operatîf (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Altri sisteme operatîf (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, fuzzy, c-format
msgid "Other OS (Windows...)"
msgstr "Altri sisteme operatîf (windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Configurazion dal stîl di inviament"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "acès ai programs X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "acès ai imprescj rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "permèt \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "acès ai file di aministrazion"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "acès ai imprescj di rêt"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "acès ai imprescj di compilazion"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(dizà zontât %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Par plasè, insede un non utent"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Il non utent al à di vê dome letaris minusculis, numars , `-' e `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Il non utent al è masse lunc"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Il non utent al è stât dizà zontât"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID Utent"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID Grop"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Non utent"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Insede un utent\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Icone"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Non reâl"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Par plasè spiete, atualizazion des fonts in vore..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Acès automatic"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "O pues impostâ il to computer par fâ acedi automatichementri un utent."
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Vuelistu doprâ cheste fature?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Sielç un utent predefinît:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Sielç il gjestôr grafic di doprâ:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Par plasè sielç"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Siere"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Jessî"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr ""
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr ""
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Par plasè sielç une lenghe di doprâ"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -531,87 +531,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Dutis les lenghis"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Dutis les lenghis"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "Lenghis"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Nazion / Regjon"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Par plasè sielç le to nazion"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Cheste e je le liste complete di dutis les nazions disponibilis"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Un altri"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr ""
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Nissun"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Nissune condivision"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Permet ducj i utents"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Personalizât"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -621,86 +621,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Invie userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Server NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1023,7 +1023,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1033,61 +1033,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO cun menu di test"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "no son a vonde stanziis in /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1181,7 +1181,7 @@ msgstr "Pont di mount"
msgid "Options"
msgstr "Opzions"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Rimôf"
@@ -1287,7 +1287,7 @@ msgid "Continue"
msgstr "Continue"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1406,7 +1406,7 @@ msgid "More"
msgstr "Di plui"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Configurazion"
@@ -2181,8 +2181,8 @@ msgstr ""
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Scancele"
@@ -2647,12 +2647,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Sorte di tabele des partizions: %s\n"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3104,7 +3104,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr ""
@@ -3150,40 +3150,74 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3255,12 +3289,12 @@ msgstr "No"
msgid "Choose a file"
msgstr ""
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Zonte"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Mude"
@@ -3295,7 +3329,7 @@ msgstr "Cartele locâl"
msgid "No such file"
msgstr "File locâi"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4575,17 +4609,17 @@ msgstr "Benvignût su %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr ""
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -4920,12 +4954,12 @@ msgstr "Dulà vuelistu montâ %s?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Password"
@@ -5132,8 +5166,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6149,7 +6183,7 @@ msgstr ""
msgid "Database Server"
msgstr ""
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servizis"
@@ -6164,49 +6198,49 @@ msgstr ""
msgid "%d activated for %d registered"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr ""
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr ""
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr ""
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Invie"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Ferme"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index efa234180..7ac84a6f1 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\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"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -22,12 +22,12 @@ msgstr ""
msgid "Please wait"
msgstr "Fan tamall"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Tá an clár dúisithe á shuiteáil"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -38,12 +38,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -54,7 +54,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -64,466 +64,466 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Tá an clár dúisithe á shuiteáil"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr ""
-#: any.pm:372
+#: any.pm:366
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Níl aon ranna agat!"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Ar dhiosca flapach"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Scipeáil"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Cumraíocht Stíl Tosnú"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Príomhroghanna bootáil"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Clár dúisithe"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Ríomhchlar Tosnaithe a úsáid "
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Gaireas bootáil"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr ""
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Cumasaigh ACPI"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Cumasaigh ACPI"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Cumasaigh ACPI"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Cumasaigh ACPI"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Slándáil"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Pasfhocal"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Ní mar a chéile na pasfhocail"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Aththrialaigh"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Pasfhocal (arís)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Glan /tmp nuair a thosnaigh an coráis"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Scéal Tosnú"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Cumasaigh dúiseacht ón dlúthdhiosca?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Cumasaigh dúiseacht OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "OS Loiceadh?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Iomha"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Append"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Mód fís"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Próifíl líonra"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Lipéad"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Gnáth"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "GanBhideó"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Níl ceadaigh an lipéad folamh ann"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Is gá íomhá eithne a shonrú"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Ní mór rann fréamhach"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Cén sort iontráil a suimigh do?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "CO Eile (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "CO Eile (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "CO Eile (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Cumraíocht Stíl Tosnú"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr ""
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Tá an ainm úsáideora ró-fhada"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID Úsáideoir"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID Grupa"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Ainm úsáideora"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Socraigh pasfhocal root"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Dealbh"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Fíor ainm"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Ainm logála isteach:"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Blaosc"
-#: any.pm:971
+#: any.pm:964
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr ""
"Fan tamall\n"
"Checking dependencies"
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Uath-Logann"
-#: any.pm:1004
+#: any.pm:997
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Is féidir linn do ríomhaire a shocrú le X a thosnú i ndhiadh bootáil.\n"
"An dteastaíonn uait go dtosnófar X nuair a aththosnítear an ríomhaire?"
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "An mian leat an gné seo a úsáid?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Roghnagih an úsáidoer gneás:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Fan tamall"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Dún"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Ceadúnas"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Éalaigh"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "An bhfuil ceann eile agat?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Aontaigh"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Tarrtháil"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Roghnaigh teanga le húsáid, le do thoil"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -531,87 +531,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Gach teanga"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Gach teanga"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Rogha teanga"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Tír / Réigiún"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Roghnaigh do thír, le do thoil"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Eile"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Réamhioaíocht"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Neamhní"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Gan roinnt"
-#: any.pm:1334
+#: any.pm:1327
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Suimigh úsáideoir"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Socraithe"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -621,86 +621,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Am Críos"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Cén ceann do chrois ama?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Freastalaí NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1023,7 +1023,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1033,61 +1033,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO le chlár teacs"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr ""
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Ath-shuiteáil an clár dúisithe"
@@ -1181,7 +1181,7 @@ msgstr "Pointe feistithe"
msgid "Options"
msgstr "Roghnachais"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Bain"
@@ -1287,7 +1287,7 @@ msgid "Continue"
msgstr "Lean"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1409,7 +1409,7 @@ msgid "More"
msgstr "Mór"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Deimhniú"
@@ -2177,8 +2177,8 @@ msgstr "Athraigh cineál"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Cealaigh"
@@ -2646,12 +2646,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Theip ar rannú: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3105,7 +3105,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Tiománaí:"
@@ -3151,40 +3151,74 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3256,12 +3290,12 @@ msgstr "Níl"
msgid "Choose a file"
msgstr "Roghnaigh comhad"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Suim"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Athraigh"
@@ -3296,7 +3330,7 @@ msgstr "Níl aon filltéan ann"
msgid "No such file"
msgstr "Níl a leithéid de chomhad ann"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4615,17 +4649,17 @@ msgstr "Fáilte go %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr ""
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -4960,12 +4994,12 @@ msgstr "Céard a theastaíonn uait a dhéanamh?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Pasfhocal"
@@ -5172,8 +5206,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6189,7 +6223,7 @@ msgstr "Scríos Printéir"
msgid "Database Server"
msgstr "Freastalaí Bunachair Sonraí"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Seirbishí"
@@ -6204,49 +6238,49 @@ msgstr ""
msgid "%d activated for %d registered"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "ag rith"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "ag stoppadh"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr ""
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Eolas"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Ar Tús"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Tosaigh"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Stad"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 9a1aa48fa..70afd6118 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX-gl\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2009-09-25 18:43+0200\n"
"Last-Translator: Alejo Pacín Jul <alejopj@gmail.com>\n"
"Language-Team: Galician <cooker-i18n@mandrivalinux.org>\n"
@@ -20,7 +20,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 0.3\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -29,12 +29,12 @@ msgstr ""
msgid "Please wait"
msgstr "Agarde"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalando o cargador de arrinque"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -51,12 +51,12 @@ msgstr ""
"\n"
"Desexa asignar un novo ID de Volume?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "A instalación do cargador de arrinque fallou. Ocorreu o seguinte erro:"
-#: any.pm:289
+#: any.pm:283
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -75,7 +75,7 @@ msgstr ""
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -90,268 +90,268 @@ msgstr ""
"\n"
"¿Dende qué unidade está arrincando?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Instalación do cargador de arrinque"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "¿Onde quere instala-lo cargador de arrinque?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primeiro sector (MBR) do disco %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primeiro sector do disco (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Primeiro sector da partición raiz"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Nun Disquete"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Omitir"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Configuración do Estilo de Arrinque"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Opcións principais do cargador de arrinque"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Cargador de Arrinque"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Cargador de arrinque que se usará"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Dispositivo de arrinque"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Opcións principais"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Retardo antes de arrinca-la imaxe por omisión"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Habilitar ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Habilitar SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Habilitar APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Habilitar APIC Local"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Seguridade"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Contrasinal"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Os contrasinais non coinciden"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Por favor, inténteo de novo"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Non pode usar un contrasinal con %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Baleirar /tmp en cada arrinque"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Mensaxe Inicial"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Retardo de Open Firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Tempo de Espera do Arrinque do Kernel"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Permiti-lo arrinque dende un CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Habilitar o Arrinque OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "¿S.O. por defecto?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Imaxe"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Raíz"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Agregar"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Modo de video"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Perfil de rede"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etiqueta"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Por defecto"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Etiqueta baleira non permitida"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Debe especificar unha imaxe do kernel"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Debe especificar unha partición raíz"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Esta etiqueta xa se está usando"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "¿Qué tipo de entrada desexa engadir?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Outros S.O. (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Outros S.O. (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Outros S.O. (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Configuración do Cargador de Arrinque"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -360,47 +360,47 @@ msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas máis ou cambia-las que xa existen."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "acceso ós programas X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "acceso ás ferramentas rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "acceso ós ficheiros de administración"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "acceso ás ferramentas de rede"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "acceso ás ferramentas de compilación"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Por favor, indique un nome de usuario"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -409,149 +409,149 @@ msgstr ""
"O nome de usuario (login) só pode conter letras minúsculas, números, '-' e "
"'_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "O nome de usuario é moi longo"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Este nome de usuario xa está engadido"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID de Usuario"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID do Grupo"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s debe ser un número"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s debe estar por riba de 500. Desexa aceptar de tódolos xeitos?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Xestión de usuarios"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Estableza o contrasinal do administrador (root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Introduza un usuario"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Icona"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Nome real"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Nome de usuario"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Agarde, engadindo soportes..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Login automático"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Pódese configurar o ordenador para que entre automáticamente\n"
"un usuario determinado."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Usar esta funcionalidade"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Escolla o usuario por defecto:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Escolla o xestor de fiestras que se executará:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Notas da Versión"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Pechar"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Acordo da licenza"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Saír"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Acepta esta licenza?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Aceptar"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Rexeitar"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Por favor, escolla a lingua que desexe empregar"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -562,87 +562,87 @@ msgstr ""
"as linguas que desexa instalar. Esta linguas estarán dispoñibles\n"
"cando a instalación estea completa e reinicie o seu sistema."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Multilinguaxe"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codificación de compatibilidade cara atrás (non UTF-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Tódalas linguas"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Selección da Lingua"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "País"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Por favor, escolla o seu país"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Esta é a lista completa dos paises dispoñibles"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Outros Paises"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avanzado"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Método de entrada:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Ningún"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Non compartir"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Permitirlle a tódolos usuarios"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Personalizado"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -657,7 +657,7 @@ msgstr ""
"\n"
"\"Personalizado\" permite especificalo usuario a usuario.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -666,7 +666,7 @@ msgstr ""
"NFS: o sistema tradicional de compartimento de ficheiros de Unix, con menos "
"soporte en Mac e Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -675,18 +675,18 @@ msgstr ""
"SMB: un sistema de compartimento de ficheiros que se usa en sistemas "
"Windows, Mac OS X e varios Linux modernos."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Pode exportar usando NFS ou SMB. Por favor, escolla cal quere usar."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Executar userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -695,7 +695,7 @@ msgstr ""
"O compartimento por usuario usa o grupo \"fileshare\". \n"
"Pode usar userdrake para engadir un usuario a este grupo."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -704,48 +704,48 @@ msgstr ""
"Cómpre que saia do sistema e volva entrar para que os cambios surtan efecto. "
"Prema OK para saír agora."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Cómpre que saia do sistema e volva entrar para que os cambios surtan efecto"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Zona Horaria"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Cal é a súa zona horaria?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Configuración de Data, Reloxo e Zona Horaria"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Cal é a mellor hora?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (o reloxo do hardware usa a hora UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (o reloxo do hardware usa a hora local)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Servidor NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronización automática da hora (usando NTP)"
@@ -1080,7 +1080,7 @@ msgstr "Contrasinal do Administrador do Dominio"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1095,47 +1095,47 @@ msgstr ""
"agarde a que arrinque o sistema predeterminado.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO con menú de texto"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB con menú gráfico"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menú gráfico"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB con menú de texto"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "non hai espacio dabondo en /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Non se pode instala-lo cargador de arrinque nunha partición %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1144,7 +1144,7 @@ msgstr ""
"A configuración do seu cargador de arrinque ten que actualizarse porque "
"cambiou o número da partición"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1153,7 +1153,7 @@ msgstr ""
"Non se puido instalar de xeito correcto o cargador de arrinque. Ten que "
"arrincar co disco de rescate e elixir \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstala-lo Cargador de Arrinque"
@@ -1252,7 +1252,7 @@ msgstr "Punto de montaxe"
msgid "Options"
msgstr "Opcións"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Eliminar"
@@ -1360,7 +1360,7 @@ msgid "Continue"
msgstr "Continuar"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1482,7 +1482,7 @@ msgid "More"
msgstr "Máis"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Confirmación"
@@ -1846,8 +1846,8 @@ msgid ""
"To ensure data integrity after resizing the partition(s),\n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
-"Para asegurar a integridade dos datos despois de redimensionar a(s) partición"
-"(s), \n"
+"Para asegurar a integridade dos datos despois de redimensionar a(s) "
+"partición(s), \n"
"executaranse unhas verificacións do sistema de ficheiros a próxima vez que "
"arrinque Windows(TM)"
@@ -2282,8 +2282,8 @@ msgstr "Cambia-lo tipo"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Cancelar"
@@ -2798,12 +2798,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "O particionamento fallou: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Non pode usar JFS para particións máis pequenas de 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Non pode usar ReiserFS para particións máis pequenas de 32MB"
@@ -3311,7 +3311,7 @@ msgstr ""
"- a nova API ALSA que proporciona moitas funcionalidades melloradas pero "
"require o uso da librería ALSA.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Controlador:"
@@ -3364,61 +3364,74 @@ msgstr "Solución de problemas co son"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"A maneira clásica de comprobación de erros do son é executar os seguintes "
-"comandos:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" diralle que driver usa a súa tarxeta\n"
-"de forma predeterminada\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" diralle que driver está\n"
-"usando agora mesmo\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/lsmod\" permitiralle comprobar se o seu módulo (driver)\n"
-"está cargado ou non\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" e \"/sbin/chkconfig --list alsa\"\n"
-"diranlle se os servicios sound e alsa están configurados para\n"
-"executarse no nivel de execución 3\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"aumix -q\" diralle se o volume do son está silenciado ou non\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" diralle que programa está usando a\n"
-"tarxeta de son.\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Déixeme escoller un driver calquera"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Escolleando un driver ó chou"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3499,12 +3512,12 @@ msgstr "Non"
msgid "Choose a file"
msgstr "Escolla un ficheiro"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Engadir"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Modificar"
@@ -3539,7 +3552,7 @@ msgstr "Non existe tal directorio"
msgid "No such file"
msgstr "Non existe tal ficheiro"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Atención, Bloq Maiús está activado"
@@ -4824,17 +4837,17 @@ msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
"Fallou o movemento das extensións físicas usadas a outros volumes físicos"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "O volume físico %s ainda se está usando"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Quitar primeiro os volumes lóxicos\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5303,12 +5316,12 @@ msgstr "Está seguro de querer eliminar este punto de montaxe?"
msgid "Password is trivial to guess"
msgstr "O contrasinal é sinxela de adiviñar"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "O contrasinal debe ser resistente a ataques básicos"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "O contrasinal semella seguro"
@@ -5549,8 +5562,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Autorizar:\n"
"\n"
@@ -6724,7 +6737,7 @@ msgstr "Administración Remota"
msgid "Database Server"
msgstr "Servidor de Bases de Datos"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servicios"
@@ -6739,22 +6752,22 @@ msgstr "Escolla os servicios que deben ser lanzados no arrinque do sistema"
msgid "%d activated for %d registered"
msgstr "%d activados de %d indicados"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "executándose"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "parado"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Servicios e daemons"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6763,27 +6776,27 @@ msgstr ""
"Non hai información adicional\n"
"sobre este servicio, desculpe."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Información"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Iniciar cando sexa solicitado"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Ó arrincar"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Iniciar"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Parar"
@@ -7111,6 +7124,53 @@ msgid "Installation failed"
msgstr "Fallou a instalación"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "A maneira clásica de comprobación de erros do son é executar os seguintes "
+#~ "comandos:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" diralle que driver usa a súa "
+#~ "tarxeta\n"
+#~ "de forma predeterminada\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" diralle que driver está\n"
+#~ "usando agora mesmo\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" permitiralle comprobar se o seu módulo (driver)\n"
+#~ "está cargado ou non\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" e \"/sbin/chkconfig --list alsa\"\n"
+#~ "diranlle se os servicios sound e alsa están configurados para\n"
+#~ "executarse no nivel de execución 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" diralle se o volume do son está silenciado ou non\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" diralle que programa está usando a\n"
+#~ "tarxeta de son.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
@@ -7389,8 +7449,8 @@ msgstr "Fallou a instalación"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 2bc1b83dd..6768af6d4 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2008-03-24 03:26+0200\n"
"Last-Translator: Dotan Kamber <kamberd@yahoo.com>\n"
"Language-Team: Hebrew\n"
@@ -24,7 +24,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -33,12 +33,12 @@ msgstr ""
msgid "Please wait"
msgstr "נא להמתין"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "התקנת מנהל האתחול"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -54,12 +54,12 @@ msgstr ""
"\n"
"האם להקצות תג זיהוי חדש?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "התקנת מנהל האתחול נכשלה. השגיאות הבאות התרחשו:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -75,7 +75,7 @@ msgstr ""
"Command-Option-O-F בזמן האתחול ולהזין setenv boot-device %s,\\\\:tbxi\n"
"אחר כך יש להקליד shut-down. באתחול הבא צפוי להופיע מנהל האתחול."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -89,268 +89,268 @@ msgstr ""
"\n"
"מהו הכונן ממנו נטענת המערכת? "
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "התקנת מנהל האתחול"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "איפה ברצונך להתקין את מנהל האתחול?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "מקטע ראשון של הכונן (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "מקטע ראשון של הכונן (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "מקטע ראשון של מחיצת השורש"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "על תקליטון"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "דילוג"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "הגדרת סגנון מנהל אתחול"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "הגדרות עיקריות של מנהל האתחול"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "מנהל אתחול"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "מנהל אתחול (ברירת מחדל):"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "מחיצת האתחול (ברירת מחדל):"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "אפשרויות ראשיות"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "השהייה לפני אתחול מערכת ברירת המחדל"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "הפעלת ACPI (ניהול צריכת אנרגיה מתקדמת)"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "הפעלת ACPI (ניהול צריכת אנרגיה מתקדמת)"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "הפעלת APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "הפעלת APIC מקומי"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "הגדרות אבטחה"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "סיסמה"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "הסיסמאות לא זהות"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "יש לנסות שנית"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "אסור להשתמש בסיסמה עם %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "סיסמה (שוב)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "ניקוי קבצים זמניים בספריית tmp/ בכל אתחול"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "הודעת אתחול"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "השהיית קושחה (Firmware) פתוחה"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "משך המתנה מירבי לאתחול גרעין"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "האם לאפשר אתחול מתקליטור?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "האם לאפשר אתחול OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "מהי מערכת הפעלה שתיטען כברירת מחדל?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "תצורה"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "מנהל מערכת (root)"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "הוספה"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "הוספת Xen"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "תצורת תצוגה"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "תצורת רשת"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "תווית"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "ברירת מחדל"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "ללא תצוגה"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "אסור להגדיר תווית שם ריקה"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "חובה להגדיר תמונת גרעין"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "חובה להגדיר מחיצת שורש"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "התווית הזאת כבר בשימוש"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "איזה סוג כניסה ברצונך להוסיף?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "לינוקס"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "מערכת הפעלה אחרת (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "מערכת הפעלה אחרת (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "מערכת הפעלה אחרת (חלונות...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "הגדרת סגנון מנהל אתחול"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -359,195 +359,195 @@ msgstr ""
"להלן הרשומות שהוגדרו כבר בתפריט האתחול\n"
"ניתן להוסיף רשומות או לשנות רשומות קיימות."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "גישה ליישומים גרפיים"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "גישה לכלי התקנת תוכנה"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "איפשור שינוי למנהל מערכת (\"su\")"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "אפשרות גישה לקבצי ניהול"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "אפשרות גישה לכלי רשת"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "אפשרות גישה לכלי הידור"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(כבר נוסף %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "עליך להגדיר שם משתמש"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "שם המשתמש יכול להכיל אך ורק אותיות קטנות, מספרים, `-' ו `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "שם המשתמש ארוך מדי"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "שם משתמש זה כבר קיים"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "קוד זיהוי משתמש"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "קוד זיהוי קבוצה"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "הערך %s חייב להיות מספר"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s צריך להיות מעל 500. האם להמשיך בכל זאת?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "ניהול משתמשים"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "קביעת סיסמת מנהל"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "הזנת משתמש"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "סמל"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "שם אמיתי"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "שם משתמש"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "מעטפת"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "נא להמתין, מוסיף מקור..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "כניסה-אוטומטית"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"ניתן להגדיר שכאשר המערכת תופעל היא תכנס אוטומטית לחשבון של אחד המשתמשים."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "הפעל אפשרות זו"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "בחירת משתמש ברירת המחדל: "
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "יש לבחור את מנהל החלונות:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "הערות שחרור"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "סגור"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "הסכם משתמש"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "יציאה"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "האם יש לך עוד אחד?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "הסכמה"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "סירוב"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "יש לבחור את השפה העיקרית"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,87 +558,87 @@ msgstr ""
"את השפות שברצונך להתקין. השפות יהיו זמינות כאשר\n"
"ההתקנה תסתיים והמחשב יופעל מחדש."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "מנדריבה לינוקס"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "ריבוי שפות"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "קידוד עם תאימות לאחור (לא UTF-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "כל השפות"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "בחירת שפה"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "מדינה / אזור"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "עליך לבחור את המדינה שלך"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "להלן הרשימה המלאה של המדינות הזמינות"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "מדינות אחרות"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "מתקדם"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "שיטת קלט:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "כלום"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "ללא שיתוף"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "הרשה לכל המשתמשים"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "מותאם אישית"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -652,7 +652,7 @@ msgstr ""
"\n"
"\" התאמה אישית\" תאפשר התאמה לכל משתמש.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -660,7 +660,7 @@ msgid ""
msgstr ""
"NFS: מערכת שיתוף הקבצים המסורתית של יוניקס, עם תמיכה פחותה במק וחלונות."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -669,18 +669,18 @@ msgstr ""
"SMB: מערכת שיתוף קבצים הנמצאת בשימוש בחלונות, Mac OS X ומערכות לינוקס "
"מודרניות רבות."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "ניתן לייצא בעזרת NFS או SMB. עליך לבחור במה להשתמש."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "הפעלת userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -689,54 +689,54 @@ msgstr ""
"השיתוף לכל משתמש, משתמש בהגדרתקבוצה \"שיתוף-קבצים\".\n"
"ביכולתך להשתמש בעורך המשתמשים כדי להוסיף משתמשים לקבוצה זו."
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "עליך להתנתק ולהתחבר שנית כדי שהשינויים יחולו."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "עליך להתנתק ולהתחבר שנית כדי שהשינויים יחולו."
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "אזור זמן"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "מהו אזור הזמן שלך?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "הגדרות תאריך, שעון ואזור-זמן"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "מה הזמן הנכון?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (שעון מערכת מכוון ל-UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (שעון מערכת מכוון לזמן המקומי)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "שרת NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "סנכרון זמן אוטומטי (שימוש ב-NTP)"
@@ -1063,7 +1063,7 @@ msgid "Domain Admin Password"
msgstr "סיסמת מנהל המתחם"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1078,54 +1078,54 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "מנהל אתחול 'לילו' עם תפריט טקסט"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "מנהל אתחול 'גראב' עם תפריט גרפי"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "מנהל אתחול 'גראב' עם תפריט גרפי"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "מנהל אתחול 'גראב' עם תפריט טקסט"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "אין מספיק מקום ב-/boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "אי אפשר להתקין את מנהל האתחול על המחיצה %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "יש צורך בעדכון תצורת טוען המערכת שלך מאחר ושונו מספרי מחיצות"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1134,7 +1134,7 @@ msgstr ""
"אין אפשרות להתקין את טוען המערכת באופן תקין. עליך להפעיל את המערכת באופן "
"rescue ולבחור \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "התקנה חוזרת של מנהל האתחול"
@@ -1232,7 +1232,7 @@ msgstr "נקודת עיגון"
msgid "Options"
msgstr "אפשרויות"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "הסרה"
@@ -1338,7 +1338,7 @@ msgid "Continue"
msgstr "המשך"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1460,7 +1460,7 @@ msgid "More"
msgstr "מתקדם"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "אישור"
@@ -2252,8 +2252,8 @@ msgstr "שינוי סוג"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "ביטול"
@@ -2755,12 +2755,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "כשל בחלוקה למחיצות: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "אין אפשרות להשתמש ב-JFS עבור מחיצה קטנה מ- 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "אין אפשרות להשתמש ב-ReiserFS למחיצה קטנה מ-32MB"
@@ -3253,7 +3253,7 @@ msgstr ""
"- המנשק הישן התואם ל-OSS\n"
"- המנשק החדש של ALSA המספק יכולות מתקדמות אך דורש את הספריה של ALSA.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "מנהל התקן:"
@@ -3306,57 +3306,74 @@ msgstr "פתרון בעיות קול"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"הבדיקה הקלאסית לבעיות במערכת הקול היא הרצת הפקודות הבאות:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" יאמר מה הוא התקן ההינע בו משתמש הכרטיס\n"
-"שלך כברירת מחדל\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" יאמר מה הוא ההתקן ההינע שכרגע\n"
-"נעשה בו שימוש\n"
"\n"
-"- \"/sbin/lsmod\" יאפשר לך לבדוק אם התקן ההינע טעון או לא\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" ו- \"/sbin/chkconfig --list alsa\" יאמרו\n"
-"אם שירותי הקול ו-alsa מוגדרים לריצה ברמת אתחול 3\n"
"\n"
-"- \"aumix -q\" יאמר לך אם הקול מושתק או לא\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" יאמר לך איזו תוכנה משתמשת בכרטיס הקול.\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "תן לי לבחור מנהל התקן כלשהו"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "בחירת מנהל התקן באופן שרירותי"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3436,12 +3453,12 @@ msgstr "לא"
msgid "Choose a file"
msgstr "בחירת קובץ"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "הוספה"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "שינוי"
@@ -3476,7 +3493,7 @@ msgstr "אין ספרייה כזו"
msgid "No such file"
msgstr "אין קובץ כזה"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "לתשומת לבך, Caps Lock מופעל."
@@ -4762,17 +4779,17 @@ msgstr "ברוך בואך ל-%s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "העברת החלקים הפיזיים שבשימוש לחלק פיזי אחר כשלה"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "החלק הפיזי %s עדיין בשימוש"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "יש ראשית להסיר את החלקים הלוגיים\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "מנהל האתחול אינו יכול לעבוד עם boot/ על מספר חלקים פיזיים"
@@ -5216,12 +5233,12 @@ msgstr "האם ברצונך ללחוץ על כפתור זה?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "סיסמה עבור המשתמש"
@@ -5452,8 +5469,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"אישור:\n"
"\n"
@@ -6593,7 +6610,7 @@ msgstr "ניהול מרחוק"
msgid "Database Server"
msgstr "שרת בסיס-נתונים"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "שרותים"
@@ -6608,22 +6625,22 @@ msgstr "עליך לבחור אלו שרותים יופעלו אוטומטית ב
msgid "%d activated for %d registered"
msgstr "%d שרותים מופעלים מתוך %d שרותים מוגדרים"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "פועל"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "מופסק"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "שרותים ותהליכי רקע"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6632,27 +6649,27 @@ msgstr ""
"מצטער, אין מידע \n"
"נוסף על שירות זה."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "מידע"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "הפעל לפי הצורך"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "בזמן אתחול"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "הפעל"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "הפסק"
@@ -6983,6 +7000,50 @@ msgid "Installation failed"
msgstr "ההתקנה נכשלה"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "הבדיקה הקלאסית לבעיות במערכת הקול היא הרצת הפקודות הבאות:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" יאמר מה הוא התקן ההינע בו משתמש "
+#~ "הכרטיס\n"
+#~ "שלך כברירת מחדל\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" יאמר מה הוא ההתקן ההינע שכרגע\n"
+#~ "נעשה בו שימוש\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" יאפשר לך לבדוק אם התקן ההינע טעון או לא\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" ו- \"/sbin/chkconfig --list alsa\" "
+#~ "יאמרו\n"
+#~ "אם שירותי הקול ו-alsa מוגדרים לריצה ברמת אתחול 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" יאמר לך אם הקול מושתק או לא\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" יאמר לך איזו תוכנה משתמשת בכרטיס הקול.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
@@ -7249,8 +7310,8 @@ msgstr "ההתקנה נכשלה"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index 51aec9974..2ea837795 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-hi\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\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"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -24,12 +24,12 @@ msgstr ""
msgid "Please wait"
msgstr "कृपया प्रतीक्षा करें"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "बूटलोडर का संसाधन प्रगति पर है"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -40,12 +40,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "बूटलोडर का संसाधन असफ़ल । निम्नलिखित त्रुटि उत्पन्न हो गयी है:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -61,7 +61,7 @@ msgstr ""
"और इस निर्देश को इन्टर करें: setenv boot-device %s,\\\\:tbxi और फ़िर\n"
"टाइप करें: shut-down । आपके आगामी बूट पर आप बूटलोडर प्रॉम्ट को देख सकेगें ।"
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -76,268 +76,268 @@ msgstr ""
"\n"
"आप किस ड्राइव से बूट करते है?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "बूटलोडर का संसाधन प्रगति पर है"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "बूटलोडर को आप कहाँ संसाधित करना चाहते है ?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "ड्राइव का प्रथम सेक्टर (मास्टर बूट रिकार्ड)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "ड्राइव का प्रथम सेक्टर (मास्टर बूट रिकार्ड)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "रूट विभाजन के प्रथम सेक्टर"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "फ़्लापी पर"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "छोड़े"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "बूट शैली संरचना"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "बूटलोडर के मुख्य विकल्प"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "बूटलोडर"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "उपयोगार्थ बूटलोडर"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "बूट उपकरण"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "डिफ़ाल्ट प्रतिबिंब को बूट करने के पूर्व देरी"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "ऐसीपीआई शक्तियुक्त बनायें"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ऐसीपीआई शक्तियुक्त बनायें"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ऐसीपीआई शक्तियुक्त बनायें"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ऐसीपीआई शक्तियुक्त बनायें"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "सुरक्षा"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "कूट-शब्द"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "कूटशब्द आपस में नहीं मिलते है"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "कृपया पुनः प्रयास करें"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "आरोह बिन्दु %s के लिए आप एक गूढ़-लिखित संचिका तंत्र का उपयोग नहीं कर सकते है"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "कूट-शब्द (पुनः बतायें)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "/tmp निर्देशिका को प्रत्येक बूट के समय साफ़ करें"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "आरम्भिक संदेश"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "मुक्त फ़र्मवेयर देरी"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "कर्नल बूट की समय-सीमा समाप्त"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "सीडीबूट को सक्रिय किया जायें?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "बूट के लिए समर्थ?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "डिफ़ाल्ट संचालन-तंत्र?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "प्रतिबिंब"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "रूट"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "जोड़ना"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "विडियो विधा"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "इनिटआरडी"
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "नयी प्रोफ़ाइल..."
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "लेबिल"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "डिफ़ाल्ट"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "कोई विडियो नहीं"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "शून्य लेबिल की अनुमति नहीं है"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "आपको एक कर्नल प्रतिबिंब को बताना चाहिए"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "आपको एक रूट विभाजन को बताया चाहिए"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "यह लेबिल पहिले से उपयोग में है"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "किस प्रकार की प्रविष्टी को आप जोड़ना चाहता है?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "लिनक्स"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "अन्य संचालन-तंत्र (सन संचालन-तंत्र...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "अन्य संचालन तंत्र (मैक संचालन तंत्र...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "अन्य संचालन तंत्र (विण्डो...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "बूट शैली संरचना"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -346,198 +346,198 @@ msgstr ""
"आपके बूट मीनू में अभी तक यह प्रविष्टीयां है । \n"
"आप अतिरिक्त प्रविष्टीयों का निर्माण या वर्तमान प्रविष्टीयों को परिवर्तित कर सकते है ।"
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "एक्स कार्यक्रमों तक पहुँच"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "आरपीएम औज़ारों तक पहुँच"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "\"su\" को अनुमति"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "प्रबंधकीय संचिकाओं तक पहुँच"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "नेटवर्क औज़ारों तक पहुँच"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "संकलन औज़ारों तक पहुँच"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s को पहिले से ही जोड़ा जा चुका है)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "कृपया एक उपयोगकर्ता नाम बतायें"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "उपयोगकर्ता के नाम में सिर्फ़ अंग्रेजी के छोटे शब्द, संख्यायें, `-' और `_' होना चाहिए"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "उपयोगकर्ता नाम काफ़ी लंबा है"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "यह उपयोगकर्ता नाम पहिले से विद्यमान है"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "उपयोग-कर्ता पहचान संख्या"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "समूह पहचान संख्या"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s विकल्प को एक संख्या होना चाहिए !"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "उपयोगकर्ता का नाम"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "महा-उपयोगकर्ता कूट-शब्द को निर्धारित करें"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"एक उपयोगकर्ता को बतायें\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "आईकॉन"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "वास्तविक नाम"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "संत्र-आरम्भ नाम"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "कोश"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "कृपया प्रतीक्षा करें, माध्यम को जोड़ा जा रहा है..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "स्वतः संत्र-आरम्भ"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"मै आपके कम्प्यूटर को एक उपयोगकर्ता के लिए स्वतः ही संत्र-आरम्भ करने के लिए स्थापित कर सकता "
"हूँ ।"
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "क्या आप इस लक्षण का उपयोग करना चाहते है?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "डिफ़ाल्ट उपयोगकर्ता का चयन:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "चलाने के लिए विण्डो प्रबंधक का चयन करे:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "संस्मरण: "
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "बन्द"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "अनुज्ञापत्र एकरारनामा"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "निकास"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "कया आपके पास एक और है ?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "स्वीकार"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "अस्वीकृत"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "कृपया उपयोग में लायी जाने वाली एक भाषा का चयन करें ।"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -548,87 +548,87 @@ msgstr ""
"का चयन करें जिसे आप संसाधन करना चाहते है । जब आपका संसाधन समाप्त हो\n"
"जायेगा और जब आप अपने तंत्र को पुनः आरम्भ करेगें, तो ये उपलब्ध हो जायेगी ।"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "मैनड्रैकलिनक्स"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "सभी भाषायें"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "सभी भाषायें"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "मैनुअल पसन्द"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "देश / क्षेत्र"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "कृपया अपने देश का चयन करें ।"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "यह है उपलब्ध देशों की सम्पूर्ण सूची"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "दूसरे पोर्ट"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "उन्नत"
-#: any.pm:1250
+#: any.pm:1243
#, fuzzy, c-format
msgid "Input method:"
msgstr "नेट विधि:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "कुछ नहीं"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "कोई सहभाजिता नहीं"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "सभी उपयोगकर्ताओं को अनुमति"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "इच्छानुसार"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -643,21 +643,21 @@ msgstr ""
"\n"
"\"कस्टम\" एक प्रत्येक-उपयोगकर्ता ग्रॉन्युलॉरटि की आज्ञा देता है।\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -665,12 +665,12 @@ msgstr ""
"एन०एफ़०एस० या सॉबा का उपयोग करके आप एक्सपोर्ट कर सकते है । कृपया चयन करें आप किस का "
"उपयोग करना चाहते है ।"
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "यूज़रड्रैक को आरम्भ करें"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -679,7 +679,7 @@ msgstr ""
"प्रत्येक-उपयोगकर्ता सहभाजिता \"संचिकासाझा\" समूह का उपयोग करती है।\n"
"आप यूजरड्रैक का उपयोग करके एक उपयोगकर्ता को इस समूह में जोड़ सकते है।"
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -687,48 +687,48 @@ msgid ""
msgstr ""
"परिवर्तनों को प्रभाव में लाने के लिए, आपको संत्र-समाप्त करके पुन: संत्र-आरम्भ करना होगा"
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"परिवर्तनों को प्रभाव में लाने के लिए, आपको संत्र-समाप्त करके पुन: संत्र-आरम्भ करना होगा"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "समय क्षेत्र"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "आपका समय-क्षेत्र क्या है?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "हार्डवेयर घड़ी को जी०एम०टी० पर स्थापित कर दिया गया है"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "हार्डवेयर घड़ी को जी०एम०टी० पर स्थापित कर दिया गया है"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "एन०टी०पी० सर्वर"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr " स्वचालित समय एकसारीकरण (एनटीपी का उपयोग करते हुए)"
@@ -1051,7 +1051,7 @@ msgid "Domain Admin Password"
msgstr "डोमेन प्रबंधन कूट-शब्द"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1066,47 +1066,47 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "पाठ्य मीनू के साथ लिलो"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "याबूट"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "एस०आई०एल०ओ०"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "/boot में इतना स्थान नहीं है"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "एक %s विभाजन पर आप बूट-लोडर को संसाधित नहीं कर सकते है\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1115,7 +1115,7 @@ msgstr ""
"आपकी बूटलोडर संरचना को अपडेट करना आवश्यक है क्योंकि विभाजन कोनयी क्रम-संख्या दी जा चुकी "
"है"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1124,7 +1124,7 @@ msgstr ""
"बूटलोडर को भली-भांति संसाधित नहीं किया जा सका । आपको बूट को बचाव विधा में करना होगा "
"और\"%s\" का चयन करना होगा"
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "बूटलोडर को पुनः संसाधित करना"
@@ -1225,7 +1225,7 @@ msgstr "आरोह बिन्दु"
msgid "Options"
msgstr "विकल्पों"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "हटाना"
@@ -1331,7 +1331,7 @@ msgid "Continue"
msgstr "जारी"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1453,7 +1453,7 @@ msgid "More"
msgstr "और अधिक"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "संरचना"
@@ -2245,8 +2245,8 @@ msgstr "परिवर्तन का प्रकार"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "निरस्त"
@@ -2749,13 +2749,13 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "विभाजनीकरण असफ़ल: %s "
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
"१६ एम०बी० से कम के लिए विभाजनों के लिए जे०एफ़०एस० का उपयोग नहीं किया जा सकता है"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3255,7 +3255,7 @@ msgstr ""
"- या फ़िर नवीन ALSA ऐपीआई जो कि अनेकों परिष्कॄत लक्षणों को प्रदान करती है परन्तु ALSA "
"लेखागार के उपयोग को चाहती है।\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "चालक:"
@@ -3308,60 +3308,74 @@ msgstr "सांउड समस्या के निवारण हेत
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"क्लासिक साउण्ड दोष परीक्षक निम्नलिखित निर्देशों को चलाता है:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" आपको बतायेगा कि डिफ़ाल्ट की भांति आपका\n"
-"कार्ड कौन-से चालक का उपयोग करता है।\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" आपको बतायेगा कि यह वर्तमान में\n"
-" किस चालक का उपयोग कर रहा है\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/lsmod\" आपको यह जाँच करने में समर्थ बनायेगा कि इसके मॉडयूल (चालक)\n"
-"आरोहित है कि नहीं\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" और \"/sbin/chkconfig --list alsa\" \n"
-"आपको बतायेगें कि इनिट-स्तर-३ पर चलने के लिए यदि साउण्ड व alsa सेवायें \n"
-"संरचित है\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"aumix -q\" आपको बतायेगा कि साउण्ड का वाल्यूम को मौन कर दिया गया है कि नहीं\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" बतायेगा कि कौन कार्यक्रम साउण्ड कार्ड का उपयोग कर "
-"रहा है।\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "मुझे किसी चालक को लेने दें"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "एक स्वच्छन्द चालक का चयन करना"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3441,12 +3455,12 @@ msgstr "नहीं"
msgid "Choose a file"
msgstr "एक संचिका का चयन करें"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "जोड़ें"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "परिवर्तन"
@@ -3481,7 +3495,7 @@ msgstr "डिरेक्ट्री नहीं है"
msgid "No such file"
msgstr "ऐसी कोई फ़ाइल नहीं '%s'\n"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4768,17 +4782,17 @@ msgstr "%s में स्वागत"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "काल्पनिक भागों को पहिले हटायें\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5233,12 +5247,12 @@ msgstr "क्या आप इस बटन पर क्लिक करना
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "कूट-शब्द आवश्यक"
@@ -5464,8 +5478,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6523,7 +6537,7 @@ msgstr "सुदूर प्रबंधन"
msgid "Database Server"
msgstr "डाटाबेस सर्वर"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "सेवायें"
@@ -6538,22 +6552,22 @@ msgstr "बूट-समय के स्वतः आरम्भ होने
msgid "%d activated for %d registered"
msgstr "%d सक्रिय की गई %d पंजीकॄत की हुई के लिए"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "चल रहा है"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "रोका गया"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "सेवायें और डैमन"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6562,27 +6576,27 @@ msgstr ""
"क्षमा करें, इस सेवा के बारे में\n"
"कोई अतिरिक्त सूचना उपलब्ध नहीं"
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "सूचना"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "जब निवेदन किया जायें तब आरम्भ"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "बूट पर"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "आरम्भ"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "रूको"
@@ -6833,6 +6847,51 @@ msgstr ""
msgid "Installation failed"
msgstr "संसाधन असफ़ल"
+#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "क्लासिक साउण्ड दोष परीक्षक निम्नलिखित निर्देशों को चलाता है:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" आपको बतायेगा कि डिफ़ाल्ट की भांति आपका\n"
+#~ "कार्ड कौन-से चालक का उपयोग करता है।\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" आपको बतायेगा कि यह वर्तमान में\n"
+#~ " किस चालक का उपयोग कर रहा है\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" आपको यह जाँच करने में समर्थ बनायेगा कि इसके मॉडयूल (चालक)\n"
+#~ "आरोहित है कि नहीं\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" और \"/sbin/chkconfig --list alsa\" \n"
+#~ "आपको बतायेगें कि इनिट-स्तर-३ पर चलने के लिए यदि साउण्ड व alsa सेवायें \n"
+#~ "संरचित है\n"
+#~ "\n"
+#~ "- \"aumix -q\" आपको बतायेगा कि साउण्ड का वाल्यूम को मौन कर दिया गया है कि नहीं\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" बतायेगा कि कौन कार्यक्रम साउण्ड कार्ड का उपयोग "
+#~ "कर रहा है।\n"
+
#~ msgid "File sharing"
#~ msgstr "संचिका सहभाजन"
@@ -6999,8 +7058,8 @@ msgstr "संसाधन असफ़ल"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index f3014db9e..645602dec 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2005-01-04 21:25+CET\n"
"Last-Translator: auto\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -16,7 +16,7 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;;\n"
"X-Generator: TransDict server\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -25,12 +25,12 @@ msgstr ""
msgid "Please wait"
msgstr "Molim pričekajte"
-#: any.pm:261
+#: any.pm:255
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Bootloader instalacija"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -41,13 +41,13 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Instalacija bootloader-a nije uspjela. Prijavljena je slijedeća grešska:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -64,7 +64,7 @@ msgstr ""
" Tada napišite: shut-down\n"
"Pri slijedećem podizanju trebali biste vidjeti prompt bootloadera."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -79,269 +79,269 @@ msgstr ""
"\n"
"Sa kojeg diska želite podizati?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Bootloader instalacija"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite instalirati bootloader?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Prvi sektor pogona (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor pogona (MBR)"
-#: any.pm:372
+#: any.pm:366
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Prvi sektor boot particije"
-#: any.pm:374
+#: any.pm:368
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Spremi na disketu"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Preskoči"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Postava Stila Podizanja"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Glavne postavke bootloadera"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Program za pokretanje sustava"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Koristiti Bootloader"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Boot uređaj"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Odgoda prije bootiranja uobičajenog imagea"
-#: any.pm:440
+#: any.pm:433
#, fuzzy, c-format
msgid "Enable ACPI"
msgstr "Omogući CD podizanje?"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Omogući CD podizanje?"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Omogući CD podizanje?"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Omogući CD podizanje?"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sigurnost"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Lozinka"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Lozinke se ne podudaraju"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Molim pokušajte ponovo"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"Ne možete koristiti enkriptirani datotečni sustav za točku montiranja %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Lozinka (provjera)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Očisti /tmp na svakom podizanju"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Init poruka"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Pauza Otvorenog Firmware-a"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Vrijeme čekanja podizanja kernela"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Omogući CD podizanje?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Omogući podizanje?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Uobičajeni OS?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Slika"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Korijen"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Dodaj"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Video mod"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "Mrežni međusklop"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Oznaka"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Uobičajeno"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NemaVidea"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Morate odrediti sliku kernela"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Morate odrediti root particiju"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Ova oznaka već postoji"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kakvu vrstu zapisa želite dodati"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Drugi OS (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Drugi OS (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Drugi OS (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Postava Stila Podizanja"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -350,198 +350,198 @@ msgstr ""
"Ovo su trenutni zapisi.\n"
"Možete dodati još koji ili urediti postojeći."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "pristup administracijskim datotekama"
-#: any.pm:871
+#: any.pm:864
#, fuzzy, c-format
msgid "access to network tools"
msgstr "pristup rpm alatima"
-#: any.pm:872
+#: any.pm:865
#, fuzzy, c-format
msgid "access to compilation tools"
msgstr "pristup rpm alatima"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(već postoji %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisničko ime"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime može sadržavati samo mala slova, brojeve, `-' i `_'"
-#: any.pm:886
+#: any.pm:879
#, fuzzy, c-format
msgid "The user name is too long"
msgstr "Ovaj korisnik već postoji"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Ovaj korisnik već postoji"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Korisnički ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID grupe"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opcija %s mora biti broj!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Korisničko ime"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Podešavanje root lozinke"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Unesite korisnika\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Sličica"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Puno ime"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Korisnička oznaka"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Ljuska"
-#: any.pm:971
+#: any.pm:964
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Provjeravam ovisnosti..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Auto-prijava"
-#: any.pm:1004
+#: any.pm:997
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Mogu podesiti da se vaše računalo automatski prijavi kao jedan korisnik.\n"
"Da li želite koristiti tu pogodnost?"
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Da li želite koristiti aboot?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Izaberite uobičajenog korisnika:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Izaberite prozorski upravitelj koji želite pokrenuti:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Molim pričekajte"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Zatvori"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Licencni dogovor"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Izlaz"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Da li imate još koji?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Prihvati"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Odbij"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Molim izaberite jezik koji želite koristiti"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -549,87 +549,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Možete izabrati druge jezike koji će biti dostupni nakon instalacije"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Svi jezici"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Svi jezici"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "Myanmar"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Država / Regija"
-#: any.pm:1241
+#: any.pm:1234
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "Molim izaberite koju vrstu miša koristite"
-#: any.pm:1243
+#: any.pm:1236
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "Ovdje je cijeli popis raspoloživih tipkovnica"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Iskušaj portove"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "&Napredno"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Nijedan"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Nema dijeljenja"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Prilagođeno"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -646,32 +646,32 @@ msgstr ""
"\n"
"\"Proizvoljno\" će omogućiti dozvoljavanje po korisniku.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Možete izvesti koristeći NFS ili Sambu. Koji od njih želite"
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -680,54 +680,54 @@ msgstr ""
"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
"Možete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Vremenska zona"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Vaš hardverski sat namješten je na GMT"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Vaš hardverski sat namješten je na GMT"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP Poslužitelj"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska vremenska sinkronizacija (koristeći NTP)"
@@ -1056,7 +1056,7 @@ msgstr "Zaporka administratora domene"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, fuzzy, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1071,61 +1071,61 @@ msgstr ""
"pricekajte %d sekundi za uobicajeno podizanje.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "nema dovoljno mjesta u /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Instaliraj bootloader"
@@ -1219,7 +1219,7 @@ msgstr "Točka montiranja"
msgid "Options"
msgstr "Odrednice"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Ukloni"
@@ -1325,7 +1325,7 @@ msgid "Continue"
msgstr "Nastavi"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1450,7 +1450,7 @@ msgid "More"
msgstr "Više"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Postavke"
@@ -2240,8 +2240,8 @@ msgstr "Promijeni tip"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Odustani"
@@ -2748,12 +2748,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Particioniranje neuspjelo: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "JFS se ne može koristiti na particijama koje su manje od 16 MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS se ne može koristiti na particijama koje su manje od 32 MB"
@@ -3230,7 +3230,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Upravljački program:"
@@ -3276,40 +3276,74 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Dopusti da sam odaberem upravljački program"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Odaberite nametnuti upravljački program"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3381,12 +3415,12 @@ msgstr "Ne"
msgid "Choose a file"
msgstr "Izaberite datoteku"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Dodaj"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Izmijeni"
@@ -3421,7 +3455,7 @@ msgstr "Nije mapa"
msgid "No such file"
msgstr "Datoteka ne postoji"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4708,17 +4742,17 @@ msgstr "Dobrodošli u %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Ukloni logički volumen prvo\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5163,12 +5197,12 @@ msgstr "Da li želite kliknuti na ovaj gumb? "
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Lozinka"
@@ -5400,8 +5434,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6523,7 +6557,7 @@ msgstr "Udaljeno administriranje"
msgid "Database Server"
msgstr "Poslužitelj baza podataka"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servisi"
@@ -6538,22 +6572,22 @@ msgstr "Izaberite koji servisi trebaju biti startani automatski kod boot-a"
msgid "%d activated for %d registered"
msgstr "%d aktiviran za %d registriran"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "radi"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "zaustavljen"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Servisi i daemoni"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6562,27 +6596,27 @@ msgstr ""
"Nema dodatnih informacija\n"
"o ovom servisu, žalim."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Pri pokretanju"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Započni"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Zaustavi"
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index f1b597564..89e726692 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX-2010.1\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2010-06-20 19:10+0100\n"
"Last-Translator: Gergely Lónyai <aleph@mandriva.org>\n"
"Language-Team: Hungarian <aleph@mandriva.org>\n"
@@ -22,7 +22,7 @@ msgstr ""
"X-Poedit-Country: HUNGARY\n"
"X-Poedit-SourceCharset: utf-8\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -31,12 +31,12 @@ msgstr ""
msgid "Please wait"
msgstr "Kis türelmet..."
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "A rendszerindító program telepítése folyamatban"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -53,12 +53,12 @@ msgstr ""
"\n"
"Szeretné folytatni a kötetazonosító módosítását?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "A rendszerbetöltő telepítése nem sikerült. A hiba a következő:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -75,7 +75,7 @@ msgstr ""
" Majd gépelje be ezt: shut-down\n"
"A következő indítás után meg kell jelennie a promptnak."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -92,268 +92,268 @@ msgstr ""
"\n"
"Melyik meghajtóról végzi a rendszer indítását?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Rendszerindító telepítése"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Hová kerüljön a rendszerindító program (bootloader)?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "A %s lemezmeghajtó legelső szektora (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "A lemezmeghajtó legelső szektora (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "A gyökérpartíció első szektora"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Hajlékonylemez"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Kihagyás"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "A rendszerindítás beállításai"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Rendszerindítási beállítások"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Rendszerbetöltő"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "A használni kívánt rendszerbetöltő"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Rendszerindítási eszköz"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Fő beállítások"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Várakozási idő az alapértelmezett rendszer betöltése előtt"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "ACPI bekapcsolása"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "SMP bekapcsolása"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "APIC bekapcsolása"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Helyi APIC bekapcsolása"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Biztonság"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Jelszó"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "A jelszavak nem egyeznek"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Próbálja meg újra"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Nem használható jelszó ezzel: %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Jelszó (még egyszer)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "A /tmp törlése minden újraindulásnál"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Indítási üzenet"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Késleltetés Open Firmware-nél"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Várakozási idő rendszerindításkor"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "CD-ről történhessen rendszerindítás?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "OF-ről történhessen rendszerindítás?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Az alapértelmezett op. rendszer?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Indítófájl"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Gyökér"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Hozzáfűzés"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen hozzáfűzés"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Kötelező a jelszó a rendszerindításhoz"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Képernyőmód"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Indítási RAM diszk"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Hálózati profil"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Címke"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Alapértelmezés"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "A címke nem lehet üres"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Meg kell adni egy kernelfájlt"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Meg kell adni egy gyökérpartíciót"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Már van ilyen nevű címke"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Milyen bejegyzést szeretne felvenni?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Egyéb op. rendszer (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Egyéb op. rendszer (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Egyéb op. rendszer (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Rendszerindító beállítása"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -362,47 +362,47 @@ msgstr ""
"Itt láthatók az indítási menü jelenlegi bejegyzései.\n"
"Új bejegyzések vehetők fel, illetve módosíthatók a meglevők."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "hozzáférés az X-es programokhoz"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "hozzáférés az RPM eszközökhöz"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "\"su\" engedélyezése"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "hozzáférés az adminisztrációs fájlokhoz"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "hozzáférés a hálózati eszközökhöz"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "hozzáférés a fordítási eszközökhöz"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(már fel van véve: %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Adjon meg egy felhasználónevet"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -411,149 +411,149 @@ msgstr ""
"A felhasználónévnek kötelező kisbetűvel kezdődnie, és csak kisbetűket, "
"számokat, `-' és `_' jeleket tartalmazhat"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "A felhasználónév túl hosszú"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Már létezik ilyen felhasználónév"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Felh.-azonosító"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Csoportazonosító"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "A(z) \"%s\" értéknek számnak kell lennie"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "A(z) \"%s\" értéknek 500-nál nagyobbnak kell lennie. Mégis elfogadja?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Felhasználó kezelés"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Vendég hozzáférés engedélyezése"
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "A rendszergazdai (root) jelszó beállítása"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Adjon meg egy felhasználót"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Valódi név"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Bejelentkezési név"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Parancsértelmező"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Adatforrások felvétele..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatikus bejelentkezés"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Beállítható, hogy rendszerindításkor egy felhasználó automatikusan "
"bejelentkezzen."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "A lehetőség használata"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Adja meg az alapértelmezett felhasználónevet:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Válassza ki a használni kívánt ablakkezelőt:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Verzióinformáció"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Bezárás"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Licencegyezmény"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Kilépés"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Elfogadja ezt a licencet?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Elfogadom"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Nem fogadom el"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Válasszon nyelvet"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -564,87 +564,87 @@ msgstr ""
"mely nyelveket szeretné telepíteni. Ezek a telepítés befejeződése\n"
"utáni újraindítást követően lesznek elérhetők."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Több nyelv"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Régebbi kompatibilitási (nem UTF-8) kódolás"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Az összes nyelv"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Nyelvválasztás"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Ország/terület"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Válassza ki az országot"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Itt található az elérhető országok listája"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Egyéb országok"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Speciális"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Beviteli módszer:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Egyik sem"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Nincs megosztás"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Az összes felhasználó engedélyezése"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Egyéni"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -662,7 +662,7 @@ msgstr ""
"\n"
"Az \"Egyéni\" opció használatával felhasználónkénti beállítás lehetséges.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -671,7 +671,7 @@ msgstr ""
"NFS: a hagyományos UNIX-os fájlmegosztási rendszer - Macintosh és Windows "
"alatt kevésbé támogatott."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -679,7 +679,7 @@ msgid ""
msgstr ""
"SMB: Windows, Mac OS X és Linux alatt használatos fájlmegosztási módszer."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -687,12 +687,12 @@ msgstr ""
"Exportálás NFS-sel vagy Sambával végezhető. Válassza ki, melyiket kívánja "
"használni."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "UserDrake indítása"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -701,7 +701,7 @@ msgstr ""
"A felhasználónkénti megosztás a \"fileshare\" csoportot használja.\n"
"A UserDrake programmal lehet felhasználót felvenni ebbe a csoportba."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -710,47 +710,47 @@ msgstr ""
"A módosítások érvénybe lépéséhez ki kell lépni, majd ismét belépni. "
"Kattintson az OK gombra az azonnali kilépéshez."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "A módosítások érvénybe lépéséhez ki kell lépni, majd ismét belépni"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Időzóna"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Melyik időzónát választja?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dátum-, óra- és időzóna-beállítások"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Melyik a legmegfelelőbb idő?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (a gép órája az UTC időt mutatja)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (a gép órája a helyi időt mutatja)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP kiszolgáló"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatikus időszinkronizáció (NTP-vel)"
@@ -1091,7 +1091,7 @@ msgstr "Tartományadminisztrátor jelszava"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1106,47 +1106,47 @@ msgstr ""
"amig az alapertelmezett elindul.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO, szöveges menüvel"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB, grafikus menüvel"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB, grafikus menüvel"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB, szöveges menüvel"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "nincs elég hely a /boot partíción"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "A rendszerindító program nem tehető %s partícióra\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1155,7 +1155,7 @@ msgstr ""
"A rendszerindító beállításait frissíteni kell, mivel a partíciók számozása "
"módosult."
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1164,7 +1164,7 @@ msgstr ""
"A rendszerindító nem telepíthető. Indítsa el a rendszert egy helyreállítási "
"lemezzel, majd válassza ezt: \"%s\"."
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Rendszerindító újratelepítése"
@@ -1263,7 +1263,7 @@ msgstr "Csatolási pont"
msgid "Options"
msgstr "Beállítások"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Eltávolítás"
@@ -1370,7 +1370,7 @@ msgid "Continue"
msgstr "Folytatás"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1492,7 +1492,7 @@ msgid "More"
msgstr "Egyéb"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Megerősítés"
@@ -2296,8 +2296,8 @@ msgstr "A típus megváltoztatása"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Mégsem"
@@ -2819,12 +2819,12 @@ msgstr "Ez a merevlemezének a tartalma"
msgid "Partitioning failed: %s"
msgstr "A partícionálás nem sikerült: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Nem lehet JFS-t használni 16 MB-nál kisebb partíción"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Nem lehet ReiserFS-t használni 32 MB-nál kisebb partíción"
@@ -3327,7 +3327,7 @@ msgstr ""
" - ALSA-hívásokkal, amelyek fejlettebb funkciókat valósítanak meg, de ehhez "
"szükség van az ALSA-könyvtár használatára.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Meghajtó:"
@@ -3381,61 +3381,74 @@ msgstr "Hangprobléma elhárítása"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Hangprobléma esetén a következő parancsokat érdemes használni:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\": kiírja, melyik meghajtót használja\n"
-"alapértelmezésben a hangkártya\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\": kiírja, milyen meghajtó "
-"használata\n"
-"van jelenleg beállítva\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/lsmod\": ezzel ellenőrizhető, hogy be van-e töltve a megfelelő\n"
-"modul (meghajtó)\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" és \"/sbin/chkconfig --list alsa\":\n"
-"kiírják, hogy a hangszolgáltatások futtatva vannak-e bizonyos futási\n"
-"szinteken\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"aumix -q\": kiírja, hogy a hangerő le van-e véve vagy sem\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\": kiírja, hogy melyik program használja a\n"
-"hangkártyát\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Szeretnék meghajtót választani"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Tetszőleges meghajtó kiválasztása"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3516,12 +3529,12 @@ msgstr "Nem"
msgid "Choose a file"
msgstr "Válasszon egy fájlt"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Hozzáadás"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Módosítás"
@@ -3556,7 +3569,7 @@ msgstr "Nincs ilyen könyvtár"
msgid "No such file"
msgstr "Nincs ilyen fájl"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Figyelmeztetés: a Caps Lock be van kapcsolva"
@@ -4848,17 +4861,17 @@ msgstr ""
"Nem sikerült áthelyezni a használatban levő fizikai kiterjedéseket más "
"fizikai kötetekre"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "A(z) \"%s\" fizikai kötet még használatban van"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Először törölje az összes logikai kötetet\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5321,12 +5334,12 @@ msgstr "Tényleg szeretné törölni ezt a csatolási pontot?"
msgid "Password is trivial to guess"
msgstr "A jelszó nagyon egyszerű"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "A Jelszó valószínűleg kibír egy egyszerűbb támadást"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "A jelszó biztonságosnak tűnik"
@@ -5567,8 +5580,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Engedélyezés a következők számára:\n"
"\n"
@@ -6791,7 +6804,7 @@ msgstr "Távoli adminisztráció"
msgid "Database Server"
msgstr "Adatbázis kiszolgáló"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Szolgáltatások"
@@ -6806,22 +6819,22 @@ msgstr "Válassza ki, mely szolgáltatások induljanak el rendszerindításkor"
msgid "%d activated for %d registered"
msgstr "%d aktivált, %d regisztrált"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "fut"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "leállítva"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Szolgáltatások és démonok"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6830,27 +6843,27 @@ msgstr ""
"Nem érhető el további információ\n"
"erről a szolgáltatásról."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Információ"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Indítás kérésre"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Rendszerindításkor"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Indítás"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Leállítás"
@@ -7189,6 +7202,52 @@ msgid "Installation failed"
msgstr "A telepítés hibával ért véget."
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Hangprobléma esetén a következő parancsokat érdemes használni:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\": kiírja, melyik meghajtót használja\n"
+#~ "alapértelmezésben a hangkártya\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\": kiírja, milyen meghajtó "
+#~ "használata\n"
+#~ "van jelenleg beállítva\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\": ezzel ellenőrizhető, hogy be van-e töltve a megfelelő\n"
+#~ "modul (meghajtó)\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" és \"/sbin/chkconfig --list alsa\":\n"
+#~ "kiírják, hogy a hangszolgáltatások futtatva vannak-e bizonyos futási\n"
+#~ "szinteken\n"
+#~ "\n"
+#~ "- \"aumix -q\": kiírja, hogy a hangerő le van-e véve vagy sem\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\": kiírja, hogy melyik program használja a\n"
+#~ "hangkártyát\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
@@ -7647,8 +7706,8 @@ msgstr "A telepítés hibával ért véget."
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 1e5f758d1..59231c57c 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -16,7 +16,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2012-12-25 09:35+0700\n"
"Last-Translator: Kiki Syahadat <kiki.syahadat@yahoo.co.id>\n"
"Language-Team: Indonesia <mdk-id@yahoogroups.com>, Translation list <mageia-"
@@ -27,7 +27,7 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -36,12 +36,12 @@ msgstr ""
msgid "Please wait"
msgstr "Silakan tunggu"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Instalasi bootloader sedang berjalan"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -57,12 +57,12 @@ msgstr ""
"\n"
"Beri Volume ID baru?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Instalasi bootloader gagal. Error berikut terjadi:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -79,7 +79,7 @@ msgstr ""
" Lalu ketik: shut-down\n"
"Saat boot berikutnya Anda seharusnya bisa melihat prompt bootloader."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -94,268 +94,268 @@ msgstr ""
"\n"
"Pada drive mana Anda booting?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Instalasi Bootloader"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Di mana Anda ingin menginstall bootloader?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Sektor pertama (MBR) dari drive %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Sektor pertama dari drive (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Sektor pertama dari partisi root"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Pada Floppy"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Lewatkan"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfigurasi Gaya Boot"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Opsi utama bootloader"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader yang akan digunakan"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Device boot"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Opsi utama"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Jeda sebelum booting image default"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Hidupkan ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Hidupkan SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Hidupkan APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Hidupkan APIC Lokal"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Keamanan"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Sandi"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Sandi tidak cocok"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Silakan coba lagi"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Anda tidak bisa menggunakan sandi dengan %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Sandi (lagi)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Bersihkan /tmp setiap boot"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Pesan Init"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Jeda Open Firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Timeout Boot Kernel"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Hidupkan Boot CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Hidupkan Boot OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "OS default?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Tambahkan"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Tambahkan Xen"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Memerlukan sandi untuk boot"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Mode video"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Profil jaringan"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Default"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "TanpaVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Label kosong tidak diizinkan"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Anda harus menentukan image kernel"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Anda harus menentukan partisi root"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Label ini sudah digunakan"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Tipe entri mana yang ingin Anda tambahkan?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "OS lain (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "OS lain (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "OS lain (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Konfigurasi Bootloader"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -364,47 +364,47 @@ msgstr ""
"Ini adalah daftar pada menu boot Anda saat ini.\n"
"Anda bisa membuat entri tambahan atau mengubah yang sudah ada."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "akses ke program X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "akses ke peralatan rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "izinkan \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "akses ke file administratif"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "akses ke peralatan jaringan"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "akses ke peralatan kompilasi"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s sudah ditambahkan)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Silakan berikan nama pengguna"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -413,147 +413,148 @@ msgstr ""
"Nama pengguna harus dimulai dengan huruf kecil diikuti oleh hanya huruf "
"kecil, nomor, `-' dan `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Nama pengguna terlalu panjang"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Nama pengguna ini sudah pernah ditambahkan"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID Pengguna"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID Grup"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s harus berupa nomor"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s harus di atas 500. Terima saja?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Manajemen pengguna"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Hidupkan akun tamu"
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Atur sandi administrator (root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Masukkan pengguna"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Ikon"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Nama asli"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Nama login"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Silakan tunggu, menambahkan media..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Login otomatis"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
-msgstr "Kita bisa mengatur komputer agar login secara otomatis ke satu pengguna."
+msgstr ""
+"Kita bisa mengatur komputer agar login secara otomatis ke satu pengguna."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Gunakan fitur ini"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Pilih pengguna default:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Pilih manajer window yang akan dijalankan:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Catatan Rilis"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Tutup"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Perjanjian lisensi"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Keluar"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Apakah Anda menerima lisensi ini?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Terima"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Tolak"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Silakan pilih bahasa yang akan digunakan"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -564,87 +565,87 @@ msgstr ""
"bahasa yang ingin Anda install. Mereka akan tersedia\n"
"setelah instalasi selesai dan Anda merestart sistem."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "Banyak bahasa"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr "Pilih Bahasa Tambahan"
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Enkoding kompatibilitas lama (non UTF-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Semua bahasa"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Pilihan bahasa"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Negara / Wilayah"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Silakan pilih negara Anda"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ini adalah daftar lengkap negara yang tersedia"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Negara Lainnya"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Tingkat lanjut"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Metode input:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Tidak ada"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Tanpa sharing"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Izinkan semua pengguna"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Kustomisasi"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -654,12 +655,12 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"Apakah Anda akan mengzinkan pengguna menshare beberapa direktori mereka?\n"
-"Mengizinkan ini akan memungkinkan pengguna untuk mengklik pada \"Share\" "
-"di konqueror dan nautilus.\n"
+"Mengizinkan ini akan memungkinkan pengguna untuk mengklik pada \"Share\" di "
+"konqueror dan nautilus.\n"
"\n"
"\"Kustomisasi\" izin per-pengguna.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -668,7 +669,7 @@ msgstr ""
"NFS: sistem sharing file tradisional Unix, dengan sedikit dukungan untuk Mac "
"dan Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -677,7 +678,7 @@ msgstr ""
"SMB: sistem sharing file yang digunakan oleh Windows, Mac OS X dan banyak "
"sistem Linux modern."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -685,12 +686,12 @@ msgstr ""
"Anda bisa mengekspor menggunakan NFS atau SMB. Silakan pilih mana yang ingin "
"Anda gunakan."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Jalankan userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -699,7 +700,7 @@ msgstr ""
"Sharing per-pengguna menggunakan grup \"fileshare\". \n"
"Anda bisa menggunakan userdrake untuk menambahkan pengguna ke grup ini."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -708,47 +709,47 @@ msgstr ""
"Anda perlu logout dan masuk kembali agar perubahan berlaku. Tekan OK untuk "
"logout sekarang."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Anda perlu logout dan masuk kembali agar perubahan berlaku"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Zona waktu"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Yang mana zona waktu Anda?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Pengaturan Tanggal, Jam & Zona Waktu"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Mana waktu terbaik?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (jam hardware diatur ke UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (jam hardware diatur ke waktu lokal)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Server NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sinkronisasi waktu otomatis (menggunakan NTP)"
@@ -1088,7 +1089,7 @@ msgid "Domain Admin Password"
msgstr "Sandi Admin Domain"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1103,47 +1104,47 @@ msgstr ""
"tunggu boot default.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO dengan menu teks"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 dengan menu grafis"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB dengan menu grafis"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB dengan menu teks"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "tidak cukup ruang di /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Anda tidak bisa menginstall bootloader pada partisi %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1152,7 +1153,7 @@ msgstr ""
"Konfigurasi bootloader Anda harus diupdate karena partisi telah mengalami "
"penomoran ulang"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1161,7 +1162,7 @@ msgstr ""
"Bootloader tidak bisa diinstall dengan benar. Anda harus melakukan boot "
"rescue dan memilih \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Install ulang Boot Loader"
@@ -1259,7 +1260,7 @@ msgstr "Titik mount"
msgid "Options"
msgstr "Opsi"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Hapus"
@@ -1366,7 +1367,7 @@ msgid "Continue"
msgstr "Lanjutkan"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1488,7 +1489,7 @@ msgid "More"
msgstr "Lainnya"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Konfirmasi"
@@ -2286,8 +2287,8 @@ msgstr "Ubah tipe"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Batal"
@@ -2317,8 +2318,8 @@ msgstr "Yang lain"
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-"Silakan masukkan nama pengguna Anda, sandi dan nama domain untuk "
-"mengakses host ini."
+"Silakan masukkan nama pengguna Anda, sandi dan nama domain untuk mengakses "
+"host ini."
#: diskdrake/smbnfs_gtk.pm:180
#, c-format
@@ -2461,8 +2462,8 @@ msgid ""
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Jangan update waktu akses inode pada sistem file ini\n"
-"(misal, untuk akses lebih cepat pada spool berita untuk mempercepat "
-"server berita)."
+"(misal, untuk akses lebih cepat pada spool berita untuk mempercepat server "
+"berita)."
#: fs/mount_options.pm:122
#, c-format
@@ -2471,8 +2472,8 @@ msgid ""
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Update waktu akses inode pada sistem file ini dengan cara lebih efisien\n"
-"(misal, untuk akses lebih cepat pada spool berita untuk mempercepat "
-"server berita)."
+"(misal, untuk akses lebih cepat pada spool berita untuk mempercepat server "
+"berita)."
#: fs/mount_options.pm:125
#, c-format
@@ -2748,8 +2749,8 @@ msgid ""
"You have more than one hard disk drive, which one do you want the installer "
"to use?"
msgstr ""
-"Anda memiliki lebih dari satu drive hard disk, mana yang ingin Anda "
-"gunakan untuk installer?"
+"Anda memiliki lebih dari satu drive hard disk, mana yang ingin Anda gunakan "
+"untuk installer?"
#: fs/partitioning_wizard.pm:245 fsedit.pm:634
#, c-format
@@ -2800,12 +2801,12 @@ msgstr "Ini adalah isi dari drive disk Anda"
msgid "Partitioning failed: %s"
msgstr "Pemartisian gagal: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Anda tidak bisa menggunakan JFS untuk partisi kurang dari 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Anda tidak bisa menggunakan ReiserFS untuk partisi kurang dari 32MB"
@@ -2841,8 +2842,7 @@ msgid ""
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
-"Tidak bisa membaca tabel partisi device %s, sudah sangat rusak :"
-"(\n"
+"Tidak bisa membaca tabel partisi device %s, sudah sangat rusak :(\n"
"Bisa dicoba dilanjutkan, menghapus semua partisi yang rusak (SEMUA DATA akan "
"hilang!).\n"
"Solusi lainnya adalah tidak mengizinkan DrakX memodifikasi tabel partisi.\n"
@@ -3268,8 +3268,8 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Perangkat suara Anda saat ini menggunakan driver %s\"%s\" (driver default untuk "
-"perangkat suara Anda adalah \"%s\")"
+"Perangkat suara Anda saat ini menggunakan driver %s\"%s\" (driver default "
+"untuk perangkat suara Anda adalah \"%s\")"
#: harddrake/sound.pm:371
#, c-format
@@ -3305,7 +3305,7 @@ msgstr ""
"- API ALSA baru yang menyediakan banyak peningkatan fitur tapi perlu "
"menggunakan library ALSA.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Driver:"
@@ -3358,60 +3358,74 @@ msgstr "Pemecahan masalah suara"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Tester suara bug klasik adalah menjalankan perintah berikut:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" memberitahu Anda driver mana yang\n"
-"digunakan oleh perangkat suara Anda secara default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" memberitahu Anda driver apa\n"
-"yang saat ini digunakan\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/lsmod\" akan memungkinkan Anda memeriksa jika modul (driver)\n"
-"dimuat atau tidak\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" dan \"/sbin/chkconfig --list alsa\" akan\n"
-"memberitahu Anda jika suara dan layanan alsa terkonfigurasi agar berjalan pada\n"
-"initlevel 3\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"aumix -q\" memberitahu Anda jika volume suara mute atau tidak\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" memberitahu program mana yang menggunakan "
-"perangkat suara.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Pilih sembarang driver"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Memilih sembarang driver"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3453,10 +3467,10 @@ msgid ""
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your TV card parameters if needed."
msgstr ""
-"Untuk kebanyakan perangkat TV modern, modul bttv dari kernel GNU/Linux langsung "
-"mendeteksi otomatis parameter yang benar.\n"
-"Jika perangkat Anda salah terdeteksi, Anda bisa memaksa tuner yang benar dan tipe "
-"perangkat di sini. Pilih parameter perangkat TV Anda jika perlu."
+"Untuk kebanyakan perangkat TV modern, modul bttv dari kernel GNU/Linux "
+"langsung mendeteksi otomatis parameter yang benar.\n"
+"Jika perangkat Anda salah terdeteksi, Anda bisa memaksa tuner yang benar dan "
+"tipe perangkat di sini. Pilih parameter perangkat TV Anda jika perlu."
#: harddrake/v4l.pm:478
#, c-format
@@ -3491,12 +3505,12 @@ msgstr "Tidak"
msgid "Choose a file"
msgstr "Pilih file"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Tambah"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Modifikasi"
@@ -3531,7 +3545,7 @@ msgstr "Tidak ada direktori"
msgid "No such file"
msgstr "Tidak ada file"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Hati-hati, Caps Lock dihidupkan"
@@ -4816,20 +4830,19 @@ msgstr "Selamat Datang di %s"
#: lvm.pm:92
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
-msgstr ""
-"Memindahkan perluasan fisik yang terpakai ke volume fisik lain gagal"
+msgstr "Memindahkan perluasan fisik yang terpakai ke volume fisik lain gagal"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Volume fisik %s masih digunakan"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Hapus volume logical terlebih dahulu\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Bootloader tidak bisa menangani /boot pada volume fisik multiple"
@@ -4900,15 +4913,15 @@ msgstr ""
"Silakan baca dokumen ini secara seksama. Dokumen ini adalah perjanjian "
"lisensi antara Anda \n"
"dan Mageia yang berlaku untuk Produk Software.\n"
-"Dengan menginstall, menduplikasi atau menggunakan Produk Software dengan cara "
-"apapun, Anda secara \n"
+"Dengan menginstall, menduplikasi atau menggunakan Produk Software dengan "
+"cara apapun, Anda secara \n"
"eksplisit menerima dan setuju untuk sesuai dengan syarat dan ketentuan dari "
"Lisensi ini. \n"
"Jika Anda tidak setuju dengan bagian manapun dari Lisensi, Anda tidak "
"diizinkan untuk menginstall, \n"
"menduplikasi atau menggunakan Produk Software. \n"
-"Setiap usaha untuk menginstall, menduplikasi atau menggunakan Produk Software "
-"dengan tujuan yang \n"
+"Setiap usaha untuk menginstall, menduplikasi atau menggunakan Produk "
+"Software dengan tujuan yang \n"
"tidak sesuai dengan syarat dan ketentuan akan membatalkan hak-hak Anda di "
"bawah Lisensi ini. \n"
"Pada saat berakhirnya Lisensi, Anda harus segera memusnahkan semua salinan "
@@ -5264,8 +5277,8 @@ msgstr ""
"ingin menentukan\n"
"opsi tambahan atau membiarkan driver mendeteksi komputer untuk mendapatkan "
"informasi yang\n"
-"diperlukan? Kadang-kadang, pendeteksian menyebabkan komputer hang, tapi "
-"ini tidak\n"
+"diperlukan? Kadang-kadang, pendeteksian menyebabkan komputer hang, tapi ini "
+"tidak\n"
"akan menyebabkan kerusakan."
#: modules/interactive.pm:145
@@ -5297,12 +5310,12 @@ msgstr "Apakah Anda yakin ingin keluar?"
msgid "Password is trivial to guess"
msgstr "Sandi mudah ditebak"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "Sandi harus tahan terhadap serangan dasar"
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "Sandi sepertinya aman"
@@ -5454,7 +5467,8 @@ msgid ""
"\n"
"Else only /etc/issue is allowed."
msgstr ""
-"Jika diatur ke \"SEMUA\", /etc/issue dan /etc/issue.net diizinkan untuk ada.\n"
+"Jika diatur ke \"SEMUA\", /etc/issue dan /etc/issue.net diizinkan untuk "
+"ada.\n"
"\n"
"Jika diatur ke \"Tidak ada\", tidak ada issue yang diizinkan.\n"
"\n"
@@ -5535,8 +5549,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Otorisasi:\n"
"\n"
@@ -5661,13 +5675,13 @@ msgstr ""
#: security/help.pm:102
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
-msgstr "Atur umur sandi ke \"maks\" hari dan jeda untuk mengubah ke \"tidak aktif\"."
+msgstr ""
+"Atur umur sandi ke \"maks\" hari dan jeda untuk mengubah ke \"tidak aktif\"."
#: security/help.pm:104
#, c-format
msgid "Set the password history length to prevent password reuse."
-msgstr ""
-"Atur panjang riwayat sandi untuk mencegah penggunaan ulang sandi."
+msgstr "Atur panjang riwayat sandi untuk mencegah penggunaan ulang sandi."
#: security/help.pm:106
#, c-format
@@ -6243,8 +6257,8 @@ msgstr ""
"decoding \n"
"dan mendorong kembali ke kernel via driver UINPUT linux. Driver ini harus "
"dimuat sebelum \n"
-"g15daemon bisa digunakan untuk akses keyboard. LCD G15 juga didukung. "
-"Secara default, \n"
+"g15daemon bisa digunakan untuk akses keyboard. LCD G15 juga didukung. Secara "
+"default, \n"
"tanpa klien lain aktif, g15daemon akan menampilkan jam. Aplikasi dan skrip "
"klien \n"
"bisa mengakses LCD via API sederhana."
@@ -6573,8 +6587,9 @@ msgid ""
"Syslog is the facility by which many daemons use to log messages to various "
"system log files. It is a good idea to always run rsyslog."
msgstr ""
-"Syslog adalah fasilitas yang digunakan oleh banyak daemon untuk mencatat pesan "
-"ke berbagai file log sistem. Akan sangat baik jika rsyslog selalu dijalankan."
+"Syslog adalah fasilitas yang digunakan oleh banyak daemon untuk mencatat "
+"pesan ke berbagai file log sistem. Akan sangat baik jika rsyslog selalu "
+"dijalankan."
#: services.pm:107
#, c-format
@@ -6641,7 +6656,8 @@ msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
-"Syslog adalah fasilitas yang digunakan oleh banyak daemon untuk mencatat pesan\n"
+"Syslog adalah fasilitas yang digunakan oleh banyak daemon untuk mencatat "
+"pesan\n"
"ke berbagai file log sistem. Akan sangat baik jika syslog selalu dijalankan."
#: services.pm:119
@@ -6701,7 +6717,7 @@ msgstr "Administrasi Remote"
msgid "Database Server"
msgstr "Server Basis Data"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Layanan"
@@ -6716,22 +6732,22 @@ msgstr "Pilih layanan yang harus dimulai secara otomatis saat boot"
msgid "%d activated for %d registered"
msgstr "%d diaktifkan untuk %d terdaftar"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "berjalan"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "berhenti"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Layanan dan daemon"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6740,27 +6756,27 @@ msgstr ""
"Tidak ada informasi tambahan\n"
"tentang layanan ini, maaf."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Mulai saat diminta"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Saat boot"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Mulai"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Berhenti"
@@ -7097,3 +7113,50 @@ msgstr ""
#, c-format
msgid "Installation failed"
msgstr "Instalasi gagal"
+
+#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Tester suara bug klasik adalah menjalankan perintah berikut:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" memberitahu Anda driver mana yang\n"
+#~ "digunakan oleh perangkat suara Anda secara default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" memberitahu Anda driver apa\n"
+#~ "yang saat ini digunakan\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" akan memungkinkan Anda memeriksa jika modul (driver)\n"
+#~ "dimuat atau tidak\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" dan \"/sbin/chkconfig --list alsa\" "
+#~ "akan\n"
+#~ "memberitahu Anda jika suara dan layanan alsa terkonfigurasi agar berjalan "
+#~ "pada\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" memberitahu Anda jika volume suara mute atau tidak\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" memberitahu program mana yang menggunakan "
+#~ "perangkat suara.\n"
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index e8f2c85af..8795bc662 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2009-03-27 10:46+0000\n"
"Last-Translator: Pjetur G. Hjaltason <pjetur@pjetur.net>\n"
"Language-Team: Icelandic <kde-isl@molar.is>\n"
@@ -22,7 +22,7 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -31,12 +31,12 @@ msgstr ""
msgid "Please wait"
msgstr "Augnablik"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Er að setja upp ræsistjóra"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -53,12 +53,12 @@ msgstr ""
"\n"
"Breyta diskauðkenni?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Innsetning ræsiforrits brást sökum eftirfarandi villu:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -75,7 +75,7 @@ msgstr ""
" sláðu síðan inn: shut-down\n"
"Við næstu ræsingu þá ættir þú að sjá hvata-spurningu fra ræsi-forritinu."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -90,268 +90,268 @@ msgstr ""
"\n"
"Af hvaða disk ræsir þú?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Innsetning ræsistjóra"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Hvar viltu setja ræsistjórann?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Fyrsta geira (MBR) á disk %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Á fyrsta geira disks (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Á fyrsta geira rótar-disksneiðar"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Á diskling"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Sleppa"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Uppsetning ræsistíls"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Aðalvalmöguleikar ræsiforrits"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Ræsistjóri"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Ræsiforrit sem á að nota"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Ræsitæki"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Aðalvalkostir"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Töf áður en sjálfgefin ræsing byrjar"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Virkja ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Virkja SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Virkja APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Virkja staðbundið APIC"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Öryggi"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Lykilorð"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Mismunandi lykilorð"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Reyndu aftur"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Þú getur ekki notað lykilorð með %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Lykilorð (aftur)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Hreinsa /tmp við hverja ræsingu"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Init skilaboð"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Biðtími Open Firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ræsibið kjarna"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Virkja CD ræsingu?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Virkja OF ræsingu?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Sjálfgefið stýrikerfi?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Ræsikjarni"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Rót"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Bæta við"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen append"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Skjáhamur"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Netsnið"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Auðkenni"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Sjálfgefið"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Auðkenni má ekki vera autt"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Þú verður að skilgreina ræsikjarna"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Þú verður að tilgreina rótar-disksneiðina"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Þetta auðkenni er nú þegar í notkun"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Hvers konar færslu viltu bæta við?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Öðru stýrikerfi (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Öðru stýrikerfi (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Öðru stýrikerfi (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Uppsetning ræsistíls"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -360,195 +360,195 @@ msgstr ""
"Hérna eru núverandi færslur í ræsivalmynd.\n"
"Þú getur bætt við fleirum eða breytt þessum."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "aðgengi að X forritum"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "aðgengi að rpm tólum"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "leyfa \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "aðgengi að stýrikerfisskrám"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "aðgengi að nettólum"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "aðgengi að þróunartólum"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s er nú þegar til)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Vinsamlega sláðu inn notandanafn"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Notandanafnið má bara innihalda litla stafi, tölustafi, `-' og `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Þetta notandanafn er of langt"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Þetta notandanafn er nú þegar til"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID notanda"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Hópnúmer"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "Valkostur %s verður að vera tala"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s ætti að vera yfir 500. Samþykkja samt?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Notandaumsýsla"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Ákveða lykilorð kerfisstjóra (root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Skrá notanda"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Táknmynd"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Fullt nafn"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Notandanafn"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Skel"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Augnablik, bæti við miðli..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Skrá notanda sjálfkrafa inn"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Ég get stillt tölvuna þína til að stimpla sjálfkrafa inn ákveðinn notanda."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Nota þennan eiginleika"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Veldu sjálfgefinn notanda:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Veldu gluggastjóra sem þú vilt nota:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Athugasemdir við útgáfu"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Loka"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Notkunarskilmálar"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Hætta"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Samþykkir þú þessa skilmála ?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Samþykkja"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Hafna"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Vinsamlega veldu tungumál sem á að nota"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -559,87 +559,87 @@ msgstr ""
"sem þú vilt setja upp stuðning fyrir. Þau verða tiltæk þegar\n"
"uppsetningu er lokið, og þú hefur endurræst kerfið."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Mörg tungumál"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Samhæfni við eldri (ekki UTF-8) kóðun"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Öll tungumál"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Tungumálaval"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Land / Svæði"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Veldu þér land"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hér er listi af tiltækum löndum"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Önnur lönd"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Ítarlegra"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Innsláttaraðferð:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Engin"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Engin miðlun"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Leyfa öllum notendum"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Sérsniðið"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -654,7 +654,7 @@ msgstr ""
"\n"
"\"Sérsniðið\" leyfir að stilla fyrir hvern notanda.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -663,7 +663,7 @@ msgstr ""
"NFS: algengt Unix net-skráamiðlunarkerfi, með minni stuðning á Mac og "
"Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -671,18 +671,18 @@ msgid ""
msgstr ""
"SMB: skráarkerfi notað af Windows, Mac OS X og mörgum nýlegum Linux kerfum."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Þú getur miðlað með NFS eða SMB. Veldu hvort þú vilt nota."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Ræsa userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -691,7 +691,7 @@ msgstr ""
"Netmiðlun einstakra notanda notar hópinn \"fileshare\". \n"
"Þú getur notað userdrake til að bæta notendum í þennan hóp."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -700,47 +700,47 @@ msgstr ""
"Þú þarft að skrá þig út og inn aftur til að breytingar taki gildi. Ýttu á "
"\"Í lagi\" til að skrá þig út núna."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "Þú þarft að skrá þig út og inn aftur til að breytingar taki gildi"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Tímabelti"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Hvert er þitt tímabelti?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Dagsetning, Tími og tímabelti"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Hvað er er besti tíminn?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (tölvuklukka stillt á UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (tölvuklukka stillt á staðartíma)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP þjónn"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sjálfvirk tímastilling (með NTP)"
@@ -1078,7 +1078,7 @@ msgstr "Lykilorð kerfisstjóra léns"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1093,47 +1093,47 @@ msgstr ""
"biddu eftir sjalfgefinni raesingu.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO með textavalmynd"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB með myndrænni valmynd"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB með myndrænni valmynd"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB með texavalmynd"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "ekki nægilegt pláss í /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Þú getur ekki sett ræsistjórann á %s disksneiðina\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1142,7 +1142,7 @@ msgstr ""
"Þú verður að uppfæra stillingar ræsistjórans því disksneiðar hafa verið "
"endurnúmeraðar"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1151,7 +1151,7 @@ msgstr ""
"Ekki er hægt að setja ræsistjórann rétt upp. Þú verður að ræsa með "
"björgunardisk og velja \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Setja aftur inn ræsistjóra"
@@ -1249,7 +1249,7 @@ msgstr "Tengipunktur"
msgid "Options"
msgstr "Valkostir"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Fjarlægja"
@@ -1355,7 +1355,7 @@ msgid "Continue"
msgstr "Áfram"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1477,7 +1477,7 @@ msgid "More"
msgstr "Meira"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Staðfesting"
@@ -2277,8 +2277,8 @@ msgstr "Breyta tegund"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Hætta við"
@@ -2785,12 +2785,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Skipting disks í sneiðar mistókst: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Þú getur ekki notað JFS á disksneiðar minni en 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Þú getur ekki notað ReiserFs á disksneiðar minni en 32MB"
@@ -3290,7 +3290,7 @@ msgstr ""
"- nýja ALSA forritunarviðmótið sem býður upp á aukna möguleika en krefst "
"notkunar á ALSA forritunarsafninu.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Rekill:"
@@ -3343,59 +3343,74 @@ msgstr "Vandamálaleit hljóðkorta"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Klassísk hljóðvilluprófun er að keyra eftirfarandi skipanir:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" segir þér hvaða rekill hljóðkortið\n"
-"notar sjálfgefið\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" segir þér hvaða rekill er nú í\n"
-"notkun af hljóðkerfinu\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/lsmod\" sýnir þér hvor þessum rekli hefur þegar verið hlaðið\n"
-"inn eða ekki\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" og \"/sbin/chkconfig --list alsa\" segir\n"
-"þér hvort hljóð og ALSA þjónustur séu stilltar til að ræsa á vinnslustigi 3\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"aumix -q\" segir þér hvort slökkt sé hljóði í hljóðblandara\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" segir þér hvaða forrit er að nota "
-"hljóðkortið.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Leyfðu mér að velja rekil"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Velja einhvern rekil"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3475,12 +3490,12 @@ msgstr "Nei"
msgid "Choose a file"
msgstr "Veldu skrá"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Bæta við"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Breyta"
@@ -3515,7 +3530,7 @@ msgstr "Mappa ekki til"
msgid "No such file"
msgstr "Skráin er ekki til"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Aðvörun, Lyklaborð fest á hástafi"
@@ -4802,17 +4817,17 @@ msgstr "Velkomin(n) að %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "Ekki tókst að flytja disksneiðar yfir á aðra raundiska"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Raundiskur %s er enn í notkun"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Fjarlægðu sýndardiskana fyrst\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Ræsistjórinn getur ekki unnið með /boot sem spannar marga diska"
@@ -5254,12 +5269,12 @@ msgstr "Viltu smella á þennan hnapp?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Lykilorðagrunnur"
@@ -5493,8 +5508,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Heimila:\n"
"\n"
@@ -6636,7 +6651,7 @@ msgstr "Fjarvinnsla"
msgid "Database Server"
msgstr "Gagnagrunnsmiðlari"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Þjónustur"
@@ -6651,22 +6666,22 @@ msgstr "Veldu þær þjónustur sem skal sjálfkrafa keyra við ræsingu"
msgid "%d activated for %d registered"
msgstr "%d ræstar af %d skráðum"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "keyrandi"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "stöðvað"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Miðlarar og Þjónustur"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6675,27 +6690,27 @@ msgstr ""
"Engar aukalegar upplýsingar\n"
"um þetta tæki, því miður."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Upplýsingar"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Ræsa þegar óskað er"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Við ræsingu"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Ræsa"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Stöðva"
@@ -7030,6 +7045,52 @@ msgid "Installation failed"
msgstr "Innsetning mistókst"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Klassísk hljóðvilluprófun er að keyra eftirfarandi skipanir:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" segir þér hvaða rekill hljóðkortið\n"
+#~ "notar sjálfgefið\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" segir þér hvaða rekill er nú í\n"
+#~ "notkun af hljóðkerfinu\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" sýnir þér hvor þessum rekli hefur þegar verið hlaðið\n"
+#~ "inn eða ekki\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" og \"/sbin/chkconfig --list alsa\" "
+#~ "segir\n"
+#~ "þér hvort hljóð og ALSA þjónustur séu stilltar til að ræsa á vinnslustigi "
+#~ "3\n"
+#~ "\n"
+#~ "- \"aumix -q\" segir þér hvort slökkt sé hljóði í hljóðblandara\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" segir þér hvaða forrit er að nota "
+#~ "hljóðkortið.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index fe4d3a05f..41364fdaf 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2013-03-07 13:10+0100\n"
"Last-Translator: Matteo Pasotti <matteo.pasotti@gmail.com>\n"
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
@@ -15,29 +15,21 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
"X-Generator: Lokalize 1.4\n"
-#: any.pm:261
-#: any.pm:971
-#: diskdrake/interactive.pm:645
-#: diskdrake/interactive.pm:869
-#: diskdrake/interactive.pm:931
-#: diskdrake/interactive.pm:1036
-#: diskdrake/interactive.pm:1266
-#: diskdrake/interactive.pm:1324
-#: do_pkgs.pm:242
-#: do_pkgs.pm:287
-#: harddrake/sound.pm:270
-#: interactive.pm:588
-#: pkgs.pm:287
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
+#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
+#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
+#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
+#: harddrake/sound.pm:270 interactive.pm:588 pkgs.pm:287
#, c-format
msgid "Please wait"
msgstr "Attendere prego"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installazione del bootloader in corso"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -56,13 +48,13 @@ msgstr ""
"\n"
"Assegno un nuovo Volume ID?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Installazione del bootloader fallita. Si è verificato il seguente errore:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -79,7 +71,7 @@ msgstr ""
" Poi digita: shut-down\n"
"Al boot successivo dovresti vedere il prompt del bootloader."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -94,291 +86,268 @@ msgstr ""
"\n"
"Da quale disco avvii il sistema?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "Installazione del bootloader in corso"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Dove vuoi installare il bootloader?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Primo settore del disco (MBR) %s"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Primo settore del disco (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Primo settore della partizione root"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Su floppy"
-#: any.pm:376
-#: pkgs.pm:283
-#: ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Salta"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Configurazione stile di avvio"
-#: any.pm:427
-#: any.pm:460
-#: any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Opzioni principali del bootloader"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:432
-#: any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Bootloader da usare"
-#: any.pm:435
-#: any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Dispositivo di boot"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "Opzioni principali"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Ritardo prima di avviare l'immagine predefinita"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Abilitare l'ACPI"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "Abilitare SMP"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "Abilitare l'APIC"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "Abilitare l'APIC locale"
-#: any.pm:445
-#: security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sicurezza"
-#: any.pm:446
-#: any.pm:906
-#: any.pm:925
-#: authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Password"
-#: any.pm:449
-#: authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Le password non corrispondono"
-#: any.pm:449
-#: authentication.pm:260
-#: diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Per favore, riprova"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "Non puoi usare una password con %s"
-#: any.pm:455
-#: any.pm:909
-#: any.pm:927
-#: authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Password (ripeti)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Svuota /tmp ad ogni avvio"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Messaggio di init"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Attesa dell'Open Firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Attesa per il boot del kernel"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Abilitare l'avvio da CD-ROM?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Abilitare boot da OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Sistema operativo predefinito?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Immagine"
-#: any.pm:547
-#: any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548
-#: any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Opzioni per il kernel"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Accodamento Xen"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr "Richiedere password al boot"
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Modalità video"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Profilo di rete"
-#: any.pm:566
-#: any.pm:571
-#: any.pm:573
-#: diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Etichetta"
-#: any.pm:568
-#: any.pm:576
-#: harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Predefinito"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "NoVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Non sono ammesse etichette vuote"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Bisogna indicare l'immagine di un kernel"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Bisogna specificare una partizione root"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Questa etichetta è già in uso"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Che tipo di voce vuoi aggiungere?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Altro S.O. (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Altro S.O. (MacOS,...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Altro S.O. (Windows, ...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "Configurazione del bootloader"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -387,47 +356,47 @@ msgstr ""
"Finora ci sono queste voci nel menu di boot.\n"
"Puoi aggiungerne altre o cambiare quelle esistenti."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "accesso ai programmi X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "accesso agli strumenti RPM"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "permettere \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "accesso ai file di amministrazione del sistema"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "accesso agli strumenti di rete"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "accesso agli strumenti di compilazione"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s già aggiunto)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Inserisci il nome di un utente, grazie"
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -436,159 +405,149 @@ msgstr ""
"Il nome utente deve iniziare con una lettera minuscola seguita solo da altre "
"minuscole, numeri, \"-\" e \"_\""
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Il nome utente è troppo lungo"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Il nome utente è già stato utilizzato"
-#: any.pm:893
-#: any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID utente"
-#: any.pm:893
-#: any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID gruppo"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s dev'essere un numero"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s dovrebbe essere superiore a 500. Accetta comunque?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "Gestione degli utenti"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr "Abilita l'account guest"
-#: any.pm:905
-#: authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Scegli password amministratore (root)"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "Inserisci un utente"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Icona"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Vero nome"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Nome utente"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Attendere, aggiornamento dei supporti in corso..."
-#: any.pm:1003
-#: security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autologin"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-"Si può configurare il computer per fare automaticamente il login di un utente "
-"all'avvio."
+"Si può configurare il computer per fare automaticamente il login di un "
+"utente all'avvio."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Utilizza questa funzionalità"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Scegli l'utente predefinito:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Scegli il gestore di finestre da usare:"
-#: any.pm:1018
-#: any.pm:1032
-#: any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Note di rilascio"
-#: any.pm:1039
-#: any.pm:1389
-#: interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Chiudi"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Accordo di licenza"
-#: any.pm:1088
-#: diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Esci"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "Accetti questa licenza?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Accetta"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Rifiuta"
-#: any.pm:1122
-#: any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Scegli una lingua da utilizzare"
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -599,96 +558,92 @@ msgstr ""
"le lingue che vorresti installare. Esse saranno disponibili\n"
"quando l'installazione è completa e riavvii il sistema."
-#: any.pm:1152
-#: fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr "Multilingue"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr "Seleziona Linguaggi Aggiuntivi"
-#: any.pm:1163
-#: any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Codifica per vecchia compatibilità (non UTF-8)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Tutte le lingue"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Scelta della lingua"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Paese / Regione"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Scegli il tuo paese"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ecco la lista completa dei paesi disponibili"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Altre nazioni"
-#: any.pm:1244
-#: interactive.pm:489
-#: interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avanzato"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Modalità input:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Nessuno"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Nessuna condivisione"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Permetti a tutti gli utenti"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Personalizzato"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
-"Allowing this will permit users to simply click on \"Share\" in konqueror and "
-"nautilus.\n"
+"Allowing this will permit users to simply click on \"Share\" in konqueror "
+"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
@@ -698,7 +653,7 @@ msgstr ""
"\n"
"\"Personalizzata\" permette un controllo più specifico per ogni utente.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -707,7 +662,7 @@ msgstr ""
"NFS: il classico sistema di condivisione dei file in ambiente Unix, con un "
"limitato supporto per Mac e Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -716,19 +671,19 @@ msgstr ""
"SMB: il sistema di condivisione dei file utilizzato in Windows, Mac OS X e "
"molte distribuzioni Linux recenti."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Puoi esportare usando NFS o Samba. Scegli quello che preferisci utilizzare."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Lancia userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -737,58 +692,57 @@ msgstr ""
"Per condividere le directory bisogna appartenere al gruppo \"fileshare\".\n"
"Puoi usare \"userdrake\" per aggiungervi un utente."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-"Devi disconnetterti e rientrare affinché i cambiamenti abbiano effetto. Premi "
-"«OK» per fare logout."
+"Devi disconnetterti e rientrare affinché i cambiamenti abbiano effetto. "
+"Premi «OK» per fare logout."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Devi disconnetterti e rientrare affinché i cambiamenti abbiano effetto."
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Fuso orario"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Qual è il fuso orario locale?"
-#: any.pm:1560
-#: any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Impostazione di data, ora e fuso orario"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "Qual è l'orario migliore?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (orologio hardware impostato su UTC)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (orologio hardware impostato su ora locale)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Server NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronizzazione automatica dell'ora (usando NTP)"
@@ -813,8 +767,7 @@ msgstr "NIS"
msgid "Smart Card"
msgstr "Smart Card"
-#: authentication.pm:28
-#: authentication.pm:215
+#: authentication.pm:28 authentication.pm:215
#, c-format
msgid "Windows Domain"
msgstr "Dominio Windows"
@@ -848,8 +801,9 @@ msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
-"Dice al computer di utilizzare LDAP per alcune o per tutte le autenticazioni. "
-"LDAP raggruppa alcuni tipi di informazioni sulla tua organizzazione."
+"Dice al computer di utilizzare LDAP per alcune o per tutte le "
+"autenticazioni. LDAP raggruppa alcuni tipi di informazioni sulla tua "
+"organizzazione."
#: authentication.pm:67
#, c-format
@@ -873,8 +827,8 @@ msgstr "Dominio Windows:"
#: authentication.pm:68
#, c-format
msgid ""
-"Winbind allows the system to retrieve information and authenticate users in a "
-"Windows domain."
+"Winbind allows the system to retrieve information and authenticate users in "
+"a Windows domain."
msgstr ""
"Winbind permette al sistema di recuperare le informazioni e di autenticare "
"gli utenti in un dominio Windows."
@@ -889,20 +843,14 @@ msgstr "Kerberos 5 :"
msgid "With Kerberos and LDAP for authentication in Active Directory Server "
msgstr "Con Kerberos e LDAP per l'autenticazione nell'Active Directory Server"
-#: authentication.pm:106
-#: authentication.pm:140
-#: authentication.pm:159
-#: authentication.pm:160
-#: authentication.pm:186
-#: authentication.pm:210
+#: authentication.pm:106 authentication.pm:140 authentication.pm:159
+#: authentication.pm:160 authentication.pm:186 authentication.pm:210
#: authentication.pm:865
#, c-format
msgid " "
msgstr " "
-#: authentication.pm:107
-#: authentication.pm:141
-#: authentication.pm:187
+#: authentication.pm:107 authentication.pm:141 authentication.pm:187
#: authentication.pm:211
#, c-format
msgid "Welcome to the Authentication Wizard"
@@ -917,14 +865,12 @@ msgstr ""
"Hai selezionato l'autenticazione LDAP. Per favore rivedi le seguenti opzioni "
"di configurazione"
-#: authentication.pm:111
-#: authentication.pm:166
+#: authentication.pm:111 authentication.pm:166
#, c-format
msgid "LDAP Server"
msgstr "Server LDAP"
-#: authentication.pm:112
-#: authentication.pm:167
+#: authentication.pm:112 authentication.pm:167
#, c-format
msgid "Base dn"
msgstr "Base dn"
@@ -934,46 +880,38 @@ msgstr "Base dn"
msgid "Fetch base Dn "
msgstr "Recupera base Dn"
-#: authentication.pm:115
-#: authentication.pm:170
+#: authentication.pm:115 authentication.pm:170
#, c-format
msgid "Use encrypt connection with TLS "
msgstr "Usa connessione criptata con TLS"
-#: authentication.pm:116
-#: authentication.pm:171
+#: authentication.pm:116 authentication.pm:171
#, c-format
msgid "Download CA Certificate "
msgstr "Scarica il certificato CA"
-#: authentication.pm:118
-#: authentication.pm:151
+#: authentication.pm:118 authentication.pm:151
#, c-format
msgid "Use Disconnect mode "
msgstr "Utilizza modalità Disconnetti"
-#: authentication.pm:119
-#: authentication.pm:172
+#: authentication.pm:119 authentication.pm:172
#, c-format
msgid "Use anonymous BIND "
msgstr "Utilizza BIND anonimo "
-#: authentication.pm:120
-#: authentication.pm:123
-#: authentication.pm:125
+#: authentication.pm:120 authentication.pm:123 authentication.pm:125
#: authentication.pm:129
#, c-format
msgid " "
msgstr " "
-#: authentication.pm:121
-#: authentication.pm:173
+#: authentication.pm:121 authentication.pm:173
#, c-format
msgid "Bind DN "
msgstr "Bind DN"
-#: authentication.pm:122
-#: authentication.pm:174
+#: authentication.pm:122 authentication.pm:174
#, c-format
msgid "Bind Password "
msgstr "Password Bind"
@@ -1040,8 +978,8 @@ msgstr "Usa LDAP per informazioni sugli utenti"
#: authentication.pm:162
#, c-format
msgid ""
-"You have selected Kerberos 5 for authentication, now you must choose the type "
-"of users information "
+"You have selected Kerberos 5 for authentication, now you must choose the "
+"type of users information "
msgstr ""
"Hai selezionato Kerberos 5 per l'autenticazione, adesso devi scegliere il "
"tipo di informazioni utente"
@@ -1054,8 +992,8 @@ msgstr "Recupera base Dn"
#: authentication.pm:189
#, c-format
msgid ""
-"You have selected NIS authentication. Please review the configuration options "
-"below "
+"You have selected NIS authentication. Please review the configuration "
+"options below "
msgstr ""
"Hai selezionato l'autenticazione NIS. Per favore ricontrolla le seguenti "
"opzioni di configurazione"
@@ -1099,8 +1037,7 @@ msgstr "Dominio DNS"
msgid "DC Server"
msgstr "Server DC"
-#: authentication.pm:235
-#: authentication.pm:251
+#: authentication.pm:235 authentication.pm:251
#, c-format
msgid "Authentication"
msgstr "Autenticazione"
@@ -1147,7 +1084,7 @@ msgid "Domain Admin Password"
msgstr "Password dell'amministratore di dominio"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1162,47 +1099,47 @@ msgstr ""
"o aspetta che si avvii quello predefinito.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO con menu testuale"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB con menu grafico"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menu grafico"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB con menu testuale"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "spazio insufficiente in /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Non puoi installare il bootloader in una partizione %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1211,7 +1148,7 @@ msgstr ""
"Devi aggiornare la configurazione del bootloader perché le partizioni hanno "
"cambiato numerazione"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1220,7 +1157,7 @@ msgstr ""
"Il bootloader non può essere installato correttamente. Devi fare l'avvio di "
"ripristino e scegliere \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Reinstallazione del bootloader"
@@ -1245,8 +1182,7 @@ msgstr "MB"
msgid "GB"
msgstr "GB"
-#: common.pm:142
-#: common.pm:151
+#: common.pm:142 common.pm:151
#, c-format
msgid "TB"
msgstr "TB"
@@ -1289,16 +1225,12 @@ msgstr ""
msgid "New"
msgstr "Nuovo"
-#: diskdrake/dav.pm:63
-#: diskdrake/interactive.pm:418
-#: diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:63 diskdrake/interactive.pm:418 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Smonta"
-#: diskdrake/dav.pm:64
-#: diskdrake/interactive.pm:414
-#: diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:414 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Esegui mount"
@@ -1308,76 +1240,44 @@ msgstr "Esegui mount"
msgid "Server"
msgstr "Server"
-#: diskdrake/dav.pm:66
-#: diskdrake/interactive.pm:408
-#: diskdrake/interactive.pm:722
-#: diskdrake/interactive.pm:740
-#: diskdrake/interactive.pm:744
-#: diskdrake/removable.pm:23
+#: diskdrake/dav.pm:66 diskdrake/interactive.pm:408
+#: diskdrake/interactive.pm:722 diskdrake/interactive.pm:740
+#: diskdrake/interactive.pm:744 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Punto di mount"
-#: diskdrake/dav.pm:67
-#: diskdrake/interactive.pm:410
-#: diskdrake/interactive.pm:1163
-#: diskdrake/removable.pm:24
+#: diskdrake/dav.pm:67 diskdrake/interactive.pm:410
+#: diskdrake/interactive.pm:1163 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Opzioni"
-#: diskdrake/dav.pm:68
-#: interactive.pm:388
-#: interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Rimuovi"
-#: diskdrake/dav.pm:69
-#: diskdrake/hd_gtk.pm:193
-#: diskdrake/removable.pm:26
-#: diskdrake/smbnfs_gtk.pm:82
-#: interactive/http.pm:151
+#: diskdrake/dav.pm:69 diskdrake/hd_gtk.pm:193 diskdrake/removable.pm:26
+#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fatto"
-#: diskdrake/dav.pm:78
-#: diskdrake/hd_gtk.pm:133
-#: diskdrake/hd_gtk.pm:299
-#: diskdrake/interactive.pm:247
-#: diskdrake/interactive.pm:260
-#: diskdrake/interactive.pm:456
-#: diskdrake/interactive.pm:527
-#: diskdrake/interactive.pm:545
-#: diskdrake/interactive.pm:550
-#: diskdrake/interactive.pm:712
-#: diskdrake/interactive.pm:1002
-#: diskdrake/interactive.pm:1054
-#: diskdrake/interactive.pm:1209
-#: diskdrake/interactive.pm:1222
-#: diskdrake/interactive.pm:1225
-#: diskdrake/interactive.pm:1499
-#: diskdrake/smbnfs_gtk.pm:42
-#: do_pkgs.pm:23
-#: do_pkgs.pm:28
-#: do_pkgs.pm:44
-#: do_pkgs.pm:60
-#: do_pkgs.pm:65
-#: do_pkgs.pm:83
-#: fsedit.pm:246
-#: interactive/http.pm:117
-#: interactive/http.pm:118
-#: modules/interactive.pm:19
-#: scanner.pm:95
-#: scanner.pm:106
-#: scanner.pm:113
-#: scanner.pm:120
-#: wizards.pm:96
-#: wizards.pm:100
-#: wizards.pm:122
+#: diskdrake/dav.pm:78 diskdrake/hd_gtk.pm:133 diskdrake/hd_gtk.pm:299
+#: diskdrake/interactive.pm:247 diskdrake/interactive.pm:260
+#: diskdrake/interactive.pm:456 diskdrake/interactive.pm:527
+#: diskdrake/interactive.pm:545 diskdrake/interactive.pm:550
+#: diskdrake/interactive.pm:712 diskdrake/interactive.pm:1002
+#: diskdrake/interactive.pm:1054 diskdrake/interactive.pm:1209
+#: diskdrake/interactive.pm:1222 diskdrake/interactive.pm:1225
+#: diskdrake/interactive.pm:1499 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23
+#: do_pkgs.pm:28 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:65 do_pkgs.pm:83
+#: fsedit.pm:246 interactive/http.pm:117 interactive/http.pm:118
+#: modules/interactive.pm:19 scanner.pm:95 scanner.pm:106 scanner.pm:113
+#: scanner.pm:120 wizards.pm:96 wizards.pm:100 wizards.pm:122
#, c-format
msgid "Error"
msgstr "Errore"
@@ -1392,24 +1292,13 @@ msgstr "Inserisci l'URL del server WebDAV"
msgid "The URL must begin with http:// or https://"
msgstr "L'URL deve iniziare con http:// o https://"
-#: diskdrake/dav.pm:106
-#: diskdrake/hd_gtk.pm:424
-#: diskdrake/interactive.pm:306
-#: diskdrake/interactive.pm:391
-#: diskdrake/interactive.pm:597
-#: diskdrake/interactive.pm:815
-#: diskdrake/interactive.pm:880
-#: diskdrake/interactive.pm:1034
-#: diskdrake/interactive.pm:1076
-#: diskdrake/interactive.pm:1077
-#: diskdrake/interactive.pm:1309
-#: diskdrake/interactive.pm:1347
-#: diskdrake/interactive.pm:1498
-#: do_pkgs.pm:19
-#: do_pkgs.pm:39
-#: do_pkgs.pm:57
-#: do_pkgs.pm:78
-#: harddrake/sound.pm:399
+#: diskdrake/dav.pm:106 diskdrake/hd_gtk.pm:424 diskdrake/interactive.pm:306
+#: diskdrake/interactive.pm:391 diskdrake/interactive.pm:597
+#: diskdrake/interactive.pm:815 diskdrake/interactive.pm:880
+#: diskdrake/interactive.pm:1034 diskdrake/interactive.pm:1076
+#: diskdrake/interactive.pm:1077 diskdrake/interactive.pm:1309
+#: diskdrake/interactive.pm:1347 diskdrake/interactive.pm:1498 do_pkgs.pm:19
+#: do_pkgs.pm:39 do_pkgs.pm:57 do_pkgs.pm:78 harddrake/sound.pm:399
#, c-format
msgid "Warning"
msgstr "Attenzione"
@@ -1424,32 +1313,23 @@ msgstr "Sei sicuro di voler cancellare questo punto di mount?"
msgid "Server: "
msgstr "Server: "
-#: diskdrake/dav.pm:125
-#: diskdrake/interactive.pm:501
-#: diskdrake/interactive.pm:1371
-#: diskdrake/interactive.pm:1459
+#: diskdrake/dav.pm:125 diskdrake/interactive.pm:501
+#: diskdrake/interactive.pm:1371 diskdrake/interactive.pm:1459
#, c-format
msgid "Mount point: "
msgstr "Punto di mount: "
-#: diskdrake/dav.pm:126
-#: diskdrake/interactive.pm:1466
+#: diskdrake/dav.pm:126 diskdrake/interactive.pm:1466
#, c-format
msgid "Options: %s"
msgstr "Opzioni: %s"
-#: diskdrake/hd_gtk.pm:61
-#: diskdrake/interactive.pm:301
-#: diskdrake/smbnfs_gtk.pm:22
-#: fs/mount_point.pm:108
-#: fs/partitioning_wizard.pm:55
-#: fs/partitioning_wizard.pm:238
-#: fs/partitioning_wizard.pm:246
-#: fs/partitioning_wizard.pm:285
-#: fs/partitioning_wizard.pm:433
-#: fs/partitioning_wizard.pm:496
-#: fs/partitioning_wizard.pm:579
-#: fs/partitioning_wizard.pm:582
+#: diskdrake/hd_gtk.pm:61 diskdrake/interactive.pm:301
+#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:108
+#: fs/partitioning_wizard.pm:55 fs/partitioning_wizard.pm:238
+#: fs/partitioning_wizard.pm:246 fs/partitioning_wizard.pm:285
+#: fs/partitioning_wizard.pm:433 fs/partitioning_wizard.pm:496
+#: fs/partitioning_wizard.pm:579 fs/partitioning_wizard.pm:582
#, c-format
msgid "Partitioning"
msgstr "Partizionamento"
@@ -1460,10 +1340,8 @@ msgid "Click on a partition, choose a filesystem type then choose an action"
msgstr ""
"Clicca su una partizione, scegli il tipo di filesystem e poi scegli cosa fare"
-#: diskdrake/hd_gtk.pm:115
-#: diskdrake/interactive.pm:1184
-#: diskdrake/interactive.pm:1194
-#: diskdrake/interactive.pm:1247
+#: diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:1184
+#: diskdrake/interactive.pm:1194 diskdrake/interactive.pm:1247
#, c-format
msgid "Read carefully"
msgstr "Leggere con attenzione"
@@ -1473,8 +1351,7 @@ msgstr "Leggere con attenzione"
msgid "Please make a backup of your data first"
msgstr "Si consiglia di effettuare prima un backup dei propri dati"
-#: diskdrake/hd_gtk.pm:116
-#: diskdrake/interactive.pm:240
+#: diskdrake/hd_gtk.pm:116 diskdrake/interactive.pm:240
#, c-format
msgid "Exit"
msgstr "Esci"
@@ -1484,12 +1361,8 @@ msgstr "Esci"
msgid "Continue"
msgstr "Continua"
-#: diskdrake/hd_gtk.pm:188
-#: fs/partitioning_wizard.pm:555
-#: interactive.pm:654
-#: interactive/gtk.pm:809
-#: interactive/gtk.pm:827
-#: interactive/gtk.pm:848
+#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1511,8 +1384,7 @@ msgstr ""
msgid "Please click on a partition"
msgstr "Clicca su una partizione"
-#: diskdrake/hd_gtk.pm:250
-#: diskdrake/smbnfs_gtk.pm:63
+#: diskdrake/hd_gtk.pm:250 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Dettagli"
@@ -1532,45 +1404,37 @@ msgstr "Sconosciuto"
msgid "Ext4"
msgstr "Ext4"
-#: diskdrake/hd_gtk.pm:395
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "XFS"
msgstr "XFS"
-#: diskdrake/hd_gtk.pm:395
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "Swap"
msgstr "Swap"
-#: diskdrake/hd_gtk.pm:395
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "SunOS"
msgstr "SunOS"
-#: diskdrake/hd_gtk.pm:395
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "HFS"
msgstr "HFS"
-#: diskdrake/hd_gtk.pm:395
-#: fs/partitioning_wizard.pm:403
+#: diskdrake/hd_gtk.pm:395 fs/partitioning_wizard.pm:403
#, c-format
msgid "Windows"
msgstr "Windows"
-#: diskdrake/hd_gtk.pm:396
-#: fs/partitioning_wizard.pm:404
-#: services.pm:193
+#: diskdrake/hd_gtk.pm:396 fs/partitioning_wizard.pm:404 services.pm:193
#, c-format
msgid "Other"
msgstr "Altro"
-#: diskdrake/hd_gtk.pm:396
-#: diskdrake/interactive.pm:1386
+#: diskdrake/hd_gtk.pm:396 diskdrake/interactive.pm:1386
#: fs/partitioning_wizard.pm:404
#, c-format
msgid "Empty"
@@ -1596,10 +1460,8 @@ msgstr "Prima clicca su \"Smonta\""
msgid "Use ``%s'' instead (in expert mode)"
msgstr "Usa \"%s\" al suo posto (modalità esperto)"
-#: diskdrake/hd_gtk.pm:433
-#: diskdrake/interactive.pm:409
-#: diskdrake/interactive.pm:639
-#: diskdrake/removable.pm:25
+#: diskdrake/hd_gtk.pm:433 diskdrake/interactive.pm:409
+#: diskdrake/interactive.pm:639 diskdrake/removable.pm:25
#: diskdrake/removable.pm:48
#, c-format
msgid "Type"
@@ -1615,16 +1477,14 @@ msgstr "Scegliere un'altra partizione"
msgid "Choose a partition"
msgstr "Scegli una partizione"
-#: diskdrake/interactive.pm:273
-#: diskdrake/interactive.pm:382
+#: diskdrake/interactive.pm:273 diskdrake/interactive.pm:382
#: interactive/curses.pm:532
#, c-format
msgid "More"
msgstr "Ancora"
-#: diskdrake/interactive.pm:281
-#: diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Conferma"
@@ -1649,8 +1509,7 @@ msgstr "Uscire senza scrivere la tabella delle partizioni?"
msgid "Do you want to save the /etc/fstab modifications?"
msgstr "Vuoi salvare le modifiche di /etc/fstab?"
-#: diskdrake/interactive.pm:301
-#: fs/partitioning_wizard.pm:285
+#: diskdrake/interactive.pm:301 fs/partitioning_wizard.pm:285
#, c-format
msgid "You need to reboot for the partition table modifications to take effect"
msgstr ""
@@ -1709,8 +1568,8 @@ msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
-"Per avere altre partizioni è necessario eliminarne una per poterne poi creare "
-"una estesa"
+"Per avere altre partizioni è necessario eliminarne una per poterne poi "
+"creare una estesa"
#: diskdrake/interactive.pm:384
#, c-format
@@ -1727,8 +1586,7 @@ msgstr "Informazioni dettagliate"
msgid "View"
msgstr "Mostra"
-#: diskdrake/interactive.pm:412
-#: diskdrake/interactive.pm:828
+#: diskdrake/interactive.pm:412 diskdrake/interactive.pm:828
#, c-format
msgid "Resize"
msgstr "Ridimensiona"
@@ -1738,14 +1596,12 @@ msgstr "Ridimensiona"
msgid "Format"
msgstr "Formatta"
-#: diskdrake/interactive.pm:415
-#: diskdrake/interactive.pm:965
+#: diskdrake/interactive.pm:415 diskdrake/interactive.pm:965
#, c-format
msgid "Add to RAID"
msgstr "Aggiungi a RAID"
-#: diskdrake/interactive.pm:416
-#: diskdrake/interactive.pm:984
+#: diskdrake/interactive.pm:416 diskdrake/interactive.pm:984
#, c-format
msgid "Add to LVM"
msgstr "Aggiungi a LVM"
@@ -1795,8 +1651,7 @@ msgstr "Creare"
msgid "Failed to mount partition"
msgstr "Montaggio della partizione non riuscito"
-#: diskdrake/interactive.pm:490
-#: diskdrake/interactive.pm:492
+#: diskdrake/interactive.pm:490 diskdrake/interactive.pm:492
#, c-format
msgid "Create a new partition"
msgstr "Crea una nuova partizione"
@@ -1806,14 +1661,12 @@ msgstr "Crea una nuova partizione"
msgid "Start sector: "
msgstr "Settore iniziale: "
-#: diskdrake/interactive.pm:497
-#: diskdrake/interactive.pm:1069
+#: diskdrake/interactive.pm:497 diskdrake/interactive.pm:1069
#, c-format
msgid "Size in MB: "
msgstr "Dimensione in MB: "
-#: diskdrake/interactive.pm:499
-#: diskdrake/interactive.pm:1070
+#: diskdrake/interactive.pm:499 diskdrake/interactive.pm:1070
#, c-format
msgid "Filesystem type: "
msgstr "Tipo di filesystem: "
@@ -1838,14 +1691,12 @@ msgstr "Partizione cifrata"
msgid "Encryption key "
msgstr "Chiave di cifratura"
-#: diskdrake/interactive.pm:512
-#: diskdrake/interactive.pm:1503
+#: diskdrake/interactive.pm:512 diskdrake/interactive.pm:1503
#, c-format
msgid "Encryption key (again)"
msgstr "Chiave di cifratura (conferma)"
-#: diskdrake/interactive.pm:524
-#: diskdrake/interactive.pm:1499
+#: diskdrake/interactive.pm:524 diskdrake/interactive.pm:1499
#, c-format
msgid "The encryption keys do not match"
msgstr "Le chiavi di cifratura non corrispondono"
@@ -1884,8 +1735,7 @@ msgstr ""
msgid "Change partition type"
msgstr "Cambia il tipo di partizione"
-#: diskdrake/interactive.pm:638
-#: diskdrake/removable.pm:47
+#: diskdrake/interactive.pm:638 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Che filesystem vuoi usare?"
@@ -1945,10 +1795,8 @@ msgstr ""
msgid "Where do you want to mount %s?"
msgstr "Dove devo montare %s?"
-#: diskdrake/interactive.pm:773
-#: diskdrake/interactive.pm:869
-#: fs/partitioning_wizard.pm:131
-#: fs/partitioning_wizard.pm:207
+#: diskdrake/interactive.pm:773 diskdrake/interactive.pm:869
+#: fs/partitioning_wizard.pm:131 fs/partitioning_wizard.pm:207
#, c-format
msgid "Resizing"
msgstr "Ridimensionamento"
@@ -1995,8 +1843,7 @@ msgstr "Dimensione minima: %s MB"
msgid "Maximum size: %s MB"
msgstr "Dimensione massima: %s MB"
-#: diskdrake/interactive.pm:880
-#: fs/partitioning_wizard.pm:215
+#: diskdrake/interactive.pm:880 fs/partitioning_wizard.pm:215
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s),\n"
@@ -2006,8 +1853,7 @@ msgstr ""
"saranno eseguiti dei controlli sul filesystem al prossimo avvio di Microsoft "
"Windows®"
-#: diskdrake/interactive.pm:946
-#: diskdrake/interactive.pm:1494
+#: diskdrake/interactive.pm:946 diskdrake/interactive.pm:1494
#, c-format
msgid "Filesystem encryption key"
msgstr "Chiave di cifratura del filesystem"
@@ -2017,8 +1863,7 @@ msgstr "Chiave di cifratura del filesystem"
msgid "Enter your filesystem encryption key"
msgstr "Fornisci la chiave di cifratura del filesystem"
-#: diskdrake/interactive.pm:948
-#: diskdrake/interactive.pm:1502
+#: diskdrake/interactive.pm:948 diskdrake/interactive.pm:1502
#, c-format
msgid "Encryption key"
msgstr "Chiave di cifratura"
@@ -2033,8 +1878,7 @@ msgstr "Chiave non valida"
msgid "Choose an existing RAID to add to"
msgstr "Scegli un RAID esistente a cui aggiungere"
-#: diskdrake/interactive.pm:967
-#: diskdrake/interactive.pm:986
+#: diskdrake/interactive.pm:967 diskdrake/interactive.pm:986
#, c-format
msgid "new"
msgstr "nuovo"
@@ -2044,8 +1888,7 @@ msgstr "nuovo"
msgid "Choose an existing LVM to add to"
msgstr "Scegliere un LVM esistente a cui aggiungere"
-#: diskdrake/interactive.pm:996
-#: diskdrake/interactive.pm:1005
+#: diskdrake/interactive.pm:996 diskdrake/interactive.pm:1005
#, c-format
msgid "LVM name"
msgstr "Nome LVM"
@@ -2104,8 +1947,7 @@ msgstr "File già usato da un altro loopback, devi indicarne un altro"
msgid "File already exists. Use it?"
msgstr "Il file esiste già. Lo uso?"
-#: diskdrake/interactive.pm:1109
-#: diskdrake/interactive.pm:1112
+#: diskdrake/interactive.pm:1109 diskdrake/interactive.pm:1112
#, c-format
msgid "Mount options"
msgstr "Opzioni di mount"
@@ -2156,9 +1998,7 @@ msgid "Partition table of drive %s is going to be written to disk"
msgstr ""
"La tabella delle partizioni del dispositivo %s viene ora scritta su disco"
-#: diskdrake/interactive.pm:1266
-#: fs/format.pm:107
-#: fs/format.pm:114
+#: diskdrake/interactive.pm:1266 fs/format.pm:107 fs/format.pm:114
#, c-format
msgid "Formatting partition %s"
msgstr "Formattazione della partizione %s"
@@ -2170,8 +2010,7 @@ msgstr ""
"Dopo aver formattato la partizione %s, tutti i dati su questa partizione "
"saranno persi"
-#: diskdrake/interactive.pm:1293
-#: fs/partitioning.pm:48
+#: diskdrake/interactive.pm:1293 fs/partitioning.pm:48
#, c-format
msgid "Check for bad blocks?"
msgstr "Controlla per eventuali blocchi danneggiati?"
@@ -2228,8 +2067,7 @@ msgstr "la partizione %s adesso è nota come %s"
msgid "Partitions have been renumbered: "
msgstr "È cambiata la numerazione delle partizioni: "
-#: diskdrake/interactive.pm:1372
-#: diskdrake/interactive.pm:1443
+#: diskdrake/interactive.pm:1372 diskdrake/interactive.pm:1443
#, c-format
msgid "Device: "
msgstr "Dispositivo: "
@@ -2249,15 +2087,13 @@ msgstr "UUID: "
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lettera del drive DOS: %s (solo una supposizione)\n"
-#: diskdrake/interactive.pm:1379
-#: diskdrake/interactive.pm:1388
+#: diskdrake/interactive.pm:1379 diskdrake/interactive.pm:1388
#: diskdrake/interactive.pm:1462
#, c-format
msgid "Type: "
msgstr "Tipo: "
-#: diskdrake/interactive.pm:1383
-#: diskdrake/interactive.pm:1447
+#: diskdrake/interactive.pm:1383 diskdrake/interactive.pm:1447
#, c-format
msgid "Name: "
msgstr "Nome: "
@@ -2453,19 +2289,10 @@ msgstr "Algoritmo di cifratura"
msgid "Change type"
msgstr "Cambia tipo"
-#: diskdrake/smbnfs_gtk.pm:81
-#: interactive.pm:130
-#: interactive.pm:551
-#: interactive/curses.pm:267
-#: interactive/http.pm:104
-#: interactive/http.pm:160
-#: interactive/stdio.pm:39
-#: interactive/stdio.pm:148
-#: mygtk2.pm:846
-#: ugtk2.pm:415
-#: ugtk2.pm:517
-#: ugtk2.pm:526
-#: ugtk2.pm:812
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
+#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Annulla"
@@ -2475,8 +2302,7 @@ msgstr "Annulla"
msgid "Cannot login using username %s (bad password?)"
msgstr "Impossibile accedere usando il nome utente %s (password errata?)"
-#: diskdrake/smbnfs_gtk.pm:168
-#: diskdrake/smbnfs_gtk.pm:177
+#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Serve l'autenticazione del dominio"
@@ -2496,8 +2322,8 @@ msgstr "Un altro"
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-"Per favore inserisci il tuo nome utente, la password e il nome di dominio per "
-"accedere a questo host."
+"Per favore inserisci il tuo nome utente, la password e il nome di dominio "
+"per accedere a questo host."
#: diskdrake/smbnfs_gtk.pm:180
#, c-format
@@ -2519,28 +2345,22 @@ msgstr "Ricerca i server"
msgid "Search for new servers"
msgstr "Cerca nuovi server"
-#: do_pkgs.pm:19
-#: do_pkgs.pm:57
+#: do_pkgs.pm:19 do_pkgs.pm:57
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Il pacchetto %s deve essere installato. Lo installo?"
-#: do_pkgs.pm:23
-#: do_pkgs.pm:44
-#: do_pkgs.pm:60
-#: do_pkgs.pm:83
+#: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 do_pkgs.pm:83
#, c-format
msgid "Could not install the %s package!"
msgstr "È stato impossibile installare il pacchetto %s!"
-#: do_pkgs.pm:28
-#: do_pkgs.pm:65
+#: do_pkgs.pm:28 do_pkgs.pm:65
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Manca il pacchetto %s, che è indispensabile"
-#: do_pkgs.pm:39
-#: do_pkgs.pm:78
+#: do_pkgs.pm:39 do_pkgs.pm:78
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "I seguenti pacchetti devono essere installati:\n"
@@ -2550,8 +2370,7 @@ msgstr "I seguenti pacchetti devono essere installati:\n"
msgid "Installing packages..."
msgstr "Installazione dei pacchetti ..."
-#: do_pkgs.pm:287
-#: pkgs.pm:287
+#: do_pkgs.pm:287 pkgs.pm:287
#, c-format
msgid "Removing packages..."
msgstr "Rimozione i pacchetti in corso..."
@@ -2563,11 +2382,10 @@ msgid ""
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Si è verificato un errore perché non è stata trovata alcuna unità valida su "
-"cui creare nuovi filesystem. Per favore controlla l'hardware per stabilire la "
-"causa di questo problema."
+"cui creare nuovi filesystem. Per favore controlla l'hardware per stabilire "
+"la causa di questo problema."
-#: fs/any.pm:76
-#: fs/partitioning_wizard.pm:64
+#: fs/any.pm:76 fs/partitioning_wizard.pm:64
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Occorre una partizione FAT montata su /boot/efi"
@@ -2592,8 +2410,7 @@ msgstr "non è riuscita l'etichettatura di %s, è stato formattato?"
msgid "I do not know how to format %s in type %s"
msgstr "Impossibile formattare %s nel formato %s"
-#: fs/format.pm:189
-#: fs/format.pm:191
+#: fs/format.pm:189 fs/format.pm:191
#, c-format
msgid "%s formatting of %s failed"
msgstr "formattazione %s di %s fallita"
@@ -2613,14 +2430,12 @@ msgstr "Sto montando la partizione %s"
msgid "mounting partition %s in directory %s failed"
msgstr "il mount della partizione %s sulla directory %s non è riuscito"
-#: fs/mount.pm:92
-#: fs/mount.pm:109
+#: fs/mount.pm:92 fs/mount.pm:109
#, c-format
msgid "Checking %s"
msgstr "Sto controllando %s"
-#: fs/mount.pm:126
-#: partition_table.pm:422
+#: fs/mount.pm:126 partition_table.pm:422
#, c-format
msgid "error unmounting %s: %s"
msgstr "errore in fase di unmount di %s: %s"
@@ -2652,8 +2467,8 @@ msgid ""
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Non aggiornare i tempi di accesso agli inode su questo filesystem\n"
-"(p.e., per accessi più rapidi al news spool e quindi per velocizzare i server "
-"di news)."
+"(p.e., per accessi più rapidi al news spool e quindi per velocizzare i "
+"server di news)."
#: fs/mount_options.pm:122
#, c-format
@@ -2770,8 +2585,8 @@ msgstr "Scegliere le partizioni da formattare"
#: fs/partitioning.pm:75
#, c-format
msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, you "
-"can lose data)"
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can lose data)"
msgstr ""
"Errori nella verifica del filesystem %s. Vuoi riparare gli errori? "
"(attenzione, si potrebbero perdere dei dati)"
@@ -2860,11 +2675,12 @@ msgid ""
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
-"Be careful: this operation is dangerous. If you have not already done so, you "
-"first need to exit the installation, run \"chkdsk c:\" from a Command Prompt "
-"under Microsoft Windows® (beware, running graphical program \"scandisk\" is "
-"not enough, be sure to use \"chkdsk\" in a Command Prompt!), optionally run "
-"defrag, then restart the installation. You should also backup your data.\n"
+"Be careful: this operation is dangerous. If you have not already done so, "
+"you first need to exit the installation, run \"chkdsk c:\" from a Command "
+"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
+"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
+"optionally run defrag, then restart the installation. You should also backup "
+"your data.\n"
"\n"
"\n"
"When sure, press %s."
@@ -2878,19 +2694,16 @@ msgstr ""
"Sii prudente: questa operazione è pericolosa. Se non lo hai già fatto, devi "
"uscire dall'installazione e lanciare \"chkdsk c:\" da riga di comando sotto "
"Windows (attenzione, l'uso del comando grafico \"scandisk\" non è "
-"sufficiente. Devi assolutamente lanciare \"chkdsk\" da linea di comando!). Se "
-"vuoi lancia anche defrag. Poi puoi riavviare l'installazione. È consigliato "
-"anche un backup dei dati.\n"
+"sufficiente. Devi assolutamente lanciare \"chkdsk\" da linea di comando!). "
+"Se vuoi lancia anche defrag. Poi puoi riavviare l'installazione. È "
+"consigliato anche un backup dei dati.\n"
"\n"
"\n"
"Quando sei sicuro, premi %s."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: fs/partitioning_wizard.pm:191
-#: fs/partitioning_wizard.pm:559
-#: interactive.pm:550
-#: interactive/curses.pm:270
-#: ugtk2.pm:519
+#: fs/partitioning_wizard.pm:191 fs/partitioning_wizard.pm:559
+#: interactive.pm:550 interactive/curses.pm:270 ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Avanti"
@@ -2945,8 +2758,7 @@ msgid ""
"to use?"
msgstr "Hai più di un disco rigido, quale deve usare l'installer?"
-#: fs/partitioning_wizard.pm:245
-#: fsedit.pm:634
+#: fs/partitioning_wizard.pm:245 fsedit.pm:634
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
@@ -2977,18 +2789,17 @@ msgstr ""
msgid "Ext2/3/4"
msgstr "Ext2/3/4"
-#: fs/partitioning_wizard.pm:433
-#: fs/partitioning_wizard.pm:579
+#: fs/partitioning_wizard.pm:433 fs/partitioning_wizard.pm:579
#, c-format
msgid "I cannot find any room for installing"
msgstr "Non c'è spazio per l'installazione"
-#: fs/partitioning_wizard.pm:442
-#: fs/partitioning_wizard.pm:586
+#: fs/partitioning_wizard.pm:442 fs/partitioning_wizard.pm:586
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-"L'assistente per il partizionamento di DrakX ha trovato le seguenti soluzioni:"
+"L'assistente per il partizionamento di DrakX ha trovato le seguenti "
+"soluzioni:"
#: fs/partitioning_wizard.pm:512
#, c-format
@@ -3000,12 +2811,12 @@ msgstr "Questo è il contenuto del disco"
msgid "Partitioning failed: %s"
msgstr "Partizionamento fallito: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Non puoi usare JFS per le partizioni più piccole di 16 MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Non puoi usare ReiserFS per partizioni più piccole di 32 MB"
@@ -3033,15 +2844,16 @@ msgstr "È stato rilevato un BIOS software RAID sui dischi %s. Attivarlo?"
#: fsedit.pm:247
#, c-format
msgid ""
-"I cannot read the partition table of device %s, it's too corrupted for me :(\n"
+"I cannot read the partition table of device %s, it's too corrupted for me :"
+"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
-"Non riesco a leggere la tabella delle partizioni del dispositivo %s, è troppo "
-"corrotta :(\n"
+"Non riesco a leggere la tabella delle partizioni del dispositivo %s, è "
+"troppo corrotta :(\n"
"L'altra soluzione è di non permettere a DrakX di modificare la tabella delle "
"partizioni.\n"
"(l'errore è %s)\n"
@@ -3108,8 +2920,7 @@ msgstr ""
"Nessun bootloader è in grado di gestirla senza una partizione /boot.\n"
"Per favore, aggiungi una partizione /boot separata."
-#: fsedit.pm:465
-#: fsedit.pm:485
+#: fsedit.pm:465 fsedit.pm:485
#, c-format
msgid "You cannot use an encrypted filesystem for mount point %s"
msgstr "Non puoi usare un filesystem cifrato per il punto di mount %s"
@@ -3136,15 +2947,12 @@ msgstr ""
"fisici.\n"
"Dovresti prima creare una partizione /boot separata"
-#: fsedit.pm:475
-#: fsedit.pm:477
+#: fsedit.pm:475 fsedit.pm:477
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Questa directory dovrebbe rimanere all'interno del filesystem root"
-#: fsedit.pm:479
-#: fsedit.pm:481
-#: fsedit.pm:483
+#: fsedit.pm:479 fsedit.pm:481 fsedit.pm:483
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
@@ -3440,8 +3248,8 @@ msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
-"Non esiste nessun altro driver OSS/ALSA conosciuto per questa scheda audio(%"
-"s), che attualmente usa \"%s\""
+"Non esiste nessun altro driver OSS/ALSA conosciuto per questa scheda "
+"audio(%s), che attualmente usa \"%s\""
#: harddrake/sound.pm:362
#, c-format
@@ -3451,13 +3259,13 @@ msgstr "Configurazione del suono"
#: harddrake/sound.pm:364
#, c-format
msgid ""
-"Here you can select an alternative driver (either OSS or ALSA) for your sound "
-"card (%s)."
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
msgstr ""
"Qui è possibile scegliere un driver alternativo (OSS o ALSA) per la scheda "
"audio (%s)."
-#. -PO: here the first %s is either "OSS" or "ALSA",
+#. -PO: here the first %s is either "OSS" or "ALSA",
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:369
@@ -3476,12 +3284,13 @@ msgstr ""
#: harddrake/sound.pm:371
#, c-format
msgid ""
-"OSS (Open Sound System) was the first sound API. It's an OS independent sound "
-"API (it's available on most UNIX(tm) systems) but it's a very basic and "
-"limited API.\n"
+"OSS (Open Sound System) was the first sound API. It's an OS independent "
+"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
+"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
-"ALSA (Advanced Linux Sound Architecture) is a modularized architecture which\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
@@ -3506,8 +3315,7 @@ msgstr ""
"- la nuova API ALSA che fornisce molte funzionalità avanzate, ma richiede "
"l'utilizzo della libreria ALSA.\n"
-#: harddrake/sound.pm:385
-#: harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Driver:"
@@ -3560,59 +3368,74 @@ msgstr "Risoluzione problemi al suono"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Un controllo classico in caso di problemi audio è lanciare questi comandi:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" ti dice il driver predefinito per la tua "
-"scheda\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" ti dice il driver utilizzato ora\n"
"\n"
-"- \"/sbin/lsmod\" ti permette di controllare se il modulo (driver) è\n"
-"caricato o no\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" e \"/sbin/chkconfig --list alsa\" ti "
-"dicono\n"
-"se i servizi sound e alsa sono configurati per funzionare all'initlevel 3\n"
"\n"
-"- \"aumix -q\" ti dice se il volume del suono è azzerato o no\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" ti dice quale programma sta usando la scheda\n"
-"audio.\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Scelta di un driver"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Scelta arbitraria d'un driver..."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3621,8 +3444,8 @@ msgid ""
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
-"Se conosci davvero quale driver sia il più adatto per la tua scheda, scegline "
-"uno dalla lista sotto.\n"
+"Se conosci davvero quale driver sia il più adatto per la tua scheda, "
+"scegline uno dalla lista sotto.\n"
"\n"
"Il driver attuale per la tua scheda audio \"%s\" è \"%s\" "
@@ -3631,9 +3454,7 @@ msgstr ""
msgid "Auto-detect"
msgstr "Riconoscimento automatico"
-#: harddrake/v4l.pm:97
-#: harddrake/v4l.pm:285
-#: harddrake/v4l.pm:337
+#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Sconosciuto|Generico"
@@ -3651,15 +3472,15 @@ msgstr "Sconosciuto|CPH05X (bt878) [molte marche]"
#: harddrake/v4l.pm:475
#, c-format
msgid ""
-"For most modern TV cards, the bttv module of the GNU/Linux kernel just "
-"auto-detect the rights parameters.\n"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your TV card parameters if needed."
msgstr ""
-"Per la maggior parte delle schede TV moderne, il modulo bttv del kernel "
-"GNU/Linux rileva automaticamente i parametri corretti.\n"
-"Se la tua scheda non è stata riconosciuta correttamente, puoi forzare il tipo "
-"di scheda e il tuner qua. Se necessario, devi solamente selezionare i "
+"Per la maggior parte delle schede TV moderne, il modulo bttv del kernel GNU/"
+"Linux rileva automaticamente i parametri corretti.\n"
+"Se la tua scheda non è stata riconosciuta correttamente, puoi forzare il "
+"tipo di scheda e il tuner qua. Se necessario, devi solamente selezionare i "
"parametri della tua scheda TV."
#: harddrake/v4l.pm:478
@@ -3672,35 +3493,20 @@ msgstr "Tipo di scheda:"
msgid "Tuner type:"
msgstr "Tipo di sintonizzatore:"
-#: interactive.pm:129
-#: interactive.pm:550
-#: interactive/curses.pm:270
-#: interactive/http.pm:103
-#: interactive/http.pm:156
-#: interactive/stdio.pm:39
-#: interactive/stdio.pm:148
-#: interactive/stdio.pm:149
-#: mygtk2.pm:846
-#: ugtk2.pm:421
-#: ugtk2.pm:519
-#: ugtk2.pm:812
-#: ugtk2.pm:835
+#: interactive.pm:129 interactive.pm:550 interactive/curses.pm:270
+#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
+#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:846
+#: ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
#, c-format
msgid "Ok"
msgstr "OK"
-#: interactive.pm:229
-#: modules/interactive.pm:72
-#: ugtk2.pm:811
-#: wizards.pm:157
+#: interactive.pm:229 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:157
#, c-format
msgid "Yes"
msgstr "Sì"
-#: interactive.pm:229
-#: modules/interactive.pm:72
-#: ugtk2.pm:811
-#: wizards.pm:157
+#: interactive.pm:229 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:157
#, c-format
msgid "No"
msgstr "No"
@@ -3710,69 +3516,57 @@ msgstr "No"
msgid "Choose a file"
msgstr "Scegli un file"
-#: interactive.pm:388
-#: interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Aggiungi"
-#: interactive.pm:388
-#: interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Modifica"
-#: interactive.pm:550
-#: interactive/curses.pm:270
-#: ugtk2.pm:519
+#: interactive.pm:550 interactive/curses.pm:270 ugtk2.pm:519
#, c-format
msgid "Finish"
msgstr "Finisci"
-#: interactive.pm:551
-#: interactive/curses.pm:267
-#: ugtk2.pm:517
+#: interactive.pm:551 interactive/curses.pm:267 ugtk2.pm:517
#, c-format
msgid "Previous"
msgstr "Indietro"
-#: interactive/curses.pm:576
-#: ugtk2.pm:872
+#: interactive/curses.pm:576 ugtk2.pm:872
#, c-format
msgid "No file chosen"
msgstr "Nessun file selezionato"
-#: interactive/curses.pm:580
-#: ugtk2.pm:876
+#: interactive/curses.pm:580 ugtk2.pm:876
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "È stata selezionata una directory, non un file"
-#: interactive/curses.pm:582
-#: ugtk2.pm:878
+#: interactive/curses.pm:582 ugtk2.pm:878
#, c-format
msgid "No such directory"
msgstr "Directory non trovata"
-#: interactive/curses.pm:582
-#: ugtk2.pm:878
+#: interactive/curses.pm:582 ugtk2.pm:878
#, c-format
msgid "No such file"
msgstr "File non trovato"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Attenzione, CapsLock è attivo"
-#: interactive/stdio.pm:29
-#: interactive/stdio.pm:154
+#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, c-format
msgid "Bad choice, try again\n"
msgstr "Scelta non valida, riprova\n"
-#: interactive/stdio.pm:30
-#: interactive/stdio.pm:155
+#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, c-format
msgid "Your choice? (default %s) "
msgstr "La tua scelta? (predefinito %s) "
@@ -3854,8 +3648,7 @@ msgstr "default:LTR"
msgid "Andorra"
msgstr "Andorra"
-#: lang.pm:221
-#: timezone.pm:228
+#: lang.pm:221 timezone.pm:228
#, c-format
msgid "United Arab Emirates"
msgstr "Emirati Arabi Uniti"
@@ -3900,8 +3693,7 @@ msgstr "Angola"
msgid "Antarctica"
msgstr "Antartide"
-#: lang.pm:230
-#: timezone.pm:273
+#: lang.pm:230 timezone.pm:273
#, c-format
msgid "Argentina"
msgstr "Argentina"
@@ -3911,16 +3703,12 @@ msgstr "Argentina"
msgid "American Samoa"
msgstr "Samoa Americana"
-#: lang.pm:232
-#: mirror.pm:12
-#: timezone.pm:231
+#: lang.pm:232 mirror.pm:12 timezone.pm:231
#, c-format
msgid "Austria"
msgstr "Austria"
-#: lang.pm:233
-#: mirror.pm:11
-#: timezone.pm:269
+#: lang.pm:233 mirror.pm:11 timezone.pm:269
#, c-format
msgid "Australia"
msgstr "Australia"
@@ -3945,15 +3733,12 @@ msgstr "Bosnia Erzegovina"
msgid "Barbados"
msgstr "Barbados"
-#: lang.pm:238
-#: timezone.pm:213
+#: lang.pm:238 timezone.pm:213
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"
-#: lang.pm:239
-#: mirror.pm:13
-#: timezone.pm:233
+#: lang.pm:239 mirror.pm:13 timezone.pm:233
#, c-format
msgid "Belgium"
msgstr "Belgio"
@@ -3963,8 +3748,7 @@ msgstr "Belgio"
msgid "Burkina Faso"
msgstr "Burkina Faso"
-#: lang.pm:241
-#: timezone.pm:234
+#: lang.pm:241 timezone.pm:234
#, c-format
msgid "Bulgaria"
msgstr "Bulgaria"
@@ -3999,9 +3783,7 @@ msgstr "Brunei Darussalam"
msgid "Bolivia"
msgstr "Bolivia"
-#: lang.pm:248
-#: mirror.pm:14
-#: timezone.pm:274
+#: lang.pm:248 mirror.pm:14 timezone.pm:274
#, c-format
msgid "Brazil"
msgstr "Brasile"
@@ -4026,8 +3808,7 @@ msgstr "Isola di Bouvet"
msgid "Botswana"
msgstr "Botswana"
-#: lang.pm:253
-#: timezone.pm:232
+#: lang.pm:253 timezone.pm:232
#, c-format
msgid "Belarus"
msgstr "Bielorussia"
@@ -4037,9 +3818,7 @@ msgstr "Bielorussia"
msgid "Belize"
msgstr "Belize"
-#: lang.pm:255
-#: mirror.pm:15
-#: timezone.pm:263
+#: lang.pm:255 mirror.pm:15 timezone.pm:263
#, c-format
msgid "Canada"
msgstr "Canada"
@@ -4064,9 +3843,7 @@ msgstr "Repubblica Centro Africana"
msgid "Congo (Brazzaville)"
msgstr "Congo (Brazzaville)"
-#: lang.pm:260
-#: mirror.pm:39
-#: timezone.pm:257
+#: lang.pm:260 mirror.pm:39 timezone.pm:257
#, c-format
msgid "Switzerland"
msgstr "Svizzera"
@@ -4081,8 +3858,7 @@ msgstr "Costa d'Avorio"
msgid "Cook Islands"
msgstr "Isole Cook"
-#: lang.pm:263
-#: timezone.pm:275
+#: lang.pm:263 timezone.pm:275
#, c-format
msgid "Chile"
msgstr "Cile"
@@ -4092,8 +3868,7 @@ msgstr "Cile"
msgid "Cameroon"
msgstr "Camerun"
-#: lang.pm:265
-#: timezone.pm:214
+#: lang.pm:265 timezone.pm:214
#, c-format
msgid "China"
msgstr "Cina"
@@ -4103,8 +3878,7 @@ msgstr "Cina"
msgid "Colombia"
msgstr "Colombia"
-#: lang.pm:267
-#: mirror.pm:16
+#: lang.pm:267 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"
@@ -4134,16 +3908,12 @@ msgstr "Isola Christmas"
msgid "Cyprus"
msgstr "Cipro"
-#: lang.pm:273
-#: mirror.pm:17
-#: timezone.pm:235
+#: lang.pm:273 mirror.pm:17 timezone.pm:235
#, c-format
msgid "Czech Republic"
msgstr "Repubblica Ceca"
-#: lang.pm:274
-#: mirror.pm:22
-#: timezone.pm:240
+#: lang.pm:274 mirror.pm:22 timezone.pm:240
#, c-format
msgid "Germany"
msgstr "Germania"
@@ -4153,9 +3923,7 @@ msgstr "Germania"
msgid "Djibouti"
msgstr "Gibuti"
-#: lang.pm:276
-#: mirror.pm:18
-#: timezone.pm:236
+#: lang.pm:276 mirror.pm:18 timezone.pm:236
#, c-format
msgid "Denmark"
msgstr "Danimarca"
@@ -4180,9 +3948,7 @@ msgstr "Algeria"
msgid "Ecuador"
msgstr "Ecuador"
-#: lang.pm:281
-#: mirror.pm:19
-#: timezone.pm:237
+#: lang.pm:281 mirror.pm:19 timezone.pm:237
#, c-format
msgid "Estonia"
msgstr "Estonia"
@@ -4202,9 +3968,7 @@ msgstr "Sahara Occidentale"
msgid "Eritrea"
msgstr "Eritrea"
-#: lang.pm:285
-#: mirror.pm:37
-#: timezone.pm:255
+#: lang.pm:285 mirror.pm:37 timezone.pm:255
#, c-format
msgid "Spain"
msgstr "Spagna"
@@ -4214,9 +3978,7 @@ msgstr "Spagna"
msgid "Ethiopia"
msgstr "Etiopia"
-#: lang.pm:287
-#: mirror.pm:20
-#: timezone.pm:238
+#: lang.pm:287 mirror.pm:20 timezone.pm:238
#, c-format
msgid "Finland"
msgstr "Finlandia"
@@ -4241,9 +4003,7 @@ msgstr "Micronesia"
msgid "Faroe Islands"
msgstr "Isole Faroe"
-#: lang.pm:292
-#: mirror.pm:21
-#: timezone.pm:239
+#: lang.pm:292 mirror.pm:21 timezone.pm:239
#, c-format
msgid "France"
msgstr "Francia"
@@ -4253,8 +4013,7 @@ msgstr "Francia"
msgid "Gabon"
msgstr "Gabon"
-#: lang.pm:294
-#: timezone.pm:259
+#: lang.pm:294 timezone.pm:259
#, c-format
msgid "United Kingdom"
msgstr "Regno Unito"
@@ -4309,9 +4068,7 @@ msgstr "Guadalupe"
msgid "Equatorial Guinea"
msgstr "Guinea Equatoriale"
-#: lang.pm:305
-#: mirror.pm:23
-#: timezone.pm:241
+#: lang.pm:305 mirror.pm:23 timezone.pm:241
#, c-format
msgid "Greece"
msgstr "Grecia"
@@ -4321,8 +4078,7 @@ msgstr "Grecia"
msgid "South Georgia and the South Sandwich Islands"
msgstr "Georgia del Sud e le isole Sandwich meridionali"
-#: lang.pm:307
-#: timezone.pm:264
+#: lang.pm:307 timezone.pm:264
#, c-format
msgid "Guatemala"
msgstr "Guatemala"
@@ -4367,35 +4123,27 @@ msgstr "Croazia"
msgid "Haiti"
msgstr "Haiti"
-#: lang.pm:316
-#: mirror.pm:24
-#: timezone.pm:242
+#: lang.pm:316 mirror.pm:24 timezone.pm:242
#, c-format
msgid "Hungary"
msgstr "Ungheria"
-#: lang.pm:317
-#: timezone.pm:217
+#: lang.pm:317 timezone.pm:217
#, c-format
msgid "Indonesia"
msgstr "Indonesia"
-#: lang.pm:318
-#: mirror.pm:25
-#: timezone.pm:243
+#: lang.pm:318 mirror.pm:25 timezone.pm:243
#, c-format
msgid "Ireland"
msgstr "Irlanda"
-#: lang.pm:319
-#: mirror.pm:26
-#: timezone.pm:219
+#: lang.pm:319 mirror.pm:26 timezone.pm:219
#, c-format
msgid "Israel"
msgstr "Israele"
-#: lang.pm:320
-#: timezone.pm:216
+#: lang.pm:320 timezone.pm:216
#, c-format
msgid "India"
msgstr "India"
@@ -4410,8 +4158,7 @@ msgstr "Territorio Britannico dell'Oceano Indiano"
msgid "Iraq"
msgstr "Iraq"
-#: lang.pm:323
-#: timezone.pm:218
+#: lang.pm:323 timezone.pm:218
#, c-format
msgid "Iran"
msgstr "Iran"
@@ -4421,9 +4168,7 @@ msgstr "Iran"
msgid "Iceland"
msgstr "Islanda"
-#: lang.pm:325
-#: mirror.pm:27
-#: timezone.pm:244
+#: lang.pm:325 mirror.pm:27 timezone.pm:244
#, c-format
msgid "Italy"
msgstr "Italia"
@@ -4438,9 +4183,7 @@ msgstr "Giamaica"
msgid "Jordan"
msgstr "Giordania"
-#: lang.pm:328
-#: mirror.pm:28
-#: timezone.pm:220
+#: lang.pm:328 mirror.pm:28 timezone.pm:220
#, c-format
msgid "Japan"
msgstr "Giappone"
@@ -4480,8 +4223,7 @@ msgstr "Saint Kitts e Nevis"
msgid "Korea (North)"
msgstr "Corea del Nord"
-#: lang.pm:336
-#: timezone.pm:221
+#: lang.pm:336 timezone.pm:221
#, c-format
msgid "Korea"
msgstr "Corea"
@@ -4536,14 +4278,12 @@ msgstr "Liberia"
msgid "Lesotho"
msgstr "Lesotho"
-#: lang.pm:347
-#: timezone.pm:245
+#: lang.pm:347 timezone.pm:245
#, c-format
msgid "Lithuania"
msgstr "Lituania"
-#: lang.pm:348
-#: timezone.pm:246
+#: lang.pm:348 timezone.pm:246
#, c-format
msgid "Luxembourg"
msgstr "Lussemburgo"
@@ -4643,14 +4383,12 @@ msgstr "Maldive"
msgid "Malawi"
msgstr "Malawi"
-#: lang.pm:368
-#: timezone.pm:265
+#: lang.pm:368 timezone.pm:265
#, c-format
msgid "Mexico"
msgstr "Messico"
-#: lang.pm:369
-#: timezone.pm:222
+#: lang.pm:369 timezone.pm:222
#, c-format
msgid "Malaysia"
msgstr "Malesia"
@@ -4690,16 +4428,12 @@ msgstr "Nigeria"
msgid "Nicaragua"
msgstr "Nicaragua"
-#: lang.pm:377
-#: mirror.pm:29
-#: timezone.pm:247
+#: lang.pm:377 mirror.pm:29 timezone.pm:247
#, c-format
msgid "Netherlands"
msgstr "Paesi Bassi"
-#: lang.pm:378
-#: mirror.pm:31
-#: timezone.pm:248
+#: lang.pm:378 mirror.pm:31 timezone.pm:248
#, c-format
msgid "Norway"
msgstr "Norvegia"
@@ -4719,9 +4453,7 @@ msgstr "Nauru"
msgid "Niue"
msgstr "Niue"
-#: lang.pm:382
-#: mirror.pm:30
-#: timezone.pm:270
+#: lang.pm:382 mirror.pm:30 timezone.pm:270
#, c-format
msgid "New Zealand"
msgstr "Nuova Zelanda"
@@ -4751,8 +4483,7 @@ msgstr "Polinesia Francese"
msgid "Papua New Guinea"
msgstr "Papua Nuova Guinea"
-#: lang.pm:388
-#: timezone.pm:223
+#: lang.pm:388 timezone.pm:223
#, c-format
msgid "Philippines"
msgstr "Filippine"
@@ -4762,9 +4493,7 @@ msgstr "Filippine"
msgid "Pakistan"
msgstr "Pakistan"
-#: lang.pm:390
-#: mirror.pm:32
-#: timezone.pm:249
+#: lang.pm:390 mirror.pm:32 timezone.pm:249
#, c-format
msgid "Poland"
msgstr "Polonia"
@@ -4789,9 +4518,7 @@ msgstr "Porto Rico"
msgid "Palestine"
msgstr "Palestina"
-#: lang.pm:395
-#: mirror.pm:33
-#: timezone.pm:250
+#: lang.pm:395 mirror.pm:33 timezone.pm:250
#, c-format
msgid "Portugal"
msgstr "Portogallo"
@@ -4816,14 +4543,12 @@ msgstr "Qatar"
msgid "Reunion"
msgstr "Reunion"
-#: lang.pm:400
-#: timezone.pm:251
+#: lang.pm:400 timezone.pm:251
#, c-format
msgid "Romania"
msgstr "Romania"
-#: lang.pm:401
-#: mirror.pm:34
+#: lang.pm:401 mirror.pm:34
#, c-format
msgid "Russia"
msgstr "Russia"
@@ -4853,15 +4578,12 @@ msgstr "Seychelles"
msgid "Sudan"
msgstr "Sudan"
-#: lang.pm:407
-#: mirror.pm:38
-#: timezone.pm:256
+#: lang.pm:407 mirror.pm:38 timezone.pm:256
#, c-format
msgid "Sweden"
msgstr "Svezia"
-#: lang.pm:408
-#: timezone.pm:224
+#: lang.pm:408 timezone.pm:224
#, c-format
msgid "Singapore"
msgstr "Singapore"
@@ -4871,8 +4593,7 @@ msgstr "Singapore"
msgid "Saint Helena"
msgstr "Sant'Elena"
-#: lang.pm:410
-#: timezone.pm:254
+#: lang.pm:410 timezone.pm:254
#, c-format
msgid "Slovenia"
msgstr "Slovenia"
@@ -4882,9 +4603,7 @@ msgstr "Slovenia"
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard e le isole Jan Mayen"
-#: lang.pm:412
-#: mirror.pm:35
-#: timezone.pm:253
+#: lang.pm:412 mirror.pm:35 timezone.pm:253
#, c-format
msgid "Slovakia"
msgstr "Slovacchia"
@@ -4954,9 +4673,7 @@ msgstr "Territori australi francesi"
msgid "Togo"
msgstr "Togo"
-#: lang.pm:426
-#: mirror.pm:41
-#: timezone.pm:226
+#: lang.pm:426 mirror.pm:41 timezone.pm:226
#, c-format
msgid "Thailand"
msgstr "Thailandia"
@@ -4991,8 +4708,7 @@ msgstr "Tunisia"
msgid "Tonga"
msgstr "Tonga"
-#: lang.pm:433
-#: timezone.pm:227
+#: lang.pm:433 timezone.pm:227
#, c-format
msgid "Turkey"
msgstr "Turchia"
@@ -5007,21 +4723,17 @@ msgstr "Trinidad e Tobago"
msgid "Tuvalu"
msgstr "Tuvalu"
-#: lang.pm:436
-#: mirror.pm:40
-#: timezone.pm:225
+#: lang.pm:436 mirror.pm:40 timezone.pm:225
#, c-format
msgid "Taiwan"
msgstr "Taiwan"
-#: lang.pm:437
-#: timezone.pm:210
+#: lang.pm:437 timezone.pm:210
#, c-format
msgid "Tanzania"
msgstr "Tanzania"
-#: lang.pm:438
-#: timezone.pm:258
+#: lang.pm:438 timezone.pm:258
#, c-format
msgid "Ukraine"
msgstr "Ucraina"
@@ -5036,9 +4748,7 @@ msgstr "Uganda"
msgid "United States Minor Outlying Islands"
msgstr "Stati Uniti (Isole minori)"
-#: lang.pm:441
-#: mirror.pm:42
-#: timezone.pm:266
+#: lang.pm:441 mirror.pm:42 timezone.pm:266
#, c-format
msgid "United States"
msgstr "Stati Uniti"
@@ -5108,9 +4818,7 @@ msgstr "Yemen"
msgid "Mayotte"
msgstr "Mayotte"
-#: lang.pm:455
-#: mirror.pm:36
-#: timezone.pm:209
+#: lang.pm:455 mirror.pm:36 timezone.pm:209
#, c-format
msgid "South Africa"
msgstr "Sud Africa"
@@ -5134,19 +4842,20 @@ msgstr "Benvenuto in %s"
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-"Lo spostamento su altri volumi delle estensioni fisiche in uso non è riuscito."
+"Lo spostamento su altri volumi delle estensioni fisiche in uso non è "
+"riuscito."
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Il volume fisico %s è ancora in uso"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Prima rimuovi i volumi logici\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "Il bootloader non può gestire una /boot ripartita su più volumi fisici"
@@ -5175,8 +4884,8 @@ msgid ""
"applications \n"
"distributed with these products provided by Mageia's licensors or suppliers."
msgstr ""
-"Nel seguito verranno chiamati \"Prodotti software\" il sistema operativo e le "
-"diverse\n"
+"Nel seguito verranno chiamati \"Prodotti software\" il sistema operativo e "
+"le diverse\n"
"\n"
"componenti disponibili nella distribuzione Mageia. I \"Prodotti software\" "
"includono, ma non\n"
@@ -5219,8 +4928,8 @@ msgid ""
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
-"with the terms and conditions of this License is void and will terminate your "
-"rights under this \n"
+"with the terms and conditions of this License is void and will terminate "
+"your rights under this \n"
"License. Upon termination of the License, you must immediately destroy all "
"copies of the \n"
"Software Products."
@@ -5228,8 +4937,8 @@ msgstr ""
"Per favore leggete con attenzione questo documento. Questo documento "
"costituisce un contratto\n"
"\n"
-"tra Lei e Mageia che si applica ai prodotti software. L'azione di installare, "
-"duplicare o \n"
+"tra Lei e Mageia che si applica ai prodotti software. L'azione di "
+"installare, duplicare o \n"
"\n"
"usare in qualsiasi modo i prodotti software implica l'esplicita accettazione "
"e il pieno \n"
@@ -5249,8 +4958,8 @@ msgstr ""
"automaticamente all'annullamento della licenza e alla revoca dei vostri "
"diritti ai sensi \n"
"\n"
-"della stessa. Una volta invalidata la Licenza, avete l'obbligo di distruggere "
-"immediatamente\n"
+"della stessa. Una volta invalidata la Licenza, avete l'obbligo di "
+"distruggere immediatamente\n"
"\n"
"tutte le vostre copie dei \"Prodotti software\"."
@@ -5263,8 +4972,8 @@ msgstr "2. Limiti della garanzia"
#: messages.pm:44
#, c-format
msgid ""
-"The Software Products and attached documentation are provided \"as is\", with "
-"no warranty, to the \n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
"extent permitted by law.\n"
"Neither Mageia nor its licensors or suppliers will, in any circumstances and "
"to the extent \n"
@@ -5321,11 +5030,11 @@ msgstr ""
"pecuniarie che derivino da sentenze giudiziarie, o qualsiasi altra perdita "
"conseguente), \n"
"\n"
-"dovuto all'utilizzo o all'impossibilità di utilizzo dei \"Prodotti "
-"software\", anche nel caso \n"
+"dovuto all'utilizzo o all'impossibilità di utilizzo dei \"Prodotti software"
+"\", anche nel caso \n"
"\n"
-"in cui Mageia sia stata avvertita della possibilità che si verificassero tali "
-"danni.\n"
+"in cui Mageia sia stata avvertita della possibilità che si verificassero "
+"tali danni.\n"
"\n"
"RESPONSABILITÀ LIMITATA IN RELAZIONE AL POSSESSO O ALL'USO DI SOFTWARE "
"PROIBITO IN ALCUNE NAZIONI\n"
@@ -5351,8 +5060,8 @@ msgstr ""
"dei siti di Mageia, che risultino proibiti o soggetti a limitazioni d'uso in "
"alcune nazioni\n"
"\n"
-"per effetto di leggi locali. Questa limitazione di responsabilità si applica, "
-"ma non è \n"
+"per effetto di leggi locali. Questa limitazione di responsabilità si "
+"applica, ma non è \n"
"\n"
"limitata, alle componenti di crittografia forte incluse nei \"Prodotti "
"software\". Tuttavia, \n"
@@ -5373,8 +5082,8 @@ msgstr ""
msgid ""
"The Software Products consist of components created by different persons or "
"entities.\n"
-"Most of these licenses allow you to use, duplicate, adapt or redistribute the "
-"components which \n"
+"Most of these licenses allow you to use, duplicate, adapt or redistribute "
+"the components which \n"
"they cover. Please read carefully the terms and conditions of the license "
"agreement for each component \n"
"before using any component. Any question on a component license should be "
@@ -5393,8 +5102,8 @@ msgstr ""
"ridistribuire le componenti software che le adottano. Per favore, si leggano "
"con attenzione i \n"
"\n"
-"termini e le condizioni della licenza relativa a ciascuna componente prima di "
-"utilizzarla. \n"
+"termini e le condizioni della licenza relativa a ciascuna componente prima "
+"di utilizzarla. \n"
"\n"
"Qualsiasi domanda relativa alla licenza di una componente software dovrebbe "
"essere \n"
@@ -5449,7 +5158,8 @@ msgid ""
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
-"The terms and conditions of this License are governed by the Laws of France.\n"
+"The terms and conditions of this License are governed by the Laws of "
+"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
@@ -5462,8 +5172,8 @@ msgstr ""
"in seguito a sentenza giudiziaria, tale parte è esclusa dal contratto. "
"Rimangono vincolanti\n"
"\n"
-"le altre parti applicabili del contratto. I termini e le condizioni di questa "
-"Licenza sono\n"
+"le altre parti applicabili del contratto. I termini e le condizioni di "
+"questa Licenza sono\n"
"\n"
"soggetti alle leggi vigenti in Francia. Qualsiasi disputa in merito ai "
"termini di questa\n"
@@ -5484,7 +5194,8 @@ msgid ""
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a license for further usage (see\n"
-"http://www.mp3licensing.com for more details). If you are unsure if a patent\n"
+"http://www.mp3licensing.com for more details). If you are unsure if a "
+"patent\n"
"may be applicable to you, check your local laws."
msgstr ""
"Attenzione il Free Software non è necessariamente libero da brevetti,\n"
@@ -5667,19 +5378,17 @@ msgstr ""
msgid "Are you sure you want to quit?"
msgstr "Sei sicuro di voler chiudere?"
-#: mygtk2.pm:1563
-#: mygtk2.pm:1564
+#: mygtk2.pm:1563 mygtk2.pm:1564
#, c-format
msgid "Password is trivial to guess"
msgstr "Password facile da indovinare"
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr "La password dovrebbe resistere agli attacchi di base"
-#: mygtk2.pm:1543
-#: mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr "La password sembra sicura"
@@ -5698,28 +5407,27 @@ msgstr "Questa piattaforma non supporta le partizioni estese"
#, c-format
msgid ""
"You have a hole in your partition table but I cannot use it.\n"
-"The only solution is to move your primary partitions to have the hole next to "
-"the extended partitions."
+"The only solution is to move your primary partitions to have the hole next "
+"to the extended partitions."
msgstr ""
"Hai un vuoto nella tua tabella delle partizioni ma non posso usarlo.\n"
-"L'unica soluzione è di muovere le tue partizioni primarie per avere lo spazio "
-"libero dopo le partizioni estese."
+"L'unica soluzione è di muovere le tue partizioni primarie per avere lo "
+"spazio libero dopo le partizioni estese."
#: partition_table/raw.pm:296
#, c-format
msgid ""
"Something bad is happening on your hard disk drive. \n"
"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random, corrupted data."
+"It means writing anything on the disk will end up with random, corrupted "
+"data."
msgstr ""
"Si è verificato un problema nel tuo disco rigido.\n"
"È fallito un test per controllare l'integrità dei dati.\n"
"Ciò significa che la scrittura di qualsiasi cosa nel disco porterà un giorno "
"ad avere dati corrotti."
-#: pkgs.pm:254
-#: pkgs.pm:257
-#: pkgs.pm:270
+#: pkgs.pm:254 pkgs.pm:257 pkgs.pm:270
#, c-format
msgid "Unused packages removal"
msgstr "Rimozione dei pacchetti inutilizzati"
@@ -5748,14 +5456,12 @@ msgstr ""
msgid "We will remove the following packages, unless you choose otherwise:"
msgstr "I seguenti pacchetti verranno rimossi, altrimenti scegli:"
-#: pkgs.pm:275
-#: pkgs.pm:276
+#: pkgs.pm:275 pkgs.pm:276
#, c-format
msgid "Unused hardware support"
msgstr "Supporto hardware inutilizzato"
-#: pkgs.pm:279
-#: pkgs.pm:280
+#: pkgs.pm:279 pkgs.pm:280
#, c-format
msgid "Unused localization"
msgstr "Localizzazione inutilizzata"
@@ -5839,8 +5545,8 @@ msgid ""
"\n"
"Else only /etc/issue is allowed."
msgstr ""
-"Se impostato come \"ALL\", si consente l'esistenza di /etc/issue e "
-"/etc/issue.net.\n"
+"Se impostato come \"ALL\", si consente l'esistenza di /etc/issue e /etc/"
+"issue.net.\n"
"\n"
"Se impostato come \"None\", nessuno di questi file è permesso\n"
"\n"
@@ -5916,14 +5622,15 @@ msgstr ""
msgid ""
"Authorize:\n"
"\n"
-"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if set "
-"to \"ALL\",\n"
+"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
+"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"Local\"\n"
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Autorizza:\n"
"\n"
@@ -5934,8 +5641,8 @@ msgstr ""
"\n"
"- nessuno se impostato su \"None\".\n"
"\n"
-"Per autorizzare i servizi che ti servono, usa /etc/hosts.allow (vedi "
-"hosts.allow(5))."
+"Per autorizzare i servizi che ti servono, usa /etc/hosts.allow (vedi hosts."
+"allow(5))."
#: security/help.pm:63
#, c-format
@@ -6498,8 +6205,8 @@ msgstr ""
#: security/level.pm:55
#, c-format
msgid ""
-"This is the standard security recommended for a computer that will be used to "
-"connect to the Internet as a client."
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
"Questo è il livello di sicurezza standard, raccomandato per un computer da "
"usare per connettersi ad Internet come client."
@@ -6514,8 +6221,8 @@ msgid ""
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
-"A questo livello di sicurezza, diventa possibile l'uso di questo sistema come "
-"server.\n"
+"A questo livello di sicurezza, diventa possibile l'uso di questo sistema "
+"come server.\n"
"La sicurezza è ora abbastanza alta per consentire l'utilizzo del sistema\n"
"come server che accetta connessioni da molti client.\n"
"Nota: se la tua macchina è un semplice client su Internet, sarebbe meglio "
@@ -6611,7 +6318,8 @@ msgstr ""
msgid ""
"Common UNIX Printing System (CUPS) is an advanced printer spooling system"
msgstr ""
-"Common UNIX Printing System (CUPS) è un avanzato gestore per le code di stampa"
+"Common UNIX Printing System (CUPS) è un avanzato gestore per le code di "
+"stampa"
#: services.pm:31
#, c-format
@@ -6687,7 +6395,8 @@ msgstr ""
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for starting\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
@@ -6801,8 +6510,8 @@ msgstr "Abilita le regole di sicurezza di MSEC all'avvio del sistema"
#: services.pm:70
#, c-format
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host names "
-"to IP addresses."
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
msgstr ""
"named (BIND) è un Domain Name Server (DNS) utilizzato per risolvere\n"
"nomi host in indirizzi IP."
@@ -6894,7 +6603,8 @@ msgid ""
msgstr ""
"Il supporto PCMCIA di solito serve per usare dispositivi tipo schede "
"ethernet\n"
-" e modem nei portatili. Non sarà lanciato se non è stato configurato, perciò\n"
+" e modem nei portatili. Non sarà lanciato se non è stato configurato, "
+"perciò\n"
"non dà problemi anche se installato su macchine che non lo richiedono."
#: services.pm:91
@@ -7102,8 +6812,7 @@ msgstr "Amministrazione remota"
msgid "Database Server"
msgstr "Server database"
-#: services.pm:188
-#: services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servizi"
@@ -7118,22 +6827,22 @@ msgstr "Scegli quali servizi saranno lanciati automaticamente all'avvio."
msgid "%d activated for %d registered"
msgstr "%d attivati su %d registrati"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "in esecuzione"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "fermato"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Servizi e demoni"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -7142,28 +6851,27 @@ msgstr ""
"Spiacente, ma non ci sono ulteriori\n"
"informazioni riguardo questo servizio."
-#: services.pm:259
-#: ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Informazioni"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Inizia quando richiesto"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Al boot"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Avvia"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Stop"
@@ -7318,8 +7026,8 @@ msgid ""
"--adduser : add an existing system user to MTS (requires username)\n"
"--deluser : delete an existing system user from MTS (requires "
"username)\n"
-"--addclient : add a client machine to MTS (requires MAC address, IP, nbi "
-"image name)\n"
+"--addclient : add a client machine to MTS (requires MAC address, IP, "
+"nbi image name)\n"
"--delclient : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""
@@ -7378,27 +7086,27 @@ msgid ""
" --no-confirmation do not ask first confirmation question in %s Update "
"mode\n"
" --no-verify-rpm do not verify packages signatures\n"
-" --changelog-first display changelog before filelist in the description "
-"window\n"
+" --changelog-first display changelog before filelist in the "
+"description window\n"
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
"[OPZIONE]...⏎ \n"
" --no-confirmation non fare la prima domanda nella modalità "
"aggiornamento %s\n"
" --no-verify-rpm non verificare la firma dei pacchetti\n"
-" --changelog-first mostra il changelof prima della lista dei file nella "
-"finestra delle descrizioni\n"
+" --changelog-first mostra il changelof prima della lista dei file "
+"nella finestra delle descrizioni\n"
" --merge-all-rpmnew proponi di unire tutti i file .rpmnew/.rpmsave "
"trovati"
#: standalone.pm:117
#, c-format
msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-usbtable] "
-"[--dynamic=dev]"
+"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
+"usbtable] [--dynamic=dev]"
msgstr ""
-"[--manual] [--device=dev] [--update-sane=dir_sorgenti_sane] "
-"[--update-usbtable] [--dynamic=dev]"
+"[--manual] [--device=dev] [--update-sane=dir_sorgenti_sane] [--update-"
+"usbtable] [--dynamic=dev]"
#: standalone.pm:118
#, c-format
@@ -7415,15 +7123,14 @@ msgstr ""
#, c-format
msgid ""
"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] "
-"[--testing] [-v|--version] "
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
msgstr ""
"\n"
-"Uso : %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--testing] "
-"[-v|--version] "
+"Uso : %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
-#: timezone.pm:161
-#: timezone.pm:162
+#: timezone.pm:161 timezone.pm:162
#, c-format
msgid "All servers"
msgstr "Tutti i server"
@@ -7503,6 +7210,54 @@ msgid "Installation failed"
msgstr "Installazione non riuscita"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Un controllo classico in caso di problemi audio è lanciare questi "
+#~ "comandi:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" ti dice il driver predefinito per la "
+#~ "tua scheda\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" ti dice il driver utilizzato "
+#~ "ora\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" ti permette di controllare se il modulo (driver) è\n"
+#~ "caricato o no\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" e \"/sbin/chkconfig --list alsa\" ti "
+#~ "dicono\n"
+#~ "se i servizi sound e alsa sono configurati per funzionare all'initlevel "
+#~ "3\n"
+#~ "\n"
+#~ "- \"aumix -q\" ti dice se il volume del suono è azzerato o no\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" ti dice quale programma sta usando la "
+#~ "scheda\n"
+#~ "audio.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index ad8309a6f..3c2aa7c07 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX-ja\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2009-02-22 19:41+0900\n"
"Last-Translator: Yukiko Bando <ybando@k6.dion.ne.jp>\n"
"Language-Team: Japanese <cooker-i18n@mandrivalinux.org>\n"
@@ -19,7 +19,7 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -28,12 +28,12 @@ msgstr ""
msgid "Please wait"
msgstr "お待ちください"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "ブートローダをインストール中"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -50,12 +50,12 @@ msgstr ""
"\n"
"新しいボリューム ID を割り当てますか?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "ブートローダのインストールに失敗しました。以下のエラーが発生:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -73,7 +73,7 @@ msgstr ""
"と入力してください。\n"
"次回の起動時にはブートローダのプロンプトが表示されるはずです。"
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -88,268 +88,268 @@ msgstr ""
"\n"
"どのドライブから起動しますか?"
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr "ブートローダのインストール"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "ブートローダをどこにインストールしますか?"
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr "ドライブ %s の最初のセクタ (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "ドライブの最初のセクタ (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "root パーティションの最初のセクタ"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "フロッピー"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "スキップ"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "起動方式の設定"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "ブートローダのメインオプション"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "ブートローダ"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "使用するブートローダ"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "起動デバイス"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "メインオプション"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "デフォルトが起動するまでの秒数"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "ACPI を有効にする"
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr "SMP を有効にする"
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr "APIC を有効にする"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr "ローカル APIC を有効にする"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "セキュリティ"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "パスワード"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "パスワードが一致しません"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "やり直してください"
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr "%s にはパスワードは使えません"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "パスワード (再入力)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "起動するたびに /tmp 以下を消す"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Init メッセージ"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "オープンファームウェアの遅延"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "カーネルブートのタイムアウト"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "CD からの起動を有効にしますか?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "OF からの起動を有効にしますか?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "デフォルトの OS"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "イメージ"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "追加"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen 追加"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "ビデオモード"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "ネットワークプロファイル"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "ラベル"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "デフォルト"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "ビデオなし"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "空白のラベルは使えません"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "カーネルイメージを指定してください"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "root パーティションは必ず指定してください"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "このラベルは既に使われています"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "どの種類のエントリを追加しますか?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "他の OS (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "他の OS (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "他の OS (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr "ブートローダの設定"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -358,47 +358,47 @@ msgstr ""
"起動メニューのエントリは以下のとおりです。\n"
"エントリは追加/変更できます。"
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "X プログラムへのアクセス"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "RPM ツールへのアクセス"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "su を許可する"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "管理ファイルへのアクセス"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "ネットワークツールへのアクセス"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "コンパイルツールへのアクセス"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s は追加済み)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "ユーザ名を入力してください"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -407,147 +407,147 @@ msgstr ""
"ユーザ名には英語の小文字、数字、ハイフン (-)、アンダースコア (_) しか使えませ"
"ん"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "ユーザ名が長すぎます"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "このユーザ名は既に存在します"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ユーザ ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "グループ ID"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s は数字でなければいけません"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s は 500 より上でなければいけません。このまま受け入れますか?"
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr "ユーザの管理"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "管理者 (root) のパスワードを設定"
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr "ユーザ名を入力"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "アイコン"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "本名"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "ログイン名"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "シェル"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "メディアを追加しています。お待ちください..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "自動ログイン"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "自動的に特定のユーザでログオンするように設定できます。"
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "この機能を使います"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "デフォルトのユーザを選択:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "ウィンドウマネージャを選択:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "リリースノート"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "閉じる"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "ライセンスへの同意"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "終了"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr "このライセンスに同意しますか?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "承諾する"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "拒否する"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "使用する言語を選んでください。"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,87 +558,87 @@ msgstr ""
"お使いになりたい言語を選んでください。\n"
"インストール後に再選択することも可能です。"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "多言語"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "UTF-8 ではないエンコーディング (後方互換性のため)"
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "すべての言語"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "言語の選択"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "国名/地域"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "お住いの国を選んでください"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "利用可能なすべての国名のリスト"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "他の国"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "詳細"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "入力メソッド:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "なし"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "共有しない"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "すべてのユーザに許可"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "カスタム"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -652,14 +652,14 @@ msgstr ""
"クリックするだけで共有することができます。\n"
"「カスタム」を選ぶとユーザごとに細かく設定できます。\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr "NFS: 伝統的な Unix ファイル共有システム"
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -667,18 +667,18 @@ msgid ""
msgstr ""
"SMB: Windows/Mac OS X や新しい Linux システムで使われるファイル共有システム"
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "エクスポートには NFS と SMB を使用できます。どちらを使いますか?"
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "userdrake を起動"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -687,54 +687,54 @@ msgstr ""
"ユーザ別に共有する場合は \"fileshare\" グループを使います。\n"
"userdrake を使ってこのグループにユーザを追加してください。"
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "変更を有効にするには再ログインしてください。"
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "変更を有効にするには再ログインしてください。"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "タイムゾーン"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "タイムゾーンを選んでください。"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "日付、時刻とタイムゾーンの設定"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "どの時刻を使いますか?"
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (ハードウェアクロックを UTC に設定)"
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (ハードウェアクロックをローカルタイムに設定)"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP サーバ"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "自動的に時間を合わせる (NTP を使用)"
@@ -1066,7 +1066,7 @@ msgstr "ドメイン管理者のパスワード"
# only the ascii charset will be available
# so use only 7bit for this message
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1080,47 +1080,47 @@ msgstr ""
"Ichiran kara OS wo erabu ka Default no OS no kidou wo\n"
"Matte kudasai.\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO (テキスト表示)"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB (グラフィカル表示)"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB (グラフィカル表示)"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB (テキスト表示)"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "/boot の容量が足りません"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "ブートローダは %s パーティションにはインストールできません\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1128,7 +1128,7 @@ msgid ""
msgstr ""
"パーティション番号が変更されたので、ブートローダの設定を更新してください"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1137,7 +1137,7 @@ msgstr ""
"ブートローダを正しくインストールできません。レスキューをブートして %s を選ん"
"でください。"
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "ブートローダを再インストール"
@@ -1235,7 +1235,7 @@ msgstr "マウントポイント"
msgid "Options"
msgstr "オプション"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "削除"
@@ -1343,7 +1343,7 @@ msgid "Continue"
msgstr "続ける"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1466,7 +1466,7 @@ msgid "More"
msgstr "詳細"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "確認"
@@ -2267,8 +2267,8 @@ msgstr "種類を変更"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "キャンセル"
@@ -2775,12 +2775,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "パーティション設定に失敗: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "16 MB 未満のパーティションに JFS は使えません"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "32 MB 未満のパーティションに ReiserFS は使えません"
@@ -3276,7 +3276,7 @@ msgstr ""
"- 古い OSS API との互換性\n"
"- 新しい ALSA API (多くの拡張機能を提供しますが ALSA ライブラリが必要)\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "ドライバ:"
@@ -3329,59 +3329,74 @@ msgstr "サウンドのトラブルシューティング"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"サウンドのバグを調べるには以下のコマンドを実行してください:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" はお使いのカードのデフォルトドライバを\n"
-"表示\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" は現在使用されているドライバを\n"
-"表示\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/lsmod\" はドライバのモジュールがロードされているかどうかを\n"
-"表示\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" と \"/sbin/chkconfig --list alsa\" は\n"
-"サウンドと ALSA サービスが 'initlevel 3' で有効になっているかどうかを\n"
-"表示\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"aumix -q\" はボリュームがミュートになっているかどうかを表示\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" は現在カードを使用しているプログラムを表示\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "手動でドライバを選択"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "任意のドライバを選択"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3461,12 +3476,12 @@ msgstr "いいえ"
msgid "Choose a file"
msgstr "ファイルを選択"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "追加"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "変更"
@@ -3501,7 +3516,7 @@ msgstr "指定されたディレクトリは存在しません"
msgid "No such file"
msgstr "指定されたファイルは存在しません"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr "Caps Lock がオンになっています"
@@ -4788,17 +4803,17 @@ msgstr "%s へようこそ"
msgid "Moving used physical extents to other physical volumes failed"
msgstr "使用中の物理エクステントを他の物理ボリュームに移動できませんでした"
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr "物理ボリューム %s は使用中です"
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "まず論理ボリュームを削除してください\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr "ブートローダは複数の物理ボリューム上の /boot を扱えません"
@@ -5214,12 +5229,12 @@ msgstr "このボタンをクリックしますか?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "パスワード"
@@ -5451,8 +5466,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Authorize:\n"
"\n"
@@ -6594,7 +6609,7 @@ msgstr "リモート管理"
msgid "Database Server"
msgstr "データベースサーバ"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "サービス"
@@ -6609,22 +6624,22 @@ msgstr "起動時に自動的に開始するサービスを選んでください
msgid "%d activated for %d registered"
msgstr "%d 個を起動 (登録数は %d 個)"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "実行中"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "停止中"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "サービスとデーモン"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6633,27 +6648,27 @@ msgstr ""
"このサービスについての\n"
"追加情報はありません。"
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "情報"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "リクエストがあったときに開始"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "起動時に開始"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "開始"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "停止"
@@ -6988,6 +7003,51 @@ msgid "Installation failed"
msgstr "インストール失敗"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "サウンドのバグを調べるには以下のコマンドを実行してください:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" はお使いのカードのデフォルトドライバ"
+#~ "を\n"
+#~ "表示\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" は現在使用されているドライバを\n"
+#~ "表示\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" はドライバのモジュールがロードされているかどうかを\n"
+#~ "表示\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" と \"/sbin/chkconfig --list alsa\" は\n"
+#~ "サウンドと ALSA サービスが 'initlevel 3' で有効になっているかどうかを\n"
+#~ "表示\n"
+#~ "\n"
+#~ "- \"aumix -q\" はボリュームがミュートになっているかどうかを表示\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" は現在カードを使用しているプログラムを表示\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index 36e38fe72..ac6040c0b 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2007-09-26 20:12+0200\n"
"Last-Translator: Jaegeum Cze <baedaron@hanafos.com>\n"
"Language-Team: Korean <beadaron@hanafos.com>\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -25,12 +25,12 @@ msgstr ""
msgid "Please wait"
msgstr "기다려 주세요"
-#: any.pm:261
+#: any.pm:255
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "부트로더 설치"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -47,12 +47,12 @@ msgstr ""
"\n"
"새로운 Volume ID를 할당하시겠습니까?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "부트로더 설치가 실패했습니다. 다음과 같은 오류가 발생했습니다:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -69,7 +69,7 @@ msgstr ""
"shut-down\n"
"그러고나면 다음부터는 부트로더 프롬프트를 볼 수 있을 것입니다."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -84,268 +84,268 @@ msgstr ""
"\n"
"어느 드라이브에서 부팅하시겠습니까?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "부트로더 설치"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "부트로더를 어디에 설치하고 싶으세요?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "드라이브의 첫번째 섹터(MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "드라이브의 첫번째 섹터(MBR)"
-#: any.pm:372
+#: any.pm:366
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "부트 파티션의 첫번째 섹터"
-#: any.pm:374
+#: any.pm:368
#, fuzzy, c-format
msgid "On Floppy"
msgstr "부트 플로피"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "건너뛰기"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "부팅 스타일 설정"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "부트로더 주 옵션들"
-#: any.pm:431
+#: any.pm:424
#, fuzzy, c-format
msgid "Bootloader"
msgstr "사용할 부트로더"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "사용할 부트로더"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "부트 장치"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr "메인 옵션"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "기본 이미지로 부팅될 때까지 지연시간"
-#: any.pm:440
+#: any.pm:433
#, fuzzy, c-format
msgid "Enable ACPI"
msgstr "ACPI 허용"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI 허용"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "APIC 허용"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "지역 APIC 허용"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "보안"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "암호"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "암호가 일치하지 않습니다."
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "다시 시도하세요."
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr " %s 마운트 위치에는 암호를 사용할 수 없습니다.다. "
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "암호 (확인)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "부팅시 /tmp 디렉토리 자동 청소"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "초기화 메시지"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "펌웨어 열기 지연"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "커널 부트 제한시간"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "CD 부팅 허용?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "OF 부팅 허용?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "기본 OS?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "이미지"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "루트"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "추가"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr "Xen 추가"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "비디오 모드"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "초기화 램디스크"
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "네트웍 인터페이스"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "항목명"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "기본값"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "비디오 없음"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "빈 항목명은 허용되지 않습니다."
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "커널 이미지를 지정해 주세요."
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "루트 파티션은 반드시 지정되어야 합니다."
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "이 항목명은 이미 사용되고 있습니다."
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "어떤 종류의 항목을 추가하시겠습니까?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "리눅스"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "기타 OS (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "기타 OS (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "기타 OS (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "부팅 스타일 설정"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -354,200 +354,200 @@ msgstr ""
"몇 가지 항목이 여기에 표시되고 있습니다.\n"
"더 추가하거나, 기존의 것들을 수정할수 있습니다."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "X 프로그램 액세스"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "RPM 도구 액세스"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "「su」허용"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "시스템 관리파일 액세스"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "네트웍 도구 액세스"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "컴파일 도구 액세스"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(이미 %s는(은) 추가되었습니다.)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "사용자명을 입력해 주세요"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "사용자명은 영문 소문자나 숫자, '-' 그리고 '_' 만 포함될수 있습니다."
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "사용자 명이 너무 깁니다."
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "이 사용자명은 이미 추가되어 있습니다."
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "사용자 ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "그룹 ID"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s 옵션은 숫자이어야 합니다!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
"%s 는 500 위의 수여야 합니다. 지금의 수를 허가하고 \n"
"계속 진행하시겠습니까?"
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "사용자명"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "관리자(root) 암호 설정"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"사용자 입력\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "아이콘"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "실제 이름"
-#: any.pm:923
+#: any.pm:916
#, fuzzy, c-format
msgid "Login name"
msgstr "도메인 이름"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "명령 해석기"
-#: any.pm:971
+#: any.pm:964
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "기다려 주세요. ttmkfdir 실행 중..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "자동로그인"
-#: any.pm:1004
+#: any.pm:997
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"자동으로 특정 사용자로서 로그인되도록 할 수 있습니다.\n"
"이런 특성을 원하세요?"
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "aboot를 사용하시겠습니까?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "기본 사용자를 선택하세요:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "사용할 윈도우 매니저를 선택하세요:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "릴리즈:"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "닫기"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "사용 동의서"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "종료"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "또 다른것이 설치되어 있습니까?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "동의"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "거부"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "사용할 언어를 선택해 주세요"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,87 +558,87 @@ msgstr ""
"설치할 언어를 선택하여주십시요. 설치된 언어들은 설치가 완료되고\n"
"시스템이 다시 시작되면 사용할 수 있습니다."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "다중 언어"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "이전 호환성 (non UTF-8) 인코딩"
-#: any.pm:1164
+#: any.pm:1157
#, fuzzy, c-format
msgid "All languages"
msgstr "언어 선택"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "언어선택"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "국가"
-#: any.pm:1241
+#: any.pm:1234
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "어떤 종류의 마우스를 사용하십니까?"
-#: any.pm:1243
+#: any.pm:1236
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "지원되는 키보드 목록이 여기에 있습니다."
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "기타 포트"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "고급"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "입력 방법"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "없음"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "비공유"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "모든 사용자 허용"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "사용자 정의"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -652,7 +652,7 @@ msgstr ""
"사용자에게 공유가 허가될 것입니다.\n"
"\"Custom\" 사용자마다 따로 허가 해줄 수 있습니다.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -661,7 +661,7 @@ msgstr ""
"NFS: Mac과 Windows 에서는 다소 지원이 미흡하지만\n"
"전통적인 Unix 파일 공유 시스템입니다."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -669,18 +669,18 @@ msgid ""
msgstr ""
"SMB: Window, Mac OS X 그리고 많은 최신 Linux에서 사용되는 파일 공유 시스템"
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "NFS와 삼바 중, 어느 것을 이용하시겠습니까?"
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "userdrake 실행"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -689,54 +689,54 @@ msgstr ""
"사용자 개개인의 공유를 위해서는 그룹의 \"fileshare\"를 사용합니다.\n"
"이 그룹에서 사용자를 추가하기위해 userdrake를 사용할 수 있습니다."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "시간대"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "님의 시간대는 어디입니까?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "날짜, 시간 & 시간대 설정"
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr "최적의 시간은 무엇입니까?"
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "하드웨어 시계 GMT 설정"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "하드웨어 시계 GMT 설정"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP 서버"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "자동 시간 동기화 (NTP 사용)"
@@ -1063,7 +1063,7 @@ msgid "Domain Admin Password"
msgstr "도메인 관리자 암호"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1076,47 +1076,47 @@ msgstr ""
"다음 리스트에서의 운영체제를 선택하시거나, 기본 부팅을 기다리십시요\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "텍스트 메뉴 LILO"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "그래픽 메뉴 GRUB"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "그래픽 메뉴 GRUB"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "텍스트 메뉴 GRUB"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "/boot에 공간이 부족합니다."
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "「%s」파티션에 부트로더를 설치할 수 없습니다.\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1124,7 +1124,7 @@ msgid ""
msgstr ""
"파티션이 번호가 변경되었기 때문에, 부트로더 설정이 업데이트 되어야 합니다."
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1133,7 +1133,7 @@ msgstr ""
"부트로더가 정확하게 설치 될수 없습니다. rescue로 부팅하여 \"%s\"를 \n"
"선택하여야 합니다."
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "부트로더 재설치"
@@ -1230,7 +1230,7 @@ msgstr "마운트 위치"
msgid "Options"
msgstr "옵션들"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "제거"
@@ -1336,7 +1336,7 @@ msgid "Continue"
msgstr "계속"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1459,7 +1459,7 @@ msgid "More"
msgstr "추가 옵션"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "확인"
@@ -2248,8 +2248,8 @@ msgstr "유형 변경"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "취소"
@@ -2745,12 +2745,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "파티션 나누기 실패: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "16MB 미만의 파티션에는 JFS 파일 시스템을 사용할 수 없습니다."
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "32MB 미만의 파티션에는 ReiserFS 파일 시스템을 사용할 수 없습니다."
@@ -3225,7 +3225,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "드라이버:"
@@ -3271,40 +3271,74 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3376,12 +3410,12 @@ msgstr "아니오"
msgid "Choose a file"
msgstr "파일 선택"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "추가"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "변경"
@@ -3416,7 +3450,7 @@ msgstr "디렉토리가 아닙니다"
msgid "No such file"
msgstr "`%s'와같은 파일이 없습니다\n"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4696,17 +4730,17 @@ msgstr "%s에 오신것을 환영합니다."
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "논리 볼륨을 먼저 제거해 주세요.\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5059,12 +5093,12 @@ msgstr "이 버튼을 누르시겠습니까?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "암호가 필요합니다."
@@ -5277,8 +5311,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6369,7 +6403,7 @@ msgstr "원격 관리"
msgid "Database Server"
msgstr "데이터베이스 서버"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "서비스"
@@ -6386,22 +6420,22 @@ msgstr "어떤 서비스가 부팅시에 자동 실행되어야 할지 선택하
msgid "%d activated for %d registered"
msgstr "등록된 %2$d 중 %1$d 활성화됨"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "실행중"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "정지됨"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "서비스와 대몬"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6410,27 +6444,27 @@ msgstr ""
"죄송합니다.\n"
"이 서비스에 대한 추가정보가 없습니다."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "정보"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "자동실행"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "시작"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "중지"
diff --git a/perl-install/share/po/ky.po b/perl-install/share/po/ky.po
index f2ef8d8a9..d1ea71de5 100644
--- a/perl-install/share/po/ky.po
+++ b/perl-install/share/po/ky.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-ky\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2005-04-20 20:27+0500\n"
"Last-Translator: Nurlan Borubaev <nurlan@tamga.info>\n"
"Language-Team: Kyrgyz\n"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -25,12 +25,12 @@ msgstr ""
msgid "Please wait"
msgstr "Күтө туруңуз"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Жүктөгүчтү орнотуу жүрүп жатат"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -48,14 +48,14 @@ msgstr ""
"\n"
"Жаңы том ID'си жазылсынбы?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Баштапкы жүктөгүчтү орнотуу ийгиликсиз аяктады.\n"
"Төмөнкү жаңылыштык орун алды:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -73,7 +73,7 @@ msgstr ""
" Андан соң жазыңыз: shut-down\n"
"Кийинки жолу жүктөлгөндө сиз баштапкы жүктөгүчтүн чакыргын көрүшүңүз керек."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -88,268 +88,268 @@ msgstr ""
"\n"
"Кайсы дисктен жүктөлөсүз?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Жүктөгүчтү орнотуу жүрүп жатат"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Баштапкы жүктөгүчтү кайда орноткуңуз келет?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Дисктин биринчи сектору (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Дисктин биринчи сектору (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Түпкү бөлүмдүн биринчи сектору"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Ийилчээкке"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Таштап кете берүү"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Жүктөө стилин конфигурациялоо"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Баштапкы жүктөгүчтүн негизги опциялары"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Баштапкы жүктөгүч"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Колдонулуучу баштапкы жүктөгүч"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Жүктөгүч түзүлүш"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Алдынала болгон образды жүктөө алдындагы пауза"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "ACPI жандыруу"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "ACPI жандыруу"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "ACPI жандыруу"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "ACPI жандыруу"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Коопсуздук"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Пароль"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Паролдор дал келбейт"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Дагы бир кайталап көрүңүз"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Сиз %s биригүү чекити үчүн шифрделген файл системасын колдоно албайсыз"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Пароль (дагы бир жолу)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Ар бир жүктөгөн сайын /tmp каталогун тазалоо"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Инициализациянын кабары"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware паузасы"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Ядрону жүктөөдөгү таймаут"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "CD жүктөлүүгө уруксатпы?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "OF жүктөлүү уруксатпы?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Алдынала тандалган ОС?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Образ"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Кошумча"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Видеорежим"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Желенин профили"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Эн белги"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Алдынала алынган"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "Видеосуз"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Бош эн белги мүмкүн эмес"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Сиз ядро образын көрсөтүүңүз керек"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Сиз түпкү бөлүмдү көрсөтүшүңүз керек"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Бул эн белги мурдатан колдонууда бар"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Кандай пункту кошкуңуз келет?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Башка ОС (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Башка ОС (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Башка ОС (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Жүктөө стилин конфигурациялоо"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -358,47 +358,47 @@ msgstr ""
"Учурда сиздин жүктөө менюңузда төмөнкүлөр бар.\n"
"Сиз кошумча пунктарды түзсөңүз же барларын өзгөртсөңүз болот."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "X программаларын пайдалануу уруксаты"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "RPM аспаптарын пайдалануу уруксаты"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "\"su\" урунуу уруксаты"
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "административдик файлдарды урунуу уруксаты"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "тармак аспаптарын урунуу уруксаты"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "компиляция аспаптарын урунуу уруксаты"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s алдагачан кошулган)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Колдонуучу атын бериңиз"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -407,150 +407,150 @@ msgstr ""
"Колдонуучу аты кичине латын тамгаларынан, цифралардан, `-'жана `_' турушу "
"керек"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Колдонуучу аты өтө узун"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Бул колдонуучу аты алдагачан кошулган"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Колдонуучунун IDси"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Группанын IDси"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s сан болушу керек"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s 500дөн чоң болушу керек. Ага карабай кабыл алайынбы?"
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Колдонуучу аты"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr "Администратордуy (root) паролун орнотуу"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Колдонуучу киргиз\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Сүрөтбелги"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Чыныгы аты"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Такма аты"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Шел-чөйрө"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Күтө туруңуз, булак кошулууда..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Автологин"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Мен компьютериңизди автоматтык түрдө бир колдонуучу кирүүсүн орното алам."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Бул мүмкүнчүлүктү колдонуу"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Алдыалынган колдонуучуну тандаңыз:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Иштетүү үчүн терезе менеджерин тандаңыз:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Релиз эскертмелери"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Жабуу"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Лицензиялык келишим"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Чыгуу"
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Макул"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Баш тартуу"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Колдонулуучу тилди тандаңыз"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -561,87 +561,87 @@ msgstr ""
"каалаган тилди тандаңыз. Орнотуу процесси бүтүп,\n"
"системаңызды кайра жүктөгөн соң алар колдонууга даяр болот."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Көп тилдүүлүк"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Бардык тилдер"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Тилди тандоо"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Өлкө / Регион"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Өз өлкөңүздү тандаңыз"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Мүмкүн болгон бардык өлкөлөр тизмеси"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Башка Өлкөлөр"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Кошумча"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Кийирүү ыкмасы:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Жок"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Жалпы ресурс жок"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Бардык колдонуучуларга уруксат"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Тандама"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -656,7 +656,7 @@ msgstr ""
"\n"
"\"Тандама\" кээ бир колдонуучуларга гана бөлүшүү укугун берсе болот.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -665,7 +665,7 @@ msgstr ""
"NFS: адаткы Unix файлдарды бөлүшүү системасы, Mac жана Windows'то начар "
"колдоого ээ."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -674,7 +674,7 @@ msgstr ""
"SMB: Windows, Mac OS X жана башка көпчүлүк заманбап Linux системаларында "
"колдонулуучу файлдарды ортодо бөлүшүп пайдалануу системасы."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -682,12 +682,12 @@ msgstr ""
"Сиз NFS же SMB жардамында экспорттосоңуз болот. Кайсынысын колдонууну "
"каалайсыз? Тандаңыз."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Userdrake иштетүү"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -696,54 +696,54 @@ msgstr ""
"Колдонуучу ресурстарын бөлүштүрүү \"fileshare\" группасын колдонот .\n"
"Колдонуучуну бул группага кошуу үчүн userdrake'ти колдонсоңуз болот."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Убакыт алкагы"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Аппараттык саатты GMT боюнча орнотуу"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Аппараттык саатты GMT боюнча орнотуу"
-#: any.pm:1570
+#: any.pm:1563
#, fuzzy, c-format
msgid "NTP Server"
msgstr "NIS сервери"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1081,7 +1081,7 @@ msgstr "Домен админинин паролу"
# the transliteration follows BGN/PCGN-1979 system; with ü and ö
# written u' and o' instead.
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1096,47 +1096,47 @@ msgstr ""
"aldynala bolgonu ju'kto'lgu'cho'ktu' ku'tu'ngu'z.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO тексттик меню менен"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "GRUB графикалык меню менен"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB графикалык меню менен"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB текстик меню менен"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "/boot ичинде жетиштүү орун жок"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Сиз %s бөлүмүндө баштапкы жүктөгүчтү орното албайсыз\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1145,7 +1145,7 @@ msgstr ""
"Баштапкы жүктөгүчүңүздүн конфигурациясы жаңыланышы керек, себеби бөлүм "
"жаңыдан номурланган"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1154,7 +1154,7 @@ msgstr ""
"Баштапкы жүктөгүч туура орнотулбады. Сиз коопсуздук режиминде жүктөлүп \"%s"
"\" тандаңыз"
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Баштапкы жүктөгүчтү кайра орнотуу"
@@ -1252,7 +1252,7 @@ msgstr "Биригүү чекити"
msgid "Options"
msgstr "Опциялар"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Жоготуу"
@@ -1358,7 +1358,7 @@ msgid "Continue"
msgstr "Улантуу"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1480,7 +1480,7 @@ msgid "More"
msgstr "Көбүрөөк"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Тактоо"
@@ -2270,8 +2270,8 @@ msgstr "Тибин өзгөртүү"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Айнуу"
@@ -2759,12 +2759,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Бөлүмдөргө бөлүү ишке ашпады: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Сиз көлөмү 16 Мб кем бөлүмдөргө JFS'ти колдоно албайсыз"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Сиз көлөмү 32 Мб кем бөлүмдөргө ReiserFS'ти колдоно албайсыз"
@@ -3265,7 +3265,7 @@ msgstr ""
"библиотекасын колдонууну талап кылат.\n"
"колдонсоңуз болот\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Драйвер:"
@@ -3318,61 +3318,74 @@ msgstr "Добуш бузугун издөө жана арылуу"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Классикалык добуш бузугун текшергич төмөнкү командаларды аткарат:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" сизге алдыалынган добуш картасынын\n"
-"драйверин көрсөтөт\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" кайсы драйвер колдонулуп\n"
-"жаткандыгын көрсөтөт\n"
"\n"
-"- \"/sbin/lsmod\" сизге модул (драйвер) жүктөлгөндүгүн\n"
-"же жүктөлбөгөндүгүн көрсөтөт\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" жана \"/sbin/chkconfig --list alsa\"\n"
-"initlevel 3'тө аткарылуучу sound жана alsa кызматтарын көрсөтөт\n"
"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
"\n"
-"- \"aumix -q\" сизге добуш бийиктигинин иштетилгендигин\n"
-"же жокутугун көрсөтөт\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" добуш картасын кайсы программа\n"
-"колдонгондугун көрсөтөт.\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Башка драйвер тандоо"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Каалаган драйверди тандоо"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3455,12 +3468,12 @@ msgstr "Жок"
msgid "Choose a file"
msgstr ""
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Кошуу"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Өзгөртүү"
@@ -3495,7 +3508,7 @@ msgstr "Мындай каталог жок"
msgid "No such file"
msgstr "Мындай файл жок"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4775,17 +4788,17 @@ msgstr "%s Кош келиңиз!"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr ""
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5120,12 +5133,12 @@ msgstr "%s кайда бириктиргиңиз келет?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Колдонуучу үчүн сырсөз"
@@ -5332,8 +5345,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6349,7 +6362,7 @@ msgstr ""
msgid "Database Server"
msgstr ""
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Кызматтар"
@@ -6364,49 +6377,49 @@ msgstr ""
msgid "%d activated for %d registered"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr ""
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr ""
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Жүктөөдө"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Баштоо"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Стоп"
@@ -6651,6 +6664,52 @@ msgstr ""
msgid "Installation failed"
msgstr "Орнотуу ийгиликсиз аяктады"
+#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Классикалык добуш бузугун текшергич төмөнкү командаларды аткарат:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" сизге алдыалынган добуш картасынын\n"
+#~ "драйверин көрсөтөт\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" кайсы драйвер колдонулуп\n"
+#~ "жаткандыгын көрсөтөт\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" сизге модул (драйвер) жүктөлгөндүгүн\n"
+#~ "же жүктөлбөгөндүгүн көрсөтөт\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" жана \"/sbin/chkconfig --list alsa\"\n"
+#~ "initlevel 3'тө аткарылуучу sound жана alsa кызматтарын көрсөтөт\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"aumix -q\" сизге добуш бийиктигинин иштетилгендигин\n"
+#~ "же жокутугун көрсөтөт\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" добуш картасын кайсы программа\n"
+#~ "колдонгондугун көрсөтөт.\n"
+
#~ msgid "Restrict command line options"
#~ msgstr "Командалык саптын опцияларын чектөө"
@@ -6772,8 +6831,8 @@ msgstr "Орнотуу ийгиликсиз аяктады"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/libDrakX.pot b/perl-install/share/po/libDrakX.pot
index 492ab51f7..2c51337c2 100644
--- a/perl-install/share/po/libDrakX.pot
+++ b/perl-install/share/po/libDrakX.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\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"
@@ -15,17 +15,17 @@ msgstr ""
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645 diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 harddrake/sound.pm:270 interactive.pm:588 pkgs.pm:287
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645 diskdrake/interactive.pm:869 diskdrake/interactive.pm:931 diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266 diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287 harddrake/sound.pm:270 interactive.pm:588 pkgs.pm:287
#, c-format
msgid "Please wait"
msgstr ""
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr ""
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -35,12 +35,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -51,7 +51,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -60,459 +60,459 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:340
+#: any.pm:334
#, c-format
msgid "Bootloader Installation"
msgstr ""
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: any.pm:368
+#: any.pm:362
#, c-format
msgid "First sector (MBR) of drive %s"
msgstr ""
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr ""
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr ""
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr ""
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr ""
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr ""
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr ""
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr ""
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr ""
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr ""
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr ""
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr ""
-#: any.pm:441
+#: any.pm:434
#, c-format
msgid "Enable SMP"
msgstr ""
-#: any.pm:442
+#: any.pm:435
#, c-format
msgid "Enable APIC"
msgstr ""
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr ""
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249 diskdrake/smbnfs_gtk.pm:181
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr ""
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr ""
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr ""
-#: any.pm:451
+#: any.pm:444
#, c-format
msgid "You cannot use a password with %s"
msgstr ""
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr ""
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr ""
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr ""
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr ""
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr ""
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr ""
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr ""
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr ""
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr ""
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr ""
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr ""
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr ""
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr ""
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr ""
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr ""
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr ""
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr ""
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr ""
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr ""
-#: any.pm:655
+#: any.pm:648
#, c-format
msgid "Bootloader Configuration"
msgstr ""
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr ""
-#: any.pm:885
+#: any.pm:878
#, c-format
msgid "The user name must start with a lower case letter followed by only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr ""
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr ""
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr ""
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr ""
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, c-format
msgid "User management"
msgstr ""
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, c-format
msgid "Set administrator (root) password"
msgstr ""
-#: any.pm:911
+#: any.pm:904
#, c-format
msgid "Enter a user"
msgstr ""
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr ""
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr ""
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr ""
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr ""
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr ""
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr ""
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr ""
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr ""
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr ""
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr ""
-#: any.pm:1095
+#: any.pm:1088
#, c-format
msgid "Do you accept this license ?"
msgstr ""
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr ""
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr ""
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr ""
-#: any.pm:1150
+#: any.pm:1143
#, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -520,87 +520,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr ""
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr ""
-#: any.pm:1153
+#: any.pm:1146
#, c-format
msgid "Multiple languages"
msgstr ""
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr ""
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr ""
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr ""
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr ""
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr ""
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr ""
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr ""
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr ""
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr ""
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr ""
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr ""
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -610,79 +610,79 @@ msgid ""
""
msgstr ""
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid "NFS: the traditional Unix file sharing system, with less support on Mac and Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid "You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid "You need to logout and back in again for changes to take effect. Press OK to logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr ""
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr ""
-#: any.pm:1568
+#: any.pm:1561
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr ""
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr ""
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -984,7 +984,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -995,59 +995,59 @@ msgid ""
""
msgstr ""
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr ""
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr ""
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid ""
"You cannot install the bootloader on a %s partition\n"
""
msgstr ""
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid "Your bootloader configuration must be updated because partition has been renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid "The bootloader cannot be installed correctly. You have to boot rescue and choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1136,7 +1136,7 @@ msgstr ""
msgid "Options"
msgstr ""
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr ""
@@ -1216,7 +1216,7 @@ msgstr ""
msgid "Continue"
msgstr ""
-#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654 interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848 ugtk2.pm:936
+#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654 interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862 ugtk2.pm:936
#, c-format
msgid "Help"
msgstr ""
@@ -1329,7 +1329,7 @@ msgstr ""
msgid "More"
msgstr ""
-#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294 diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294 diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr ""
@@ -2118,7 +2118,7 @@ msgstr ""
msgid "Change type"
msgstr ""
-#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551 interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160 interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551 interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160 interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr ""
@@ -2568,12 +2568,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr ""
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3014,7 +3014,7 @@ msgid ""
""
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr ""
@@ -3058,40 +3058,59 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use PulseAudio, we would strongly advise you enable it. For the vast majority of desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol\" (generic) will launch graphical applications to allow you to view your sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the OSS Proxy Daemon. This is used to enable sound from legacy applications which use the OSS sound API. You should install the \"ossp\" package if you need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are currently using the sound card directly (normally this should only show PulseAudio)\n"
""
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your card\n"
@@ -3157,12 +3176,12 @@ msgstr ""
msgid "Choose a file"
msgstr ""
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr ""
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr ""
@@ -3197,7 +3216,7 @@ msgstr ""
msgid "No such file"
msgstr ""
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4481,19 +4500,19 @@ msgstr ""
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid ""
"Remove the logical volumes first\n"
""
msgstr ""
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -4783,12 +4802,12 @@ msgstr ""
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, c-format
msgid "Password seems secure"
msgstr ""
@@ -5970,7 +5989,7 @@ msgstr ""
msgid "Database Server"
msgstr ""
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr ""
@@ -5985,49 +6004,49 @@ msgstr ""
msgid "%d activated for %d registered"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr ""
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr ""
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr ""
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr ""
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr ""
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index 2526c3b7a..ad26484c2 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2000-12-23 13:50+0200\n"
"Last-Translator: Mykolas Norvai­as <Myka@centras.lt>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -22,12 +22,12 @@ msgstr ""
msgid "Please wait"
msgstr "Prašom palaukti"
-#: any.pm:261
+#: any.pm:255
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Įkrovos tvarkyklės įdiegimas"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -38,12 +38,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Nepavyko įdiegti įkrovos tvarkyklės. Įvyko tokia klaida:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -54,7 +54,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -64,269 +64,269 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Įkrovos tvarkyklės įdiegimas"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kur nori įdiegti įkrovos tvarkyklę?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Pirmasis kaupiklio sektorius (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Pirmasis kaupiklio sektorius (MBR)"
-#: any.pm:372
+#: any.pm:366
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Pirmasis įkrovos skirsnio sektorius"
-#: any.pm:374
+#: any.pm:368
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Išsaugoti į diskelį"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Praleisti"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Įdiegimo Tipo Konfiguracija"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Įkrovos tvarkyklės pagrindinės parinktys"
-#: any.pm:431
+#: any.pm:424
#, fuzzy, c-format
msgid "Bootloader"
msgstr "Naudojama įkrovos tvarkyklė"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Naudojama įkrovos tvarkyklė"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Įkrovos įrenginys"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Palaukti prieš įkraunant įprastą atvaizdą"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr ""
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Serveris, Duomenų bazių"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Serveris, Duomenų bazių"
-#: any.pm:444
+#: any.pm:437
#, c-format
msgid "Enable Local APIC"
msgstr ""
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Saugumas"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Slaptažodis"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Slaptažodžiai nesutampa"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Prašom bandyti vėl"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr ""
"Tau reikia tikros bylų sistemos (ext2, reiserfs) šiam montavimo taškui\n"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Slaptažodis (vėl)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Išvalyti /tmp kiekvieną kartą įkrovus"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr ""
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr ""
-#: any.pm:472
+#: any.pm:465
#, fuzzy, c-format
msgid "Default OS?"
msgstr "Įprastas"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Atvaizdas"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Šakninis"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Pridurti"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Vaizdo režimas"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "Tinklo interfeisas"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Žymė"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Įprastas"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Tuščia žymė neleidžiama"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr ""
-#: any.pm:587
+#: any.pm:580
#, fuzzy, c-format
msgid "You must specify a root partition"
msgstr "Tu privalai turėti swap skirsnį"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Ši žymė jau naudojama"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kokio tipo įrašą tu nori pridėti?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Kitos OS (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Kitos OS (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Kitos OS (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Įdiegimo Tipo Konfiguracija"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -335,47 +335,47 @@ msgstr ""
"Čia yra skirtingi įrašai.\n"
"Tu gali pakeisti esamus arba prijungti naujus."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr ""
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s jau pridėtas)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Prašom suteikti vartotojo vardą"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -384,151 +384,151 @@ msgstr ""
"Vartotojo vardas turi susidaryti tik iš mažųjų raidžių, skaičių ir simbolių "
"`-' bei `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Naudotojo vardas yra per ilgas"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Šis vartotojo vardas jau pridėtas"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Vartotojo ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, fuzzy, c-format
msgid "Group ID"
msgstr "Grupė"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr ""
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Vartotojas"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Nurodyti root slaptažodį"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Įvesk vartotoją\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Tikras vardas"
-#: any.pm:923
+#: any.pm:916
#, fuzzy, c-format
msgid "Login name"
msgstr "Domeno vardas"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Nustatomas saugumo lygis"
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatinis pasisveikinimas"
-#: any.pm:1004
+#: any.pm:997
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Aš galiu nustatyti taip, kad vienas vartotojas pasisveikintų automatiškai.\n"
"Jei nenori to naudoti, spausk mygtuką Nutraukti."
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Ar nori naudoti aboot?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Pasirink įprastą vartotoją:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Pasirink, kurią langų tvarkyklę naudosi:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Prašom palaukti"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Uždaryti"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Licenzijos patvirtinimas"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Išeiti"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Ar turi dar vieną?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Sutinku"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Atmetu"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, fuzzy, c-format
msgid "Please choose a language to use"
msgstr "Prašom pasirinkti kalbą, kurią naudosi"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -536,87 +536,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po įdiegimo"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Pasirink savo kalbą"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, fuzzy, c-format
msgid "All languages"
msgstr "Pasirink savo kalbą"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "Vanuatu"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Valstybė"
-#: any.pm:1241
+#: any.pm:1234
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "Prašom pasirinkti savo pelės rūšį"
-#: any.pm:1243
+#: any.pm:1236
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "Čia yra galimų klaviatūrų sąrašas"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Patikrinti prievadus"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Išplėstinis"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr ""
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Joks"
-#: any.pm:1334
+#: any.pm:1327
#, fuzzy, c-format
msgid "No sharing"
msgstr "CUPS paleidžiamas"
-#: any.pm:1334
+#: any.pm:1327
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Pridėti vartotoją"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Prisitaikyti"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -626,86 +626,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Laiko juosta"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Kokia tavo laiko juosta?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Ar tavo įrangos laikrodis nustatytas GMT?"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Ar tavo įrangos laikrodis nustatytas GMT?"
-#: any.pm:1570
+#: any.pm:1563
#, fuzzy, c-format
msgid "NTP Server"
msgstr "NIS serveris"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1029,7 +1029,7 @@ msgid "Domain Admin Password"
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, fuzzy, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1043,61 +1043,61 @@ msgstr ""
"Pasirink operaciju sistema is zemiau esancio saraso,\n"
"arba palauk %d sekundziu, kad butu ikrauta pagal nutylejima\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO su tekstiniu meniu"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "nepakanka vietos /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, fuzzy, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Kur nori įdiegti įkrovos tvarkyklę?"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Įdiegti įkrovos tvarkyklę"
@@ -1191,7 +1191,7 @@ msgstr "Prijungimo vieta"
msgid "Options"
msgstr "Pasirinktys"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Išmesti"
@@ -1297,7 +1297,7 @@ msgid "Continue"
msgstr "Tęsti"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1420,7 +1420,7 @@ msgid "More"
msgstr "Dar"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Nustatymai"
@@ -2199,8 +2199,8 @@ msgstr "Pakeisti skirsnio tipą"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Nutraukti"
@@ -2690,12 +2690,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Dalinimas į skirsnius nepavyko: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Tu negali naudoti JFS skirsniams, mažesniems nei 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Tu negali naudoti ReiserFS skirsniams, mažesniems nei 32MB"
@@ -3170,7 +3170,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, fuzzy, c-format
msgid "Driver:"
msgstr "Tvarkyklė"
@@ -3216,40 +3216,74 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3321,12 +3355,12 @@ msgstr "Ne"
msgid "Choose a file"
msgstr "Pasirinkite bylą"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Pridėti"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Modifikuoti"
@@ -3361,7 +3395,7 @@ msgstr "Ne katalogas"
msgid "No such file"
msgstr "Byla „%s“ nerasta\n"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4641,17 +4675,17 @@ msgstr "Sveiki atvykę į %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Pirmiausia išmeskite loginius tomus\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5002,12 +5036,12 @@ msgstr "Ar nori naudoti aboot?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Slaptažodis"
@@ -5220,8 +5254,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -5980,8 +6014,8 @@ msgid ""
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
"lpd yra spausdinimo demonas, būtinas, kad lpr veiktų tvarkingai.\n"
-"Tai yra tiesiog serveris, paskirstantis spausdinimo darbus spausdintuvui"
-"(ams)."
+"Tai yra tiesiog serveris, paskirstantis spausdinimo darbus "
+"spausdintuvui(ams)."
#: services.pm:64
#, c-format
@@ -6306,7 +6340,7 @@ msgstr "Nutolusio lpd spausdintuvo nuostatos"
msgid "Database Server"
msgstr "Serveris, Duomenų bazių"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Paslaugų nustatymai"
@@ -6321,49 +6355,49 @@ msgstr "Pasirink kokias tarnybas įjungus paleisti automatiškai"
msgid "%d activated for %d registered"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, fuzzy, c-format
msgid "running"
msgstr "Dėmesio"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "sustabdytas"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr ""
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Įkrovos metu"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Pradėti"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Sustoti"
diff --git a/perl-install/share/po/ltg.po b/perl-install/share/po/ltg.po
index ab1c0c26e..454272764 100644
--- a/perl-install/share/po/ltg.po
+++ b/perl-install/share/po/ltg.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2004-02-24 13:01+0200\n"
"Last-Translator: Māris Laureckis <linux@latgola.lv>\n"
"Language-Team: Latgalian <linux@latgola.lv>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -23,12 +23,12 @@ msgstr ""
msgid "Please wait"
msgstr "Lyudzu pagaidit"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Suokneituoja instaleišona procesā"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Suoknietuoja instaleišona naizadeve. Atkluota itaida kliuda:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -55,7 +55,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -70,268 +70,268 @@ msgstr ""
"\n"
"Kurs ir jiusu suoknejamais disks?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Suokneituoja instaleišona procesā"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kur jius gribit instalēt suokneituoju?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Diska pyrmais sektors (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Diska pyrmais sektors (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Suoknejomuos sadalis pyrmais sektors"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Uz disketi"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Izlaist"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Suokneišonys stila konfigureišona"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Suokneituoja golvonuos opcejis"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Suokneituojs"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Kuru OS īluodeituoju lītuot"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Suoknejamuo īreice"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Pauze pyrms nūkluseituos sistemys īluodis"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Īslēgt ACPI"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Īslēgt ACPI"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Īslēgt ACPI"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Īslēgt ACPI"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Drūšeiba"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Parole"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Parolis nasakreit"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Lyudzu mieginit vēlreiz"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Jius navarit lītuot šifreitū failsistemu monteišonys punktā %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Parole (atkāuotuoti)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Izteireit /tmp kotrys suokneišonys laikā"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Kerneļa īluodis taimauts"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Atļaut īluodi nu kompaktdiska?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Atļaut īluodi OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Nūklusātuo OS?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Attāls"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Sakne"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Papyldynuot"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Video režims"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "Jauns profils..."
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nūsaukums"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Nūklusāts"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "Bez video"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Tukšs nūsaukums nav atļauts"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Jiusim juonūruoda kūdula attāls"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Jiusim juonūruoda saknis (root) sadaļa"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Itys nūsaukums jau ir izmontuots"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kaida veida īrokstu gribit pīvīnuot"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Cyta OS (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Cyta OS (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Cyta OS (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Suokneišonys stila konfigureišona"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -340,136 +340,136 @@ msgstr ""
"Ite ir dažaidi suokneišonys īroksti.\n"
"Jius varit pīvīnuot jaunus voi izmaineit esūšūs."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "pīkļuve X programmom"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "pīkļuve rpm reikim"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "atļaut \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "pīkļuve administreišonys failim"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "pīkļuve teikla reikim"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "pīkļuve kompileišonys reikim"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(jau pīvīnuots %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Lyudzu īvodit lītuotuoja vuordu"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Lītuotuoja vuordā var byut tikai mozie angļu burti, cipari, `-' i `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Lītuotuoja vuords ir puoruok garš"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Šaids lītuotuoja vuords jau ir pīvīnuots"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Lītuotuoja ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Grupys ID"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opcejai %s ir juobyun numeram!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Lītuotuoja vuords"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "root parolis izviele"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Īvodit lītuotuoju\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Vuords i uzvuords"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Slāgvuords"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Čaula"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Lyudzu pagaidit, davīnoj datu nesieju..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autopīsasliegšonuos"
-#: any.pm:1004
+#: any.pm:997
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
@@ -477,62 +477,62 @@ msgstr ""
"atvērta viena noteikta lietotāja sesija. \n"
"Vai vēlaties lietot šo iespēju?"
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Vai vēlaties izmantot aboot?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Nūruodit nūkluseitū lītuotuoju:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Nūruodit izmontojamū lūgu menedžeri:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr ""
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Aizvērt"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Licencis leigums"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Beigt"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Voi ir vēl kaida?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Pījimt"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Nūraideit"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Lyudzu izavielejit izmontojamū volūdu"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -543,87 +543,87 @@ msgstr ""
"volūdys, kaidys gribit uzstuodeit. Tuos byus pīejamys,\n"
"kod jiusu instaleišona byus gotova i jius puorstarteisit sovu sistemu."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageya"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Vysys volūdys"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Vysys volūdys"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "Manuali"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Vaļsts / Regions"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Lyudzu izavielejit jiusu vaļsti"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ite ir pylns pīejamū vaļstu saroksts"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Cyti porti"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Izvārsta"
-#: any.pm:1250
+#: any.pm:1243
#, fuzzy, c-format
msgid "Input method:"
msgstr "Teikla metode:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Nav"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Bez kūplītuošonys"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Atļaut vysus lītuotuojus"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Pīlāguota"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -639,21 +639,21 @@ msgstr ""
"\n"
"\"Izvārts\" atļaun individualu tīseibu pīškieršonu.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -661,12 +661,12 @@ msgstr ""
"Jius varit eksportēt, lītojūt NFS voi SMB. Lyudzu izavielejit, kuru gribit "
"lītuot."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Palaist userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -675,54 +675,54 @@ msgstr ""
"Lītuotuoju kūplītuojumi izmontoj grupu \"fileshare\". \n"
"Jius varit izmontuot userdrake, lai itai grupai pīvīnuotu lītuotuojus."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Laika jūsla"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Kaida ir jiusu laika jūsla?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Datora pulksteņs īstateits ruodeit GMT laiku"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Datora pulksteņs īstateits ruodeit GMT laiku"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP servers"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatiska laika sinhronizaceja (izmontojūt NTP)"
@@ -1049,7 +1049,7 @@ msgstr "Domena administratora parole"
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1064,61 +1064,61 @@ msgstr ""
"gaidit, cikom tiks iiluodeita nuuklusaatuo sistema.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO ar teksta izvieļni"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "napīteik vītys /boot sadaļā"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Jius navarit instalēt suokneituoju %s sadaļā\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Suokneituoja instaleišona"
@@ -1217,7 +1217,7 @@ msgstr "Monteišonys punkts"
msgid "Options"
msgstr "Opcejis"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Nūjimt"
@@ -1323,7 +1323,7 @@ msgid "Continue"
msgstr "Turpynuot"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1446,7 +1446,7 @@ msgid "More"
msgstr "Vairuok"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Apstyprynuošona"
@@ -2236,8 +2236,8 @@ msgstr "Maineit tipu"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Atceļt"
@@ -2733,12 +2733,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Diska sadaleišona naizadeve: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "JFS navar izmontuot sadaļom, kas mozuokys par 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS navar izmontuot sadaļom, kas mozuokys par 32MB"
@@ -3222,7 +3222,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Draivers:"
@@ -3275,40 +3275,74 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3385,12 +3419,12 @@ msgstr "Nā"
msgid "Choose a file"
msgstr "Izavielejit failu"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Pīvīnuot"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Maineit"
@@ -3425,7 +3459,7 @@ msgstr "Lokals katalogs"
msgid "No such file"
msgstr "Lokalī faili"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4712,17 +4746,17 @@ msgstr "Laipni lyudzam %s'a"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Vyspyrms nūjemit logiskūs siejumus\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5084,12 +5118,12 @@ msgstr "Voi gribit uzklikškinuot iz ituos pūgys?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Napīcīšoma parole"
@@ -5299,8 +5333,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6395,7 +6429,7 @@ msgstr "Attuola administreišona"
msgid "Database Server"
msgstr "Datubāžu servers"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servisi"
@@ -6410,22 +6444,22 @@ msgstr "Izavielejit, kurus servisus vajag automatiski startēt īluodis laikā"
msgid "%d activated for %d registered"
msgstr "%d aktivizāti nu %d registrātim"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "darbojas"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "apturāts"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Servisi i demoni"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6434,27 +6468,27 @@ msgstr ""
"Nav papyldus informacejis\n"
"par itū servisu."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Suokneišonys laikā"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Startēt"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Apturēt"
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index b50ca9757..012f3296b 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2002-09-27 17:45+0200\n"
"Last-Translator: Raivo Saars <spaiks@inbox.lv>\n"
"Language-Team: Latvian <ll10nt@listes.murds.lv>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -23,12 +23,12 @@ msgstr ""
msgid "Please wait"
msgstr "Lūdzu uzgaidiet"
-#: any.pm:261
+#: any.pm:255
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Sāknētāja instalēšana"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Sāknētāja instalēšana neizdevās. Atklāta šāda kļūda:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -55,7 +55,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -70,268 +70,268 @@ msgstr ""
"\n"
"Kurš ir jūsu sāknējamais disks?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Sāknētāja instalēšana"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Kur jūs vēlaties instalēt sāknētāju?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Diska pirmais sektors (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Diska pirmais sektors (MBR)"
-#: any.pm:372
+#: any.pm:366
#, fuzzy, c-format
msgid "First sector of the root partition"
msgstr "Sāknējamās sadaļas pirmais sektors"
-#: any.pm:374
+#: any.pm:368
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Saglabāt disketē"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Izlaist"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Sāknēšanas stila konfigurēšana"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Sāknētāja galvenās opcijas"
-#: any.pm:431
+#: any.pm:424
#, fuzzy, c-format
msgid "Bootloader"
msgstr "Kuru OS ielādētāju lietot"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Kuru OS ielādētāju lietot"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Sāknējamā ierīce"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Pauze pirms noklusētās sistēmas ielādes"
-#: any.pm:440
+#: any.pm:433
#, fuzzy, c-format
msgid "Enable ACPI"
msgstr "Atļaut CD ielādi?"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Atļaut CD ielādi?"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Atļaut CD ielādi?"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Atļaut CD ielādi?"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Drošība"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Parole"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Paroles nesakrīt"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Lūdzu mēģiniet vēlreiz"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Jūs nevarat lietot šifrēto failsistēmu montēšanas punktā %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Parole (atkārtoti)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Iztīrīt /tmp katras sāknēšanas laikā"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr ""
-#: any.pm:469
+#: any.pm:462
#, fuzzy, c-format
msgid "Kernel Boot Timeout"
msgstr "Kerneļa ielādes taimauts"
-#: any.pm:470
+#: any.pm:463
#, fuzzy, c-format
msgid "Enable CD Boot?"
msgstr "Atļaut CD ielādi?"
-#: any.pm:471
+#: any.pm:464
#, fuzzy, c-format
msgid "Enable OF Boot?"
msgstr "Atļaut OF ielādi?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Noklusētā OS?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Attēls"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Sakne"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Papildināt"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Video režīms"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "Tīkla pārlūks"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Nosaukums"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Noklusēts"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "BezVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Tukšs nosaukums nav atļauts"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Jums jānorāda kodola attēls"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Jums ir nepieciešama root sadaļa"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Šis nosaukums jau ir izmantots"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Kāda veida ierakstu gribat pievienot"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Cita OS (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Cita OS (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Cita OS (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Sāknēšanas stila konfigurēšana"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -340,136 +340,136 @@ msgstr ""
"Šeit ir dažādi sāknēšanas ieraksti.\n"
"Jūs varat pievienot jaunus vai izmainīt esošos."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "piekļuve X programmām"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "piekļuve rpm rīkiem"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "atļaut \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "piekļuve administrēšanas failiem"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "piekļuve tīkla rīkiem"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "piekļuve kompilēšanas rīkiem"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(jau pievienots %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Lūdzu ievadiet lietotāja vārdu"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "Lietotāja vārdā var būt tikai mazie angļu burti, cipari, `-' un `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Lietotāja vārds ir pārāk garš"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Šāds lietotāja vārds jau ir pievienots"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Lietotāja ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Grupas ID"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Opcijai %s ir jābūt skaitlim!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Lietotāja vārds"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "root paroles izvēle"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Ievadiet lietotāju\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Ikona"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Vārds un uzvārds"
-#: any.pm:923
+#: any.pm:916
#, fuzzy, c-format
msgid "Login name"
msgstr "Domēna nosaukums"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Čaula"
-#: any.pm:971
+#: any.pm:964
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "Lūdzu gaidiet, atjuaninu datu nesēju"
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Autopieslēgšanās"
-#: any.pm:1004
+#: any.pm:997
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
@@ -477,62 +477,62 @@ msgstr ""
"atvērta viena noteikta lietotāja sesija. \n"
"Vai vēlaties lietot šo iespēju?"
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Vai vēlaties izmantot aboot?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Norādiet noklusēto lietotāju:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Norādiet izmantojamo logu menedžeri:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Lūdzu izvēlieties"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Aizvērt"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Licences līgums"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Beigt"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Vai ir vēl kāds?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Pieņemt"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Noraidīt"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Lūdzu izvēlieties izmantojamo valodu"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -540,87 +540,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Jūs varat izvēlēties citas valodas, kas būs pieejamas pēc instalēšanas"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Valodas izvēle"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, fuzzy, c-format
msgid "All languages"
msgstr "Valodas izvēle"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "Mjanma"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Valsts"
-#: any.pm:1241
+#: any.pm:1234
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "Lūdzu izvēlieties jūsu peles tipu"
-#: any.pm:1243
+#: any.pm:1236
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "Šeit ir pilns pieejamo tastatūru saraksts"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Citi porti"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Izvērsta"
-#: any.pm:1250
+#: any.pm:1243
#, fuzzy, c-format
msgid "Input method:"
msgstr "Tīkla metode:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Nekas"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Bez koplietošanas"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Atļaut visus lietotājus"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Pielāgota"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -636,21 +636,21 @@ msgstr ""
"\n"
"\"Custom\" atļauj individuālu tiesību piešķiršanu.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
@@ -658,12 +658,12 @@ msgstr ""
"Jūs varat eksportēt, lietojot NFS vai SMB. Lūdzu izvēlieties, kuru vēlaties "
"lietot."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Izpildīt userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -672,54 +672,54 @@ msgstr ""
"Lietotāju koplietojumi izmanto grupu \"fileshare\". \n"
"Jūs varat izmantot userdrake, lai šai grupai pievienotu lietotājus."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Laika josla"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Kāda ir jūsu laika josla?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Datora pulkstenis iestatīts rādīt GMT laiku"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Datora pulkstenis iestatīts rādīt GMT laiku"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP serveris"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automātiska laika sinhronizācija (izmantojot NTP)"
@@ -1047,7 +1047,7 @@ msgstr "Domēna administratora parole"
# leave it in English, as it is the best for your language)
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, fuzzy, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1062,61 +1062,61 @@ msgstr ""
"tiks ielaadeeta nokluseetaa sisteema.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO ar teksta izvēlni"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr "SILO"
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "nepietiek vietas /boot sadaļā"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Jūs nevarat instalēt sāknētāju %s sadaļā\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Sāknētāja instalēšana"
@@ -1215,7 +1215,7 @@ msgstr "Montēšanas punkts"
msgid "Options"
msgstr "Opcijas"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Noņemt"
@@ -1321,7 +1321,7 @@ msgid "Continue"
msgstr "Turpināt"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1444,7 +1444,7 @@ msgid "More"
msgstr "Vairāk"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Konfigurācija"
@@ -2229,8 +2229,8 @@ msgstr "Mainīt tipu"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Atcelt"
@@ -2723,12 +2723,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Diska sadalīšana neizdevās: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "JFS nevar izmantot sadaļām, kas mazākas par 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "ReiserFS nevar izmantot sadaļām, kas mazākas par 32MB"
@@ -3212,7 +3212,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Draiveris:"
@@ -3265,40 +3265,74 @@ msgstr ""
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3375,12 +3409,12 @@ msgstr "Nē"
msgid "Choose a file"
msgstr "Izvēlieties failu"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Pievienot"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Mainīt"
@@ -3415,7 +3449,7 @@ msgstr "Nav direktorija"
msgid "No such file"
msgstr "Nav tāda faila"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4702,17 +4736,17 @@ msgstr "Jūs sveic %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, fuzzy, c-format
msgid "Remove the logical volumes first\n"
msgstr "Vispirms noņemiet loģiskos sējumus\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5066,12 +5100,12 @@ msgstr "Vai vēlaties uzklikšķināt uz šīs pogas?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Nepieciešama parole"
@@ -5281,8 +5315,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
#: security/help.pm:63
@@ -6372,7 +6406,7 @@ msgstr "Attāla administrēšana"
msgid "Database Server"
msgstr "Datubāzu serveris"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servisi"
@@ -6387,22 +6421,22 @@ msgstr "Izvēlēties, kurus servisus vajag automātiski startēt ielādes laikā
msgid "%d activated for %d registered"
msgstr "%d aktivizēti no %d reģistrētiem"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "darbojas"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "apturēts"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Servisi un dēmoni"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6411,27 +6445,27 @@ msgstr ""
"Nav papildus informācijas\n"
"par šo servisu."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Sāknēšanas laikā"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Startēt"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Apturēt"
diff --git a/perl-install/share/po/mk.po b/perl-install/share/po/mk.po
index 2046e39dc..5c20c8f94 100644
--- a/perl-install/share/po/mk.po
+++ b/perl-install/share/po/mk.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-mk\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2004-11-03 18:47+0100\n"
"Last-Translator: Зоран Димовски <decata@mt.net.mk>\n"
"Language-Team: Macedonian <mkde-l10n@lists.sourceforge.net>\n"
@@ -21,7 +21,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -30,12 +30,12 @@ msgstr ""
msgid "Please wait"
msgstr "Ве молиме почекајте"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Инсталацијата на подигачот е во тек"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -46,12 +46,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "Инсталирањето на подигачот не успеа. Се појави следнава грешка:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -69,7 +69,7 @@ msgstr ""
" Потоа внесете: shut-down\n"
"При следното подигање би требало да го видите екранчето за подигање."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -84,268 +84,268 @@ msgstr ""
"\n"
"На кој диск подигате?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Инсталацијата на подигачот е во тек"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Каде сакате да го инсталирате подигачот?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Првиот сектор на дискот (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Првиот сектор на дискот (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Првиот сектор на root партицијата"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "На дискета"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Прескокни"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Конфигурација на стилот на подигање"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Главни опции на подигачот"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Подигач"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Подигач кој ќе се користи"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Уред за подигачот"
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Пауза пред подигање на првата слика"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Овозможи ACPI"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Овозможи ACPI"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Овозможи ACPI"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Овозможи ACPI"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Безбедност"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Лозинка"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Лозинките не се совпаѓаат"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Ве молиме обидете се повторно"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Не може да користите криптиран фајлсистем за точката на монтирање %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Лозинка (повторно)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Чисти го /tmp при секое подигање"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Init порака"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Open Firmware закаснување"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Пауза пред подигање на кернел"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Овозможи подигање од CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Овозможи OF подигање?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Стандарден ОС?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Слика"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Продолжи"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Видео режим"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Мрежен профил"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Ознака"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Стандардно"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "Без видео"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Не се дозволени празни ознаки"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Мора да наведете слика на кернелот"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Мора да наведете root партиција"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Оваа ознака е веќе искористена"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Каков тип на внес сакате да додадете?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Линукс"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Друг ОС (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Друг ОС (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Друг ОС (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Конфигурација на стилот на подигање"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -354,47 +354,47 @@ msgstr ""
"Ова се досегашните внесови на Вашето мени за подигање.\n"
"Можете да додадете уште или да ги промените постоечките."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "пристап до X програми"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "пристап до rpm алатки"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "дозволи \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "пристап до административни датотеки"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "пристап до мрежни алатки"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "пристап до алатки за компајлирање"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(веќе е додаден %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Ве молиме внесете корисничко име"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -403,150 +403,150 @@ msgstr ""
"Корисничкото име мора да се состои само од мали латински букви, цифри, `-' и "
"`_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Корисничкото име е премногу долго"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Ова корисничко име веќе е додадено"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Кориснички ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Групна ID"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Опцијата %s мора да е број!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Корисничко име"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Постави root лозинка"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Внесете корисник\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Икона"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Вистинско име"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Име за најава"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Школка"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Ве молиме почекајте, додавање на медиум..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Автоматска најава"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Можам да го подесам вашиот компјутер автоматски да се најави еден корисник."
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Дали сакате да ja користите оваа опција?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Изберете го почетниот корисник:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Изберете во која работна околина да се вклучи:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Серија:"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Затвори"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Лиценцен договор"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Излез"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Дали имате уште?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Прифати"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Одбиј"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Ве молиме изберете јазик кој ќе се користи"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -558,87 +558,87 @@ msgstr ""
"достапни кога инсталацијата ќе заврши и кога ќе го\n"
"рестартирате системот."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Сите јазици"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Сите јазици"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Избор на јазик"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Држава / Регион"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Ве молам изберете ја вашата држава"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Ова е целосна листа на достапни држави"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Други држави"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Напредно"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Влезен метод:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Ниедно"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Без споделување (sharing)"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Дозволи на сите корисници"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "По избор"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -654,7 +654,7 @@ msgstr ""
"\n"
"\"По избор\" поодделни ѓи третира корисниците.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -663,7 +663,7 @@ msgstr ""
"NFS: традиционалниот датотечен систем за споделување на Unix, со мала "
"подршка на Mac и Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -672,19 +672,19 @@ msgstr ""
"SMB: датотечен систем користен од Windows, Mac OS X и многу модерни Linux "
"системи."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Можете да експортирате со NFS или со SMB. Изберете што сакате да користите."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Вклучи userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -693,54 +693,54 @@ msgstr ""
"Споделување по корисник ја користи групата \"fileshare\". \n"
"Можете да го користите userdrake за да додадете корисник во оваа група."
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Часовна зона"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Кој е Вашата временска зона?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Хардверски часовник наместен според GMT"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Хардверски часовник наместен според GMT"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP сервер"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматска синхронизација на време (преку NTP)"
@@ -1063,7 +1063,7 @@ msgid "Domain Admin Password"
msgstr "Лозинка на домен-админ."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1078,61 +1078,61 @@ msgstr ""
"pochekajte za standardno podiganje.\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO со текстуално мени"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "нема доволно простор во /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Не може да инсталирате подигач на %s партиција\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Преинсталирај го подигачот"
@@ -1230,7 +1230,7 @@ msgstr "Точка на монтирање"
msgid "Options"
msgstr "Опции"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Отстрани"
@@ -1336,7 +1336,7 @@ msgid "Continue"
msgstr "Продолжи"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1458,7 +1458,7 @@ msgid "More"
msgstr "Повеќе"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Потврдување"
@@ -2252,8 +2252,8 @@ msgstr "Промена на тип"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Откажи"
@@ -2652,10 +2652,10 @@ msgstr ""
"\n"
"Внимавајте: оваа операција е опасна. Најпрво е потребно да извршите„chkdsk "
"c:“преку командната конзола во „Windows“. Доколку не сте го сториле тоа,"
-"треба да излезете од инсталацијава, и да ја извршите оваа команда"
-"(внимавајте, не е доволно да го извршите графичкиот програм „scandisk“,"
-"бидете сигурни дека користите „chkdsk“ во командната конзола!). Како "
-"опцијаможе да го извршите и „defrag“ и потоа повторно да ја вклучите "
+"треба да излезете од инсталацијава, и да ја извршите оваа "
+"команда(внимавајте, не е доволно да го извршите графичкиот програм "
+"„scandisk“,бидете сигурни дека користите „chkdsk“ во командната конзола!). "
+"Како опцијаможе да го извршите и „defrag“ и потоа повторно да ја вклучите "
"инсталацијата.Исто така, пожелно е да направите и резервна копија на вашите "
"податоци.\n"
"\n"
@@ -2767,12 +2767,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Партицирањето не успеа: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Не можете да користите JFS за партиции помали од 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Не можете да користите ReiserFS за партиции помали од 32MB"
@@ -3271,7 +3271,7 @@ msgstr ""
"- старото API компатибилно со OSS - новото ALSA API кое нуди многу напредни "
"можности, но бара користење на ALSA библиотеката.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Драјвер:"
@@ -3324,63 +3324,74 @@ msgstr "Отстранување на проблемот за звукот"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"Класичниот тестер за грешки во звукот е за извршивање на следниве команди:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" ќе ви каже кој драјвер стандардно го "
-"користи\n"
-"вашата картичка\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" ќе ви каже кој драјвер моментално "
-"го\n"
-"користи вашата картичка\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/lsmod\" ќе ви овозможи да видите дали модулот (драјверот) е\n"
-"вчитан или не\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" и \"/sbin/chkconfig --list alsa\" ќе ви "
-"каже\n"
-"дали звучните и alsa сервисите се конфигурирани да се извршуваат на\n"
-"initlevel 3\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"aumix -q\" ќе ви каже дали јачината на звукот е на нула или не\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" ќе ви каже кој програм ја користи звучната "
-"картичка.\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Дозволи ми да изберам било кој уред"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Избирање на произволен драјвер"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3461,12 +3472,12 @@ msgstr "Не"
msgid "Choose a file"
msgstr "Изберете датотека"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Додај"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Промени"
@@ -3501,7 +3512,7 @@ msgstr "Не е папка"
msgid "No such file"
msgstr "Не пости таков директориум"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4788,17 +4799,17 @@ msgstr "Добредојдовте во %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Најпрво отстранете ги логичките партиции\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5227,12 +5238,12 @@ msgstr "Дали сакате да го притиснете ова копче?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Лозинка за корисникот"
@@ -5461,8 +5472,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Овласти:\n"
"\n"
@@ -6605,7 +6616,7 @@ msgstr "Локална Администрација"
msgid "Database Server"
msgstr "Сервер за Бази на Податоци"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Сервиси"
@@ -6620,22 +6631,22 @@ msgstr "Избери кои сервиси автоматски да старт
msgid "%d activated for %d registered"
msgstr "%d активирани за %d регистрирани"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "работи"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "престани"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Сервиси и демони"
-#: services.pm:254
+#: services.pm:252
#, fuzzy, c-format
msgid ""
"No additional information\n"
@@ -6644,27 +6655,27 @@ msgstr ""
"Нема дополнителни информации\n"
"за овој сервис. Жалиме!"
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Информации"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "При подигање"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Старт"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Стоп"
@@ -6971,6 +6982,55 @@ msgstr ""
msgid "Installation failed"
msgstr "Неуспешна инсталација"
+#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Класичниот тестер за грешки во звукот е за извршивање на следниве "
+#~ "команди:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" ќе ви каже кој драјвер стандардно го "
+#~ "користи\n"
+#~ "вашата картичка\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" ќе ви каже кој драјвер "
+#~ "моментално го\n"
+#~ "користи вашата картичка\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" ќе ви овозможи да видите дали модулот (драјверот) е\n"
+#~ "вчитан или не\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" и \"/sbin/chkconfig --list alsa\" ќе "
+#~ "ви каже\n"
+#~ "дали звучните и alsa сервисите се конфигурирани да се извршуваат на\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" ќе ви каже дали јачината на звукот е на нула или не\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" ќе ви каже кој програм ја користи звучната "
+#~ "картичка.\n"
+
#, fuzzy
#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
@@ -7221,8 +7281,8 @@ msgstr "Неуспешна инсталација"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/mn.po b/perl-install/share/po/mn.po
index 229cb7898..7a85df960 100644
--- a/perl-install/share/po/mn.po
+++ b/perl-install/share/po/mn.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2004-01-02 00:35+0100\n"
"Last-Translator: Sanlig Badral <Badral@openmn.org>\n"
"Language-Team: Mongolian <openmn-core@lists.sf.net>\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.2\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -26,12 +26,12 @@ msgstr ""
msgid "Please wait"
msgstr "Ачаалж байна... Түр хүлээнэ үү"
-#: any.pm:261
+#: any.pm:255
#, fuzzy, c-format
msgid "Bootloader installation in progress"
msgstr "Эхлүүлэгч ачаалагч суулгах"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -42,12 +42,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, fuzzy, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "аас:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -58,7 +58,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -68,462 +68,462 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Эхлүүлэгч ачаалагч суулгах"
-#: any.pm:344
+#: any.pm:338
#, fuzzy, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Хаана вы?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Хөтлөгчийн эхний сектор (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Хөтлөгчийн эхний сектор (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Үндсэн хуваалтын эхний сектор"
-#: any.pm:374
+#: any.pm:368
#, fuzzy, c-format
msgid "On Floppy"
msgstr "Идэвхитэй"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Алгасах"
-#: any.pm:411
+#: any.pm:405
#, fuzzy, c-format
msgid "Boot Style Configuration"
msgstr "Загвар"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Эхлүүлэгч ачаалагчийн үндсэн сонголтууд"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr ""
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr ""
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr ""
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Үндсэн зургийг ачаалахын өмнө түр саатах"
-#: any.pm:440
+#: any.pm:433
#, fuzzy, c-format
msgid "Enable ACPI"
msgstr "Нээх"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Нээх"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Нээх"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Нээх"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Нууцлал"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Нууц үг"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr ""
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Дахин оролдоно уу"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Та Цэг"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Нууц үг (дахин)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr ""
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr ""
-#: any.pm:468
+#: any.pm:461
#, fuzzy, c-format
msgid "Open Firmware Delay"
msgstr "Нээх"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr ""
-#: any.pm:470
+#: any.pm:463
#, fuzzy, c-format
msgid "Enable CD Boot?"
msgstr "Нээх CD?"
-#: any.pm:471
+#: any.pm:464
#, fuzzy, c-format
msgid "Enable OF Boot?"
msgstr "Нээх?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "Үндсэн ҮС?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Дүр"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Эзэн"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Залгах"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Видео горим"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, fuzzy, c-format
msgid "Network profile"
msgstr "Сүлжээ-харьцах хэсэг"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Бичээс"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Стандарт"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:586
+#: any.pm:579
#, fuzzy, c-format
msgid "Empty label not allowed"
msgstr "Бичээс"
-#: any.pm:587
+#: any.pm:580
#, fuzzy, c-format
msgid "You must specify a kernel image"
msgstr "Та"
-#: any.pm:587
+#: any.pm:580
#, fuzzy, c-format
msgid "You must specify a root partition"
msgstr "Та"
-#: any.pm:588
+#: any.pm:581
#, fuzzy, c-format
msgid "This label is already used"
msgstr "Бичээс бол"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Ямар төрлийн өгөгдөл та оруулахыг хүсэж байна?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Линукс"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Бусад ҮС (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Бусад ҮС (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "Бусад ҮС (Виндовс...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Загвар"
-#: any.pm:656
+#: any.pm:649
#, fuzzy, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr "Цэс."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr ""
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "rpm хэрэгсэлүүд рүү хандах"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr ""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr ""
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr ""
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr ""
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr ""
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr ""
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
"cased letters, numbers, `-' and `_'"
msgstr "нэр"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Хэрэглэгчийн нэр хэт урт"
-#: any.pm:887
+#: any.pm:880
#, fuzzy, c-format
msgid "This user name has already been added"
msgstr "нэр"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "Хэрэглэгчийн ID"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "Группын ID"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "%s сонголт нь тоо байх ёстой!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Хэрэглэгчийн нэр"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Нууцлалын Удирдлага (бүртгэл эсвэл и-мэйл)"
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr "г"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Эмблем"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr ""
-#: any.pm:923
+#: any.pm:916
#, fuzzy, c-format
msgid "Login name"
msgstr "Домэйн"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Бүрхүүл"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr ""
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Та энэ чанарыг ашиглахыг хүсэж байна уу?"
-#: any.pm:1006
+#: any.pm:999
#, fuzzy, c-format
msgid "Choose the default user:"
msgstr "Сонгох:"
-#: any.pm:1007
+#: any.pm:1000
#, fuzzy, c-format
msgid "Choose the window manager to run:"
msgstr "Цонх:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Хэвлэл:"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Хаах"
-#: any.pm:1086
+#: any.pm:1079
#, fuzzy, c-format
msgid "License agreement"
msgstr "Лиценз"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Гарах"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Та ямар нэгэн %s гэсэн харагдалттай юу?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Зөвшөөрөх"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr ""
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Хэрэглэх хэлээ сонгоно уу"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -531,87 +531,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "вы бол вы."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Мандрива Линукс"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Бүх хэл"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Бүх хэл"
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "Хэл"
-#: any.pm:1240
+#: any.pm:1233
#, fuzzy, c-format
msgid "Country / Region"
msgstr " / Муж"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Улсаа сонгоно уу"
-#: any.pm:1243
+#: any.pm:1236
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "бол бүрэн жигсаалт аас"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Бусад"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Өргөтгөсөн"
-#: any.pm:1250
+#: any.pm:1243
#, fuzzy, c-format
msgid "Input method:"
msgstr "Сүлжээний арга:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Алга"
-#: any.pm:1334
+#: any.pm:1327
#, fuzzy, c-format
msgid "No sharing"
msgstr "Үгүй"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Бүх хэрэглэгчдийг зөвшөөрөх"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Тохир"
-#: any.pm:1338
+#: any.pm:1331
#, fuzzy, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -621,86 +621,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr "вы хэрэглэгчид аас хэрэглэгчид Хамтын хэрэглээ ямх г г Хэрэглэгчийн"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, fuzzy, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Та Самба вы."
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr ""
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-#: any.pm:1498
+#: any.pm:1491
#, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr ""
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Цагийн бүс"
-#: any.pm:1537
+#: any.pm:1530
#, fuzzy, c-format
msgid "Which is your timezone?"
msgstr "бол?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Hardware"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Hardware"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "NTP Сервер"
-#: any.pm:1571
+#: any.pm:1564
#, fuzzy, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Автоматаар"
@@ -1024,7 +1024,7 @@ msgid "Domain Admin Password"
msgstr "Домэйн"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1034,61 +1034,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, fuzzy, c-format
msgid "LILO with text menu"
msgstr "текст"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr ""
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr ""
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, fuzzy, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Хаана вы?"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr ""
@@ -1182,7 +1182,7 @@ msgstr "Дискийн төхөөрөмж холбох"
msgid "Options"
msgstr "Сонголтууд"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Устгах"
@@ -1288,7 +1288,7 @@ msgid "Continue"
msgstr "Үргэлжилүүлэх"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1407,7 +1407,7 @@ msgid "More"
msgstr "Илүү"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Тохиргоо"
@@ -2171,8 +2171,8 @@ msgstr "Өөрчилөх"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Хүчингүй"
@@ -2634,12 +2634,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Хуваалтын хүснэгтийн төрөл: %s\n"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, fuzzy, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Та"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, fuzzy, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Та"
@@ -3091,7 +3091,7 @@ msgid ""
"the ALSA library.\n"
msgstr ""
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, fuzzy, c-format
msgid "Driver:"
msgstr "Драйвер:"
@@ -3137,40 +3137,74 @@ msgstr "Асуудал гарч байна"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
+"\n"
+"\n"
+"\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
+"\n"
+"\n"
+"\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, fuzzy, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3247,12 +3281,12 @@ msgstr "Үгүй"
msgid "Choose a file"
msgstr "Файл сонгох"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Нэмэх"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Өөрчлөх"
@@ -3287,7 +3321,7 @@ msgstr "Лавлах биш"
msgid "No such file"
msgstr "»%s« файл алга\n"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4570,17 +4604,17 @@ msgstr "Тавтай морил тийш"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Эхлээд логик хуваалтыг устга\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -4915,12 +4949,12 @@ msgstr "Та суулгалтыг үргэлжлүүлэхийг хүсэж ба
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Нууц үг шаардлагатай"
@@ -5137,8 +5171,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr "Аргумент г байхгүй тийш вы г."
#: security/help.pm:63
@@ -6181,7 +6215,7 @@ msgstr "Дээд"
msgid "Database Server"
msgstr "Өгөгдлийн баазын сервер"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Үйлчилгээ"
@@ -6196,49 +6230,49 @@ msgstr "Сонгох"
msgid "%d activated for %d registered"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr ""
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr ""
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr ""
-#: services.pm:254
+#: services.pm:252
#, fuzzy, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr "Үгүй."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Мэдээлэл"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr ""
-#: services.pm:262
+#: services.pm:260
#, fuzzy, c-format
msgid "On boot"
msgstr "Идэвхитэй"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Эхлэх"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Зогсоох"
@@ -6683,8 +6717,8 @@ msgstr "Хэлбэр!"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/ms.po b/perl-install/share/po/ms.po
index d836fb48d..2552220ff 100644
--- a/perl-install/share/po/ms.po
+++ b/perl-install/share/po/ms.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2008-05-04 13:34+0800\n"
"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
"Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -23,12 +23,12 @@ msgstr ""
msgid "Please wait"
msgstr "Sila tunggu"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Pemasangan pemuat boot sedang dijalankan"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -39,12 +39,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:283
+#: any.pm:277
#, fuzzy, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "ralat:"
-#: any.pm:289
+#: any.pm:283
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -60,7 +60,7 @@ msgstr ""
"\n"
"."
-#: any.pm:329
+#: any.pm:323
#, fuzzy, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -70,315 +70,315 @@ msgid ""
"On which drive are you booting?"
msgstr "on on Sistem?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Pemasangan pemuat boot sedang dijalankan"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Dimana anda ingin pemuatbut ini dipasang?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "Sektor pertama pemacu (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Sektor pertama pemacu (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "Sektor pertama bagi partisyen root"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Pada Cekara Liut"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Langkau"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Tetapan Gaya Boot"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Pilihan utama pemuatboot"
-#: any.pm:431
+#: any.pm:424
#, fuzzy, c-format
msgid "Bootloader"
msgstr "PemuatBoot"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Pemuatboot untuk digunakan"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Peranti boot"
-#: any.pm:438
+#: any.pm:431
#, fuzzy, c-format
msgid "Main options"
msgstr "Pilihan Bina"
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Penangguhan sebelum memboot imej default"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Hidupkan ACPI"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Hidupkan ACPI"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Hidupkan animasi"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Pemasangan--APIC Tempatan Dimatikan"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Keselamatan"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Katalaluan"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Katalaluan tidak sepadan"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Sila cuba lagi"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "fail"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Katalaluan (sekali lagi)"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr ""
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Mesej Init"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Kelengahan Firmware Terbuka"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Hadmasa Tamat Boot Kernel"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Hidupkan Boot CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Hidupkan Boot OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "OS Default?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Imej"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Tambah"
-#: any.pm:550
+#: any.pm:543
#, fuzzy, c-format
msgid "Xen append"
msgstr "/xen/demo.img"
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Mod video"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Profil rangkaian"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Label"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Default"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr ""
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Label kosong tidak dibenarkan"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Anda mesti nyatakan imej kernel"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Anda mesti nyatakan partisyen root"
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Label ini telah digunakan"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr ""
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "OS Lain (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "OS Lain (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "OS Lain (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Tetapan Gaya Boot"
-#: any.pm:656
+#: any.pm:649
#, fuzzy, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr "on."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "akses ke program X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "akses ke alatan rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "benar \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "akses kepada fail pentadbiran"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "akses ke alatan rangkaian"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "akses ke alatan himpunan"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(telah ditambah %s)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Sila berikan nama pengguna"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -386,147 +386,147 @@ msgid ""
msgstr ""
"Nama mesti mengandungi hanya aksara latin hufuf kecil, nombor, `-' dan `_'"
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Nama pengguna terlalu panjang"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Nama pengguna ini telahpun ditambah"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID Pengguna"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID kumpulan"
-#: any.pm:894
+#: any.pm:887
#, c-format
msgid "%s must be a number"
msgstr "%s mestilah nombor"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "Pengurusan Masa"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Sila masukkan katalaluan root bagi sistem."
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr "Antaramuka Pengguna"
-#: any.pm:913
+#: any.pm:906
#, fuzzy, c-format
msgid "Icon"
msgstr "Editor Ikon"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Nama sebenar"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Nama logmasuk"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, c-format
msgid "Please wait, adding media..."
msgstr "Sila tunggu, menambah media..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr ""
-#: any.pm:1004
+#: any.pm:997
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr "on pengguna."
-#: any.pm:1005
+#: any.pm:998
#, c-format
msgid "Use this feature"
msgstr "Guna ciri ini"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Pilih pengguna default:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Pilih pengurus tetingkap untuk dilaksanakan:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, fuzzy, c-format
msgid "Release Notes"
msgstr "Nota Keluaran Fedora"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Tutup"
-#: any.pm:1086
+#: any.pm:1079
#, fuzzy, c-format
msgid "License agreement"
msgstr "Perjanjian Lesen"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Keluar"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Anda ada Cekera jurupacu?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Terima"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Tolak"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, fuzzy, c-format
msgid "Please choose a language to use"
msgstr "Pilih alatan yang anda hendak guna"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -534,87 +534,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "dan ulanghidup."
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Bahasa yang Ada "
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, fuzzy, c-format
msgid "All languages"
msgstr "Bahasa yang Ada "
-#: any.pm:1186
+#: any.pm:1179
#, fuzzy, c-format
msgid "Language choice"
msgstr "Tetapan bahasa"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Negara / Kawasan"
-#: any.pm:1241
+#: any.pm:1234
#, fuzzy, c-format
msgid "Please choose your country"
msgstr "Sila pilih jenis logmasuk anda:"
-#: any.pm:1243
+#: any.pm:1236
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "penuh"
-#: any.pm:1244
+#: any.pm:1237
#, fuzzy, c-format
msgid "Other Countries"
msgstr "Pilihan lain:"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Lanjutan"
-#: any.pm:1250
+#: any.pm:1243
#, fuzzy, c-format
msgid "Input method:"
msgstr "Cara Masukan"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Tiada"
-#: any.pm:1334
+#: any.pm:1327
#, fuzzy, c-format
msgid "No sharing"
msgstr "Perkongsian Ruang Kerja"
-#: any.pm:1334
+#: any.pm:1327
#, fuzzy, c-format
msgid "Allow all users"
msgstr "Pengguna dan Kumpulan"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Tersendiri"
-#: any.pm:1338
+#: any.pm:1331
#, fuzzy, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -624,86 +624,86 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr "on Kongsi dalam dan Tersendiri pengguna"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
-#: any.pm:1389
+#: any.pm:1382
#, fuzzy, c-format
msgid "Launch userdrake"
msgstr "Lancar Maklum Balas"
-#: any.pm:1391
+#: any.pm:1384
#, fuzzy, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr "pengguna pengguna."
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
"logout now."
msgstr "keluar dan dalam"
-#: any.pm:1502
+#: any.pm:1495
#, fuzzy, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr "keluar dan dalam"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Zonmasa"
-#: any.pm:1537
+#: any.pm:1530
#, fuzzy, c-format
msgid "Which is your timezone?"
msgstr "Persekitaran Desktop adalah:"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, fuzzy, c-format
msgid "What is the best time?"
msgstr "Versi 'terbaik' semasa ialah %s.\n"
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Mengsinkronisasikan jam perkakasan ke masa sistem"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Mengsinkronisasikan jam perkakasan ke masa sistem"
-#: any.pm:1570
+#: any.pm:1563
#, fuzzy, c-format
msgid "NTP Server"
msgstr "Pelayan FTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr ""
@@ -1026,7 +1026,7 @@ msgid "Domain Admin Password"
msgstr "Kata Laluan & Akaun Pengguna"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1036,61 +1036,61 @@ msgid ""
"\n"
msgstr ""
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, fuzzy, c-format
msgid "LILO with text menu"
msgstr "Ganti teks dinyatakan dengan teks berlainan"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, fuzzy, c-format
msgid "GRUB2 with graphical menu"
msgstr "Konfigurasi kemaskini menu selesai dg ERROR !!!"
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, fuzzy, c-format
msgid "GRUB with graphical menu"
msgstr "Konfigurasi kemaskini menu selesai dg ERROR !!!"
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, fuzzy, c-format
msgid "GRUB with text menu"
msgstr "Ganti teks dinyatakan dengan teks berlainan"
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, fuzzy, c-format
msgid "not enough room in /boot"
msgstr "dalam"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, fuzzy, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "on"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, fuzzy, c-format
msgid "Re-install Boot Loader"
msgstr "Pasang pemuat but baru"
@@ -1184,7 +1184,7 @@ msgstr "Titik lekapan"
msgid "Options"
msgstr "Pilihan"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Buang"
@@ -1290,7 +1290,7 @@ msgid "Continue"
msgstr "Teruskan"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1409,7 +1409,7 @@ msgid "More"
msgstr "Lagi"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, c-format
msgid "Confirmation"
msgstr "Pengesahan"
@@ -2175,8 +2175,8 @@ msgstr "Jenis per&nomboran:"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Batal"
@@ -2640,12 +2640,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Sambungan Gagal"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr ""
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr ""
@@ -3099,7 +3099,7 @@ msgid ""
"the ALSA library.\n"
msgstr "Buka Bunyi Sistem on asas dan Lanjutan Bunyi USB dan"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Pemacu :"
@@ -3143,42 +3143,76 @@ msgstr "Ralat merakam bunyi"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:430
-#, fuzzy, c-format
+#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
+"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr "default dan dan on"
+"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
+"\n"
+"\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
+"\n"
+"\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
+"\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr ""
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, fuzzy, c-format
msgid "Choosing an arbitrary driver"
msgstr "Cetak menggunakan pemandu PS terbinadalam"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, fuzzy, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3250,12 +3284,12 @@ msgstr "Tidak"
msgid "Choose a file"
msgstr "Pilih fail"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Tambah"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Ubah"
@@ -3290,7 +3324,7 @@ msgstr "Tiada direktori sedemikian"
msgid "No such file"
msgstr "Tiada fail sedemikian"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4570,17 +4604,17 @@ msgstr "Selamat datang ke %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, fuzzy, c-format
msgid "Remove the logical volumes first\n"
msgstr "Volum Logikal Maksimum Dibenarkan:"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -4919,12 +4953,12 @@ msgstr "Adakah anda ingin memulakan antaramuka rangkaian pada sistem ini"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Kata Laluan & Akaun Pengguna"
@@ -5131,8 +5165,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr "hos lokal tiada hos hos."
#: security/help.pm:63
@@ -6148,7 +6182,7 @@ msgstr "Alatan Pentadbiran"
msgid "Database Server"
msgstr "Pelayan Pangkalan data CD"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Perkhidmatan"
@@ -6163,49 +6197,49 @@ msgstr ""
msgid "%d activated for %d registered"
msgstr "Pilih komponen piawai untuk pelbagai servis"
-#: services.pm:243
+#: services.pm:241
#, fuzzy, c-format
msgid "running"
msgstr "melaksanakan %s\n"
-#: services.pm:243
+#: services.pm:241
#, fuzzy, c-format
msgid "stopped"
msgstr "Dihentikan"
-#: services.pm:248
+#: services.pm:246
#, fuzzy, c-format
msgid "Services and daemons"
msgstr "&Pengepala dan Footer"
-#: services.pm:254
+#: services.pm:252
#, fuzzy, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr "Tidak."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Maklumat"
-#: services.pm:262
+#: services.pm:260
#, fuzzy, c-format
msgid "Start when requested"
msgstr "Mula Senarai Baru"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Semasa boot"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Mula"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Henti"
@@ -6461,6 +6495,32 @@ msgid "Installation failed"
msgstr "Instalasi gagal"
#, fuzzy
+#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr "default dan dan on"
+
+#, fuzzy
#~ msgid "File sharing"
#~ msgstr "Tetapkan Perkongsian Fail"
@@ -6671,8 +6731,8 @@ msgstr "Instalasi gagal"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po
index fcd1b50f1..d36597597 100644
--- a/perl-install/share/po/mt.po
+++ b/perl-install/share/po/mt.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mt\n"
-"POT-Creation-Date: 2012-12-14 15:17+0100\n"
+"POT-Creation-Date: 2013-04-06 03:21+0200\n"
"PO-Revision-Date: 2004-10-04 18:45+0200\n"
"Last-Translator: Ramon Casha <ramon.casha@linux.org.mt>\n"
"Language-Team: Maltese <mt@li.org>\n"
@@ -17,7 +17,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
-#: any.pm:261 any.pm:971 diskdrake/interactive.pm:645
+#: any.pm:255 any.pm:964 diskdrake/interactive.pm:645
#: diskdrake/interactive.pm:869 diskdrake/interactive.pm:931
#: diskdrake/interactive.pm:1036 diskdrake/interactive.pm:1266
#: diskdrake/interactive.pm:1324 do_pkgs.pm:242 do_pkgs.pm:287
@@ -26,12 +26,12 @@ msgstr ""
msgid "Please wait"
msgstr "Stenna ftit"
-#: any.pm:261
+#: any.pm:255
#, c-format
msgid "Bootloader installation in progress"
msgstr "Għaddejja l-installazzjoni tal-bootloader"
-#: any.pm:272
+#: any.pm:266
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -49,12 +49,12 @@ msgstr ""
"\n"
"Trid tagħti ID tal-Volum ġdid?"
-#: any.pm:283
+#: any.pm:277
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "L-installazzjoni tal-bootloader falla. Dan kien il-messaġġ:"
-#: any.pm:289
+#: any.pm:283
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -72,7 +72,7 @@ msgstr ""
" Imbagħad ittajpja: shut-down\n"
"Meta jerġa' jitla' għandek tara l-prompt tal-bootloader."
-#: any.pm:329
+#: any.pm:323
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -87,268 +87,268 @@ msgstr ""
"\n"
"Minn fuq liema drajv tistartja?"
-#: any.pm:340
+#: any.pm:334
#, fuzzy, c-format
msgid "Bootloader Installation"
msgstr "Għaddejja l-installazzjoni tal-bootloader"
-#: any.pm:344
+#: any.pm:338
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Fejn tixtieq tinstalla l-\"bootloader\"?"
-#: any.pm:368
+#: any.pm:362
#, fuzzy, c-format
msgid "First sector (MBR) of drive %s"
msgstr "L-ewwel settur tal-ħard disk (MBR)"
-#: any.pm:370
+#: any.pm:364
#, c-format
msgid "First sector of drive (MBR)"
msgstr "L-ewwel settur tal-ħard disk (MBR)"
-#: any.pm:372
+#: any.pm:366
#, c-format
msgid "First sector of the root partition"
msgstr "L-ewwel settur tal-partizzjoni root"
-#: any.pm:374
+#: any.pm:368
#, c-format
msgid "On Floppy"
msgstr "Fuq Flopi"
-#: any.pm:376 pkgs.pm:283 ugtk2.pm:526
+#: any.pm:370 pkgs.pm:283 ugtk2.pm:526
#, c-format
msgid "Skip"
msgstr "Aqbeż"
-#: any.pm:411
+#: any.pm:405
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfigurazzjoni ta' l-istil ta' boot"
-#: any.pm:427 any.pm:460 any.pm:461
+#: any.pm:420 any.pm:453 any.pm:454
#, c-format
msgid "Bootloader main options"
msgstr "Għażliet prinċipali tal-bootloader"
-#: any.pm:431
+#: any.pm:424
#, c-format
msgid "Bootloader"
msgstr "Bootloader"
-#: any.pm:432 any.pm:464
+#: any.pm:425 any.pm:457
#, c-format
msgid "Bootloader to use"
msgstr "Liema bootloader tuża"
-#: any.pm:435 any.pm:467
+#: any.pm:428 any.pm:460
#, c-format
msgid "Boot device"
msgstr "Diska/apparat \"boot\""
-#: any.pm:438
+#: any.pm:431
#, c-format
msgid "Main options"
msgstr ""
-#: any.pm:439
+#: any.pm:432
#, c-format
msgid "Delay before booting default image"
msgstr "Stennija qabel ittella' l-għażla impliċita"
-#: any.pm:440
+#: any.pm:433
#, c-format
msgid "Enable ACPI"
msgstr "Ippermetti ACPI"
-#: any.pm:441
+#: any.pm:434
#, fuzzy, c-format
msgid "Enable SMP"
msgstr "Ippermetti ACPI"
-#: any.pm:442
+#: any.pm:435
#, fuzzy, c-format
msgid "Enable APIC"
msgstr "Ippermetti ACPI"
-#: any.pm:444
+#: any.pm:437
#, fuzzy, c-format
msgid "Enable Local APIC"
msgstr "Ippermetti ACPI"
-#: any.pm:445 security/level.pm:63
+#: any.pm:438 security/level.pm:63
#, c-format
msgid "Security"
msgstr "Sigurtà"
-#: any.pm:446 any.pm:906 any.pm:925 authentication.pm:249
+#: any.pm:439 any.pm:899 any.pm:918 authentication.pm:249
#: diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Password"
-#: any.pm:449 authentication.pm:260
+#: any.pm:442 authentication.pm:260
#, c-format
msgid "The passwords do not match"
msgstr "Il-passwords ma jaqblux"
-#: any.pm:449 authentication.pm:260 diskdrake/interactive.pm:1499
+#: any.pm:442 authentication.pm:260 diskdrake/interactive.pm:1499
#, c-format
msgid "Please try again"
msgstr "Erġa' pprova"
-#: any.pm:451
+#: any.pm:444
#, fuzzy, c-format
msgid "You cannot use a password with %s"
msgstr "Ma tistax tuża filesystem iċċifrat għall-punt ta' mmuntar %s"
-#: any.pm:455 any.pm:909 any.pm:927 authentication.pm:250
+#: any.pm:448 any.pm:902 any.pm:920 authentication.pm:250
#, c-format
msgid "Password (again)"
msgstr "Password (erġa')"
-#: any.pm:456
+#: any.pm:449
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Naddaf /tmp kull meta tixgħel"
-#: any.pm:466
+#: any.pm:459
#, c-format
msgid "Init Message"
msgstr "Messaġġ tal-bidu"
-#: any.pm:468
+#: any.pm:461
#, c-format
msgid "Open Firmware Delay"
msgstr "Stennija Open Firmware"
-#: any.pm:469
+#: any.pm:462
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Skadenza tal-ħin għall-kernel boot"
-#: any.pm:470
+#: any.pm:463
#, c-format
msgid "Enable CD Boot?"
msgstr "Ippermetti boot mis-CD?"
-#: any.pm:471
+#: any.pm:464
#, c-format
msgid "Enable OF Boot?"
msgstr "Ippermetti Boot OF?"
-#: any.pm:472
+#: any.pm:465
#, c-format
msgid "Default OS?"
msgstr "OS Impliċitu?"
-#: any.pm:546
+#: any.pm:539
#, c-format
msgid "Image"
msgstr "Image"
-#: any.pm:547 any.pm:561
+#: any.pm:540 any.pm:554
#, c-format
msgid "Root"
msgstr "Root"
-#: any.pm:548 any.pm:574
+#: any.pm:541 any.pm:567
#, c-format
msgid "Append"
msgstr "Żid fl-aħħar"
-#: any.pm:550
+#: any.pm:543
#, c-format
msgid "Xen append"
msgstr ""
-#: any.pm:552
+#: any.pm:545
#, c-format
msgid "Requires password to boot"
msgstr ""
-#: any.pm:554
+#: any.pm:547
#, c-format
msgid "Video mode"
msgstr "Konfigurazzjoni video"
-#: any.pm:556
+#: any.pm:549
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:557
+#: any.pm:550
#, c-format
msgid "Network profile"
msgstr "Profil tan-network"
-#: any.pm:566 any.pm:571 any.pm:573 diskdrake/interactive.pm:411
+#: any.pm:559 any.pm:564 any.pm:566 diskdrake/interactive.pm:411
#, c-format
msgid "Label"
msgstr "Isem"
-#: any.pm:568 any.pm:576 harddrake/v4l.pm:438
+#: any.pm:561 any.pm:569 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Impliċitu"
-#: any.pm:575
+#: any.pm:568
#, c-format
msgid "NoVideo"
msgstr "EbdaVideo"
-#: any.pm:586
+#: any.pm:579
#, c-format
msgid "Empty label not allowed"
msgstr "Isem vojt mhux aċċettat"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a kernel image"
msgstr "Trid tispeċifika \"image\" tal-kernel"
-#: any.pm:587
+#: any.pm:580
#, c-format
msgid "You must specify a root partition"
msgstr "Trid tispeċifika partizzjoni \"root\""
-#: any.pm:588
+#: any.pm:581
#, c-format
msgid "This label is already used"
msgstr "Dan l-isem diġà qed jintuża"
-#: any.pm:606
+#: any.pm:599
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Liema tip ta' sistema operattiva trid iżżid?"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Linux"
msgstr "Linux"
-#: any.pm:607
+#: any.pm:600
#, c-format
msgid "Other OS (SunOS...)"
msgstr "OS ieħor (SunOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (MacOS...)"
msgstr "OS ieħor (MacOS...)"
-#: any.pm:608
+#: any.pm:601
#, c-format
msgid "Other OS (Windows...)"
msgstr "OS ieħor (Windows...)"
-#: any.pm:655
+#: any.pm:648
#, fuzzy, c-format
msgid "Bootloader Configuration"
msgstr "Konfigurazzjoni ta' l-istil ta' boot"
-#: any.pm:656
+#: any.pm:649
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -357,47 +357,47 @@ msgstr ""
"Hawn huma l-elementi differenti>\n"
"Tista' żżid iżjed jew tibdel dawk li hemm."
-#: any.pm:867
+#: any.pm:860
#, c-format
msgid "access to X programs"
msgstr "aċċess għall-programmi X"
-#: any.pm:868
+#: any.pm:861
#, c-format
msgid "access to rpm tools"
msgstr "aċċess għall-għodda rpm"
-#: any.pm:869
+#: any.pm:862
#, c-format
msgid "allow \"su\""
msgstr "ippermetti \"su\""
-#: any.pm:870
+#: any.pm:863
#, c-format
msgid "access to administrative files"
msgstr "aċċess għall-fajls amministrattivi"
-#: any.pm:871
+#: any.pm:864
#, c-format
msgid "access to network tools"
msgstr "aċċess għall-għodda tan-network"
-#: any.pm:872
+#: any.pm:865
#, c-format
msgid "access to compilation tools"
msgstr "aċċess għall-għodda tal-kompilazzjoni"
-#: any.pm:878
+#: any.pm:871
#, c-format
msgid "(already added %s)"
msgstr "(%s diġà miżjud)"
-#: any.pm:884
+#: any.pm:877
#, c-format
msgid "Please give a user name"
msgstr "Jekk jogħġbok agħti isem ta' user"
-#: any.pm:885
+#: any.pm:878
#, fuzzy, c-format
msgid ""
"The user name must start with a lower case letter followed by only lower "
@@ -405,151 +405,151 @@ msgid ""
msgstr ""
"L-isem tal-user jista' jkun fih biss ittri żgħar, numri, \"-\" u \"_\"."
-#: any.pm:886
+#: any.pm:879
#, c-format
msgid "The user name is too long"
msgstr "Dan l-isem ta' user huwa twil wisq"
-#: any.pm:887
+#: any.pm:880
#, c-format
msgid "This user name has already been added"
msgstr "Dan l-isem ta' user diġà jeżisti"
-#: any.pm:893 any.pm:929
+#: any.pm:886 any.pm:922
#, c-format
msgid "User ID"
msgstr "ID tal-utent"
-#: any.pm:893 any.pm:930
+#: any.pm:886 any.pm:923
#, c-format
msgid "Group ID"
msgstr "ID tal-Grupp"
-#: any.pm:894
+#: any.pm:887
#, fuzzy, c-format
msgid "%s must be a number"
msgstr "Għażla %s trid tkun numru!"
-#: any.pm:895
+#: any.pm:888
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr ""
-#: any.pm:899
+#: any.pm:892
#, fuzzy, c-format
msgid "User management"
msgstr "User"
-#: any.pm:904
+#: any.pm:897
#, c-format
msgid "Enable guest account"
msgstr ""
-#: any.pm:905 authentication.pm:236
+#: any.pm:898 authentication.pm:236
#, fuzzy, c-format
msgid "Set administrator (root) password"
msgstr "Issettja l-password ta' \"root\""
-#: any.pm:911
+#: any.pm:904
#, fuzzy, c-format
msgid "Enter a user"
msgstr ""
"Daħħal dettalji ta' user\n"
"%s"
-#: any.pm:913
+#: any.pm:906
#, c-format
msgid "Icon"
msgstr "Stampa"
-#: any.pm:916
+#: any.pm:909
#, c-format
msgid "Real name"
msgstr "Isem veru"
-#: any.pm:923
+#: any.pm:916
#, c-format
msgid "Login name"
msgstr "Isem tal-login"
-#: any.pm:928
+#: any.pm:921
#, c-format
msgid "Shell"
msgstr "Shell"
-#: any.pm:971
+#: any.pm:964
#, fuzzy, c-format
msgid "Please wait, adding media..."
msgstr "stenna sakemm għaddej ttmkfdir..."
-#: any.pm:1003 security/l10n.pm:14
+#: any.pm:996 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Awto-login"
-#: any.pm:1004
+#: any.pm:997
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Nista' nissettja l-kompjuter biex awtomatikament jagħmel login fuq user "
"wieħed."
-#: any.pm:1005
+#: any.pm:998
#, fuzzy, c-format
msgid "Use this feature"
msgstr "Trid tuża din il-faċilità?"
-#: any.pm:1006
+#: any.pm:999
#, c-format
msgid "Choose the default user:"
msgstr "Agħżel il-user impliċitu:"
-#: any.pm:1007
+#: any.pm:1000
#, c-format
msgid "Choose the window manager to run:"
msgstr "Agħżel liema \"window manager\" trid tħaddem:"
-#: any.pm:1018 any.pm:1032 any.pm:1100
+#: any.pm:1011 any.pm:1025 any.pm:1093
#, c-format
msgid "Release Notes"
msgstr "Noti dwar il-ħarġa"
-#: any.pm:1039 any.pm:1389 interactive/gtk.pm:817
+#: any.pm:1032 any.pm:1382 interactive/gtk.pm:821
#, c-format
msgid "Close"
msgstr "Agħlaq"
-#: any.pm:1086
+#: any.pm:1079
#, c-format
msgid "License agreement"
msgstr "Qbil mal-liċenzja"
-#: any.pm:1088 diskdrake/dav.pm:26
+#: any.pm:1081 diskdrake/dav.pm:26 mygtk2.pm:1222
#, c-format
msgid "Quit"
msgstr "Noħroġ"
-#: any.pm:1095
+#: any.pm:1088
#, fuzzy, c-format
msgid "Do you accept this license ?"
msgstr "Għandek iżjed?"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Accept"
msgstr "Naċċetta"
-#: any.pm:1096
+#: any.pm:1089
#, c-format
msgid "Refuse"
msgstr "Ma naċċettax"
-#: any.pm:1122 any.pm:1185
+#: any.pm:1115 any.pm:1178
#, c-format
msgid "Please choose a language to use"
msgstr "Agħżel liema lingwa trid tuża"
-#: any.pm:1150
+#: any.pm:1143
#, fuzzy, c-format
msgid ""
"%s can support multiple languages. Select\n"
@@ -557,87 +557,87 @@ msgid ""
"when your installation is complete and you restart your system."
msgstr "Tista' tagħżel lingwi oħra li jkun u disponibbli wara li tinstalla"
-#: any.pm:1152 fs/partitioning_wizard.pm:174
+#: any.pm:1145 fs/partitioning_wizard.pm:174
#, c-format
msgid "Mageia"
msgstr "Mageia"
-#: any.pm:1153
+#: any.pm:1146
#, fuzzy, c-format
msgid "Multiple languages"
msgstr "Lingwi kollha"
-#: any.pm:1154
+#: any.pm:1147
#, c-format
msgid "Select Additional Languages"
msgstr ""
-#: any.pm:1163 any.pm:1194
+#: any.pm:1156 any.pm:1187
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr ""
-#: any.pm:1164
+#: any.pm:1157
#, c-format
msgid "All languages"
msgstr "Lingwi kollha"
-#: any.pm:1186
+#: any.pm:1179
#, c-format
msgid "Language choice"
msgstr "Għażla ta' lingwa"
-#: any.pm:1240
+#: any.pm:1233
#, c-format
msgid "Country / Region"
msgstr "Pajjiż"
-#: any.pm:1241
+#: any.pm:1234
#, c-format
msgid "Please choose your country"
msgstr "Jekk jogħġbok agħżel il-pajjiż"
-#: any.pm:1243
+#: any.pm:1236
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hawn issib lista sħiħa ta' pajjiżi disponibbli"
-#: any.pm:1244
+#: any.pm:1237
#, c-format
msgid "Other Countries"
msgstr "Pajjiżi oħrajn"
-#: any.pm:1244 interactive.pm:489 interactive/gtk.pm:445
+#: any.pm:1237 interactive.pm:489 interactive/gtk.pm:445
#, c-format
msgid "Advanced"
msgstr "Avvanzat"
-#: any.pm:1250
+#: any.pm:1243
#, c-format
msgid "Input method:"
msgstr "Metodu ta' input:"
-#: any.pm:1253
+#: any.pm:1246
#, c-format
msgid "None"
msgstr "Ebda"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "No sharing"
msgstr "Ebda offerti (sharing)"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Allow all users"
msgstr "Ippermetti l-users kollha"
-#: any.pm:1334
+#: any.pm:1327
#, c-format
msgid "Custom"
msgstr "Personalizzat"
-#: any.pm:1338
+#: any.pm:1331
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -653,7 +653,7 @@ msgstr ""
"\n"
"\"Personalizzat\" jippermetti setings għal kull user.\n"
-#: any.pm:1350
+#: any.pm:1343
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
@@ -662,7 +662,7 @@ msgstr ""
"NFS: sistema ta' qsim ta' fajls tradizzjonali Unix, b'inqas sapport fuq Mac "
"u Windows."
-#: any.pm:1353
+#: any.pm:1346
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -671,18 +671,18 @@ msgstr ""
"SMB: sistema ta' qsim ta' fajls użata minn Windows, Mac OSX u diversi "
"sistemi moderni ta' Linux."
-#: any.pm:1361
+#: any.pm:1354
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "Tista' toffri direttorji bl-NFS jew SMB. Liema trid?"
-#: any.pm:1389
+#: any.pm:1382
#, c-format
msgid "Launch userdrake"
msgstr "Ħaddem userdrake"
-#: any.pm:1391
+#: any.pm:1384
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -692,7 +692,7 @@ msgstr ""
"grupp \"fileshare\". Tista' tuża userdrake biex iżżid\n"
"users ma' dan il-grupp."
-#: any.pm:1498
+#: any.pm:1491
#, fuzzy, c-format
msgid ""
"You need to logout and back in again for changes to take effect. Press OK to "
@@ -700,48 +700,48 @@ msgid ""
msgstr ""
"Trid tilloggja 'l barra u terġa' tidħol biex ikollhom effett il-bidliet."
-#: any.pm:1502
+#: any.pm:1495
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Trid tilloggja 'l barra u terġa' tidħol biex ikollhom effett il-bidliet."
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Timezone"
msgstr "Żona tal-ħin"
-#: any.pm:1537
+#: any.pm:1530
#, c-format
msgid "Which is your timezone?"
msgstr "Liem hi ż-żona orarja tiegħek?"
-#: any.pm:1560 any.pm:1562
+#: any.pm:1553 any.pm:1555
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr ""
-#: any.pm:1563
+#: any.pm:1556
#, c-format
msgid "What is the best time?"
msgstr ""
-#: any.pm:1567
+#: any.pm:1560
#, fuzzy, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "Arloġġ tal-kompjuter issettjat GMT"
-#: any.pm:1568
+#: any.pm:1561
#, fuzzy, c-format
msgid "%s (hardware clock set to local time)"
msgstr "Arloġġ tal-kompjuter issettjat GMT"
-#: any.pm:1570
+#: any.pm:1563
#, c-format
msgid "NTP Server"
msgstr "Server NTP"
-#: any.pm:1571
+#: any.pm:1564
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sinkronizzazzjoni tal-ħin awtomatiku (permezz ta' NTP)"
@@ -1072,7 +1072,7 @@ msgid "Domain Admin Password"
msgstr "Password ta' amministrazzjoni tad-dominju"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:998
+#: bootloader.pm:1014
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1087,47 +1087,47 @@ msgstr ""
"stenna ghall-ghazla implicita\n"
"\n"
-#: bootloader.pm:1190
+#: bootloader.pm:1206
#, c-format
msgid "LILO with text menu"
msgstr "LILO b'menu testwali"
-#: bootloader.pm:1191
+#: bootloader.pm:1207
#, c-format
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1192
+#: bootloader.pm:1208
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
-#: bootloader.pm:1193
+#: bootloader.pm:1209
#, c-format
msgid "GRUB with text menu"
msgstr ""
-#: bootloader.pm:1194
+#: bootloader.pm:1210
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:1195
+#: bootloader.pm:1211
#, c-format
msgid "SILO"
msgstr ""
-#: bootloader.pm:1281
+#: bootloader.pm:1297
#, c-format
msgid "not enough room in /boot"
msgstr "M'hemmx biżżejjed spazju fuq /boot"
-#: bootloader.pm:2030
+#: bootloader.pm:2079
#, c-format
msgid "You cannot install the bootloader on a %s partition\n"
msgstr "Ma tistax tinstalla l-bootloader fil-partizzjoni %s\n"
-#: bootloader.pm:2197
+#: bootloader.pm:2248
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
@@ -1136,7 +1136,7 @@ msgstr ""
"Il-konfigurazzjoni tal-bootloader trid tiġi aġġornata għax il-partizzjoni "
"inbidlilha n-numru"
-#: bootloader.pm:2210
+#: bootloader.pm:2261
#, c-format
msgid ""
"The bootloader cannot be installed correctly. You have to boot rescue and "
@@ -1145,7 +1145,7 @@ msgstr ""
"Il-bootloader ma jistax jiġi nstallat sew. Trid tibbutja \"rescue\" u "
"tagħżel \"%s\""
-#: bootloader.pm:2211
+#: bootloader.pm:2262
#, c-format
msgid "Re-install Boot Loader"
msgstr "Erġa' Installa bootloader"
@@ -1243,7 +1243,7 @@ msgstr "Post għall-immontar"
msgid "Options"
msgstr "Għażliet"
-#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:453
+#: diskdrake/dav.pm:68 interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Remove"
msgstr "Neħħi"
@@ -1349,7 +1349,7 @@ msgid "Continue"
msgstr "Kompli"
#: diskdrake/hd_gtk.pm:188 fs/partitioning_wizard.pm:555 interactive.pm:654
-#: interactive/gtk.pm:809 interactive/gtk.pm:827 interactive/gtk.pm:848
+#: interactive/gtk.pm:813 interactive/gtk.pm:831 interactive/gtk.pm:862
#: ugtk2.pm:936
#, c-format
msgid "Help"
@@ -1471,7 +1471,7 @@ msgid "More"
msgstr "Iżjed"
#: diskdrake/interactive.pm:281 diskdrake/interactive.pm:294
-#: diskdrake/interactive.pm:1293
+#: diskdrake/interactive.pm:1293 mygtk2.pm:1221
#, fuzzy, c-format
msgid "Confirmation"
msgstr "Konfigurazzjoni"
@@ -1835,8 +1835,8 @@ msgid ""
"To ensure data integrity after resizing the partition(s),\n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
-"Biex tassigura l-integrità tad-data wara li tibdel id-daqs tal-partizzjoni"
-"(jiet),\n"
+"Biex tassigura l-integrità tad-data wara li tibdel id-daqs tal-"
+"partizzjoni(jiet),\n"
"se jiġu ċċekkjati l-filesystems meta terġa' tibbutja l-Windows(TM)"
#: diskdrake/interactive.pm:946 diskdrake/interactive.pm:1494
@@ -2267,8 +2267,8 @@ msgstr "Ibdel tip"
#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:130 interactive.pm:551
#: interactive/curses.pm:267 interactive/http.pm:104 interactive/http.pm:160
-#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846 ugtk2.pm:415
-#: ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
+#: interactive/stdio.pm:39 interactive/stdio.pm:148 mygtk2.pm:846
+#: mygtk2.pm:1222 ugtk2.pm:415 ugtk2.pm:517 ugtk2.pm:526 ugtk2.pm:812
#, c-format
msgid "Cancel"
msgstr "Ikkanċella"
@@ -2780,12 +2780,12 @@ msgstr ""
msgid "Partitioning failed: %s"
msgstr "Partizzjonament falla: %s"
-#: fs/type.pm:389
+#: fs/type.pm:390
#, c-format
msgid "You cannot use JFS for partitions smaller than 16MB"
msgstr "Ma tistax tuża JFS għal partizzjonijiet iżgħar minn 16MB"
-#: fs/type.pm:390
+#: fs/type.pm:391
#, c-format
msgid "You cannot use ReiserFS for partitions smaller than 32MB"
msgstr "Ma tistax tuża ReiserFS għal partizzjonijiet iżgħar minn 32MB"
@@ -3282,7 +3282,7 @@ msgstr ""
"- l-API il-ġdid li jipprovdi diversi faċilitajiet ġodda imma jiħtieġ l-użu "
"tal-libreriji l-ġodda ALSA.\n"
-#: harddrake/sound.pm:385 harddrake/sound.pm:468
+#: harddrake/sound.pm:385 harddrake/sound.pm:487
#, c-format
msgid "Driver:"
msgstr "Drajver:"
@@ -3335,60 +3335,74 @@ msgstr "Sib problemi fl-awdjo"
#: harddrake/sound.pm:430
#, c-format
msgid ""
-"The classic bug sound tester is to run the following commands:\n"
+"Below are some basic tips to help debug audio problems, but for accurate and "
+"up-to-date tips and tricks, please see:\n"
"\n"
+"https://wiki.mageia.org/en/Support:DebuggingSoundProblems\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
-"uses\n"
-"by default\n"
"\n"
-"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
-"currently uses\n"
"\n"
-"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
-"loaded or not\n"
+"- General Recommendation: Enable PulseAudio. If you have opted to not to use "
+"PulseAudio, we would strongly advise you enable it. For the vast majority of "
+"desktop use cases, PulseAudio is the recommended and best supported option.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
-"tell you if sound and alsa services are configured to be run on\n"
-"initlevel 3\n"
"\n"
-"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-msgstr ""
-"It-tester klassiku ta' bugs ta' l-awdjo se jħaddem dawn il-kmandijiet:\n"
+"- \"kmix\" (KDE), \"gnome-control-center sound\" (GNOME) and \"pauvucontrol"
+"\" (generic) will launch graphical applications to allow you to view your "
+"sound devices and adjust volume levels\n"
+"\n"
"\n"
+"- \"ps aux | grep pulseaudio\" will check that PulseAudio is running.\n"
"\n"
-"- \"lspcidrake -v | fgrep -i AUDIO\" jgħidlek liema drajver juża "
-"impliċitament\n"
-"il-kard tiegħek.\n"
-"- \"grep sound-slot /etc/modprobe.conf\" jgħidlek liema drajver juża "
-"bħalissa\n"
"\n"
-"- \"/sbin/lsmod\" jippermettilek tiċċekkja jekk il-modulu (drajver) hux\n"
-"imtella' jew le.\n"
+"- \"pactl stat\" will check that you can connect to the PulseAudio daemon "
+"correctly.\n"
"\n"
-"- \"/sbin/chkconfig --list sound\" u \"/sbin/chkconfig --list alsa\" \n"
-"jgħidulek jekk is-servizzi sound u alsa humiex konfigurati biex jitilgħu\n"
-"f'initlevel 3\n"
"\n"
-"- \"aumix -q\" jgħidlek jekk il-volum tal-awdjo hux mitfu jew le\n"
+"- \"pactl list sink-inputs\" will tell you which programs are currently "
+"playing sound via PulseAudio.\n"
"\n"
-"- \"/sbin/fuser -v /dev/dsp\" jgħidlek liema programm qed juża l-kard\n"
-"tal-awdjo.\n"
+"\n"
+"- \"systemctl status osspd.service\" will tell you the current state of the "
+"OSS Proxy Daemon. This is used to enable sound from legacy applications "
+"which use the OSS sound API. You should install the \"ossp\" package if you "
+"need this functionality.\n"
+"\n"
+"\n"
+"- \"pacmd ls\" will give you a LOT of debug information about the current "
+"state of your audio.\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | grep -i audio\" will tell you which low-level driver "
+"your card uses by default.\n"
+"\n"
+"\n"
+"- \"/usr/sbin/lsmod | grep snd\" will enable you to check which sound "
+"related kernel modules (drivers) are loaded.\n"
+"\n"
+"\n"
+"- \"alsamixer -c 0\" will give you a text-based mixer to the low level ALSA "
+"mixer controls for first sound card\n"
+"\n"
+"\n"
+"- \"/usr/sbin/fuser -v /dev/snd/pcm* /dev/dsp\" will tell which programs are "
+"currently using the sound card directly (normally this should only show "
+"PulseAudio)\n"
+msgstr ""
-#: harddrake/sound.pm:457
+#: harddrake/sound.pm:476
#, c-format
msgid "Let me pick any driver"
msgstr "Ħallini nagħżel drajver ieħor"
-#: harddrake/sound.pm:460
+#: harddrake/sound.pm:479
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Agħżel drajver arbitrarju"
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
-#: harddrake/sound.pm:463
+#: harddrake/sound.pm:482
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
@@ -3468,12 +3482,12 @@ msgstr "Le"
msgid "Choose a file"
msgstr "Agħżel fajl"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Add"
msgstr "Żid"
-#: interactive.pm:388 interactive/gtk.pm:453
+#: interactive.pm:388 interactive/gtk.pm:457
#, c-format
msgid "Modify"
msgstr "Biddel"
@@ -3508,7 +3522,7 @@ msgstr "Direttorju lokali"
msgid "No such file"
msgstr "Fajl lokali"
-#: interactive/gtk.pm:592
+#: interactive/gtk.pm:596
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""
@@ -4795,17 +4809,17 @@ msgstr "Merħba għal %s"
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
-#: lvm.pm:149
+#: lvm.pm:152
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""
-#: lvm.pm:159
+#: lvm.pm:162
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "L-ewwel neħħi l-volumi loġiċi minn ġo fih\n"
-#: lvm.pm:202
+#: lvm.pm:205
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
@@ -5166,12 +5180,12 @@ msgstr "Trid tikklikkja din il-buttuna?"
msgid "Password is trivial to guess"
msgstr ""
-#: mygtk2.pm:1542
+#: mygtk2.pm:1565
#, c-format
msgid "Password should be resistant to basic attacks"
msgstr ""
-#: mygtk2.pm:1543 mygtk2.pm:1544
+#: mygtk2.pm:1566 mygtk2.pm:1567
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Password għall-utent"
@@ -5406,8 +5420,8 @@ msgid ""
"\n"
"- none if set to \"None\".\n"
"\n"
-"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
-"(5))."
+"To authorize the services you need, use /etc/hosts.allow (see hosts."
+"allow(5))."
msgstr ""
"Awtorizza:\n"
"\n"
@@ -6550,7 +6564,7 @@ msgstr "Amministrazzjoni remota"
msgid "Database Server"
msgstr "Server Database"
-#: services.pm:188 services.pm:227
+#: services.pm:188 services.pm:225
#, c-format
msgid "Services"
msgstr "Servizzi"
@@ -6565,22 +6579,22 @@ msgstr "Agħżel liema servizzi għandhom jittellgħu awtomatikament meta tixgħ
msgid "%d activated for %d registered"
msgstr "%d imtella' għal %d reġistrati"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "running"
msgstr "imtella'"
-#: services.pm:243
+#: services.pm:241
#, c-format
msgid "stopped"
msgstr "imwaqqaf"
-#: services.pm:248
+#: services.pm:246
#, c-format
msgid "Services and daemons"
msgstr "Servizzi u daemons"
-#: services.pm:254
+#: services.pm:252
#, c-format
msgid ""
"No additional information\n"
@@ -6589,27 +6603,27 @@ msgstr ""
"M'hemmx iżjed informazzjoni\n"
"dwar dan l-apparat, jiddispjaċini."
-#: services.pm:259 ugtk2.pm:924
+#: services.pm:257 ugtk2.pm:924
#, c-format
msgid "Info"
msgstr "Info"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "Start when requested"
msgstr "Tella' meta meħtieġ"
-#: services.pm:262
+#: services.pm:260
#, c-format
msgid "On boot"
msgstr "Malli tixgħel"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Start"
msgstr "Ibda"
-#: services.pm:280
+#: services.pm:278
#, c-format
msgid "Stop"
msgstr "Ieqaf"
@@ -6871,6 +6885,51 @@ msgid "Installation failed"
msgstr "Installazzjoni falliet"
#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
+#~ "uses\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services are configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "It-tester klassiku ta' bugs ta' l-awdjo se jħaddem dawn il-kmandijiet:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep -i AUDIO\" jgħidlek liema drajver juża "
+#~ "impliċitament\n"
+#~ "il-kard tiegħek.\n"
+#~ "- \"grep sound-slot /etc/modprobe.conf\" jgħidlek liema drajver juża "
+#~ "bħalissa\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" jippermettilek tiċċekkja jekk il-modulu (drajver) hux\n"
+#~ "imtella' jew le.\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" u \"/sbin/chkconfig --list alsa\" \n"
+#~ "jgħidulek jekk is-servizzi sound u alsa humiex konfigurati biex jitilgħu\n"
+#~ "f'initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" jgħidlek jekk il-volum tal-awdjo hux mitfu jew le\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" jgħidlek liema programm qed juża l-kard\n"
+#~ "tal-awdjo.\n"
+
+#~ msgid ""
#~ "Launch packet filtering for Linux kernel 2.2 series, to set\n"
#~ "up a firewall to protect your machine from network attacks."
#~ msgstr ""
@@ -6901,8 +6960,8 @@ msgstr "Installazzjoni falliet"
#~ "To ensure data integrity after resizing the partition(s), \n"
#~ "filesystem checks will be run on your next boot into Microsoft Windows®"
#~ msgstr ""
-#~ "Biex tassigura l-integrità tad-data wara li tibdel id-daqs tal-partizzjoni"
-#~ "(jiet),\n"
+#~ "Biex tassigura l-integrità tad-data wara li tibdel id-daqs tal-"
+#~ "partizzjoni(jiet),\n"
#~ "se jiġu ċċekkjati l-filesystems meta terġa' tibbutja l-Windows(TM)"
#~ msgid "Use the Microsoft Windows® partition for loopback"
@@ -7141,8 +7200,8 @@ msgstr "Installazzjoni falliet"
#~ "If networking is not yet enabled, Drakx will attempt to join the domain "
#~ "after the network setup step.\n"
#~ "Should this setup fail for some reason and domain authentication is not "
-#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows"
-#~ "(tm) Domain, and Admin Username/Password, after system boot.\n"
+#~ "working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your "
+#~ "Windows(tm) Domain, and Admin Username/Password, after system boot.\n"
#~ "The command 'wbinfo -t' will test whether your authentication secrets are "
#~ "good."
#~ msgstr ""
diff --git a/perl-install/share/po/nb.po b/perl-install/share/po/nb.po
index e11c31de6..c1aed04da 100644
--- a/perl-install/share/po/nb.po
+++ b/perl-install/share/po/nb.po