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:
parent
a9e85698f2
commit
672a2f9c71
|
@ -282,9 +282,14 @@ void Dialog_Progress::on_signal_show()
|
||||||
|
|
||||||
str_temp += "\n\n<i><b>" + Glib::ustring( _("IMPORTANT") ) + "</b>\n" ;
|
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 += _("If you want support, you need to provide the saved details!") ;
|
||||||
str_temp += "\n" + String::ucompose(
|
str_temp += "\n";
|
||||||
/* TO TRANSLATORS: looks like See http://gparted.org/save-details.htm for more information. */
|
str_temp += String::ucompose(
|
||||||
_("See %1 for more information."), "http://gparted.org/save-details.htm" ) + "</i>" ;
|
/* 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 .set_secondary_text( str_temp, true ) ;
|
||||||
dialog .run() ;
|
dialog .run() ;
|
||||||
|
|
|
@ -1688,7 +1688,7 @@ void Win_GParted::menu_help_contents()
|
||||||
tmp_msg += "\n" ;
|
tmp_msg += "\n" ;
|
||||||
tmp_msg += _( "Documentation is available at the project web site." ) ;
|
tmp_msg += _( "Documentation is available at the project web site." ) ;
|
||||||
tmp_msg += "\n" ;
|
tmp_msg += "\n" ;
|
||||||
tmp_msg += "http://gparted.org" ;
|
tmp_msg += "https://gparted.org";
|
||||||
dialog .set_secondary_text( tmp_msg ) ;
|
dialog .set_secondary_text( tmp_msg ) ;
|
||||||
dialog .run() ;
|
dialog .run() ;
|
||||||
#endif
|
#endif
|
||||||
|
@ -1745,7 +1745,7 @@ void Win_GParted::menu_help_about()
|
||||||
|
|
||||||
|
|
||||||
//the url is not clickable - should not invoke web browser as root
|
//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() ;
|
dialog .run() ;
|
||||||
}
|
}
|
||||||
|
@ -1924,7 +1924,7 @@ void Win_GParted::activate_resize()
|
||||||
tmp_msg += "\n";
|
tmp_msg += "\n";
|
||||||
tmp_msg += _("You can learn how to repair the boot configuration in the GParted FAQ.");
|
tmp_msg += _("You can learn how to repair the boot configuration in the GParted FAQ.");
|
||||||
tmp_msg += "\n";
|
tmp_msg += "\n";
|
||||||
tmp_msg += "http://gparted.org/faq.php";
|
tmp_msg += "https://gparted.org/faq.php";
|
||||||
tmp_msg += "\n\n";
|
tmp_msg += "\n\n";
|
||||||
tmp_msg += _("Moving a partition might take a very long time to apply.");
|
tmp_msg += _("Moving a partition might take a very long time to apply.");
|
||||||
dialog.set_secondary_text( tmp_msg );
|
dialog.set_secondary_text( tmp_msg );
|
||||||
|
|
Loading…
Reference in New Issue