Remove full stops from the end of primary text in dialogs
The GNOME HIG, 3.4.1 "Alert Text" states: ... The primary text is punctuated in 'newspaper headline' style, that is, it has no terminating period, but it may have a terminating question mark. http://developer.gnome.org/hig-book/3.0/windows-alert.html.en#alert-text
This commit is contained in:
parent
85e9ce3428
commit
fbc4e9e941
|
@ -257,7 +257,7 @@ void Dialog_Rescue_Data::check_overlaps(int nPart)
|
||||||
if(is_overlaping(nPart))
|
if(is_overlaping(nPart))
|
||||||
{
|
{
|
||||||
Gtk::MessageDialog overlapDialog(*this, "", true, Gtk::MESSAGE_QUESTION, Gtk::BUTTONS_YES_NO, true);
|
Gtk::MessageDialog overlapDialog(*this, "", true, Gtk::MESSAGE_QUESTION, Gtk::BUTTONS_YES_NO, true);
|
||||||
overlapDialog.set_message(_("Warning: The detected file system area overlaps with at least one existing partition."));
|
overlapDialog.set_message(_("Warning: The detected file system area overlaps with at least one existing partition"));
|
||||||
|
|
||||||
Glib::ustring sec_text=_("It is recommended that you do not use any overlapping file systems to avoid disturbing existing data.");
|
Glib::ustring sec_text=_("It is recommended that you do not use any overlapping file systems to avoid disturbing existing data.");
|
||||||
sec_text+="\n";
|
sec_text+="\n";
|
||||||
|
|
|
@ -722,7 +722,7 @@ void Win_GParted::Add_Operation( Operation * operation, int index )
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Gtk::MessageDialog dialog( *this,
|
Gtk::MessageDialog dialog( *this,
|
||||||
_("Could not add this operation to the list."),
|
_("Could not add this operation to the list"),
|
||||||
false,
|
false,
|
||||||
Gtk::MESSAGE_ERROR,
|
Gtk::MESSAGE_ERROR,
|
||||||
Gtk::BUTTONS_OK,
|
Gtk::BUTTONS_OK,
|
||||||
|
@ -1381,7 +1381,7 @@ void Win_GParted::show_help_dialog( const Glib::ustring & filename /* E.g., gpar
|
||||||
if ( error != NULL )
|
if ( error != NULL )
|
||||||
{
|
{
|
||||||
Gtk::MessageDialog dialog( *this
|
Gtk::MessageDialog dialog( *this
|
||||||
, _( "Unable to open GParted Manual help file." )
|
, _( "Unable to open GParted Manual help file" )
|
||||||
, false
|
, false
|
||||||
, Gtk::MESSAGE_ERROR
|
, Gtk::MESSAGE_ERROR
|
||||||
, Gtk::BUTTONS_OK
|
, Gtk::BUTTONS_OK
|
||||||
|
@ -1397,7 +1397,7 @@ void Win_GParted::menu_help_contents()
|
||||||
#ifdef HAVE_DISABLE_DOC
|
#ifdef HAVE_DISABLE_DOC
|
||||||
//GParted was configured with --disable-doc
|
//GParted was configured with --disable-doc
|
||||||
Gtk::MessageDialog dialog( *this,
|
Gtk::MessageDialog dialog( *this,
|
||||||
_( "Documentation is not available." ),
|
_( "Documentation is not available" ),
|
||||||
false,
|
false,
|
||||||
Gtk::MESSAGE_INFO,
|
Gtk::MESSAGE_INFO,
|
||||||
Gtk::BUTTONS_OK,
|
Gtk::BUTTONS_OK,
|
||||||
|
@ -1588,7 +1588,7 @@ void Win_GParted::activate_resize()
|
||||||
{
|
{
|
||||||
//Warn that move operation might break boot process
|
//Warn that move operation might break boot process
|
||||||
Gtk::MessageDialog dialog( *this
|
Gtk::MessageDialog dialog( *this
|
||||||
, _( "Moving a partition might cause your operating system to fail to boot." )
|
, _( "Moving a partition might cause your operating system to fail to boot" )
|
||||||
, false
|
, false
|
||||||
, Gtk::MESSAGE_WARNING
|
, Gtk::MESSAGE_WARNING
|
||||||
, Gtk::BUTTONS_OK
|
, Gtk::BUTTONS_OK
|
||||||
|
@ -1709,7 +1709,7 @@ void Win_GParted::activate_paste()
|
||||||
//Only warn that this paste operation will overwrite data in the existing
|
//Only warn that this paste operation will overwrite data in the existing
|
||||||
// partition if not already shown the remove non-empty LVM2 PV dialog.
|
// partition if not already shown the remove non-empty LVM2 PV dialog.
|
||||||
Gtk::MessageDialog dialog( *this
|
Gtk::MessageDialog dialog( *this
|
||||||
, _( "You have pasted into an existing partition." )
|
, _( "You have pasted into an existing partition" )
|
||||||
, false
|
, false
|
||||||
, Gtk::MESSAGE_WARNING
|
, Gtk::MESSAGE_WARNING
|
||||||
, Gtk::BUTTONS_OK
|
, Gtk::BUTTONS_OK
|
||||||
|
@ -1891,7 +1891,7 @@ void Win_GParted::activate_format( GParted::FILESYSTEM new_fs )
|
||||||
/* TO TRANSLATORS: looks like
|
/* TO TRANSLATORS: looks like
|
||||||
* Cannot format this file system to fat16.
|
* Cannot format this file system to fat16.
|
||||||
*/
|
*/
|
||||||
_( "Cannot format this file system to %1." ),
|
_( "Cannot format this file system to %1" ),
|
||||||
Utils::get_filesystem_string( new_fs ) ) ,
|
Utils::get_filesystem_string( new_fs ) ) ,
|
||||||
false,
|
false,
|
||||||
Gtk::MESSAGE_ERROR,
|
Gtk::MESSAGE_ERROR,
|
||||||
|
@ -2082,8 +2082,8 @@ void Win_GParted::toggle_busy_state()
|
||||||
|
|
||||||
/*TO TRANSLATORS: Singular case looks like 1 operation is currently pending for partition /dev/sdd8. */
|
/*TO TRANSLATORS: Singular case looks like 1 operation is currently pending for partition /dev/sdd8. */
|
||||||
Glib::ustring tmp_msg =
|
Glib::ustring tmp_msg =
|
||||||
String::ucompose( ngettext( "%1 operation is currently pending for partition %2."
|
String::ucompose( ngettext( "%1 operation is currently pending for partition %2"
|
||||||
, "%1 operations are currently pending for partition %2."
|
, "%1 operations are currently pending for partition %2"
|
||||||
, operation_count
|
, operation_count
|
||||||
)
|
)
|
||||||
, operation_count
|
, operation_count
|
||||||
|
@ -2203,8 +2203,8 @@ void Win_GParted::activate_mount_partition( unsigned int index )
|
||||||
{
|
{
|
||||||
/*TO TRANSLATORS: Plural case looks like 4 operations are currently pending for partition /dev/sdd8. */
|
/*TO TRANSLATORS: Plural case looks like 4 operations are currently pending for partition /dev/sdd8. */
|
||||||
Glib::ustring tmp_msg =
|
Glib::ustring tmp_msg =
|
||||||
String::ucompose( ngettext( "%1 operation is currently pending for partition %2."
|
String::ucompose( ngettext( "%1 operation is currently pending for partition %2"
|
||||||
, "%1 operations are currently pending for partition %2."
|
, "%1 operations are currently pending for partition %2"
|
||||||
, operation_count
|
, operation_count
|
||||||
)
|
)
|
||||||
, operation_count
|
, operation_count
|
||||||
|
@ -2269,10 +2269,10 @@ void Win_GParted::activate_disklabel()
|
||||||
if ( active_count > 0 )
|
if ( active_count > 0 )
|
||||||
{
|
{
|
||||||
Glib::ustring tmp_msg =
|
Glib::ustring tmp_msg =
|
||||||
String::ucompose( /*TO TRANSLATORS: Singular case looks like 1 partition is currently active on device /dev/sda. */
|
String::ucompose( /*TO TRANSLATORS: Singular case looks like 1 partition is currently active on device /dev/sda */
|
||||||
ngettext( "%1 partition is currently active on device %2."
|
ngettext( "%1 partition is currently active on device %2"
|
||||||
/*TO TRANSLATORS: Plural case looks like 3 partitions are currently active on device /dev/sda. */
|
/*TO TRANSLATORS: Plural case looks like 3 partitions are currently active on device /dev/sda */
|
||||||
, "%1 partitions are currently active on device %2."
|
, "%1 partitions are currently active on device %2"
|
||||||
, active_count
|
, active_count
|
||||||
)
|
)
|
||||||
, active_count
|
, active_count
|
||||||
|
@ -2301,8 +2301,8 @@ void Win_GParted::activate_disklabel()
|
||||||
if ( operations .size() )
|
if ( operations .size() )
|
||||||
{
|
{
|
||||||
Glib::ustring tmp_msg =
|
Glib::ustring tmp_msg =
|
||||||
String::ucompose( ngettext( "%1 operation is currently pending."
|
String::ucompose( ngettext( "%1 operation is currently pending"
|
||||||
, "%1 operations are currently pending."
|
, "%1 operations are currently pending"
|
||||||
, operations .size()
|
, operations .size()
|
||||||
)
|
)
|
||||||
, operations .size()
|
, operations .size()
|
||||||
|
@ -2331,7 +2331,7 @@ void Win_GParted::activate_disklabel()
|
||||||
if ( ! gparted_core .set_disklabel( devices[ current_device ] .get_path(), dialog .Get_Disklabel() ) )
|
if ( ! gparted_core .set_disklabel( devices[ current_device ] .get_path(), dialog .Get_Disklabel() ) )
|
||||||
{
|
{
|
||||||
Gtk::MessageDialog dialog( *this,
|
Gtk::MessageDialog dialog( *this,
|
||||||
_("Error while creating partition table."),
|
_("Error while creating partition table"),
|
||||||
true,
|
true,
|
||||||
Gtk::MESSAGE_ERROR,
|
Gtk::MESSAGE_ERROR,
|
||||||
Gtk::BUTTONS_OK,
|
Gtk::BUTTONS_OK,
|
||||||
|
|
|
@ -30,7 +30,7 @@ namespace GParted
|
||||||
{
|
{
|
||||||
|
|
||||||
const Glib::ustring fat16::Change_UUID_Warning [] =
|
const Glib::ustring fat16::Change_UUID_Warning [] =
|
||||||
{ _( "Changing the UUID might invalidate the Windows Product Activation (WPA) key."
|
{ _( "Changing the UUID might invalidate the Windows Product Activation (WPA) key"
|
||||||
)
|
)
|
||||||
, _( "On FAT and NTFS file systems, the"
|
, _( "On FAT and NTFS file systems, the"
|
||||||
" Volume Serial Number is used as the UUID."
|
" Volume Serial Number is used as the UUID."
|
||||||
|
|
|
@ -23,7 +23,7 @@ namespace GParted
|
||||||
{
|
{
|
||||||
|
|
||||||
const Glib::ustring ntfs::Change_UUID_Warning [] =
|
const Glib::ustring ntfs::Change_UUID_Warning [] =
|
||||||
{ _( "Changing the UUID might invalidate the Windows Product Activation (WPA) key."
|
{ _( "Changing the UUID might invalidate the Windows Product Activation (WPA) key"
|
||||||
)
|
)
|
||||||
, _( "On FAT and NTFS file systems, the"
|
, _( "On FAT and NTFS file systems, the"
|
||||||
" Volume Serial Number is used as the UUID."
|
" Volume Serial Number is used as the UUID."
|
||||||
|
|
Loading…
Reference in New Issue