Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spelling: with adjustable permissions, SSH #160

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/Permissions/PermissionsPlug.vala
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ public class Permissions.Plug : Gtk.Grid {

static construct {
permission_names = new GLib.HashTable <unowned string, unowned string> (str_hash, str_equal);
permission_names["filesystems=home"] = _("Home Folder");
permission_names["filesystems=host"] = _("System Folders");
permission_names["filesystems=home"] = _("Home folder");
permission_names["filesystems=host"] = _("System folders");
permission_names["devices=all"] = _("Devices");
permission_names["shared=network"] = _("Network");
permission_names["features=bluetooth"] = _("Bluetooth");
permission_names["sockets=cups"] = _("Printing");
permission_names["sockets=ssh-auth"] = _("Secure Shell Agent");
permission_names["devices=dri"] = _("GPU Acceleration");
permission_names["sockets=ssh-auth"] = _("Agent for SSH");
permission_names["devices=dri"] = _("GPU acceleration");
}

construct {
Expand All @@ -42,7 +42,7 @@ public class Permissions.Plug : Gtk.Grid {
};
placeholder_title.get_style_context ().add_class (Granite.STYLE_CLASS_H3_LABEL);

var placeholder_description = new Gtk.Label (_("Apps whose permissions can be adjusted will automatically appear here when installed")) {
var placeholder_description = new Gtk.Label (_("Apps with adjustable permissions appear here once installed.")) {
Copy link
Contributor Author

@comradekingu comradekingu Jul 3, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wrap = true,
xalign = 0
};
Expand Down