gparted r946 - in trunk: . src
- From: gedakc svn gnome org
- To: svn-commits-list gnome org
- Subject: gparted r946 - in trunk: . src
- Date: Thu, 30 Oct 2008 19:41:51 +0000 (UTC)
Author: gedakc
Date: Thu Oct 30 19:41:51 2008
New Revision: 946
URL: http://svn.gnome.org/viewvc/gparted?rev=946&view=rev
Log:
Removed ellipses from status messages in set_devices()
Modified:
trunk/ChangeLog
trunk/src/GParted_Core.cc
Modified: trunk/src/GParted_Core.cc
==============================================================================
--- trunk/src/GParted_Core.cc (original)
+++ trunk/src/GParted_Core.cc Thu Oct 30 19:41:51 2008
@@ -171,8 +171,8 @@
{
//try to have libparted detect the device and add it to the list
device = "/dev/" + device;
- /*TO TRANSLATORS: looks like Scanning /dev/sda ... */
- set_thread_status_message( String::ucompose ( _("Scanning %1 ..."), device ) ) ;
+ /*TO TRANSLATORS: looks like Scanning /dev/sda */
+ set_thread_status_message( String::ucompose ( _("Scanning %1"), device ) ) ;
ped_device_get( device .c_str() ) ;
}
}
@@ -219,8 +219,8 @@
continue;
if ( dm_majors .find( major( st.st_rdev ) ) != dm_majors .end() )
//TODO avoid probing partition nodes for dmraid devices
- /*TO TRANSLATORS: looks like Scanning /dev/sda ... */
- set_thread_status_message( String::ucompose ( _("Scanning %1 ..."), mapper_name ) ) ;
+ /*TO TRANSLATORS: looks like Scanning /dev/sda */
+ set_thread_status_message( String::ucompose ( _("Scanning %1"), mapper_name ) ) ;
ped_device_get( mapper_name .c_str() ) ;
}
closedir( mapper_dir ) ;
@@ -239,8 +239,8 @@
char * buf = static_cast<char *>( malloc( lp_device ->sector_size ) ) ;
if ( buf )
{
- /*TO TRANSLATORS: looks like Reading /dev/sda ... */
- set_thread_status_message( String::ucompose ( _("Reading %1 ..."), lp_device ->path ) ) ;
+ /*TO TRANSLATORS: looks like Reading /dev/sda */
+ set_thread_status_message( String::ucompose ( _("Reading %1"), lp_device ->path ) ) ;
if ( ped_device_open( lp_device ) )
{
if ( ped_device_read( lp_device, buf, 0, 1 ) )
@@ -259,8 +259,8 @@
for ( unsigned int t = 0 ; t < device_paths .size() ; t++ )
{
- /*TO TRANSLATORS: looks like Scanning /dev/sda for partitions ... */
- set_thread_status_message( String::ucompose ( _("Scanning %1 for partitions ..."), device_paths[ t ] ) ) ;
+ /*TO TRANSLATORS: looks like Scanning /dev/sda for partitions*/
+ set_thread_status_message( String::ucompose ( _("Scanning %1 for partitions"), device_paths[ t ] ) ) ;
if ( open_device_and_disk( device_paths[ t ], false ) )
{
temp_device .Reset() ;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]