Update URLs in the app to https://gparted.org (#796411)

We previously migrated our web site from http://gparted.org to
https://gparted.org under:
    bug 786707 - gparted.org does not use HTTPS

and updated URLs in the GParted Manual to match in commit:
    a8172ecb04
    Convert Manual links to HTTPS where possible and update version

Now update the URLs displayed in the GParted application too.

Bug 796411 - Enhancements request - URL links
This commit is contained in:
Mike Fleetwood 2018-05-27 09:44:42 +01:00 committed by Curtis Gedak
parent a9e85698f2
commit 672a2f9c71
2 changed files with 11 additions and 6 deletions

View File

@ -282,9 +282,14 @@ void Dialog_Progress::on_signal_show()
str_temp += "\n\n<i><b>" + Glib::ustring( _("IMPORTANT") ) + "</b>\n" ;
str_temp += _("If you want support, you need to provide the saved details!") ;
str_temp += "\n" + String::ucompose(
/* TO TRANSLATORS: looks like See http://gparted.org/save-details.htm for more information. */
_("See %1 for more information."), "http://gparted.org/save-details.htm" ) + "</i>" ;
str_temp += "\n";
str_temp += String::ucompose(
/* TO TRANSLATORS: looks like
* See https://gparted.org/save-details.htm for more information.
*/
_("See %1 for more information."),
"https://gparted.org/save-details.htm" );
str_temp += "</i>";
dialog .set_secondary_text( str_temp, true ) ;
dialog .run() ;

View File

@ -1688,7 +1688,7 @@ void Win_GParted::menu_help_contents()
tmp_msg += "\n" ;
tmp_msg += _( "Documentation is available at the project web site." ) ;
tmp_msg += "\n" ;
tmp_msg += "http://gparted.org" ;
tmp_msg += "https://gparted.org";
dialog .set_secondary_text( tmp_msg ) ;
dialog .run() ;
#endif
@ -1745,7 +1745,7 @@ void Win_GParted::menu_help_about()
//the url is not clickable - should not invoke web browser as root
dialog .set_website_label( "http://gparted.org" ) ;
dialog.set_website_label( "https://gparted.org" );
dialog .run() ;
}
@ -1924,7 +1924,7 @@ void Win_GParted::activate_resize()
tmp_msg += "\n";
tmp_msg += _("You can learn how to repair the boot configuration in the GParted FAQ.");
tmp_msg += "\n";
tmp_msg += "http://gparted.org/faq.php";
tmp_msg += "https://gparted.org/faq.php";
tmp_msg += "\n\n";
tmp_msg += _("Moving a partition might take a very long time to apply.");
dialog.set_secondary_text( tmp_msg );