aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp/mcp_reports.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/mcp/mcp_reports.php')
-rw-r--r--phpBB/includes/mcp/mcp_reports.php51
1 files changed, 32 insertions, 19 deletions
diff --git a/phpBB/includes/mcp/mcp_reports.php b/phpBB/includes/mcp/mcp_reports.php
index fa2fed842f..45265c89e7 100644
--- a/phpBB/includes/mcp/mcp_reports.php
+++ b/phpBB/includes/mcp/mcp_reports.php
@@ -35,13 +35,13 @@ class mcp_reports
function main($id, $mode)
{
- global $auth, $db, $user, $template, $cache;
+ global $auth, $db, $user, $template, $cache, $request;
global $config, $phpbb_root_path, $phpEx, $action, $phpbb_container, $phpbb_dispatcher;
include_once($phpbb_root_path . 'includes/functions_posting.' . $phpEx);
- $forum_id = request_var('f', 0);
- $start = request_var('start', 0);
+ $forum_id = $request->variable('f', 0);
+ $start = $request->variable('start', 0);
$this->page_title = 'MCP_REPORTS';
@@ -51,7 +51,7 @@ class mcp_reports
case 'delete':
include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx);
- $report_id_list = request_var('report_id_list', array(0));
+ $report_id_list = $request->variable('report_id_list', array(0));
if (!sizeof($report_id_list))
{
@@ -69,10 +69,11 @@ class mcp_reports
$user->add_lang(array('posting', 'viewforum', 'viewtopic'));
- $post_id = request_var('p', 0);
+ $post_id = $request->variable('p', 0);
// closed reports are accessed by report id
- $report_id = request_var('r', 0);
+ $report_id = $request->variable('r', 0);
+
$sql_ary = array(
'SELECT' => 'r.post_id, r.user_id, r.report_id, r.report_closed, report_time, r.report_text, r.reported_post_text, r.reported_post_uid, r.reported_post_bitfield, r.reported_post_enable_magic_url, r.reported_post_enable_smilies, r.reported_post_enable_bbcode, rr.reason_title, rr.reason_description, u.username, u.username_clean, u.user_colour',
@@ -138,9 +139,10 @@ class mcp_reports
trigger_error('NO_REPORT');
}
+ /* @var $phpbb_notifications \phpbb\notification\manager */
$phpbb_notifications = $phpbb_container->get('notification_manager');
- $phpbb_notifications->mark_notifications_read('notification.type.report_post', $post_id, $user->data['user_id']);
+ $phpbb_notifications->mark_notifications('report_post', $post_id, $user->data['user_id']);
if (!$report_id && $report['report_closed'])
{
@@ -287,7 +289,7 @@ class mcp_reports
'POST_SUBJECT' => ($post_info['post_subject']) ? $post_info['post_subject'] : $user->lang['NO_SUBJECT'],
'POST_DATE' => $user->format_date($post_info['post_time']),
'POST_IP' => $post_info['poster_ip'],
- 'POST_IPADDR' => ($auth->acl_get('m_info', $post_info['forum_id']) && request_var('lookup', '')) ? @gethostbyaddr($post_info['poster_ip']) : '',
+ 'POST_IPADDR' => ($auth->acl_get('m_info', $post_info['forum_id']) && $request->variable('lookup', '')) ? @gethostbyaddr($post_info['poster_ip']) : '',
'POST_ID' => $post_info['post_id'],
'U_LOOKUP_IP' => ($auth->acl_get('m_info', $post_info['forum_id'])) ? $this->u_action . '&r=' . $report_id . '&p=' . $post_id . '&f=' . $forum_id . '&lookup=' . $post_info['poster_ip'] . '#ip' : '',
@@ -299,7 +301,7 @@ class mcp_reports
case 'reports':
case 'reports_closed':
- $topic_id = request_var('t', 0);
+ $topic_id = $request->variable('t', 0);
$forum_info = array();
$forum_list_reports = get_forum_list('m_report', false, true);
@@ -371,9 +373,10 @@ class mcp_reports
$forum_list = array($forum_id);
}
+ /* @var $pagination \phpbb\pagination */
+ $pagination = $phpbb_container->get('pagination');
$forum_list[] = 0;
$forum_data = array();
- $pagination = $phpbb_container->get('pagination');
$forum_options = '<option value="0"' . (($forum_id == 0) ? ' selected="selected"' : '') . '>' . $user->lang['ALL_FORUMS'] . '</option>';
foreach ($forum_list_reports as $row)
@@ -519,7 +522,7 @@ class mcp_reports
*/
function close_report($report_id_list, $mode, $action, $pm = false)
{
- global $db, $template, $user, $config, $auth;
+ global $db, $template, $user, $config, $auth, $phpbb_log, $request;
global $phpEx, $phpbb_root_path, $phpbb_container;
$pm_where = ($pm) ? ' AND r.post_id = 0 ' : ' AND r.pm_id = 0 ';
@@ -557,19 +560,19 @@ function close_report($report_id_list, $mode, $action, $pm = false)
if ($action == 'delete' && strpos($user->data['session_page'], 'mode=report_details') !== false)
{
- $redirect = request_var('redirect', build_url(array('mode', 'r', 'quickmod')) . '&amp;mode=reports');
+ $redirect = $request->variable('redirect', build_url(array('mode', 'r', 'quickmod')) . '&amp;mode=reports');
}
else if ($action == 'delete' && strpos($user->data['session_page'], 'mode=pm_report_details') !== false)
{
- $redirect = request_var('redirect', build_url(array('mode', 'r', 'quickmod')) . '&amp;mode=pm_reports');
+ $redirect = $request->variable('redirect', build_url(array('mode', 'r', 'quickmod')) . '&amp;mode=pm_reports');
}
- else if ($action == 'close' && !request_var('r', 0))
+ else if ($action == 'close' && !$request->variable('r', 0))
{
- $redirect = request_var('redirect', build_url(array('mode', 'p', 'quickmod')) . '&amp;mode=' . $module);
+ $redirect = $request->variable('redirect', build_url(array('mode', 'p', 'quickmod')) . '&amp;mode=' . $module);
}
else
{
- $redirect = request_var('redirect', build_url(array('quickmod')));
+ $redirect = $request->variable('redirect', build_url(array('quickmod')));
}
$success_msg = '';
$forum_ids = array();
@@ -694,18 +697,28 @@ function close_report($report_id_list, $mode, $action, $pm = false)
}
unset($close_report_posts, $close_report_topics);
+ /* @var $phpbb_notifications \phpbb\notification\manager */
$phpbb_notifications = $phpbb_container->get('notification_manager');
foreach ($reports as $report)
{
if ($pm)
{
- add_log('mod', 0, 0, 'LOG_PM_REPORT_' . strtoupper($action) . 'D', $post_info[$report['pm_id']]['message_subject']);
+ $phpbb_log->add('mod', $user->data['user_id'], $user->ip, 'LOG_PM_REPORT_' . strtoupper($action) . 'D', false, array(
+ 'forum_id' => 0,
+ 'topic_id' => 0,
+ $post_info[$report['pm_id']]['message_subject']
+ ));
$phpbb_notifications->delete_notifications('notification.type.report_pm', $report['pm_id']);
}
else
{
- add_log('mod', $post_info[$report['post_id']]['forum_id'], $post_info[$report['post_id']]['topic_id'], 'LOG_REPORT_' . strtoupper($action) . 'D', $post_info[$report['post_id']]['post_subject']);
+ $phpbb_log->add('mod', $user->data['user_id'], $user->ip, 'LOG_REPORT_' . strtoupper($action) . 'D', false, array(
+ 'forum_id' => $post_info[$report['post_id']]['forum_id'],
+ 'topic_id' => $post_info[$report['post_id']]['topic_id'],
+ 'post_id' => $report['post_id'],
+ $post_info[$report['post_id']]['post_subject']
+ ));
$phpbb_notifications->delete_notifications('notification.type.report_post', $report['post_id']);
}
}
@@ -758,7 +771,7 @@ function close_report($report_id_list, $mode, $action, $pm = false)
confirm_box(false, $user->lang[strtoupper($action) . "_{$pm_prefix}REPORT" . ((sizeof($report_id_list) == 1) ? '' : 'S') . '_CONFIRM'], $s_hidden_fields);
}
- $redirect = request_var('redirect', "index.$phpEx");
+ $redirect = $request->variable('redirect', "index.$phpEx");
$redirect = reapply_sid($redirect);
if (!$success_msg)
ph'>
-rw-r--r--po/ja.po42
-rw-r--r--po/ka.po42
-rw-r--r--po/ko.po42
-rw-r--r--po/lt.po42
-rw-r--r--po/lv.po42
-rw-r--r--po/ms.po49
-rw-r--r--po/mt.po52
-rw-r--r--po/nb.po50
-rw-r--r--po/nl.po52
-rw-r--r--po/pl.po51
-rw-r--r--po/pt.po51
-rw-r--r--po/pt_BR.po52
-rw-r--r--po/ro.po52
-rw-r--r--po/ru.po51
-rw-r--r--po/sk.po48
-rw-r--r--po/sl.po51
-rw-r--r--po/sr.po52
-rw-r--r--po/sr@Latn.po52
-rw-r--r--po/sv.po51
-rw-r--r--po/tg.po49
-rw-r--r--po/th.po49
-rw-r--r--po/tr.po52
-rw-r--r--po/uk.po52
-rw-r--r--po/uz.po44
-rw-r--r--po/uz@Cyrl.po44
-rw-r--r--po/vi.po26
-rw-r--r--po/wa.po52
-rw-r--r--po/zh_CN.po48
-rw-r--r--po/zh_TW.po48
56 files changed, 1240 insertions, 1383 deletions
diff --git a/po/af.po b/po/af.po
index f0975dc0..234d3a28 100644
--- a/po/af.po
+++ b/po/af.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 3.3\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: Fri May 19 2000 13:02:12+0200\n"
"Last-Translator: Schalk W. Cronj <schalkc@ntaba.co.za>\n"
"Language-Team: Afrikaans <mandrake@af.org.za>\n"
@@ -392,11 +392,6 @@ msgstr ""
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr ""
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr ""
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -406,6 +401,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr ""
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr ""
@@ -573,7 +573,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr ""
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr ""
@@ -630,12 +630,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr ""
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -681,14 +675,14 @@ msgstr ""
msgid "skipping package %s"
msgstr "geen pakket het die naam %s nie\n"
-#: ../urpmq:1
+#: ../urpm.pm:1
#, c-format
-msgid " names or rpm files given on command line are queried.\n"
+msgid "Invalid signature (%s)"
msgstr ""
-#: ../urpmi:1
+#: ../urpmq:1
#, c-format
-msgid "Invalid signature (%s)"
+msgid " names or rpm files given on command line are queried.\n"
msgstr ""
#: ../urpmi:1
@@ -732,11 +726,6 @@ msgstr "Net die supergebruiker kan plaaslike pakkette installeer"
msgid "due to conflicts with %s"
msgstr ""
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr ""
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -749,6 +738,11 @@ msgstr "Moet ons 'n installasie sonder afhanklikheidstoetsing probeer? (j/N) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr ""
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr ""
@@ -931,7 +925,7 @@ msgstr ""
msgid " -a - select all packages matching expression.\n"
msgstr ""
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr ""
@@ -997,7 +991,7 @@ msgstr ""
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr ""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index 22605c78..03552d94 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 3.3\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-25 15:45-0300\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic\n"
@@ -417,11 +417,6 @@ msgstr " -p - السماح بالبحث في المعطيات لي
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr " --list-nodes - list available nodes when using --parallel.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "جاري بناء hdlist [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -433,6 +428,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "جاري بناء hdlist [%s]"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "جاري اختبار ملف MD5SUM"
@@ -609,7 +609,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - select all media.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "توقيع مفقود (%s)"
@@ -668,13 +668,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "جاري تثبيت الحزمة `%s' (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - force complete computation of depslist.ordered file.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -720,6 +713,11 @@ msgstr "جاري اضافة الحزمة %s (id=%d, eid=%d, تحديث=%d, مل
msgid "skipping package %s"
msgstr "جاري تخطي الحزمة %s"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "توقيع غير صالح (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -727,11 +725,6 @@ msgstr " الأسماء أو ملفات rpm المعطاة على سطر الأ
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "توقيع غير صالح (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -776,11 +769,6 @@ msgstr "لم يمكن تحليل ملف hdlist لـ \"%s\""
msgid "due to conflicts with %s"
msgstr "بسبب التعارض مع %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "removing %d obsolete headers in cache"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -793,6 +781,11 @@ msgstr "محاولة التثبيت دون التأكد من الاعتمادا
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "removing %d obsolete headers in cache"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "الوسيط الافتراضي \"%s\" غير محلي, تم تجاهل الوسيط"
@@ -1001,7 +994,7 @@ msgstr "لم يمكن ايجاد وسيلة لتنزيل الملفات (curl أ
msgid " -a - select all packages matching expression.\n"
msgstr " -a - اختر كل الحزم المتفقة مع المعامل.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "مفتاح هوية غير صالح (%s)"
@@ -1068,7 +1061,7 @@ msgstr "هل تريد متابعة التثبيت؟"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "لم يمكن قراءة ملف rpm [%s] من الوسيط \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "تم بناء ملف تخليق hdlist للوسيط \"%s\""
@@ -1870,6 +1863,11 @@ msgstr ""
" --test - verify if the installation can be achieved correctly.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/az.po b/po/az.po
index 2e71f43b..f4efe48d 100644
--- a/po/az.po
+++ b/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-az\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-30 14:25+0300\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azərbaycan <gnome@azitt.com>\n"
@@ -425,11 +425,6 @@ msgstr ""
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr " --list-nodes - mövcud düyümləri --paralel işlədərkən göstər.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "[%s] hdlist faylı inşa edilir"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -442,6 +437,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "[%s] hdlist faylı inşa edilir"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "MD5SUM faylı sınanır"
@@ -622,7 +622,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - medya seç.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "Əksik imza (%s)"
@@ -684,13 +684,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "`%s' paketi qurulur (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - depslist.ordered faylını tamamilə hesablamaya zorla.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -736,6 +729,11 @@ msgstr "%s paketi əlavə edilir (id=%d, eid=%d, yeniləmə=%d, fayl=%s)"
msgid "skipping package %s"
msgstr "%s paketi keçilir"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "Hökmsüz imza (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -743,11 +741,6 @@ msgstr " əmr sətirində verilən adlar ya da rpm faylları sorğulanacaq.\n"
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "Hökmsüz imza (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -795,11 +788,6 @@ msgstr "\"%s\" hdlist faylı alına bilmir"
msgid "due to conflicts with %s"
msgstr "%s ilə yaranan toqquşma səbəbiylə"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "ön yaddaşdakı %d mütləq başlıqlar çıxardılır"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -812,6 +800,11 @@ msgstr "Paket asılılıqlarına fikir vermədən qurmağı sınayım? (b/X) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "ön yaddaşdakı %d mütləq başlıqlar çıxardılır"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "\"%s\" vertual medyumu yerli deyil, medyum rədd edildi"
@@ -1021,7 +1014,7 @@ msgstr "vebdənendirmə (hazırda curl və wget) tapılmadı\n"
msgid " -a - select all packages matching expression.\n"
msgstr " -a - qaydaya uyğun gələn bütün paketləri seç.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "Hökmsüz Qiymət ID (%s)"
@@ -1087,7 +1080,7 @@ msgstr "Quruluma davam etmək istəyirsiniz ?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "\"%s\" medyasından [%s] rpm faylı oxuna bilmir"
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "\"%s\" medyası hdlist sintezi inşa edilid"
@@ -1891,6 +1884,11 @@ msgid ""
msgstr " --test - qurulumun düzgün edilə biləcəyini yoxla.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - depslist.ordered faylını tamamilə hesablamaya zorla.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/bg.po b/po/bg.po
index 763cb963..5880dca5 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-bg\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-18 15:59+0300\n"
"Last-Translator: Boyan Ivanov <boyan17@bulgaria.com>\n"
"Language-Team: Bulgarian <dict@linux.zonebg.com>\n"
@@ -437,11 +437,6 @@ msgstr ""
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr " --all - ."
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr ""
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -451,6 +446,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr ""
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr ""
@@ -628,7 +628,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr ""
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr ""
@@ -696,12 +696,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr ""
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -749,14 +743,14 @@ msgstr ""
msgid "skipping package %s"
msgstr " %s"
-#: ../urpmq:1
+#: ../urpm.pm:1
#, c-format
-msgid " names or rpm files given on command line are queried.\n"
+msgid "Invalid signature (%s)"
msgstr ""
-#: ../urpmi:1
+#: ../urpmq:1
#, c-format
-msgid "Invalid signature (%s)"
+msgid " names or rpm files given on command line are queried.\n"
msgstr ""
#: ../urpmi:1
@@ -810,11 +804,6 @@ msgstr " hdlist \"%s\""
msgid "due to conflicts with %s"
msgstr ""
-#: ../urpm.pm:1
-#, fuzzy, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr " %d "
-
# Another meaning of the word is in the sens "The iron is good medium for the eletricity"
# in this case must be ""
#: ../urpmi.addmedia:1
@@ -827,6 +816,11 @@ msgstr " \"%s\"\n"
msgid "Try installation without checking dependencies? (y/N) "
msgstr " ? (/) "
+#: ../urpm.pm:1
+#, fuzzy, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr " %d "
+
# Another meaning of the word is in the sens "The iron is good medium for the eletricity"
# in this case must be ""
# "list" is translated in the meaning of "list file"
@@ -1035,7 +1029,7 @@ msgstr ""
msgid " -a - select all packages matching expression.\n"
msgstr " -a - .\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr ""
@@ -1108,7 +1102,7 @@ msgstr ""
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr " rpm [%s] \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, fuzzy, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr " hdlist \"%s\""
diff --git a/po/bs.po b/po/bs.po
index 0444c03b..d2a6f5fd 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-bs\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-09-01 20:55+0200\n"
"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
"Language-Team: Bosnian <lokal@lugbih.org>\n"
@@ -425,11 +425,6 @@ msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr ""
" --list-nodes - izlistaj dostupne nodove kod koritenja --parallel.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "pravim hdlist [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -441,6 +436,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "pravim hdlist [%s]"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "ispitujem MD5SUM datoteku"
@@ -619,7 +619,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - izaberi sve medije.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "Nedostaje potpis (%s)"
@@ -679,13 +679,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "Instaliram paket `%s' (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - prinudi potpuno izraunavanje depslist.ordered datoteke.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -731,6 +724,11 @@ msgstr "dodajem paket %s (id=%d, eid=%d, update=%d, file=%s)"
msgid "skipping package %s"
msgstr "preskaem paket %s"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "Neispravan potpis (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -738,11 +736,6 @@ msgstr " imena ili rpm datoteke dati na komandnoj liniji e biti ispitani.\n"
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "Neispravan potpis (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -787,11 +780,6 @@ msgstr "ne mogu obraditi hdlist datoteku za \"%s\""
msgid "due to conflicts with %s"
msgstr "zbog konflikta sa %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "uklanjam %d prevazienih zaglavlja iz spremnika"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -804,6 +792,11 @@ msgstr "Da pokuam instalaciju bez provjere ovisnosti? (d/N) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "uklanjam %d prevazienih zaglavlja iz spremnika"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "virtuelni medij \"%s\" nije lokalan, ignoriem ga"
@@ -1010,7 +1003,7 @@ msgstr "nije pronaen webfetch (trenutno curl ili wget)\n"
msgid " -a - select all packages matching expression.\n"
msgstr " -a - izaberi sve pakete koji odgovaraju izrazu.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "Neispravan ID kljua (%s)"
@@ -1077,7 +1070,7 @@ msgstr "elite li nastaviti instalaciju ?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "ne mogu proitati rpm datoteku [%s] sa medija \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "izgraena hdlist synthesis datoteka za medij \"%s\""
@@ -1880,6 +1873,12 @@ msgid ""
msgstr ""
" --test - provjeri da li se instalacija moe ispravno izvriti.\n"
+#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - prinudi potpuno izraunavanje depslist.ordered "
+#~ "datoteke.\n"
+
#~ msgid "urpmf version %s"
#~ msgstr "urpmf verzija %s"
diff --git a/po/ca.po b/po/ca.po
index 1185a6a8..fc95d37f 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-ca\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-25 13:37+0200\n"
"Last-Translator: Albert Astals Cid <astals11@terra.es>\n"
"Language-Team: Catalan <kde-i18n-ca@mail.kde.org>\n"
@@ -434,11 +434,6 @@ msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr ""
" --list-nodes - llista els nodes disponibles quan s'utilitza --parallel.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "s'est construint l'hdlist [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -451,6 +446,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "s'est construint l'hdlist [%s]"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "s'est examinant el fitxer MD5SUM"
@@ -639,7 +639,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - selecciona totes les fonts.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "Falta la signatura (%s)"
@@ -699,14 +699,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "S'est installant el paquet `%s' (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - fora la computaci completa del fitxer depslist."
-"ordered.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -753,6 +745,11 @@ msgstr "s'est afegint el paquet %s (id=%d, eid=%d, actualitza=%d, fitxer=%s)"
msgid "skipping package %s"
msgstr "s'est saltant el paquet %s"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "Signatura no vlida (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -760,11 +757,6 @@ msgstr ""
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "Signatura no vlida (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -810,11 +802,6 @@ msgstr "no es pot analitzar el fitxer hdlist de \"%s\""
msgid "due to conflicts with %s"
msgstr "degut a conflictes amb %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "s'estan esborrant %d capaleres obsoletes de la memria cau"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -828,6 +815,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "s'estan esborrant %d capaleres obsoletes de la memria cau"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "la font virtual \"%s\" no s local, font ignorada"
@@ -1038,7 +1030,7 @@ msgstr ""
" -a - selecciona tots els paquets que coincideixen amb "
"l'expressi.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "ID de clau no vlid (%s)"
@@ -1107,7 +1099,7 @@ msgstr "Voleu continuar la installaci ?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "no s'ha pogut llegir el fitxer rpm [%s] des de la font \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "s'ha construt el fitxer de sntesi hdlist per a la font \"%s\""
@@ -1908,6 +1900,12 @@ msgid ""
" --test - verify if the installation can be achieved correctly.\n"
msgstr " --test - verifica si la installaci pot ser duta a terme.\n"
+#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - fora la computaci completa del fitxer depslist."
+#~ "ordered.\n"
+
#, fuzzy
#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
diff --git a/po/cs.po b/po/cs.po
index f9cf7667..746d3928 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-cs\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-09-01 09:09GMT+0100\n"
"Last-Translator: Radek Vybíral <Radek.Vybiral@vsb.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@@ -432,11 +432,6 @@ msgstr ""
" --list-nodes - vypíše seznam uzlů k dispozici při použití volby --"
"parallel.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "vytvářím hdlist [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -449,6 +444,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "vytvářím hdlist [%s]"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "testuji MD5SUM soubor"
@@ -628,7 +628,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - vybere všechna média.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "Chybí podpis (%s)"
@@ -687,13 +687,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "Instaluji balíček `%s' (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - provede kompletní generování souboru depslists.ordered.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -741,6 +734,11 @@ msgstr "přidávám balíček %s (id=%d, eid=%d, aktualizace=%d, soubor=%s)"
msgid "skipping package %s"
msgstr "přeskakuji balíček %s"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "Neplatný podpis (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -749,11 +747,6 @@ msgstr ""
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "Neplatný podpis (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -800,11 +793,6 @@ msgstr "nelze zpracovat soubor hdlist pro zdroj \"%s\""
msgid "due to conflicts with %s"
msgstr "z důvodu konfliktů s %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "odebírám %d starých hlaviček"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -817,6 +805,11 @@ msgstr "Mám zkusit instalaci bez kontroly závislostí? (a/N) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "odebírám %d starých hlaviček"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "virtuální zdroj \"%s\" není lokální, zdroj se ignoruje"
@@ -1027,7 +1020,7 @@ msgstr "nebyl nalezen program webfetch (nebo curl či wget)\n"
msgid " -a - select all packages matching expression.\n"
msgstr " -a - vybere všechny balíčky vyhovující výrazu.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "Neplatné ID klíče (%s)"
@@ -1095,7 +1088,7 @@ msgstr "Chcete pokračovat v instalaci?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "nelze načíst soubor RPM [%s] pro zdroj \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "vytvářím syntézu pro hdlist pro zdroj \"%s\""
@@ -1901,6 +1894,11 @@ msgid ""
msgstr " --test - zkontrolovat, zda lze dokončit instalaci správně.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - provede kompletní generování souboru depslists.ordered.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/cy.po b/po/cy.po
index 960b2c0a..ffb893f2 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 3.3\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-03-02 17:16-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@meddal.org.uk>\n"
"Language-Team: Cymraeg/Welsh <rhoslyn.prys@meddal.org.uk>\n"
@@ -405,11 +405,6 @@ msgstr "chwilio"
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr "Argraffu tudalennau prawf"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr ""
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -419,6 +414,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr ""
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr ""
@@ -589,7 +589,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr "Argraffu tudalennau prawf"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr ""
@@ -646,12 +646,6 @@ msgstr "Nid oes modd gosod rhai pecynnau"
msgid "Installing package `%s' (%s/%s)..."
msgstr ""
-#: ../urpmi.update:1
-#, fuzzy, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr " llinell orchymyn ond heb enw'r pecyn)."
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -697,14 +691,14 @@ msgstr ""
msgid "skipping package %s"
msgstr "pecyn anhysbys"
-#: ../urpmq:1
+#: ../urpm.pm:1
#, c-format
-msgid " names or rpm files given on command line are queried.\n"
+msgid "Invalid signature (%s)"
msgstr ""
-#: ../urpmi:1
+#: ../urpmq:1
#, c-format
-msgid "Invalid signature (%s)"
+msgid " names or rpm files given on command line are queried.\n"
msgstr ""
#: ../urpmi:1
@@ -749,11 +743,6 @@ msgstr "Methu creu cyfrwng."
msgid "due to conflicts with %s"
msgstr "Mae %s yn gwrthdaro gyda %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr ""
-
#: ../urpmi.addmedia:1
#, fuzzy, c-format
msgid "unable to update medium \"%s\"\n"
@@ -766,6 +755,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr ""
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr ""
@@ -952,7 +946,7 @@ msgstr "heb ganfod webfetch (curl na wget)\n"
msgid " -a - select all packages matching expression.\n"
msgstr " llinell orchymyn ond heb enw'r pecyn)."
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr ""
@@ -1018,7 +1012,7 @@ msgstr ""
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "Methu creu cyfrwng."
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr ""
@@ -1780,6 +1774,11 @@ msgstr " --test - gwirio os oes modd gosod yn iawn.\n"
#, fuzzy
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr " llinell orchymyn ond heb enw'r pecyn)."
+
+#, fuzzy
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/da.po b/po/da.po
index e7db4f9a..4d4e64ce 100644
--- a/po/da.po
+++ b/po/da.po
@@ -22,7 +22,7 @@
msgid ""
msgstr ""
"Project-Id-Version: da\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-09-01 13:21+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: <dansk@klid.dk>\n"
@@ -435,11 +435,6 @@ msgstr " -p - tillad sgning i 'provides' for at finde pakke.\n"
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr " --list-nodes - list tilgngelige knuder ved brug af --parallel.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "bygger hdlist [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -451,6 +446,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "bygger hdlist [%s]"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "undersger MD5SUM-fil"
@@ -632,7 +632,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - vlg alle medier.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "Manglende signatur (%s)"
@@ -691,13 +691,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "Installerer pakke `%s' (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - gennemfr fuldstndig beregning af depslist.ordered-fil.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -743,6 +736,11 @@ msgstr "tilfjer pakke %s (id=%d, eid=%d, opdatering=%d, fil=%s)"
msgid "skipping package %s"
msgstr "overspringer pakke %s"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "Ugyldig signatur (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -750,11 +748,6 @@ msgstr " navne eller rpm-filer givne p kommandolinjen bliver forespurgt.\n"
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "Ugyldig signatur (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -799,11 +792,6 @@ msgstr "kunne ikke fortolke hdlist-filen \"%s\""
msgid "due to conflicts with %s"
msgstr "grundet modstrid med %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "fjerner %d forldede hoveder i hurtiglager"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -816,6 +804,11 @@ msgstr "Prv installation uden at tjekke afhngigheder? (j/N) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "fjerner %d forldede hoveder i hurtiglager"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "virtuelt medie \"%s\" er ikke lokalt, medie ignoreret"
@@ -1021,7 +1014,7 @@ msgstr "intet webhentningprogram (for jeblikket 'curl' eller 'wget') fundet\n"
msgid " -a - select all packages matching expression.\n"
msgstr " -a - vlg alle pakker matchende udtryk.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "Ugyldig ngle-id (%s)"
@@ -1089,7 +1082,7 @@ msgstr "nsker du at fortstte installationen?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "kunne ikke lse rpm-fil [%s] fra medie \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "byggede hdlist syntese fil for medie \"%s\""
@@ -1887,6 +1880,12 @@ msgid ""
msgstr " --test - afprv om installationen kan udfres korrekt.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - gennemfr fuldstndig beregning af depslist.ordered-"
+#~ "fil.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/de.po b/po/de.po
index fc094d58..2868d85a 100644
--- a/po/de.po
+++ b/po/de.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 3.3\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-07-28 23:40+0200\n"
"Last-Translator: Stefan Siegel <siegel@linux-mandrake.com>\n"
"Language-Team: German <cooker-i18n@linux-mandrake.com>\n"
@@ -432,11 +432,6 @@ msgstr ""
" --list-nodes - Alle für „--parallel“ verfügbaren Knoten\n"
" auflisten.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "Erstellen der HD-Liste [%s]."
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -446,6 +441,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "Erstellen der HD-Liste [%s]."
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "Prüfen der MD5-Summe"
@@ -623,7 +623,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - Alle Medien auswählen.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr ""
@@ -685,14 +685,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "Installieren des Pakets „%s“ (%s/%s) ..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - Erzwinge komplette Berechnung der Datei depslist."
-"ordered.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -738,6 +730,11 @@ msgstr ""
msgid "skipping package %s"
msgstr "Paket %s augelassen"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "Falsche Signatur (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -747,11 +744,6 @@ msgstr ""
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "Falsche Signatur (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -799,11 +791,6 @@ msgstr "Die Struktur der HD-Liste von „%s“ ist nicht korrekt."
msgid "due to conflicts with %s"
msgstr "wegen Konflikten mit %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "Entferne %d veraltete Informationen aus dem Cache."
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -815,6 +802,11 @@ msgid "Try installation without checking dependencies? (y/N) "
msgstr "Soll ich eine Installation ohne Abhängigkeitstest versuchen? (j/N) "
#: ../urpm.pm:1
+#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "Entferne %d veraltete Informationen aus dem Cache."
+
+#: ../urpm.pm:1
#, fuzzy, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr ""
@@ -1033,7 +1025,7 @@ msgstr ""
" -a - Wähle alle Treffer in der Kommandozeile.\n"
"\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr ""
@@ -1105,7 +1097,7 @@ msgstr "Wollen Sie die Installation fortsetzen?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "Ich kann das RPM-Paket „%s“ von Medium „%s“ nicht lesen."
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "Erstellen der HD-Liste für das Medium „%s“"
@@ -1921,6 +1913,12 @@ msgid ""
msgstr ""
" --test - Versuch, ob die Installation korrekt verlaufen wird.\n"
+#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - Erzwinge komplette Berechnung der Datei depslist."
+#~ "ordered.\n"
+
#, fuzzy
#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
diff --git a/po/el.po b/po/el.po
index 43d45fbf..9f7c1e61 100644
--- a/po/el.po
+++ b/po/el.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-el\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-06-14 23:30+0300\n"
"Last-Translator: (Nick Niktaris) <niktarin@yahoo.com>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
@@ -419,11 +419,6 @@ msgstr ""
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr " --all - tags."
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr " hdlist [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -433,6 +428,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr " hdlist [%s]"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr " MD5SUM"
@@ -606,7 +606,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - .\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr ""
@@ -668,12 +668,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr ""
-#: ../urpmi.update:1
-#, fuzzy, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr " --group - tag group: group."
-
#: ../urpm.pm:1
#, fuzzy, c-format
msgid "no entries relocated in depslist"
@@ -721,14 +715,14 @@ msgstr ""
msgid "skipping package %s"
msgstr " %s"
-#: ../urpmq:1
+#: ../urpm.pm:1
#, c-format
-msgid " names or rpm files given on command line are queried.\n"
+msgid "Invalid signature (%s)"
msgstr ""
-#: ../urpmi:1
+#: ../urpmq:1
#, c-format
-msgid "Invalid signature (%s)"
+msgid " names or rpm files given on command line are queried.\n"
msgstr ""
#: ../urpmi:1
@@ -780,11 +774,6 @@ msgstr " hdlist \"%s\""
msgid "due to conflicts with %s"
msgstr " %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr " %d cache"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -796,6 +785,11 @@ msgid "Try installation without checking dependencies? (y/N) "
msgstr " ; (/) "
#: ../urpm.pm:1
+#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr " %d cache"
+
+#: ../urpm.pm:1
#, fuzzy, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr ""
@@ -1004,7 +998,7 @@ msgstr ""
msgid " -a - select all packages matching expression.\n"
msgstr " --all - tags."
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr ""
@@ -1075,7 +1069,7 @@ msgstr " ;"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr " rpm [%s] \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr " hdlist \"%s\""
@@ -1861,6 +1855,11 @@ msgstr ""
#, fuzzy
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr " --group - tag group: group."
+
+#, fuzzy
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/eo.po b/po/eo.po
index 288b16b8..d32d481b 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-eo\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-22 15:28+0000\n"
"Last-Translator: Vilhelmo Lutermano <vlutermano@free.fr>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -424,11 +424,6 @@ msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr ""
" --list-nodes - listigas haveblajn nodojn kiam vi uzas --parallel.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "konstruas \"hdlist\" [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -441,6 +436,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "konstruas \"hdlist\" [%s]"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "mi kontrolas dosieron MD5SUM"
@@ -619,7 +619,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - elektu ĉiujn datenportilojn.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "Mankas signaturo (%s)"
@@ -679,13 +679,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "Mi instalas pakaĵon '%s' (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - devigu kompletan kalkuladon de dosiero depslist.ordered.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -731,6 +724,11 @@ msgstr "mi aldonas pakaĵon %s (id=%d, eid=%d, ĝisdatigo=%d, dosiero=%s)"
msgid "skipping package %s"
msgstr "transsaltu pakaĵon %s"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "Nevalida signaturo (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -739,11 +737,6 @@ msgstr ""
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "Nevalida signaturo (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -791,11 +784,6 @@ msgstr "ne povis analizi hdlist dosieron de \"%s\""
msgid "due to conflicts with %s"
msgstr "pro konflikto kun %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "forigas %d jam ne uzatajn ĉapdosierojn en kaŝejo"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -808,6 +796,11 @@ msgstr "Provu instaladon sen kontroli dependaĵojn? (j/N) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "forigas %d jam ne uzatajn ĉapdosierojn en kaŝejo"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "virtuala datenportilo \"%s\" ne estas loka, datenportilo ignorata"
@@ -1015,7 +1008,7 @@ msgstr "ne trovita webfetch [ret-prenilo] (kutime curl aŭ wget)\n"
msgid " -a - select all packages matching expression.\n"
msgstr " -a - elektu ĉiujn pakaĵojn kongruajn kun la esprimo.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "Nevalida Ŝlosil-ID (%s)"
@@ -1081,7 +1074,7 @@ msgstr "Ĉu vi deziras daŭrigi la instaladon ?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "ne povis legi rpm-an dosieron [%s] de medio \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "konstruis hdlist-an sintezan dosieron por medio \"%s\""
@@ -1885,6 +1878,12 @@ msgstr ""
" --test - kontrolu ĉu la instalado povas esti ĝuste arĥivota.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - devigu kompletan kalkuladon de dosiero depslist."
+#~ "ordered.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/es.po b/po/es.po
index 854ec880..0133adfe 100644
--- a/po/es.po
+++ b/po/es.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: es\n"
-"POT-Creation-Date: 2003-09-03 00:37+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-09-01 18:11-0300\n"
"Last-Translator: Fabian Mandelbaum <fabman@mandrakesoft.com>\n"
"Language-Team: Espaol <es@li.org>\n"
@@ -690,13 +690,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "Instalando paquete `%s' (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - fuerza computacin total de arch. depslist.ordered.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -800,11 +793,6 @@ msgstr "no se puede interpretar el archivo hdlist de %s"
msgid "due to conflicts with %s"
msgstr "debido a conflictos con %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "quitando %d encabezados obsoletos del cache"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -817,6 +805,11 @@ msgstr "Intentar de instalar sin verificar las dependencias? (s/N) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "quitando %d encabezados obsoletos del cache"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "soporte virtual %s no es local, soporte ignorado"
@@ -1096,7 +1089,7 @@ msgstr "Desea continuar con la instalacin?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "no se puede leer el archivo rpm [%s] del soporte %s"
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "se gener el archivo de sntesis hdlist para el soporte %s"
@@ -1911,6 +1904,11 @@ msgstr ""
"problemas.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - fuerza computacin total de arch. depslist.ordered.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/et.po b/po/et.po
index 8ca28281..90023381 100644
--- a/po/et.po
+++ b/po/et.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-et\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-31 12:30+0300\n"
"Last-Translator: Marek Laane <bald@online.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -418,11 +418,6 @@ msgstr ""
" --list-nodes - näitab saadaolevaid sõlmi, kui kasutatakse võtit --"
"parallel.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "hdlist [%s] loomine"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -434,6 +429,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "hdlist [%s] loomine"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "MD5SUM faili uurimine"
@@ -612,7 +612,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - valib kõik andmekandjad.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "Puudub signatuur (%s)"
@@ -672,12 +672,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "Paketi '%s' paigaldamine (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr " -d - arvutab faili depslist.ordered täielikult.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -724,6 +718,11 @@ msgstr "paketi %s lisamine (id=%d, eid=%d, uuendus=%d, fail=%s)"
msgid "skipping package %s"
msgstr "pakett %s jäetakse vahele"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "Vigane signatuur (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -731,11 +730,6 @@ msgstr " päring esitatakse käsureal antud nimede või rpm-failide kohta.\n"
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "Vigane signatuur (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -784,11 +778,6 @@ msgstr "\"%s\" hdlist faili analüüs ebaõnnestus"
msgid "due to conflicts with %s"
msgstr "konflikti tõttu %s-ga"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "puhvrist eemaldati %d iganenud päis(t)"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -801,6 +790,11 @@ msgstr "Kas proovida paigaldust ilma sõltuvusi kontrollimata? (j/E)"
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "puhvrist eemaldati %d iganenud päis(t)"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "virtuaalne andmekandja \"%s\" ei ole kohalik, seda eiratakse"
@@ -1009,7 +1003,7 @@ msgstr "ei leitud ühtegi veebitõmbajat (praegu curl või wget)\n"
msgid " -a - select all packages matching expression.\n"
msgstr " -a - valib kõik käsureaga sobivad paketid.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "Vigane võtme ID (%s)"
@@ -1077,7 +1071,7 @@ msgstr "Kas jätkata paigaldusega?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "rpm faili [%s] lugemine andmekandjalt \"%s\" ebaõnnestus"
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "loodi hdlist sünteesifail andmekandjale \"%s\""
@@ -1888,6 +1882,10 @@ msgstr ""
" --test - kontrollitakse, kas paigaldus on korrektselt võimalik.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr " -d - arvutab faili depslist.ordered täielikult.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/eu.po b/po/eu.po
index 7744d058..643adde0 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 3.3\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-21 19:11+0200\n"
"Last-Translator: Iigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Euskara <linux-eu@chanae.alphanet.ch>\n"
@@ -434,11 +434,6 @@ msgstr ""
" --list-nodes - zerrendatu \"--parallel\" erabiltzerakoan dauden nodo "
"erabilgarriak.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "[%s] goiburuko-zerrenda eraikitzen"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -448,6 +443,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "[%s] goiburuko-zerrenda eraikitzen"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "MD5SUM fitxategia aztertzen"
@@ -630,7 +630,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - euskarri guztiak hautatzen ditu.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr ""
@@ -692,14 +692,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr ""
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - depslist.ordered fitxategiaren kontaketa osoa bultzatzen "
-"du.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -747,6 +739,11 @@ msgstr ""
msgid "skipping package %s"
msgstr "%s paketea ezikusten"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "Sinadura baliogabea (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -754,11 +751,6 @@ msgstr " komando-lerroko izenak edo rpm-fitxategiak kontsultatu dira.\n"
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "Sinadura baliogabea (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -806,11 +798,6 @@ msgstr "ezin da \"%s\" (r)en goiburuko-zerrendaren fitxategia analizatu"
msgid "due to conflicts with %s"
msgstr "%s-rekin dituen gatazkengatik"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "%d goiburuko zaharkituak cache-tik ezabatzen"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -823,6 +810,11 @@ msgstr "Mendekotasunak egiaztatu gabe instalatzen saiatu nahi duzu? (B/e) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "%d goiburuko zaharkituak cache-tik ezabatzen"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "\"%s\" alegiazko sorburua ez da bertakoa, sorburu ezikusita"
@@ -1035,7 +1027,7 @@ msgid " -a - select all packages matching expression.\n"
msgstr ""
" -a - hautatu adierazpenarekin bat datozen pakete guztiak.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "Gako ID baliogabea (%s)"
@@ -1104,7 +1096,7 @@ msgstr "Instalazioarekin aurrera egin nahi duzu ?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "ezin da [%s] rpm fitxategia \"%s\" euskarrian irakurri"
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "eraiki \"%s\" euskarrirako goiburuko-zerrendaren laburpen-fitxategia"
@@ -1939,6 +1931,12 @@ msgstr ""
"du.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - depslist.ordered fitxategiaren kontaketa osoa "
+#~ "bultzatzen du.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/fa.po b/po/fa.po
index 9e91e325..9a2dc72a 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-fa\n"
-"POT-Creation-Date: 2003-09-03 00:37+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-09-02 21:59+0200\n"
"Last-Translator: Abbas Izad <abbasizad@hotmail.com>\n"
"Language-Team: Persian\n"
@@ -672,12 +672,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "نصب بسته `%s' (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr " -d - اجبار تکمیل حساب کردن پرونده‌ی depslist.ordered.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -783,11 +777,6 @@ msgstr "نمی‌توان پرونده hdlist \"%s\" را تجزیه کرد"
msgid "due to conflicts with %s"
msgstr "بدلیل اختلاف با %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "برداشتن سرآیند‌های کهنه %d در حافظه‌ی پنهان"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -800,6 +789,11 @@ msgstr "تلاش برای نصب بدون بررسی وابستگی‌ها؟ (y/
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "برداشتن سرآیند‌های کهنه %d در حافظه‌ی پنهان"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "رسانه مجازی \"%s\" محلی نیست، رسانه نادیده‌ گرفته شد"
@@ -1073,7 +1067,7 @@ msgstr "آیا می‌خواهید نصب را ادامه دهید؟"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "نمی‌توان پرونده rpm [%s] را از رسانه \"%s\" خواند"
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "ساختن پرونده ترکیب hdlist برای رسانه \"%s\""
@@ -1876,6 +1870,11 @@ msgstr ""
" --test - تصدیق کردن اینکه آیا نصب می‌تواند بدرستی انجام پذیرد.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - اجبار تکمیل حساب کردن پرونده‌ی depslist.ordered.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/fi.po b/po/fi.po
index da7ead67..e810452a 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-fi - MDK Release 9.2\n"
-"POT-Creation-Date: 2003-09-03 00:37+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-09-02 20:40+0300\n"
"Last-Translator: Thomas Backlund <tmb@iki.fi>\n"
"Language-Team: Finnish <cooker-i18n@linux-mandake.com>\n"
@@ -686,14 +686,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "Asennetaan pakettia `%s' ( %s / %s )..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - pakota täydellinen laskenta depslist.ordered "
-"tiedostolle.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -799,11 +791,6 @@ msgstr "hdlist-tiedostoa \"%s\" ei voida tulkata"
msgid "due to conflicts with %s"
msgstr "ristiriidan takia %s kanssa"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "poistetaan %d ylimääräisiä otsikkotietoja välimuistista"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -816,6 +803,11 @@ msgstr "Yritä asentaa ilman riippuvuuksia? (k/E) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "poistetaan %d ylimääräisiä otsikkotietoja välimuistista"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "virtuaalinen media \"%s\" ei ole paikallinen, media ohitettu"
@@ -1100,7 +1092,7 @@ msgstr "Haluatko jatkaa asennuksen ?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "rpm-tiedostoa [%s] ei voitu lukea medialta \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "rakenna hdlist-synteesitiedosto medialle \"%s\""
@@ -1909,6 +1901,12 @@ msgid ""
msgstr " --test - varmista että asennusta voidaan hoitaa oikein.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - pakota täydellinen laskenta depslist.ordered "
+#~ "tiedostolle.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/fr.po b/po/fr.po
index d85b73e6..30887acb 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -17,7 +17,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-fr\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-07 17:23+0200\n"
"Last-Translator: Combelles Christophe <ccomb@club-internet.fr>\n"
"Language-Team: french <cooker-i18n@linux-mandrake.com>\n"
@@ -454,11 +454,6 @@ msgstr ""
" --list-nodes - montrer tous les noeuds disponibles en.\n"
" utilisant --parallel.\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "cration du fichier hdlist [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -468,6 +463,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "cration du fichier hdlist [%s]"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "examen du fichier de somme de contrle MD5"
@@ -653,7 +653,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - slectionne toutes les sources\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "Signature absente (%s)"
@@ -713,13 +713,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "Installation du paquetage %s (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - force le calcul complet du fichier depslist.ordered\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -768,6 +761,11 @@ msgstr "ajout du paquetage %s (id=%d, eid=%d, update=%d, file=%s)"
msgid "skipping package %s"
msgstr "Je saute le paquetage %s"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "Signature incorrecte (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -777,11 +775,6 @@ msgstr ""
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "Signature incorrecte (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -830,11 +823,6 @@ msgstr "impossible d'analyser le fichier hdlist de %s"
msgid "due to conflicts with %s"
msgstr "%s est en conflit"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "destruction de %d en-ttes obsoltes dans le cache"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -847,6 +835,11 @@ msgstr "Essayer d'installer sans vrifier les dpendances? (o/N) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "destruction de %d en-ttes obsoltes dans le cache"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "la source virtuelle %s n'est pas locale, source ignore"
@@ -1066,7 +1059,7 @@ msgstr ""
" -a - slectionne toutes les paquetages correspondants \n"
" l'expression\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "Identifiant de clef incorrect (%s)"
@@ -1139,7 +1132,7 @@ msgstr "Voulez-vous continuer l'installation?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "impossible de lire le fichier rpm [%s] depuis la source %s"
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "fichier de synthse cr pour la source %s"
@@ -1970,6 +1963,11 @@ msgstr ""
" --test - verifier si l'installation fonctionne correctement.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - force le calcul complet du fichier depslist.ordered\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/ga.po b/po/ga.po
index a4c90453..831921e6 100644
--- a/po/ga.po
+++ b/po/ga.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 1.5\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2000-04-06 10:25+0100\n"
"Last-Translator: Proinnsias Breathnach <breatpro@dublin.ml.com>\n"
"Language-Team: Gaeilge <ga@li.org>\n"
@@ -389,11 +389,6 @@ msgstr ""
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr ""
-#: ../urpm.pm:1
-#, fuzzy, c-format
-msgid "building hdlist [%s]"
-msgstr "lamh depslist comhad [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -403,6 +398,11 @@ msgstr ""
#: ../urpm.pm:1
#, fuzzy, c-format
+msgid "building hdlist [%s]"
+msgstr "lamh depslist comhad [%s]"
+
+#: ../urpm.pm:1
+#, fuzzy, c-format
msgid "examining MD5SUM file"
msgstr "lamh depslist comhad [%s]"
@@ -570,7 +570,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr ""
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr ""
@@ -627,12 +627,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr ""
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -678,14 +672,14 @@ msgstr ""
msgid "skipping package %s"
msgstr "paciste ar bith den ainm %s"
-#: ../urpmq:1
+#: ../urpm.pm:1
#, c-format
-msgid " names or rpm files given on command line are queried.\n"
+msgid "Invalid signature (%s)"
msgstr ""
-#: ../urpmi:1
+#: ../urpmq:1
#, c-format
-msgid "Invalid signature (%s)"
+msgid " names or rpm files given on command line are queried.\n"
msgstr ""
#: ../urpmi:1
@@ -729,11 +723,6 @@ msgstr "T droch ainmchomad rpm [%s]"
msgid "due to conflicts with %s"
msgstr ""
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr ""
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -746,6 +735,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr ""
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr ""
@@ -928,7 +922,7 @@ msgstr ""
msgid " -a - select all packages matching expression.\n"
msgstr ""
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr ""
@@ -994,7 +988,7 @@ msgstr ""
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "T droch ainmchomad rpm [%s]"
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, fuzzy, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "lamh depslist comhad [%s]"
diff --git a/po/gl.po b/po/gl.po
index a4e0bf00..2dcf4c17 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 3.3\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2000-05-09 23:50+0200\n"
"Last-Translator: Jess Bravo lvarez <jba@pobox.com>\n"
"Language-Team: Galician <gpul-traduccion@ceu.fi.udc.es>\n"
@@ -392,11 +392,6 @@ msgstr ""
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr ""
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr ""
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -406,6 +401,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr ""
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr ""
@@ -573,7 +573,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr ""
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr ""
@@ -630,12 +630,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr ""
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -681,14 +675,14 @@ msgstr ""
msgid "skipping package %s"
msgstr "non hai ningn paquete co nome %s\n"
-#: ../urpmq:1
+#: ../urpm.pm:1
#, c-format
-msgid " names or rpm files given on command line are queried.\n"
+msgid "Invalid signature (%s)"
msgstr ""
-#: ../urpmi:1
+#: ../urpmq:1
#, c-format
-msgid "Invalid signature (%s)"
+msgid " names or rpm files given on command line are queried.\n"
msgstr ""
#: ../urpmi:1
@@ -732,11 +726,6 @@ msgstr "S se lle permite superusuario instalar paquetes locais"
msgid "due to conflicts with %s"
msgstr ""
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr ""
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -749,6 +738,11 @@ msgstr "Probar a instalacin sen comprobar as dependencias? (s/N) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr ""
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr ""
@@ -931,7 +925,7 @@ msgstr ""
msgid " -a - select all packages matching expression.\n"
msgstr ""
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr ""
@@ -997,7 +991,7 @@ msgstr ""
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "S se lle permite superusuario instalar paquetes locais"
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, fuzzy, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "S se lle permite superusuario instalar paquetes locais"
diff --git a/po/he.po b/po/he.po
index df5c97fb..cb699da3 100644
--- a/po/he.po
+++ b/po/he.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-13 01:19+0300\n"
"Last-Translator: Eli <aplaut@netvision.net.il>\n"
"Language-Team: Hebrew <>\n"
@@ -419,11 +419,6 @@ msgstr " -p - הרשאת חיפוש ספקים כדי למצוא ח
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr ""
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "בונה hdlist [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -435,6 +430,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "בונה hdlist [%s]"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "בודק את קובץ החתימות MD5SUM"
@@ -608,7 +608,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - בחר את כל המדיה.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "חתימה חסרה (%s)"
@@ -667,12 +667,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "מתקין חבילה `%s' (%s/%s)..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr " -d - אילוץ חישוב מלא של הקובץ depslist.ordered.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -719,6 +713,11 @@ msgstr "מוסיף חבילה %s (id=%d, eid=%d, עדכון=%d, קובץ=%s)"
msgid "skipping package %s"
msgstr "מדלג על חבילה %s"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "חתימה לא תקפה (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -726,11 +725,6 @@ msgstr " שמות או קובצי RPM שניתנו בשורת הפקודה נמ
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "חתימה לא תקפה (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -775,11 +769,6 @@ msgstr "אין אפשרות לפענח את קובץ ה-hdlist של \"%s\""
msgid "due to conflicts with %s"
msgstr "עקב התנגשות עם %s"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "מסיר %d ספקי כותרות במטמון"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -792,6 +781,11 @@ msgstr "האם לנסות להתקין ללא בדיקת תלויות? (כן/ל
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "מסיר %d ספקי כותרות במטמון"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "מאגר וירטואלי \"%s\" לא מקומי, התעלמות מאגר"
@@ -984,7 +978,7 @@ msgstr ""
msgid " -a - select all packages matching expression.\n"
msgstr " -a - בחירת כל החבילות עם ביטוי מתאים.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "מפתח זהות לא תקין (%s)"
@@ -1050,7 +1044,7 @@ msgstr "האם להמשיך בתהליך ההתקנה?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "אין אפשרות לקרוא את קובץ ה-RPM [%s] מ \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr ""
@@ -1829,6 +1823,10 @@ msgid ""
msgstr " --test - וידוי שההתקנת החבילה יכולה להסתיים בהצלחה.\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr " -d - אילוץ חישוב מלא של הקובץ depslist.ordered.\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/hi.po b/po/hi.po
index 6b2d8452..9721c393 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-hi\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-13 20:11+0530\n"
"Last-Translator: धनंजय शर्मा (Dhananjaya Sharma) <dysxhi@yahoo.co.in>\n"
"Language-Team: हिन्दी, भारत (Hindi, India) <dysxhi@yahoo.co.in>\n"
@@ -427,11 +427,6 @@ msgstr ""
" --list-nodes - उपलब्ध नोडस को दिखायें, जब --parallel विकल्प का उपयोग किया जा "
"रहा हो\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "हार्डडिस्क-सूची [%s] का निर्माण किया जा रहा है"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -444,6 +439,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "हार्डडिस्क-सूची [%s] का निर्माण किया जा रहा है"
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "एम०डी०५सम (md5sum) संचिका का निरीक्षण किया जा रहा है"
@@ -622,7 +622,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - सभी माध्यमों का चयन करें\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "विलुप्त हस्ताक्षर (%s)"
@@ -685,12 +685,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "`%s' (%s/%s) पैकेज को संसाधित किया जा रहा है..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr " -d - depslist.ordered संचिका की सम्पूर्ण गणना को बलपूर्वक करें\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -736,6 +730,11 @@ msgstr "%s पैकेज को जोड़ा जा रहा है (आई
msgid "skipping package %s"
msgstr "%s पैकेज को त्यागा जा रहा है"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "अवैध हस्ताक्षर (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -743,11 +742,6 @@ msgstr " निर्देश वाक्य पर दिये हुए
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "अवैध हस्ताक्षर (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -796,11 +790,6 @@ msgstr "\"%s\" की हार्डडिस्क संचिका का
msgid "due to conflicts with %s"
msgstr "%s के साथ विरोधाभास के कारण"
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "कैच में स्थित %d अप्रचलित शीर्षकों को हटाया जा रहा है"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -813,6 +802,11 @@ msgstr "संसाधन का प्रयास बिना आधिन
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "कैच में स्थित %d अप्रचलित शीर्षकों को हटाया जा रहा है"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "काल्पनिक माध्यम \"%s\" स्थानीय नहीं है, माध्यम स्वीकार नहीं है"
@@ -1024,7 +1018,7 @@ msgstr "कोई वेबफ़ेच्च नहीं मिला (कर्
msgid " -a - select all packages matching expression.\n"
msgstr " -a - मिलती हुई अभिव्यक्तियों वाले सभी पैकेजों का चयन करें\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "अवैध कुंजी आई०डी० (%s)"
@@ -1093,7 +1087,7 @@ msgstr "क्या आप संसाधन जारी रखना चा
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "\"%s\" माध्यम से आर०पी०एम० संचिका [%s] को पढ़ने में असमर्थ"
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "\"%s\" माध्यम के लिए हार्डडिस्क-सूची की कृत्रिम संचिका बनायें"
@@ -1900,6 +1894,11 @@ msgid ""
msgstr " --test - जाँच करें कि संसाधन सफ़लता-पूर्वक किया जा सकता है\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - depslist.ordered संचिका की सम्पूर्ण गणना को बलपूर्वक करें\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/hr.po b/po/hr.po
index ddd54d2e..4768dc39 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi 3.3\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2002-03-08 13:56CET\n"
"Last-Translator: Vlatko Kosturjak <kost@iname.com>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -410,11 +410,6 @@ msgstr ""
msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr " --all - ispii sve oznake."
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "izgraujem hdlist [%s]"
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -423,6 +418,11 @@ msgid ""
msgstr ""
#: ../urpm.pm:1
+#, c-format
+msgid "building hdlist [%s]"
+msgstr "izgraujem hdlist [%s]"
+
+#: ../urpm.pm:1
#, fuzzy, c-format
msgid "examining MD5SUM file"
msgstr "ispitujem hdlist datoteku [%s]"
@@ -596,7 +596,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - odaberi sve medije.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr ""
@@ -653,13 +653,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr ""
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr ""
-" -d - prisiljava kompletan izraun depslist.ordered datoteke.\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -705,6 +698,11 @@ msgstr ""
msgid "skipping package %s"
msgstr "ne postoji paket pod nazivom %s"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr ""
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -712,11 +710,6 @@ msgstr " imena ili rpm datoteke dane na komandnoj liniji se ispituju.\n"
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr ""
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -761,11 +754,6 @@ msgstr "ne mogu obraditi hdlist datoteku od \"%s\""
msgid "due to conflicts with %s"
msgstr ""
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "uklanjam %d zastarjelih zaglavlja u prirunoj memoriji"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -777,6 +765,11 @@ msgid "Try installation without checking dependencies? (y/N) "
msgstr "Pokuati instalaciju bez provjere ovisnosti (d/N) "
#: ../urpm.pm:1
+#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "uklanjam %d zastarjelih zaglavlja u prirunoj memoriji"
+
+#: ../urpm.pm:1
#, fuzzy, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "medij \"%s\" pokuava koristiti ve koriteni popis, medij ignoriran"
@@ -980,7 +973,7 @@ msgstr "nije pronaen niti jedan webfetch (curl ili wget trenutno)\n"
msgid " -a - select all packages matching expression.\n"
msgstr " -a - odabire sve odgovarajue na komandnoj liniji.\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr ""
@@ -1048,7 +1041,7 @@ msgstr ""
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "ne mogu proitati rpm datoteku [%s] sa medija \"%s\""
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "napravljen hdlist sintezna datoteka za medij \"%s\""
@@ -1823,6 +1816,12 @@ msgid ""
" --test - verify if the installation can be achieved correctly.\n"
msgstr ""
+#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr ""
+#~ " -d - prisiljava kompletan izraun depslist.ordered "
+#~ "datoteke.\n"
+
#, fuzzy
#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
diff --git a/po/hu.po b/po/hu.po
index c0ddea66..20620d71 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: urpmi-hu\n"
-"POT-Creation-Date: 2003-08-30 13:34+0200\n"
+"POT-Creation-Date: 2003-09-04 20:39+0200\n"
"PO-Revision-Date: 2003-08-31 08:47+0200\n"
"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
"Language-Team: Hungarian\n"
@@ -439,11 +439,6 @@ msgid " --list-nodes - list available nodes when using --parallel.\n"
msgstr ""
" --list-nodes - az elrhet gpek listzsa --parallel hasznlata esetn\n"
-#: ../urpm.pm:1
-#, c-format
-msgid "building hdlist [%s]"
-msgstr "fejlclista ksztse: \"%s\""
-
#: ../urpmi:1 ../urpmq:1
#, c-format
msgid ""
@@ -455,6 +450,11 @@ msgstr ""
#: ../urpm.pm:1
#, c-format
+msgid "building hdlist [%s]"
+msgstr "fejlclista ksztse: \"%s\""
+
+#: ../urpm.pm:1
+#, c-format
msgid "examining MD5SUM file"
msgstr "az MD5SUM fjl vizsglata"
@@ -654,7 +654,7 @@ msgstr ""
msgid " -a - select all media.\n"
msgstr " -a - az sszes adatforrs kijellse\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Missing signature (%s)"
msgstr "Hinyz elektronikus alrs (%s)"
@@ -717,12 +717,6 @@ msgstr ""
msgid "Installing package `%s' (%s/%s)..."
msgstr "A(z) '%s' (%s/%s) csomag teleptse..."
-#: ../urpmi.update:1
-#, c-format
-msgid ""
-" -d - force complete computation of depslist.ordered file.\n"
-msgstr " -d - teljes depslist.ordered fjl ksztse\n"
-
#: ../urpm.pm:1
#, c-format
msgid "no entries relocated in depslist"
@@ -771,6 +765,11 @@ msgstr "csomag hozzadsa - %s (azonost=%d, eid=%d, frissts=%d, fjl=%s)"
msgid "skipping package %s"
msgstr "a(z) %s csomag kihagysa"
+#: ../urpm.pm:1
+#, c-format
+msgid "Invalid signature (%s)"
+msgstr "rvnytelen elektronikus alrs (%s)"
+
#: ../urpmq:1
#, c-format
msgid " names or rpm files given on command line are queried.\n"
@@ -779,11 +778,6 @@ msgstr ""
#: ../urpmi:1
#, c-format
-msgid "Invalid signature (%s)"
-msgstr "rvnytelen elektronikus alrs (%s)"
-
-#: ../urpmi:1
-#, c-format
msgid ""
"urpmi version %s\n"
"Copyright (C) 1999, 2000, 2001, 2002 MandrakeSoft.\n"
@@ -832,11 +826,6 @@ msgstr "fejlclista nem elemezhet: \"%s\""
msgid "due to conflicts with %s"
msgstr "ezzel val tkzs miatt: \"%s\""
-#: ../urpm.pm:1
-#, c-format
-msgid "removing %d obsolete headers in cache"
-msgstr "%d elavult fejlc eltvoltsa a gyorstrbl"
-
#: ../urpmi.addmedia:1
#, c-format
msgid "unable to update medium \"%s\"\n"
@@ -849,6 +838,11 @@ msgstr "Prbljam meg a teleptst a fggsgek ellenrzse nlkl? (i/N) "
#: ../urpm.pm:1
#, c-format
+msgid "removing %d obsolete headers in cache"
+msgstr "%d elavult fejlc eltvoltsa a gyorstrbl"
+
+#: ../urpm.pm:1
+#, c-format
msgid "virtual medium \"%s\" is not local, medium ignored"
msgstr "a(z) \"%s\" virtulis adatforrs nem helyi, ezrt nem lesz feldolgozva"
@@ -1067,7 +1061,7 @@ msgstr "nem tallhat webes letltprogram (curl vagy wget)\n"
msgid " -a - select all packages matching expression.\n"
msgstr " -a - a mintra illeszked csomagok kijellse\n"
-#: ../urpmi:1
+#: ../urpm.pm:1
#, c-format
msgid "Invalid Key ID (%s)"
msgstr "rvnytelen kulcsazonost (%s)"
@@ -1137,7 +1131,7 @@ msgstr "Szeretn folytatni a teleptst?"
msgid "unable to read rpm file [%s] from medium \"%s\""
msgstr "a(z) \"%s\" csomagfjl (RPM) nem olvashat a(z) \"%s\" adatforrsbl"
-#: ../urpm.pm:1
+#: ../urpm.pm:1 ../urpmi:1
#, c-format
msgid "built hdlist synthesis file for medium \"%s\""
msgstr "kiterjesztett fggsglista ksztse ehhez: \"%s\""
@@ -1979,6 +1973,10 @@ msgstr ""
" --test - annak ellenrzse, hogy a telepts vgrehajthat-e\n"
#~ msgid ""
+#~ " -d - force complete computation of depslist.ordered file.\n"
+#~ msgstr " -d - teljes depslist.ordered fjl ksztse\n"
+
+#~ msgid ""
#~ " --name - print tag name: rpm filename (assumed if no tag given "
#~ "on\n"
#~ " command line but without package name).\n"
diff --git a/po/id.po b/po/id.po
index 23934205..fe781867 100644
--- a/po/id.po
+++ b/po/id.po