0, 'viewflash' => 1, 'viewsmilies' => 2, 'viewsigs' => 3, 'viewavatars' => 4, 'viewcensors' => 5, 'attachsig' => 6, 'bbcode' => 8, 'smilies' => 9, 'popuppm' => 10, 'sig_bbcode' => 15, 'sig_smilies' => 16, 'sig_links' => 17);
/**
* Constructor to set the lang path
*/
function __construct()
{
global $phpbb_root_path;
$this->lang_path = $phpbb_root_path . 'language/';
}
/**
* Function to set custom language path (able to use directory outside of phpBB)
*
* @param string $lang_path New language path used.
* @access public
*/
function set_custom_lang_path($lang_path)
{
$this->lang_path = $lang_path;
if (substr($this->lang_path, -1) != '/')
{
$this->lang_path .= '/';
}
}
/**
* Setup basic user-specific items (style, language, ...)
*/
function setup($lang_set = false, $style_id = false)
{
global $db, $phpbb_style, $template, $config, $auth, $phpEx, $phpbb_root_path, $cache;
global $phpbb_dispatcher;
if ($this->data['user_id'] != ANONYMOUS)
{
$user_lang_name = (file_exists($this->lang_path . $this->data['user_lang'] . "/common.$phpEx")) ? $this->data['user_lang'] : basename($config['default_lang']);
$user_date_format = $this->data['user_dateformat'];
$user_timezone = $this->data['user_timezone'];
}
else
{
$user_lang_name = basename($config['default_lang']);
$user_date_format = $config['default_dateformat'];
$user_timezone = $config['board_timezone'];
/**
* If a guest user is surfing, we try to guess his/her language first by obtaining the browser language
* If re-enabled we need to make sure only those languages installed are checked
* Commented out so we do not loose the code.
if ($request->header('Accept-Language'))
{
$accept_lang_ary = explode(',', $request->header('Accept-Language'));
foreach ($accept_lang_ary as $accept_lang)
{
// Set correct format ... guess full xx_YY form
$accept_lang = substr($accept_lang, 0, 2) . '_' . strtoupper(substr($accept_lang, 3, 2));
$accept_lang = basename($accept_lang);
if (file_exists($this->lang_path . $accept_lang . "/common.$phpEx"))
{
$user_lang_name = $config['default_lang'] = $accept_lang;
break;
}
else
{
// No match on xx_YY so try xx
$accept_lang = substr($accept_lang, 0, 2);
$accept_lang = basename($accept_lang);
if (file_exists($this->lang_path . $accept_lang . "/common.$phpEx"))
{
$user_lang_name = $config['default_lang'] = $accept_lang;
break;
}
}
}
}
*/
}
$user_data = $this->data;
/**
* Event to load language files and modify user data on every page
*
* @event core.user_setup
* @var array user_data Array with user's data row
* @var string user_lang_name Basename of the user's langauge
* @var string user_date_format User's date/time format
* @var string user_timezone User's timezone, should be one of
* http://www.php.net/manual/en/timezones.php
* @var mixed lang_set String or array of language files
* @var mixed style_id Style we are going to display
* @since 3.1-A1
*/
$vars = array('user_data', 'user_lang_name', 'user_date_format', 'user_timezone', 'lang_set', 'style_id');
extract($phpbb_dispatcher->trigger_event('core.user_setup', compact($vars)));
$this->data = $user_data;
$this->lang_name = $user_lang_name;
$this->date_format = $user_date_format;
try
{
$this->timezone = new DateTimeZone($user_timezone);
}
catch (Exception $e)
{
// If the timezone the user has selected is invalid, we fall back to UTC.
$this->timezone = new DateTimeZone('UTC');
}
// We include common language file here to not load it every time a custom language file is included
$lang = &$this->lang;
// Do not suppress error if in DEBUG_EXTRA mode
$include_result = (defined('DEBUG_EXTRA')) ? (include $this->lang_path . $this->lang_name . "/common.$phpEx") : (@include $this->lang_path . $this->lang_name . "/common.$phpEx");
if ($include_result === false)
{
die('Language file ' . $this->lang_path . $this->lang_name . "/common.$phpEx" . " couldn't be opened.");
}
$this->add_lang($lang_set);
unset($lang_set);
$style_request = request_var('style', 0);
if ($style_request && $auth->acl_get('a_styles') && !defined('ADMIN_START'))
{
global $SID, $_EXTRA_URL;
$style_id = $style_request;
$SID .= '&style=' . $style_id;
$_EXTRA_URL = array('style=' . $style_id);
}
else
{
// Set up style
$style_id = ($style_id) ? $style_id : ((!$config['override_user_style']) ? $this->data['user_style'] : $config['default_style']);
}
$sql = 'SELECT *
FROM ' . STYLES_TABLE . " s
WHERE s.style_id = $style_id";
$result = $db->sql_query($sql, 3600);
$this->style = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
// User has wrong style
if (!$this->style && $style_id == $this->data['user_style'])
{
$style_id = $this->data['user_style'] = $config['default_style'];
$sql = 'UPDATE ' . USERS_TABLE . "
SET user_style = $style_id
WHERE user_id = {$this->data['user_id']}";
$db->sql_query($sql);
$sql = 'SELECT *
FROM ' . STYLES_TABLE . " s
WHERE s.style_id = $style_id";
$result = $db->sql_query($sql, 3600);
$this->style = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
}
if (!$this->style)
{
trigger_error('Could not get style data', E_USER_ERROR);
}
// Now parse the cfg file and cache it
$parsed_items = $cache->obtain_cfg_items($this->style);
$check_for = array(
'pagination_sep' => (string) ', '
);
foreach ($check_for as $key => $default_value)
{
$this->style[$key] = (isset($parsed_items[$key])) ? $parsed_items[$key] : $default_value;
settype($this->style[$key], gettype($default_value));
if (is_string($default_value))
{
$this->style[$key] = htmlspecialchars($this->style[$key]);
}
}
$phpbb_style->set_style();
$this->img_lang = $this->lang_name;
// Call phpbb_user_session_handler() in case external application want to "bend" some variables or replace classes...
// After calling it we continue script execution...
phpbb_user_session_handler();
// If this function got called from the error handler we are finished here.
if (defined('IN_ERROR_HANDLER'))
{
return;
}
// Disable board if the install/ directory is still present
// For the brave development army we do not care about this, else we need to comment out this everytime we develop locally
if (!defined('DEBUG_EXTRA') && !defined('ADMIN_START') && !defined('IN_INSTALL') && !defined('IN_LOGIN') && file_exists($phpbb_root_path . 'install') && !is_file($phpbb_root_path . 'install'))
{
// Adjust the message slightly according to the permissions
if ($auth->acl_gets('a_', 'm_') || $auth->acl_getf_global('m_'))
{
$message = 'REMOVE_INSTALL';
}
else
{
$message = (!empty($config['board_disable_msg'])) ? $config['board_disable_msg'] : 'BOARD_DISABLE';
}
trigger_error($message);
}
// Is board disabled and user not an admin or moderator?
if ($config['board_disable'] && !defined('IN_LOGIN') && !$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_'))
{
if ($this->data['is_bot'])
{
send_status_line(503, 'Service Unavailable');
}
$message = (!empty($config['board_disable_msg'])) ? $config['board_disable_msg'] : 'BOARD_DISABLE';
trigger_error($message);
}
// Is load exceeded?
if ($config['limit_load'] && $this->load !== false)
{
if ($this->load > floatval($config['limit_load']) && !defined('IN_LOGIN') && !defined('IN_ADMIN'))
{
// Set board disabled to true to let the admins/mods get the proper notification
$config['board_disable'] = '1';
if (!$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_'))
{
if ($this->data['is_bot'])
{
send_status_line(503, 'Service Unavailable');
}
trigger_error('BOARD_UNAVAILABLE');
}
}
}
if (isset($this->data['session_viewonline']))
{
// Make sure the user is able to hide his session
if (!$this->data['session_viewonline'])
{
// Reset online status if not allowed to hide the session...
if (!$auth->acl_get('u_hideonline'))
{
$sql = 'UPDATE ' . SESSIONS_TABLE . '
SET session_viewonline = 1
WHERE session_user_id = ' . $this->data['user_id'];
$db->sql_query($sql);
$this->data['session_viewonline'] = 1;
}
}
else if (!$this->data['user_allow_viewonline'])
{
// the user wants to hide and is allowed to -> cloaking device on.
if ($auth->acl_get('u_hideonline'))
{
$sql = 'UPDATE ' . SESSIONS_TABLE . '
SET session_viewonline = 0
WHERE session_user_id = ' . $this->data['user_id'];
$db->sql_query($sql);
$this->data['session_viewonline'] = 0;
}
}
}
// Does the user need to change their password? If so, redirect to the
// ucp profile reg_details page ... of course do not redirect if we're already in the ucp
if (!defined('IN_ADMIN') && !defined('ADMIN_START') && $config['chg_passforce'] && !empty($this->data['is_registered']) && $auth->acl_get('u_chgpasswd') && $this->data['user_passchg'] < time() - ($config['chg_passforce'] * 86400))
{
if (strpos($this->page['query_string'], 'mode=reg_details') === false && $this->page['page_name'] != "ucp.$phpEx")
{
redirect(append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=profile&mode=reg_details'));
}
}
return;
}
/**
* More advanced language substitution
* Function to mimic sprintf() with the possibility of using phpBB's language system to substitute nullar/singular/plural forms.
* Params are the language key and the parameters to be substituted.
* This function/functionality is inspired by SHS` and Ashe.
*
* Example call: $user->lang('NUM_POSTS_IN_QUEUE', 1);
*
* If the first parameter is an array, the elements are used as keys and subkeys to get the language entry:
* Example: $user->lang(array('datetime', 'AGO'), 1) uses $user->lang['datetime']['AGO'] as language entry.
*/
function lang()
{
$args = func_get_args();
$key = $args[0];
if (is_array($key))
{
$lang = &$this->lang[array_shift($key)];
foreach ($key as $_key)
{
$lang = &$lang[$_key];
}
}
else
{
$lang = &$this->lang[$key];
}
// Return if language string does not exist
if (!isset($lang) || (!is_string($lang) && !is_array($lang)))
{
return $key;
}
// If the language entry is a string, we simply mimic sprintf() behaviour
if (is_string($lang))
{
if (sizeof($args) == 1)
{
return $lang;
}
// Replace key with language entry and simply pass along...
$args[0] = $lang;
return call_user_func_array('sprintf', $args);
}
else if (sizeof($lang) == 0)
{
// If the language entry is an empty array, we just return the language key
return $args[0];
}
// It is an array... now handle different nullar/singular/plural forms
$key_found = false;
// We now get the first number passed and will select the key based upon this number
for ($i = 1, $num_args = sizeof($args); $i < $num_args; $i++)
{
if (is_int($args[$i]) || is_float($args[$i]))
{
if ($args[$i] == 0 && isset($lang[0]))
{
// We allow each translation using plural forms to specify a version for the case of 0 things,
// so that "0 users" may be displayed as "No users".
$key_found = 0;
break;
}
else
{
$use_plural_form = $this->get_plural_form($args[$i]);
if (isset($lang[$use_plural_form]))
{
// The key we should use exists, so we use it.
$key_found = $use_plural_form;
}
else
{
// If the key we need to use does not exist, we fall back to the previous one.
$numbers = array_keys($lang);
foreach ($numbers as $num)
{
if ($num > $use_plural_form)
{
break;
}
$key_found = $num;
}
}
break;
}
}
}
// Ok, let's check if the key was found, else use the last entry (because it is mostly the plural form)
if ($key_found === false)
{
$numbers = array_keys($lang);
$key_found = end($numbers);
}
// Use the language string we determined and pass it to sprintf()
$args[0] = $lang[$key_found];
return call_user_func_array('sprintf', $args);
}
/**
* Determine which plural form we should use.
* For some languages this is not as simple as for English.
*
* @param $number int|float The number we want to get the plural case for. Float numbers are floored.
* @param $force_rule mixed False to use the plural rule of the language package
* or an integer to force a certain plural rule
* @return int The plural-case we need to use for the number plural-rule combination
*/
function get_plural_form($number, $force_rule = false)
{
$number = (int) $number;
// Default to English system
$plural_rule = ($force_rule !== false) ? $force_rule : ((isset($this->lang['PLURAL_RULE'])) ? $this->lang['PLURAL_RULE'] : 1);
return phpbb_get_plural_form($plural_rule, $number);
}
/**
* Add Language Items - use_db and use_help are assigned where needed (only use them to force inclusion)
*
* @param mixed $lang_set specifies the language entries to include
* @param bool $use_db internal variable for recursion, do not use
* @param bool $use_help internal variable for recursion, do not use
* @param string $ext_name The extension to load language from, or empty for core files
*
* Examples:
*
* $lang_set = array('posting', 'help' => 'faq');
* $lang_set = array('posting', 'viewtopic', 'help' => array('bbcode', 'faq'))
* $lang_set = array(array('posting', 'viewtopic'), 'help' => array('bbcode', 'faq'))
* $lang_set = 'posting'
* $lang_set = array('help' => 'faq', 'db' => array('help:faq', 'posting'))
*
*/
function add_lang($lang_set, $use_db = false, $use_help = false, $ext_name = '')
{
global $phpEx;
if (is_array($lang_set))
{
foreach ($lang_set as $key => $lang_file)
{
// Please do not delete this line.
// We have to force the type here, else [array] language inclusion will not work
$key = (string) $key;
if ($key == 'db')
{
$this->add_lang($lang_file, true, $use_help, $ext_name);
}
else if ($key == 'help')
{
$this->add_lang($lang_file, $use_db, true, $ext_name);
}
else if (!is_array($lang_file))
{
$this->set_lang($this->lang, $this->help, $lang_file, $use_db, $use_help, $ext_name);
}
else
{
$this->add_lang($lang_file, $use_db, $use_help, $ext_name);
}
}
unset($lang_set);
}
else if ($lang_set)
{
$this->set_lang($this->lang, $this->help, $lang_set, $use_db, $use_help, $ext_name);
}
}
/**
* Add Language Items from an extension - use_db and use_help are assigned where needed (only use them to force inclusion)
*
* @param string $ext_name The extension to load language from, or empty for core files
* @param mixed $lang_set specifies the language entries to include
* @param bool $use_db internal variable for recursion, do not use
* @param bool $use_help internal variable for recursion, do not use
*/
function add_lang_ext($ext_name, $lang_set, $use_db = false, $use_help = false)
{
if ($ext_name === '/')
{
$ext_name = '';
}
$this->add_lang($lang_set, $use_db, $use_help, $ext_name);
}
/**
* Set language entry (called by add_lang)
* @access private
*/
function set_lang(&$lang, &$help, $lang_file, $use_db = false, $use_help = false, $ext_name = '')
{
global $phpbb_root_path, $phpEx;
// Make sure the language name is set (if the user setup did not happen it is not set)
if (!$this->lang_name)
{
global $config;
$this->lang_name = basename($config['default_lang']);
}
// $lang == $this->lang
// $help == $this->help
// - add appropriate variables here, name them as they are used within the language file...
if (!$use_db)
{
if ($use_help && strpos($lang_file, '/') !== false)
{
$filename = dirname($lang_file) . '/help_' . basename($lang_file);
}
else
{
$filename = (($use_help) ? 'help_' : '') . $lang_file;
}
if ($ext_name)
{
global $phpbb_extension_manager;
$ext_path = $phpbb_extension_manager->get_extension_path($ext_name, true);
$lang_path = $ext_path . 'language/';
}
else
{
$lang_path = $this->lang_path;
}
if (strpos($phpbb_root_path . $filename, $lang_path . $this->lang_name . '/') === 0)
{
$language_filename = $phpbb_root_path . $filename;
}
else
{
$language_filename = $lang_path . $this->lang_name . '/' . $filename . '.' . $phpEx;
}
if (!file_exists($language_filename))
{
global $config;
if ($this->lang_name == 'en')
{
// The user's selected language is missing the file, the board default's language is missing the file, and the file doesn't exist in /en.
$language_filename = str_replace($lang_path . 'en', $lang_path . $this->data['user_lang'], $language_filename);
trigger_error('Language file ' . $language_filename . ' couldn\'t be opened.', E_USER_ERROR);
}
else if ($this->lang_name == basename($config['default_lang']))
{
// Fall back to the English Language
$this->lang_name = 'en';
$this->set_lang($lang, $help, $lang_file, $use_db, $use_help, $ext_name);
}
else if ($this->lang_name == $this->data['user_lang'])
{
// Fall back to the board default language
$this->lang_name = basename($config['default_lang']);
$this->set_lang($lang, $help, $lang_file, $use_db, $use_help, $ext_name);
}
// Reset the lang name
$this->lang_name = (file_exists($lang_path . $this->data['user_lang'] . "/common.$phpEx")) ? $this->data['user_lang'] : basename($config['default_lang']);
return;
}
// Do not suppress error if in DEBUG_EXTRA mode
$include_result = (defined('DEBUG_EXTRA')) ? (include $language_filename) : (@include $language_filename);
if ($include_result === false)
{
trigger_error('Language file ' . $language_filename . ' couldn\'t be opened.', E_USER_ERROR);
}
}
else if ($use_db)
{
// Get Database Language Strings
// Put them into $lang if nothing is prefixed, put them into $help if help: is prefixed
// For example: help:faq, posting
}
}
/**
* Format user date
*
* @param int $gmepoch unix timestamp
* @param string $format date format in date() notation. | used to indicate relative dates, for example |d m Y|, h:i is translated to Today, h:i.
* @param bool $forcedate force non-relative date format.
*
* @return mixed translated date
*/
function format_date($gmepoch, $format = false, $forcedate = false)
{
static $utc;
if (!isset($utc))
{
$utc = new DateTimeZone('UTC');
}
$time = new phpbb_datetime($this, "@$gmepoch", $utc);
$time->setTimezone($this->timezone);
return $time->format($format, $forcedate);
}
/**
* Create a phpbb_datetime object in the context of the current user
*
* @since 3.1
* @param string $time String in a format accepted by strtotime().
* @param DateTimeZone $timezone Time zone of the time.
* @return phpbb_datetime Date time object linked to the current users locale
*/
public function create_datetime($time = 'now', DateTimeZone $timezone = null)
{
$timezone = $timezone ?: $this->timezone;
return new phpbb_datetime($this, $time, $timezone);
}
/**
* Get the UNIX timestamp for a datetime in the users timezone, so we can store it in the database.
*
* @param string $format Format of the entered date/time
* @param string $time Date/time with the timezone applied
* @param DateTimeZone $timezone Timezone of the date/time, falls back to timezone of current user
* @return int Returns the unix timestamp
*/
public function get_timestamp_from_format($format, $time, DateTimeZone $timezone = null)
{
$timezone = $timezone ?: $this->timezone;
$date = DateTime::createFromFormat($format, $time, $timezone);
return ($date !== false) ? $date->format('U') : false;
}
/**
* Get language id currently used by the user
*/
function get_iso_lang_id()
{
global $config, $db;
if (!empty($this->lang_id))
{
return $this->lang_id;
}
if (!$this->lang_name)
{
$this->lang_name = $config['default_lang'];
}
$sql = 'SELECT lang_id
FROM ' . LANG_TABLE . "
WHERE lang_iso = '" . $db->sql_escape($this->lang_name) . "'";
$result = $db->sql_query($sql);
$this->lang_id = (int) $db->sql_fetchfield('lang_id');
$db->sql_freeresult($result);
return $this->lang_id;
}
/**
* Get users profile fields
*/
function get_profile_fields($user_id)
{
global $db;
if (isset($this->profile_fields))
{
return;
}
$sql = 'SELECT *
FROM ' . PROFILE_FIELDS_DATA_TABLE . "
WHERE user_id = $user_id";
$result = $db->sql_query_limit($sql, 1);
$this->profile_fields = (!($row = $db->sql_fetchrow($result))) ? array() : $row;
$db->sql_freeresult($result);
}
/**
* Specify/Get image
*/
function img($img, $alt = '')
{
$alt = (!empty($this->lang[$alt])) ? $this->lang[$alt] : $alt;
return '' . $alt . '';
}
/**
* Get option bit field from user options.
*
* @param int $key option key, as defined in $keyoptions property.
* @param int $data bit field value to use, or false to use $this->data['user_options']
* @return bool true if the option is set in the bit field, false otherwise
*/
function optionget($key, $data = false)
{
$var = ($data !== false) ? $data : $this->data['user_options'];
return phpbb_optionget($this->keyoptions[$key], $var);
}
/**
* Set option bit field for user options.
*
* @param int $key Option key, as defined in $keyoptions property.
* @param bool $value True to set the option, false to clear the option.
* @param int $data Current bit field value, or false to use $this->data['user_options']
* @return int|bool If $data is false, the bit field is modified and
* written back to $this->data['user_options'], and
* return value is true if the bit field changed and
* false otherwise. If $data is not false, the new
* bitfield value is returned.
*/
function optionset($key, $value, $data = false)
{
$var = ($data !== false) ? $data : $this->data['user_options'];
$new_var = phpbb_optionset($this->keyoptions[$key], $value, $var);
if ($data === false)
{
if ($new_var != $var)
{
$this->data['user_options'] = $new_var;
return true;
}
else
{
return false;
}
}
else
{
return $new_var;
}
}
/**
* Funtion to make the user leave the NEWLY_REGISTERED system group.
* @access public
*/
function leave_newly_registered()
{
global $db;
if (empty($this->data['user_new']))
{
return false;
}
if (!function_exists('remove_newly_registered'))
{
global $phpbb_root_path, $phpEx;
include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
}
if ($group = remove_newly_registered($this->data['user_id'], $this->data))
{
$this->data['group_id'] = $group;
}
$this->data['user_permissions'] = '';
$this->data['user_new'] = 0;
return true;
}
/**
* Returns all password protected forum ids the user is currently NOT authenticated for.
*
* @return array Array of forum ids
* @access public
*/
function get_passworded_forums()
{
global $db;
$sql = 'SELECT f.forum_id, fa.user_id
FROM ' . FORUMS_TABLE . ' f
LEFT JOIN ' . FORUMS_ACCESS_TABLE . " fa
ON (fa.forum_id = f.forum_id
AND fa.session_id = '" . $db->sql_escape($this->session_id) . "')
WHERE f.forum_password <> ''";
$result = $db->sql_query($sql);
$forum_ids = array();
while ($row = $db->sql_fetchrow($result))
{
$forum_id = (int) $row['forum_id'];
if ($row['user_id'] != $this->data['user_id'])
{
$forum_ids[$forum_id] = $forum_id;
}
}
$db->sql_freeresult($result);
return $forum_ids;
}
}
erl-install/share/po/libDrakX.pot
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index e7f2db983..338d3ada7 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -51,7 +51,7 @@ sub partition_with_diskdrake { unless ($root = fs::get::root_(\@fstab)) { $ok = 0; $in->ask_okcancel(N("Partitioning"), N("You must have a root partition. -For this, create a partition (or click on an existing one). +To accomplish this, create a partition (or click on an existing one). Then choose action ``Mount point'' and set it to `/'"), 1) or return; } diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po index bd77e3bc7..d56c8439b 100644 --- a/perl-install/share/po/af.po +++ b/perl-install/share/po/af.po @@ -2537,7 +2537,7 @@ msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by." #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "U moet 'n wortelpartisie definieer.\n" diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po index 064ee2ea7..5b82bea69 100644 --- a/perl-install/share/po/am.po +++ b/perl-install/share/po/am.po @@ -2442,7 +2442,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po index c7b950e21..87681084f 100644 --- a/perl-install/share/po/ar.po +++ b/perl-install/share/po/ar.po @@ -2538,7 +2538,7 @@ msgstr "لا توجد مساحة تبديل كافية للقيام بالتثب #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "يجب أن تكون لديك تجزيء جذرية.\n" diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po index 36e9aac80..2e2dd3e6c 100644 --- a/perl-install/share/po/az.po +++ b/perl-install/share/po/az.po @@ -2538,7 +2538,7 @@ msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik, əlavə #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Bir kök bölməsi yaratmalısınız.\n" diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po index aa1c6f0aa..4fa108c60 100644 --- a/perl-install/share/po/be.po +++ b/perl-install/share/po/be.po @@ -2456,7 +2456,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Вы павінны мець каранёвы раздзел.\n" diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po index 4a77a2cd8..5a6f89474 100644 --- a/perl-install/share/po/bg.po +++ b/perl-install/share/po/bg.po @@ -2569,7 +2569,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Трябва да имате коренов дял.\n" diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po index 864933e80..5416c21ee 100644 --- a/perl-install/share/po/bn.po +++ b/perl-install/share/po/bn.po @@ -2550,7 +2550,7 @@ msgstr "ইনস্টলেশন সম্পূর্ন হবার জন #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "আপনার অবশ্যই একটি root পার্টিশন থাকতে হবে।\n" diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po index 247114062..7bd102451 100644 --- a/perl-install/share/po/br.po +++ b/perl-install/share/po/br.po @@ -2478,7 +2478,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Ret eo deoc'h kaout ur parzhadur gwrizienn.\n" diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po index dd3dcafcc..a48959b2f 100644 --- a/perl-install/share/po/bs.po +++ b/perl-install/share/po/bs.po @@ -2581,7 +2581,7 @@ msgstr "Nemam dovoljno swap prostora da dovršim instalaciju, molim dodajte još #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Morate imati root particiju.\n" diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po index 98380a273..f7ed55ab5 100644 --- a/perl-install/share/po/ca.po +++ b/perl-install/share/po/ca.po @@ -2565,7 +2565,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Heu de tenir una partició arrel.\n" diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po index 61e7b128b..21e3a2c15 100644 --- a/perl-install/share/po/cs.po +++ b/perl-install/share/po/cs.po @@ -2578,7 +2578,7 @@ msgstr "Není dostatek odkládacího prostoru k instalaci, prosím přidejte ně #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Musíte mít kořenový oddíl.\n" diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po index 2f9b019cb..3dedcbbf2 100644 --- a/perl-install/share/po/cy.po +++ b/perl-install/share/po/cy.po @@ -2573,7 +2573,7 @@ msgstr "Dim digon o le cyfnewid i gyflawni'r gosod, ychwanegwch" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Rhaid cael rhainiad root.\n" diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po index 59232d284..deb18fae3 100644 --- a/perl-install/share/po/da.po +++ b/perl-install/share/po/da.po @@ -2579,7 +2579,7 @@ msgstr "Ikke nok swap-plads til at gennemføre installationen, tilføj mere" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Du skal have en rod partition. For at få dette, lav en ny partition (eller " diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po index 9b6b63e9c..b687d8200 100644 --- a/perl-install/share/po/de.po +++ b/perl-install/share/po/de.po @@ -2635,7 +2635,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Sie brauchen eine root Partition.\n" diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po index 0051f8f7a..3395da3bc 100644 --- a/perl-install/share/po/el.po +++ b/perl-install/share/po/el.po @@ -2628,7 +2628,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Πρέπει να έχεις μια βασική (root) κατάτμηση.\n" diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po index f78a85d36..d35fa009c 100644 --- a/perl-install/share/po/eo.po +++ b/perl-install/share/po/eo.po @@ -2501,7 +2501,7 @@ msgstr "Nesufiĉa interŝanĝospaco por plenumi instalado, bonvolu aldoni iom" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Vi devas havi radikan subdiskon.\n" diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po index 3937c9915..565b32c8c 100644 --- a/perl-install/share/po/es.po +++ b/perl-install/share/po/es.po @@ -2602,7 +2602,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Debe tener una partición raíz.\n" diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po index 2b00b7d2e..d265c9f6e 100644 --- a/perl-install/share/po/et.po +++ b/perl-install/share/po/et.po @@ -2562,7 +2562,7 @@ msgstr "Saaleala on paigaldamiseks liiga väike, palun suurendage seda" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Teil peab olema juurpartitsioon.\n" diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po index 664e5a7f4..314daeb9b 100644 --- a/perl-install/share/po/eu.po +++ b/perl-install/share/po/eu.po @@ -2586,7 +2586,7 @@ msgstr "Ez dago nahikoa swap instalazioa burutzeko, gehitu egin beharko duzu" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Erroko partizioa eduki behar duzu.\n" diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po index 89287a32a..b94e405c3 100644 --- a/perl-install/share/po/fa.po +++ b/perl-install/share/po/fa.po @@ -2556,7 +2556,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "باید یک قسمتبندی ریشه داشته باشید.\n" diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po index b76f5a65f..5f2c2517c 100644 --- a/perl-install/share/po/fi.po +++ b/perl-install/share/po/fi.po @@ -2608,7 +2608,7 @@ msgstr "Sivutustilaa ei ole riittävästi, suurenna sitä" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Juuriosio tulee olla olemassa.\n" diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po index e844e04cf..eb4fa8e12 100644 --- a/perl-install/share/po/fr.po +++ b/perl-install/share/po/fr.po @@ -2680,7 +2680,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Vous devez avoir une partition racine.\n" diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po index f5031cc7f..a6475923d 100644 --- a/perl-install/share/po/fur.po +++ b/perl-install/share/po/fur.po @@ -2456,7 +2456,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po index 41065e675..a521e9edc 100644 --- a/perl-install/share/po/ga.po +++ b/perl-install/share/po/ga.po @@ -2451,7 +2451,7 @@ msgstr "Nil dothain spas malartu chun insealbhu, chuir leis an spas" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po index f319fadc9..638938978 100644 --- a/perl-install/share/po/gl.po +++ b/perl-install/share/po/gl.po @@ -2580,7 +2580,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Ten que ter unha partición raíz.\n" diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po index 2394aa8f1..744e7e869 100644 --- a/perl-install/share/po/he.po +++ b/perl-install/share/po/he.po @@ -2542,7 +2542,7 @@ msgstr "אין די זיכרון חלופה (swap) להשלמת ההתקנה. נ #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "חובה לבחר מחיצת שורש.\n" diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po index 228b36ffd..2332d3a21 100644 --- a/perl-install/share/po/hi.po +++ b/perl-install/share/po/hi.po @@ -2535,7 +2535,7 @@ msgstr "संसाधन की आवश्यकता को परिप #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "आपके पास एक रूट विभाजन होना चाहिए ।\n" diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po index 0d1cae741..d3637c621 100644 --- a/perl-install/share/po/hr.po +++ b/perl-install/share/po/hr.po @@ -2532,7 +2532,7 @@ msgstr "Nema dovoljno swapa za završetak instalacije, molim dodajte još" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Morate imati root particiju.\n" diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po index 62b52c89a..bdd5dcb97 100644 --- a/perl-install/share/po/hu.po +++ b/perl-install/share/po/hu.po @@ -2599,7 +2599,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Feltétlenül kell lennie gyökérpartíciónak.\n" diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po index a0943e352..35214aa5e 100644 --- a/perl-install/share/po/id.po +++ b/perl-install/share/po/id.po @@ -2574,7 +2574,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Anda harus memiliki partisi root.\n" diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po index 8cff10485..b8b97c29c 100644 --- a/perl-install/share/po/is.po +++ b/perl-install/share/po/is.po @@ -2568,7 +2568,7 @@ msgstr "Ekki nægjanlegt diskminni fyrir innsetningu. Bættu við það" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Þú verður að hafa rótarsneið fyrir Linux. Búðu því annað hvort\n" diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po index b2dc88b3e..e11e150c1 100644 --- a/perl-install/share/po/it.po +++ b/perl-install/share/po/it.po @@ -2600,7 +2600,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Deve esserci una partizione root.\n" diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po index 6f2f5ca34..8e52104a9 100644 --- a/perl-install/share/po/ja.po +++ b/perl-install/share/po/ja.po @@ -2557,7 +2557,7 @@ msgstr "インストールするには swap 領域が足りません。追加し #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "rootパーティションが必要です。\n" diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po index d8c591deb..064b57224 100644 --- a/perl-install/share/po/ko.po +++ b/perl-install/share/po/ko.po @@ -2531,7 +2531,7 @@ msgstr "스왑 메모리가 부족합니다. 좀 더 추가하세요." #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "루트 파티션이 반드시 필요합니다.\n" diff --git a/perl-install/share/po/ky.po b/perl-install/share/po/ky.po index f876822b1..8d552c22f 100644 --- a/perl-install/share/po/ky.po +++ b/perl-install/share/po/ky.po @@ -2562,7 +2562,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" diff --git a/perl-install/share/po/libDrakX.pot b/perl-install/share/po/libDrakX.pot index a6f254268..48603507d 100644 --- a/perl-install/share/po/libDrakX.pot +++ b/perl-install/share/po/libDrakX.pot @@ -2388,7 +2388,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po index 84c884081..f1950c714 100644 --- a/perl-install/share/po/lt.po +++ b/perl-install/share/po/lt.po @@ -2474,7 +2474,7 @@ msgstr "Nepakanka swap atminties įdiegimo vykdymui, prašom praplėsti" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Tu turi turėti root skirsnį. Tam sukurk skirsnį\n" diff --git a/perl-install/share/po/ltg.po b/perl-install/share/po/ltg.po index 7ea12ac55..6280e4aae 100644 --- a/perl-install/share/po/ltg.po +++ b/perl-install/share/po/ltg.po @@ -2515,7 +2515,7 @@ msgstr "Instaleišonys pabeigšonai napīteik swap vītys, palelynojit tū" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Jiusim ir napīcīšoma saknis sadaļa.\n" diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po index 6f7f2ee1f..189c266c9 100644 --- a/perl-install/share/po/lv.po +++ b/perl-install/share/po/lv.po @@ -2508,7 +2508,7 @@ msgstr "Instalēšanas pabeigšanai nepietiek swap, palieliniet swap" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Jums ir nepieciešama saknes sadaļa.\n" diff --git a/perl-install/share/po/mk.po b/perl-install/share/po/mk.po index cc8b57063..748a434a2 100644 --- a/perl-install/share/po/mk.po +++ b/perl-install/share/po/mk.po @@ -2546,7 +2546,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Мора да имате root-партиција.\n" diff --git a/perl-install/share/po/mn.po b/perl-install/share/po/mn.po index 2387a71ac..eda20d5a7 100644 --- a/perl-install/share/po/mn.po +++ b/perl-install/share/po/mn.po @@ -2444,7 +2444,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" diff --git a/perl-install/share/po/ms.po b/perl-install/share/po/ms.po index da311d321..904651e60 100644 --- a/perl-install/share/po/ms.po +++ b/perl-install/share/po/ms.po @@ -2450,7 +2450,7 @@ msgstr "" #, fuzzy, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "on dan" diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po index 115d8dd48..5aeff180f 100644 --- a/perl-install/share/po/mt.po +++ b/perl-install/share/po/mt.po @@ -2562,7 +2562,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Għandek bżonn partizzjoni \"root\".\n" diff --git a/perl-install/share/po/nb.po b/perl-install/share/po/nb.po index d78dfb5d3..90bba8958 100644 --- a/perl-install/share/po/nb.po +++ b/perl-install/share/po/nb.po @@ -2570,7 +2570,7 @@ msgstr "Ikke nok vekselplass for installering. Du må legge til mer." #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Du må ha en rotpartisjon.\n" diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po index 67bdfa0c0..cb364c2b2 100644 --- a/perl-install/share/po/nl.po +++ b/perl-install/share/po/nl.po @@ -2603,7 +2603,7 @@ msgstr "Niet genoeg swap voor de installatie, voeg er wat toe" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "U moet een root-partitie hebben.\n" diff --git a/perl-install/share/po/nn.po b/perl-install/share/po/nn.po index 0ddeb7754..c983fb35d 100644 --- a/perl-install/share/po/nn.po +++ b/perl-install/share/po/nn.po @@ -2556,7 +2556,7 @@ msgstr "Ikkje nok veksleplass for installering. Du må leggja til meir." #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Du må ha ein rotpartisjon.\n" diff --git a/perl-install/share/po/pa_IN.po b/perl-install/share/po/pa_IN.po index a843dcb65..be6bfc360 100644 --- a/perl-install/share/po/pa_IN.po +++ b/perl-install/share/po/pa_IN.po @@ -2531,7 +2531,7 @@ msgstr "ਇੰਸਟਾਲੇਸ਼ਨ ਪੂਰੀ ਕਰਨ ਲਈ ਲੋੜੀ #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "ਤੁਹਾਡੇ ਕੋਲ ਰੂਟ (root) ਭਾਗ ਹੋਣਾ ਜਰੂਰੀ ਹੈ।\n" diff --git a/perl-install/share/po/pl.po b/perl-install/share/po/pl.po index 24a4288cf..5a9eafb86 100644 --- a/perl-install/share/po/pl.po +++ b/perl-install/share/po/pl.po @@ -2607,7 +2607,7 @@ msgstr "Wielkość partycji wymiany jest niewystarczająca, należy ją zwiększ #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Wymagana jest obecność partycji root.\n" diff --git a/perl-install/share/po/pt.po b/perl-install/share/po/pt.po index 3188a332d..23d897771 100644 --- a/perl-install/share/po/pt.po +++ b/perl-install/share/po/pt.po @@ -2602,7 +2602,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Precisa ter uma partição de raiz.\n" diff --git a/perl-install/share/po/pt_BR.po b/perl-install/share/po/pt_BR.po index ed4b4292d..8178a7ecb 100644 --- a/perl-install/share/po/pt_BR.po +++ b/perl-install/share/po/pt_BR.po @@ -2607,7 +2607,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Você precisa ter uma partição raiz.\n" diff --git a/perl-install/share/po/ro.po b/perl-install/share/po/ro.po index 043628410..c107da8c7 100644 --- a/perl-install/share/po/ro.po +++ b/perl-install/share/po/ro.po @@ -2636,7 +2636,7 @@ msgstr "Swap insuficient pentru a termina instalarea, vă rog să-l măriți" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Trebuie să aveți o partiție root.\n" diff --git a/perl-install/share/po/ru.po b/perl-install/share/po/ru.po index d567bd37e..036552f9a 100644 --- a/perl-install/share/po/ru.po +++ b/perl-install/share/po/ru.po @@ -2587,7 +2587,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Необходимо создать корневой раздел.\n" diff --git a/perl-install/share/po/sc.po b/perl-install/share/po/sc.po index d59a58f5a..4981605a2 100644 --- a/perl-install/share/po/sc.po +++ b/perl-install/share/po/sc.po @@ -2507,7 +2507,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Depis tenni una pratzidura root.\n" diff --git a/perl-install/share/po/sk.po b/perl-install/share/po/sk.po index 61ba9bcb3..911c4114c 100644 --- a/perl-install/share/po/sk.po +++ b/perl-install/share/po/sk.po @@ -2547,7 +2547,7 @@ msgstr "Nedostatočne veľký swap pre dokončenie inštalácie, prosím zväč #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Musíte mať koreňový oddiel.\n" diff --git a/perl-install/share/po/sl.po b/perl-install/share/po/sl.po index 8a85823da..148f75226 100644 --- a/perl-install/share/po/sl.po +++ b/perl-install/share/po/sl.po @@ -2591,7 +2591,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Potrebujete korenski razdelek.\n" diff --git a/perl-install/share/po/sq.po b/perl-install/share/po/sq.po index 13e78e020..b1a0ba344 100644 --- a/perl-install/share/po/sq.po +++ b/perl-install/share/po/sq.po @@ -2547,7 +2547,7 @@ msgstr "" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Ju duhet të posedoni një ndarje rrënjëzore (root).\n" diff --git a/perl-install/share/po/sr.po b/perl-install/share/po/sr.po index 0acf48d46..b7c45c325 100644 --- a/perl-install/share/po/sr.po +++ b/perl-install/share/po/sr.po @@ -2515,7 +2515,7 @@ msgstr "Нема довољно swap-а да заврши инсталацију #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Морате имати root партицију.\n" diff --git a/perl-install/share/po/sr@Latn.po b/perl-install/share/po/sr@Latn.po index a12a85880..3f6f0214e 100644 --- a/perl-install/share/po/sr@Latn.po +++ b/perl-install/share/po/sr@Latn.po @@ -2516,7 +2516,7 @@ msgstr "Nema dovoljno swap-a da završi instalaciju, dodajte još swap-a" #, c-format msgid "" "You must have a root partition.\n" -"For this, create a partition (or click on an existing one).\n" +"To accomplish this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Morate imati root particiju.\n" diff --git a/perl-install/share/po/sv.po b/perl-install/share/po/sv.po index 0e41e10ea..2de7f48a8 100644 --- a/perl-install/share/po/sv.po +++ b/perl-install/share/po/sv.po |