location-banner: drop periods after some titles

According to the HIG banner texts shouldn't end in periods.
This commit is contained in:
Peter Eisenmann 2023-01-21 15:47:21 +01:00 committed by António Fernandes
parent 3d6df1a7fb
commit 0f049c070c

View file

@ -107,13 +107,13 @@ nautilus_location_banner_load (AdwBanner *banner,
{
case NAUTILUS_SPECIAL_LOCATION_SCRIPTS:
{
adw_banner_set_title (banner, _("Executable files in this folder will appear in the Scripts menu."));
adw_banner_set_title (banner, _("Executable files in this folder will appear in the Scripts menu"));
}
break;
case NAUTILUS_SPECIAL_LOCATION_SHARING:
{
adw_banner_set_title (banner, _("Turn on File Sharing to share the contents of this folder over the network."));
adw_banner_set_title (banner, _("Turn on File Sharing to share the contents of this folder over the network"));
button_label = _("Sharing Settings");
callback = G_CALLBACK (on_sharing_clicked);
}
@ -121,7 +121,7 @@ nautilus_location_banner_load (AdwBanner *banner,
case NAUTILUS_SPECIAL_LOCATION_TEMPLATES:
{
adw_banner_set_title (banner, _("Put files in this folder to use them as templates for new documents."));
adw_banner_set_title (banner, _("Put files in this folder to use them as templates for new documents"));
button_label = _("_Learn More");
callback = G_CALLBACK (on_template_clicked);
}