gnome-commander r1811 - in branches/gcmd-1-3: doc/C src



Author: epiotr
Date: Mon Jun  2 15:30:35 2008
New Revision: 1811
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=1811&view=rev

Log:
i18n

Modified:
   branches/gcmd-1-3/doc/C/gnome-commander.xml
   branches/gcmd-1-3/src/gnome-cmd-advrename-dialog.cc
   branches/gcmd-1-3/src/gnome-cmd-con-device.cc

Modified: branches/gcmd-1-3/doc/C/gnome-commander.xml
==============================================================================
--- branches/gcmd-1-3/doc/C/gnome-commander.xml	(original)
+++ branches/gcmd-1-3/doc/C/gnome-commander.xml	Mon Jun  2 15:30:35 2008
@@ -745,7 +745,7 @@
                   <guibutton>Options</guibutton>
               </term>
               <listitem>
-                  <para>Additional settings for file name processing (start value, step and precision for counters).</para>
+                  <para>Additional settings for file name processing (start value, step and width for counters).</para>
               </listitem>
           </varlistentry>
           <varlistentry>
@@ -824,24 +824,24 @@
                         <entry><para>File counter</para></entry>
                     </row>
                     <row valign="top">
-                        <entry><para>$c(precision)</para></entry>
-                        <entry><para>File counter with specified digit number (precision)</para></entry>
+                        <entry><para>$c(width)</para></entry>
+                        <entry><para>File counter with specified digit number (width)</para></entry>
                     </row>
                     <row valign="top">
                         <entry><para>$x</para></entry>
                         <entry><para>Hexadecimal random number (8 lowercase digits)</para></entry>
                     </row>
                     <row valign="top">
-                        <entry><para>$x(precision)</para></entry>
-                        <entry><para>Hexadecimal random number with specified lowercase digit number (precision)</para></entry>
+                        <entry><para>$x(width)</para></entry>
+                        <entry><para>Hexadecimal random number with specified lowercase digit number (width)</para></entry>
                     </row>
                     <row valign="top">
                         <entry><para>$x</para></entry>
                         <entry><para>Hexadecimal random number (8 uppercase digits)</para></entry>
                     </row>
                     <row valign="top">
-                        <entry><para>$x(precision)</para></entry>
-                        <entry><para>Hexadecimal random number with specified uppercase digit number (precision)</para></entry>
+                        <entry><para>$x(width)</para></entry>
+                        <entry><para>Hexadecimal random number with specified uppercase digit number (width)</para></entry>
                     </row>
                     <row valign="top">
                         <entry><para>$T(metatag)</para></entry>

Modified: branches/gcmd-1-3/src/gnome-cmd-advrename-dialog.cc
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-advrename-dialog.cc	(original)
+++ branches/gcmd-1-3/src/gnome-cmd-advrename-dialog.cc	Mon Jun  2 15:30:35 2008
@@ -158,8 +158,8 @@
                                            {_("/File extension"), NULL, (GtkItemFactoryCallback) insert_text_tag, 4}};
 
     GtkItemFactoryEntry counter_items[] = {{_("/Counter"), NULL, (GtkItemFactoryCallback) insert_text_tag, 5},
-                                           {_("/Counter (precision)"), NULL, (GtkItemFactoryCallback) insert_text_tag, 6},
-                                           {_("/Hexadecimal random number (precision)"), NULL, (GtkItemFactoryCallback) insert_text_tag, 7}};
+                                           {_("/Counter (width)"), NULL, (GtkItemFactoryCallback) insert_text_tag, 6},
+                                           {_("/Hexadecimal random number (width)"), NULL, (GtkItemFactoryCallback) insert_text_tag, 7}};
 
     GtkItemFactoryEntry date_items[] =    {{_("/Date/<locale>"), NULL, (GtkItemFactoryCallback) insert_text_tag, 8},
                                            {_("/Date/yyyy-mm-dd"), NULL, (GtkItemFactoryCallback) insert_text_tag, 9},

Modified: branches/gcmd-1-3/src/gnome-cmd-con-device.cc
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-con-device.cc	(original)
+++ branches/gcmd-1-3/src/gnome-cmd-con-device.cc	Mon Jun  2 15:30:35 2008
@@ -203,7 +203,7 @@
                             GTK_DIALOG_MODAL,
                             GTK_MESSAGE_INFO,
                             GTK_BUTTONS_OK,
-                            _("Volume unmounting succeeded.\nIt is safe to eject the media."));
+                            _("Device is now safe to remove"));
     }
     else
     {
@@ -211,8 +211,8 @@
                             GTK_DIALOG_MODAL,
                             GTK_MESSAGE_ERROR,
                             GTK_BUTTONS_OK,
-                            _("Volume unmounting failed:\n%s %s"),
-                            error ? error : _("Unknown Error"),
+                            _("Cannot unmount the volume:\n%s %s"),
+                            error ? error : _("Unknown error"),
                             detailed_error ? detailed_error: "");
     }
     gtk_dialog_run (GTK_DIALOG (msgbox));



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]