SOURCES: parted-BIG_FAT_WARNING.patch, parted-etherd.patch, parted...

qboosh qboosh at pld-linux.org
Sun May 28 00:06:44 CEST 2006


Author: qboosh                       Date: Sat May 27 22:06:44 2006 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- updated for 1.7.1

---- Files affected:
SOURCES:
   parted-BIG_FAT_WARNING.patch (1.2 -> 1.3) , parted-etherd.patch (1.2 -> 1.3) , parted-link.patch (1.1 -> 1.2) , parted-pl.po-update.patch (1.11 -> 1.12) , parted-segv.patch (1.1 -> 1.2) 

---- Diffs:

================================================================
Index: SOURCES/parted-BIG_FAT_WARNING.patch
diff -u SOURCES/parted-BIG_FAT_WARNING.patch:1.2 SOURCES/parted-BIG_FAT_WARNING.patch:1.3
--- SOURCES/parted-BIG_FAT_WARNING.patch:1.2	Thu Oct 21 22:52:21 2004
+++ SOURCES/parted-BIG_FAT_WARNING.patch	Sun May 28 00:06:39 2006
@@ -1,9 +1,8 @@
-diff -ur parted-1.4.21/parted/ui.c parted-1.4.21-/parted/ui.c
---- parted-1.4.21/parted/ui.c	Fri Dec 14 12:36:55 2001
-+++ parted-1.4.21-/parted/ui.c	Fri Dec 14 12:36:38 2001
-@@ -71,6 +71,11 @@
- "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the "
- "GNU General Public License for more details.\n");
+--- parted-1.7.1/parted/ui.c.orig	2006-05-27 21:38:39.594851500 +0200
++++ parted-1.7.1/parted/ui.c	2006-05-27 21:39:49.027190750 +0200
+@@ -67,6 +67,11 @@
+ static char* banner_msg = N_(
+ "Welcome to GNU Parted! Type 'help' to view a list of commands.\n");
  
 +static char* warning_msg = N_(
 +"\nWARNING: unlike other partitioning software, Parted does *NOT* wait for\n"
@@ -12,24 +11,22 @@
 +
  static char* usage_msg = N_(
  "Usage: parted [OPTION]... [DEVICE [COMMAND [PARAMETERS]...]...]\n"
- "Apply COMMANDs with PARAMETERS to DEVICE.  If no COMMAND(s) are given, runs in\n"
-@@ -643,7 +648,7 @@
+ "Apply COMMANDs with PARAMETERS to DEVICE.  If no COMMAND(s) are given, run in\n"
+@@ -1256,7 +1261,7 @@
  
- 	printf ("%s", prog_name);
+     print_using_dev (*dev);
  
--	list = str_list_create (_(banner_msg), NULL);
-+	list = str_list_create (_(banner_msg), _(warning_msg), NULL);
+-    list = str_list_create (_(banner_msg), NULL);
++    list = str_list_create (_(banner_msg), _(warning_msg), NULL);
  	str_list_print_wrap (list, screen_width (), 0, 0);
  	str_list_destroy (list);
  
---- parted-1.6.15/po/pl.po.orig	2004-10-21 22:38:12.171388000 +0200
-+++ parted-1.6.15/po/pl.po	2004-10-21 22:49:37.028274776 +0200
-@@ -1624,6 +1624,18 @@
- "Powszechnej Licencji Publicznej GNU.\n"
- "\n"
+--- parted-1.7.1/po/pl.po.orig	2006-05-27 21:38:39.582850750 +0200
++++ parted-1.7.1/po/pl.po	2006-05-27 21:41:33.121696250 +0200
+@@ -1717,6 +1717,18 @@
  
-+#: parted/ui.c:74
-+msgid ""
+ #: parted/ui.c:71
+ msgid ""
 +"\n"
 +"WARNING: unlike other partitioning software, Parted does *NOT* wait for\n"
 +"exit to write changes to partition table, you're experimenting on your\n"
@@ -40,6 +37,8 @@
 +"*NIE* nie czeka na wyjście z programu z zapisaniem zmian w tablicy partycji\n"
 +"- używając go eksperymentuje się na żywym organizmie dysku.\n"
 +
- #: parted/ui.c:77
- msgid ""
++#: parted/ui.c:71
++msgid ""
  "Usage: parted [OPTION]... [DEVICE [COMMAND [PARAMETERS]...]...]\n"
+ "Apply COMMANDs with PARAMETERS to DEVICE.  If no COMMAND(s) are given, run in\n"
+ "interactive mode.\n"

================================================================
Index: SOURCES/parted-etherd.patch
diff -u SOURCES/parted-etherd.patch:1.2 SOURCES/parted-etherd.patch:1.3
--- SOURCES/parted-etherd.patch:1.2	Fri Nov  4 11:44:07 2005
+++ SOURCES/parted-etherd.patch	Sun May 28 00:06:39 2006
@@ -1,43 +1,43 @@
---- parted-1.6.25/include/parted/device.h.orig	2005-11-04 10:13:40.473529896 +0100
-+++ parted-1.6.25/include/parted/device.h	2005-11-04 10:14:41.797207280 +0100
-@@ -36,7 +36,8 @@
- 	PED_DEVICE_UBD		= 8,
- 	PED_DEVICE_DASD		= 9,
- 	PED_DEVICE_VIODASD	= 10,
--	PED_DEVICE_SX8		= 11
-+	PED_DEVICE_SX8		= 11,
-+	PED_DEVICE_AOE		= 12
+--- parted-1.7.1/include/parted/device.h.orig	2006-05-27 22:27:39.758600250 +0200
++++ parted-1.7.1/include/parted/device.h	2006-05-27 22:28:10.212503500 +0200
+@@ -46,7 +46,8 @@
+         PED_DEVICE_DASD         = 9,
+         PED_DEVICE_VIODASD      = 10,
+         PED_DEVICE_SX8          = 11,
+-        PED_DEVICE_DM           = 12
++        PED_DEVICE_DM           = 12,
++	PED_DEVICE_AOE		= 13
  } PedDeviceType;
  
  typedef struct _PedDevice PedDevice;
---- parted-1.6.24/libparted/linux.c.orig	2005-08-15 20:25:26.798119168 +0200
-+++ parted-1.6.24/libparted/linux.c	2005-08-15 20:27:40.800747672 +0200
-@@ -224,6 +224,7 @@
- 
- #define DASD_MAJOR		94
- #define VIODASD_MAJOR		112
+--- parted-1.7.1/libparted/arch/linux.c.orig	2006-05-27 22:27:39.770601000 +0200
++++ parted-1.7.1/libparted/arch/linux.c	2006-05-27 22:29:40.138123500 +0200
+@@ -238,6 +238,7 @@
+ #define VIODASD_MAJOR           112
+ #define SX8_MAJOR1              160
+ #define SX8_MAJOR2              161
 +#define AOE_MAJOR		152
  
- #define SCSI_BLK_MAJOR(M) (						\
- 		(M) == SCSI_DISK0_MAJOR 				\
-@@ -330,6 +331,8 @@
- 		dev->type = PED_DEVICE_CPQARRAY;
- 	} else if (dev_major == UBD_MAJOR && (dev_minor % 0x10 == 0)) {
- 		dev->type = PED_DEVICE_UBD;
+ #define SCSI_BLK_MAJOR(M) (                                             \
+                 (M) == SCSI_DISK0_MAJOR                                 \
+@@ -438,6 +439,8 @@
+                 dev->type = PED_DEVICE_CPQARRAY;
+         } else if (dev_major == UBD_MAJOR && (dev_minor % 0x10 == 0)) {
+                 dev->type = PED_DEVICE_UBD;
 +	} else if (dev_major == AOE_MAJOR && (dev_minor % 0x10 == 0)) {
 +		dev->type = PED_DEVICE_AOE;
- 	} else {
- 		dev->type = PED_DEVICE_UNKNOWN;
- 	}
-@@ -963,6 +966,11 @@
- 			goto error_free_arch_specific;
- 		break;
+         } else if (_is_dm_major(dev_major)) {
+                 dev->type = PED_DEVICE_DM;
+         } else {
+@@ -1118,6 +1121,11 @@
+                         goto error_free_dev;
+                 break;
  
 +	case PED_DEVICE_AOE:
 +		if (!init_generic (dev, _("AoE Driver")))
 +			goto error_free_dev;
 +		break;
 +
- 	case PED_DEVICE_UBD:
- 		if (!init_generic (dev, _("UBD Driver")))
- 			goto error_free_dev;
+         case PED_DEVICE_FILE:
+                 if (!init_file (dev))
+                         goto error_free_arch_specific;

================================================================
Index: SOURCES/parted-link.patch
diff -u SOURCES/parted-link.patch:1.1 SOURCES/parted-link.patch:1.2
--- SOURCES/parted-link.patch:1.1	Sun Apr 24 15:42:00 2005
+++ SOURCES/parted-link.patch	Sun May 28 00:06:39 2006
@@ -1,25 +1,5 @@
---- parted-1.6.22/configure.in.orig	2005-03-19 22:47:12.000000000 +0100
-+++ parted-1.6.22/configure.in	2005-04-24 15:35:55.738042232 +0200
-@@ -213,9 +213,11 @@
- fi
- CFLAGS="$CFLAGS -DLOCALEDIR=\"\\\"$datadir/locale\\\"\""
- 
-+REISER_LIBS=""
- dnl Check for libdl, if we are doing dynamic loading
- if test "$enable_dynamic_loading" = yes; then
- 	AC_CHECK_LIB(dl, dlopen,
-+		REISER_LIBS="-ldl"
- 		PARTED_LIBS="$PARTED_LIBS -ldl"
- 		AC_DEFINE(DYNAMIC_LOADING, 1, [Lazy linking to fs libs]),
- 		AC_MSG_ERROR(
-@@ -243,7 +245,6 @@
- AC_SUBST(UUID_LIBS)
- 
- dnl Check for libreiserfs
--REISER_LIBS=""
- if test "$enable_dynamic_loading" = no -a "$enable_discover_only" = no; then
- 	OLD_LIBS="$LIBS"
- 	AC_CHECK_LIB(dal, dal_equals,
+--- parted-1.7.1/configure.ac.orig	2005-03-19 22:47:12.000000000 +0100
++++ parted-1.7.1/configure.ac	2005-04-24 15:35:55.738042232 +0200
 @@ -264,7 +265,7 @@
  if test "$with_readline" = yes; then
  	OLD_LIBS="$LIBS"

================================================================
Index: SOURCES/parted-pl.po-update.patch
diff -u SOURCES/parted-pl.po-update.patch:1.11 SOURCES/parted-pl.po-update.patch:1.12
--- SOURCES/parted-pl.po-update.patch:1.11	Thu Nov 17 23:29:23 2005
+++ SOURCES/parted-pl.po-update.patch	Sun May 28 00:06:39 2006
@@ -1,40 +1,255 @@
---- parted-1.6.25.1/po/pl.po.orig	2005-11-17 22:38:38.499042800 +0100
-+++ parted-1.6.25.1/po/pl.po	2005-11-17 22:39:24.347072840 +0100
-@@ -4,10 +4,10 @@
+--- parted-1.7.1/po/pl.po.orig	2006-05-27 11:54:45.000000000 +0200
++++ parted-1.7.1/po/pl.po	2006-05-27 21:37:30.462531000 +0200
+@@ -1,20 +1,20 @@
+ # Polish translations for GNU Parted package.
+-# Copyright (C) 2003, 2005 Free Software Foundation, Inc.
+-# Wojciech Polak <polak at gnu.org>, 2003, 2005.
++# Copyright (C) 2003, 2005, 2006 Free Software Foundation, Inc.
++# Wojciech Polak <polak at gnu.org>, 2003, 2005, 2006.
++# Jakub Bogusz <qboosh at pld-linux.org>, 2006.
  #
  msgid ""
  msgstr ""
 -"Project-Id-Version: parted 1.6.23\n"
-+"Project-Id-Version: parted 1.6.25.1\n"
++"Project-Id-Version: parted 1.7.1\n"
  "Report-Msgid-Bugs-To: bug-parted at gnu.org\n"
- "POT-Creation-Date: 2005-11-11 13:39+0100\n"
+ "POT-Creation-Date: 2006-05-27 11:54+0200\n"
 -"PO-Revision-Date: 2005-07-07 22:23+0200\n"
-+"PO-Revision-Date: 2005-11-17 22:38+0100\n"
- "Last-Translator: Wojciech Polak <polak at gnu.org>\n"
+-"Last-Translator: Wojciech Polak <polak at gnu.org>\n"
++"PO-Revision-Date: 2006-05-27 21:30+0200\n"
++"Last-Translator: Jakub Bogusz <qboosh at pld-linux.org>\n"
  "Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
  "MIME-Version: 1.0\n"
-@@ -85,7 +85,7 @@
+ "Content-Type: text/plain; charset=ISO-8859-2\n"
+ "Content-Transfer-Encoding: 8bit\n"
+-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
+-"|| n%100>=20) ? 1 : 2);\n"
++"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
  
- #: libparted/linux.c:867
+ #: libparted/arch/linux.c:284
+ #, c-format
+@@ -27,13 +27,13 @@
+ "Could not determine sector size for %s: %s.\n"
+ "Using the default sector size (%lld)."
+ msgstr ""
++"Nie udało się określić rozmiaru sektora dla %s: %s.\n"
++"Użyto domyślnego rozmiaru sektora (%lld)."
+ 
+ #: libparted/arch/linux.c:401
+ #, c-format
+-msgid ""
+-"Device %s has a logical sector size of %lld.  Not all parts of GNU Parted "
+-"support this at the moment, and the working code is HIGHLY EXPERIMENTAL.\n"
+-msgstr ""
++msgid "Device %s has a logical sector size of %lld.  Not all parts of GNU Parted support this at the moment, and the working code is HIGHLY EXPERIMENTAL.\n"
++msgstr "Logiczny rozmiar sektora dla urządzenia %s wynosi %lld. Nie wszystkie części GNU Parteda aktualnie to obsługują, a działający kod jest WYSOCE EKSPERYMENTALNY.\n"
+ 
+ #: libparted/arch/linux.c:441
+ #, c-format
+@@ -47,16 +47,18 @@
+ 
+ #: libparted/arch/linux.c:539
+ msgid "Generic IDE"
+-msgstr ""
++msgstr "Ogólne IDE"
+ 
+ #: libparted/arch/linux.c:556
+ #, c-format
+ msgid ""
+ "Device %s has multiple (%d) logical sectors per physical sector.\n"
+-"GNU Parted supports this EXPERIMENTALLY for some special disk label/file "
+-"system combinations, e.g. GPT and ext2/3.\n"
++"GNU Parted supports this EXPERIMENTALLY for some special disk label/file system combinations, e.g. GPT and ext2/3.\n"
+ "Please consult the web site for up-to-date information."
+ msgstr ""
++"Urządzenie %s ma wiele (%d) logicznych sektorów w każdym sektorze fizycznym.\n"
++"GNU Parted obsługuje to EKSPERYMENTALNIE dla niektórych specjalnych połączeń etykiet dysków i systemów plików, np. GPT i ext2/3.\n"
++"Aktualne informacje znajdują się na stronie WWW."
+ 
+ #: libparted/arch/linux.c:726
+ #, c-format
+@@ -64,22 +66,13 @@
+ msgstr "Błąd podczas inicjalizacji urządzenia SCSI %s - %s"
+ 
+ #: libparted/arch/linux.c:781
+-#, fuzzy, c-format
+-msgid ""
+-"The device %s has zero length, and can't possibly store a file system or "
+-"partition table.  Perhaps you selected the wrong device?"
+-msgstr ""
+-"Urządzenie %s posiada zerową długość i nie jest w stanie przechowywać "
+-"systemu plików lub tablicę partycji.  Być może dokonano niewłaściwego wyboru "
+-"urządzenia?"
++#, c-format
++msgid "The device %s has zero length, and can't possibly store a file system or partition table.  Perhaps you selected the wrong device?"
++msgstr "Urządzenie %s posiada zerową długość i może nie być w stanie przechowywać systemu plików lub tablicy partycji.  Być może dokonano niewłaściwego wyboru urządzenia?"
+ 
+ #: libparted/arch/linux.c:829
+-msgid ""
+-"Unable to determine geometry of file/device.  You should not use Parted "
+-"unless you REALLY know what you're doing!"
+-msgstr ""
+-"Nie można ustalić geometrii pliku/urządzenia.  W tym przypadku nie jest "
+-"zalecane używanie Parted chyba, że NAPRAWDĘ wiesz co robisz!"
++msgid "Unable to determine geometry of file/device.  You should not use Parted unless you REALLY know what you're doing!"
++msgstr "Nie można ustalić geometrii pliku/urządzenia.  W tym przypadku nie jest zalecane używanie Parted, chyba że NAPRAWDĘ wiesz co robisz!"
+ 
+ #: libparted/arch/linux.c:903
+ msgid "DAC960 RAID controller"
+@@ -95,11 +88,11 @@
+ 
+ #: libparted/arch/linux.c:918
+ msgid "I2O Controller"
+-msgstr "Kontroler I20"
++msgstr "Kontroler I2O"
+ 
+ #: libparted/arch/linux.c:923
  msgid "User-Mode Linux UBD"
 -msgstr ""
-+msgstr "USB z User-Mode Linuksa"
++msgstr "UBD z User-Mode Linuksa"
  
- #: libparted/linux.c:877
+ #: libparted/arch/linux.c:933
  msgid "Unknown"
-@@ -335,7 +335,7 @@
+@@ -117,9 +110,7 @@
+ #: libparted/arch/linux.c:1052 libparted/arch/gnu.c:274
+ #, c-format
+ msgid "Unable to open %s read-write (%s).  %s has been opened read-only."
+-msgstr ""
+-"Nie można otworzyć %s jednocześnie w trybie do odczytu i zapisu (%s).  %s "
+-"został otwarty tylko w trybie do odczytu."
++msgstr "Nie można otworzyć %s jednocześnie w trybie do odczytu i zapisu (%s).  %s został otwarty tylko w trybie do odczytu."
+ 
+ #: libparted/arch/linux.c:1160 libparted/arch/linux.c:1228
+ #: libparted/arch/gnu.c:452 libparted/arch/gnu.c:550 libparted/arch/gnu.c:678
+@@ -151,27 +142,13 @@
  
- #: libparted/disk.c:1843
+ #: libparted/arch/linux.c:1798
+ #, c-format
+-msgid ""
+-"Error informing the kernel about modifications to partition %s -- %s.  This "
+-"means Linux won't know about any changes you made to %s until you reboot -- "
+-"so you shouldn't mount it or use it in any way before rebooting."
+-msgstr ""
+-"Błąd podczas informowania jądra systemu o modyfikacji partycji %s -- %s.  "
+-"Oznacza to, że Linux nie będzie wiedział o żadnych zmianach jakie zostały "
+-"dokonane na %s aż do czasu ponownego uruchomienia komputera -- proszę nie "
+-"podłączać ani używać tej partycji do czasu ponownego uruchomienia komputera."
++msgid "Error informing the kernel about modifications to partition %s -- %s.  This means Linux won't know about any changes you made to %s until you reboot -- so you shouldn't mount it or use it in any way before rebooting."
++msgstr "Błąd podczas informowania jądra systemu o modyfikacji partycji %s -- %s.  Oznacza to, że Linux nie będzie wiedział o żadnych zmianach jakie zostały dokonane na %s aż do czasu ponownego uruchomienia komputera -- proszę nie podłączać ani używać tej partycji do czasu ponownego uruchomienia komputera."
+ 
+ #: libparted/arch/linux.c:1879
+ #, c-format
+-msgid ""
+-"The kernel was unable to re-read the partition table on %s (%s).  This means "
+-"Linux won't know anything about the modifications you made until you "
+-"reboot.  You should reboot your computer before doing anything with %s."
+-msgstr ""
+-"Jądro systemu nie mogło ponownie odczytać tablicy partycji na %s (%s).  "
+-"Oznacza to, że Linux nie będzie wiedział nic o modyfikacjach jakie zostały "
+-"poczynione aż do czasu ponownego uruchomienia komputera.  Należy ponownie "
+-"uruchomić komputer zanim wykonasz jakąkolwiek operację na %s."
++msgid "The kernel was unable to re-read the partition table on %s (%s).  This means Linux won't know anything about the modifications you made until you reboot.  You should reboot your computer before doing anything with %s."
++msgstr "Jądro systemu nie mogło ponownie odczytać tablicy partycji na %s (%s).  Oznacza to, że Linux nie będzie wiedział nic o modyfikacjach jakie zostały poczynione aż do czasu ponownego uruchomienia komputera.  Należy ponownie uruchomić komputer zanim wykonasz jakąkolwiek operację na %s."
+ 
+ #: libparted/arch/gnu.c:97
+ #, c-format
+@@ -183,42 +160,17 @@
+ msgstr "Detekcja geometrii nie powiodła się."
+ 
+ #: libparted/arch/gnu.c:355
+-msgid ""
+-"The partition table cannot be re-read.  This means you need to reboot before "
+-"mounting any modified partitions.  You also need to reinstall your boot "
+-"loader before you reboot (which may require mounting modified partitions).  "
+-"It is impossible do both things!  So you'll need to boot off a rescue disk, "
+-"and reinstall your boot loader from the rescue disk.  Read section 4 of the "
+-"Parted User documentation for more information."
+-msgstr ""
+-"Nie można ponownie odczytać tablicy partycji.  Należy ponownie uruchomić "
+-"komputer przed podłączeniem jakichkolwiek zmodyfikowanych partycji.  Należy "
+-"także przeinstalować program ładujący (boot loader) zanim uruchomisz "
+-"ponownie komputer (co może wymagać podłączenia zmodyfikowanych partycji).  "
+-"Wykonanie dwóch powyższych rzeczy jest niemożliwe!  A więc pozostaje Ci "
+-"uruchomienie dysku/płyty ratunkowej i przeinstalowanie programu ładującego "
+-"prosto z dysku ratunkowego.  Przeczytaj rozdział 4 dokumentacji programu GNU "
+-"Parted, aby uzyskać więcej informacji na ten temat."
++msgid "The partition table cannot be re-read.  This means you need to reboot before mounting any modified partitions.  You also need to reinstall your boot loader before you reboot (which may require mounting modified partitions).  It is impossible do both things!  So you'll need to boot off a rescue disk, and reinstall your boot loader from the rescue disk.  Read section 4 of the Parted User documentation for more information."
++msgstr "Nie można ponownie odczytać tablicy partycji.  Należy ponownie uruchomić komputer przed podłączeniem jakichkolwiek zmodyfikowanych partycji.  Należy także przeinstalować program ładujący (boot loader) zanim uruchomisz ponownie komputer (co może wymagać podłączenia zmodyfikowanych partycji).  Wykonanie dwóch powyższych rzeczy jest niemożliwe!  A więc pozostaje Ci uruchomienie dysku/płyty ratunkowej i przeinstalowanie programu ładującego prosto z dysku ratunkowego.  Przeczytaj rozdział 4 dokumentacji programu GNU Parted, aby uzyskać więcej informacji na ten temat."
+ 
+ #: libparted/arch/gnu.c:372
+ #, c-format
+-msgid ""
+-"The partition table on %s cannot be re-read (%s).  This means the Hurd knows "
+-"nothing about any modifications you made.  You should reboot your computer "
+-"before doing anything with %s."
+-msgstr ""
+-"Nie można ponownie wczytać tablicy partycji na %s (%s).  Oznacza to, że Hurd "
+-"nie wie o żadnych zmianach jakie zostały wprowadzone.  Należy ponownie "
+-"uruchomić komputer zanim wykonasz jakąkolwiek operację na %s."
++msgid "The partition table on %s cannot be re-read (%s).  This means the Hurd knows nothing about any modifications you made.  You should reboot your computer before doing anything with %s."
++msgstr "Nie można ponownie wczytać tablicy partycji na %s (%s).  Oznacza to, że Hurd nie wie o żadnych zmianach jakie zostały wprowadzone.  Należy ponownie uruchomić komputer zanim wykonasz jakąkolwiek operację na %s."
+ 
+ #: libparted/arch/gnu.c:383 parted/parted.c:2215
+-msgid ""
+-"You should reinstall your boot loader before rebooting.  Read section 4 of "
+-"the Parted User documentation for more information."
+-msgstr ""
+-"Należy przeinstalować program ładujący (boot loader) przed ponownym "
+-"uruchomieniem komputera.  Przeczytaj rozdział 4 dokumentacji użytkownika "
+-"Parted, aby uzyskać więcej informacji."
++msgid "You should reinstall your boot loader before rebooting.  Read section 4 of the Parted User documentation for more information."
++msgstr "Należy przeinstalować program ładujący (boot loader) przed ponownym uruchomieniem komputera.  Przeczytaj rozdział 4 dokumentacji użytkownika Parted, aby uzyskać więcej informacji."
+ 
+ #: libparted/arch/gnu.c:774
+ #, c-format
+@@ -232,12 +184,8 @@
+ 
+ #: libparted/disk.c:452
+ #, c-format
+-msgid ""
+-"This libparted doesn't have write support for %s.  Perhaps it was compiled "
+-"read-only."
+-msgstr ""
+-"Biblioteka libparted nie posiada obsługi zapisu dla %s.  Być może została "
+-"ona zbudowana z obsługą tylko-do-odczytu."
++msgid "This libparted doesn't have write support for %s.  Perhaps it was compiled read-only."
++msgstr "Biblioteka libparted nie posiada obsługi zapisu dla %s.  Być może została ona zbudowana z obsługą tylko-do-odczytu."
+ 
+ #: libparted/disk.c:579
+ #, c-format
+@@ -260,11 +208,8 @@
+ 
+ #: libparted/disk.c:1638
+ #, c-format
+-msgid ""
+-"Can't add a logical partition to %s, because there is no extended partition."
+-msgstr ""
+-"Nie można dodać logicznej partycji do %s, ponieważ nie istnieje rozszerzona "
+-"partycja."
++msgid "Can't add a logical partition to %s, because there is no extended partition."
++msgstr "Nie można dodać logicznej partycji do %s, ponieważ nie istnieje rozszerzona partycja."
+ 
+ #: libparted/disk.c:1662
+ #, c-format
+@@ -350,7 +295,7 @@
+ 
+ #: libparted/disk.c:2167
  msgid "msftres"
 -msgstr ""
 +msgstr "msftres"
  
- #: libparted/disk.c:1849
+ #: libparted/disk.c:2173
  #, c-format
-@@ -424,12 +424,9 @@
- "Disk."
+@@ -434,22 +379,16 @@
  
- #: libparted/disk_dvh.c:189
+ #: libparted/labels/dos.c:1926
+ msgid "Parted can't resize partitions managed by Windows Dynamic Disk."
+-msgstr ""
+-"Parted nie może zmienić rozmiaru partycji zarządzanych przez Windows Dynamic "
+-"Disk."
++msgstr "Parted nie może zmienić rozmiaru partycji zarządzanych przez Windows Dynamic Disk."
+ 
+ #: libparted/labels/dvh.c:192
 -#, fuzzy, c-format
 +#, c-format
  msgid "%s has no extended partition (volume header partition)."
@@ -42,217 +257,928 @@
 -"%s nie posiada żadnych rozszerzonych partycji (nagłówek wolumenu partycji).  "
 -"Jeżeli zignorujesz, to jakiekolwiek wolumeny rozruchowe (boot volumes) "
 -"zostaną skasowane."
-+msgstr "%s nie posiada żadnych rozszerzonych partycji (nagłówek wolumenu partycji)."
++msgstr "%s nie posiada żadnych rozszerzonych partycji (partycji nagłówka wolumenu)."
  
- #: libparted/disk_dvh.c:312
+ #: libparted/labels/dvh.c:315
  msgid "Checksum is wrong, indicating the partition table is corrupt."
-@@ -746,7 +743,7 @@
+-msgstr ""
+-"Suma kontrolna jest błędna i oznacza to, że tablica partycji jest uszkodzona."
++msgstr "Suma kontrolna jest błędna i oznacza to, że tablica partycji jest uszkodzona."
+ 
+ #: libparted/labels/dvh.c:616
+ msgid "Only primary partitions can be root partitions."
+@@ -473,54 +412,25 @@
+ 
+ #: libparted/labels/gpt.c:433
+ #, c-format
+-msgid ""
+-"%s contains GPT signatures, indicating that it has a GPT table.  However, it "
+-"does not have a valid fake msdos partition table, as it should.  Perhaps it "
+-"was corrupted -- possibly by a program that doesn't understand GPT partition "
+-"tables.  Or perhaps you deleted the GPT table, and are now using an msdos "
+-"partition table.  Is this a GPT partition table?"
+-msgstr ""
+-"%s zawiera sygnaturę GPT.  Oznacza to, że posiada tablicę GPT, ale nie "
+-"posiada prawidłowej fałszywej tablicy partycji msdos, tak jak powinna.  Być "
+-"może jest uszkodzona -- możliwe, że przez program, który nie rozumie tablic "
+-"partycji GPT.  Albo też tablica GPT została skasowana, zaś teraz używana "
+-"jest tablica partycji msdos.  Czy to jest tablica partycji GPT?"
++msgid "%s contains GPT signatures, indicating that it has a GPT table.  However, it does not have a valid fake msdos partition table, as it should.  Perhaps it was corrupted -- possibly by a program that doesn't understand GPT partition tables.  Or perhaps you deleted the GPT table, and are now using an msdos partition table.  Is this a GPT partition table?"
++msgstr "%s zawiera sygnaturę GPT.  Oznacza to, że posiada tablicę GPT, ale nie posiada prawidłowej fałszywej tablicy partycji msdos, tak jak powinna.  Być może jest uszkodzona -- możliwe, że przez program, który nie rozumie tablic partycji GPT.  Albo też tablica GPT została skasowana, zaś teraz używana jest tablica partycji msdos.  Czy to jest tablica partycji GPT?"
+ 
+ #: libparted/labels/gpt.c:625
+ #, c-format
+-msgid ""
+-"The format of the GPT partition table is version %x, which is newer than "
+-"what Parted can recognise.  Please tell us!  bug-parted at gnu.org"
+-msgstr ""
+-"Format tablicy partycji GPT (wersja %x) jest nowszy niż program Parted jest "
+-"w stanie rozpoznać.  Poinformuj nas o tym!  bug-parted at gnu.org"
++msgid "The format of the GPT partition table is version %x, which is newer than what Parted can recognise.  Please tell us!  bug-parted at gnu.org"
++msgstr "Format tablicy partycji GPT (wersja %x) jest nowszy niż program Parted jest w stanie rozpoznać.  Poinformuj nas o tym!  bug-parted at gnu.org"
+ 
+ #: libparted/labels/gpt.c:747
+-msgid ""
+-"The backup GPT table is not at the end of the disk, as it should be.  This "
+-"might mean that another operating system believes the disk is smaller.  Fix, "
+-"by moving the backup to the end (and removing the old backup)?"
+-msgstr ""
+-"Kopia zapasowa tablicy GPT nie znajduje się na końcu dysku, a powinna.  Może "
+-"to oznaczać, że inny system operacyjny myśli, że dysk jest mniejszy niż jest "
+-"w rzeczywistości.  Czy naprawić to poprzez przesunięcie kopii zapasowej na "
+-"koniec (i usunięcie starej kopii)?"
++msgid "The backup GPT table is not at the end of the disk, as it should be.  This might mean that another operating system believes the disk is smaller.  Fix, by moving the backup to the end (and removing the old backup)?"
++msgstr "Kopia zapasowa tablicy GPT nie znajduje się na końcu dysku, a powinna.  Może to oznaczać, że inny system operacyjny myśli, że dysk jest mniejszy niż jest w rzeczywistości.  Czy naprawić to poprzez przesunięcie kopii zapasowej na koniec (i usunięcie starej kopii)?"
+ 
+ #: libparted/labels/gpt.c:782
+-msgid ""
+-"The primary GPT table is corrupt, but the backup appears OK, so that will be "
+-"used."
+-msgstr ""
+-"Główna tablica GPT jest uszkodzona, ale jej kopia zapasowa wydaje się być w "
+-"porządku i zostanie ona użyta."
++msgid "The primary GPT table is corrupt, but the backup appears OK, so that will be used."
++msgstr "Główna tablica GPT jest uszkodzona, ale jej kopia zapasowa wydaje się być w porządku i zostanie ona użyta."
+ 
+ #: libparted/labels/gpt.c:790
+-msgid ""
+-"Both the primary and backup GPT tables are corrupt.  Try making a fresh "
+-"table, and using Parted's rescue feature to recover partitions."
+-msgstr ""
+-"Obie tablice GPT, główna i jej kopia zapasowa, są uszkodzone.  Spróbuj "
+-"utworzyć nową tablicę oraz użyj opcję 'rescue', aby odzyskać partycje."
++msgid "Both the primary and backup GPT tables are corrupt.  Try making a fresh table, and using Parted's rescue feature to recover partitions."
++msgstr "Obie tablice GPT, główna i jej kopia zapasowa, są uszkodzone.  Spróbuj utworzyć nową tablicę oraz użyj opcję 'rescue', aby odzyskać partycje."
+ 
+ #: libparted/labels/mac.c:176
+ #, c-format
+@@ -564,20 +474,13 @@
+ 
+ #: libparted/labels/mac.c:664
+ #, c-format
+-msgid ""
+-"Weird block size on device descriptor: %d bytes is not divisible by 512."
+-msgstr ""
+-"Dziwny rozmiar bloku w deskryptorze urządzenia: %d bajtów nie jest podzielne "
+-"przez 512."
++msgid "Weird block size on device descriptor: %d bytes is not divisible by 512."
++msgstr "Dziwny rozmiar bloku w deskryptorze urządzenia: %d bajtów nie jest podzielne przez 512."
+ 
+ #: libparted/labels/mac.c:677
+ #, c-format
+-msgid ""
+-"The driver descriptor says the physical block size is %d bytes, but Linux "
+-"says it is %d bytes."
+-msgstr ""
+-"Deskryptor napędu mówi, że fizyczny rozmiar bloku wynosi %d bajtów, ale "
+-"Linux mówi, że wynosi %d bajtów."
++msgid "The driver descriptor says the physical block size is %d bytes, but Linux says it is %d bytes."
++msgstr "Deskryptor napędu mówi, że fizyczny rozmiar bloku wynosi %d bajtów, ale Linux mówi, że wynosi %d bajtów."
+ 
+ #: libparted/labels/mac.c:725
+ msgid "No valid partition map found."
+@@ -585,23 +488,16 @@
+ 
+ #: libparted/labels/mac.c:784
+ #, c-format
+-msgid ""
+-"Conflicting partition map entry sizes!  Entry 1 says it is %d, but entry %d "
+-"says it is %d!"
+-msgstr ""
+-"Wystąpił konflikt między rozmiarami wpisów mapy partycji!  Wpis 1 mówi, że "
+-"jest %d, ale wpis %d mówi, że jest %d!"
++msgid "Conflicting partition map entry sizes!  Entry 1 says it is %d, but entry %d says it is %d!"
++msgstr "Wystąpił konflikt między rozmiarami wpisów mapy partycji!  Wpis 1 mówi, że jest %d, ale wpis %d mówi, że jest %d!"
+ 
+ #: libparted/labels/mac.c:811
+ msgid "Weird!  There are 2 partitions map entries!"
+ msgstr "Dziwne!  Istnieją 2 wpisy map partycji!"
+ 
+ #: libparted/labels/mac.c:1345
+-msgid ""
+-"Changing the name of a root or swap partition will prevent Linux from "
+-"recognising it as such."
+-msgstr ""
+-"Zmiana nazwy partycji root lub wymiany spowoduje, że Linux jej nie rozpozna."
++msgid "Changing the name of a root or swap partition will prevent Linux from recognising it as such."
++msgstr "Zmiana nazwy partycji root lub wymiany spowoduje, że Linux jej nie rozpozna."
+ 
+ #: libparted/labels/mac.c:1441
+ msgid "Can't add another partition -- the partition map is too small!"
+@@ -614,12 +510,8 @@
+ 
+ #: libparted/labels/pc98.c:409 libparted/labels/pc98.c:487
+ #, c-format
+-msgid ""
+-"Partition %d isn't aligned to cylinder boundaries.  This is still "
<<Diff was trimmed, longer than 597 lines>>

---- CVS-web:
    http://cvs.pld-linux.org/SOURCES/parted-BIG_FAT_WARNING.patch?r1=1.2&r2=1.3&f=u
    http://cvs.pld-linux.org/SOURCES/parted-etherd.patch?r1=1.2&r2=1.3&f=u
    http://cvs.pld-linux.org/SOURCES/parted-link.patch?r1=1.1&r2=1.2&f=u
    http://cvs.pld-linux.org/SOURCES/parted-pl.po-update.patch?r1=1.11&r2=1.12&f=u
    http://cvs.pld-linux.org/SOURCES/parted-segv.patch?r1=1.1&r2=1.2&f=u



More information about the pld-cvs-commit mailing list