forked from AuroraMiddleware/gtk
placesview: Fix translator comments
These comments were applied to the wrong strings by xgettext. Fixes: #2666
This commit is contained in:
parent
f18eef7e6f
commit
fc450e313b
@ -1649,8 +1649,9 @@ populate_available_protocols_grid (GtkGrid *grid)
|
||||
attach_protocol_row_to_grid (grid, _("AppleTalk"), "afp://");
|
||||
|
||||
if (g_strv_contains (supported_protocols, "ftp"))
|
||||
attach_protocol_row_to_grid (grid, _("File Transfer Protocol"),
|
||||
/* Translators: do not translate ftp:// and ftps:// */
|
||||
attach_protocol_row_to_grid (grid, _("File Transfer Protocol"), _("ftp:// or ftps://"));
|
||||
_("ftp:// or ftps://"));
|
||||
|
||||
if (g_strv_contains (supported_protocols, "nfs"))
|
||||
attach_protocol_row_to_grid (grid, _("Network File System"), "nfs://");
|
||||
@ -1659,12 +1660,14 @@ populate_available_protocols_grid (GtkGrid *grid)
|
||||
attach_protocol_row_to_grid (grid, _("Samba"), "smb://");
|
||||
|
||||
if (g_strv_contains (supported_protocols, "ssh"))
|
||||
attach_protocol_row_to_grid (grid, _("SSH File Transfer Protocol"),
|
||||
/* Translators: do not translate sftp:// and ssh:// */
|
||||
attach_protocol_row_to_grid (grid, _("SSH File Transfer Protocol"), _("sftp:// or ssh://"));
|
||||
_("sftp:// or ssh://"));
|
||||
|
||||
if (g_strv_contains (supported_protocols, "dav"))
|
||||
attach_protocol_row_to_grid (grid, _("WebDAV"),
|
||||
/* Translators: do not translate dav:// and davs:// */
|
||||
attach_protocol_row_to_grid (grid, _("WebDAV"), _("dav:// or davs://"));
|
||||
_("dav:// or davs://"));
|
||||
}
|
||||
|
||||
static GMenuModel *
|
||||
|
Loading…
Reference in New Issue
Block a user