[gnome-usage] Fix grammar and punctuation in translatable strings



commit 8341b354b5e928d68c3d1a143e8e2b093d495455
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Thu Feb 9 13:45:07 2017 +0100

    Fix grammar and punctuation in translatable strings

 data/org.gnome.Usage.gschema.xml |    4 ++--
 src/cpu-sub-view.vala            |    2 +-
 src/memory-sub-view.vala         |    2 +-
 src/network-sub-view.vala        |    2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/data/org.gnome.Usage.gschema.xml b/data/org.gnome.Usage.gschema.xml
index d198c84..2aec310 100644
--- a/data/org.gnome.Usage.gschema.xml
+++ b/data/org.gnome.Usage.gschema.xml
@@ -2,8 +2,8 @@
     <schema id="org.gnome.Usage" path="/org/gnome/Usage/" gettext-domain="gnome-usage">
         <key name="unkillable-processes" type="as">
             <default>['gnome-shell', 'gdm-x-session', 'gdm-wayland-session', 'gdm', 'systemd', 
'gdm-session-worker', 'pulseaudio', 'Xorg']</default>
-            <summary>A list of processes, which we don’t want killed</summary>
-            <description>This list is used for filtering, which processes user can’t stop.</description>
+            <summary>A list of processes which we don’t want killed</summary>
+            <description>This list is used for filtering which processes the user can’t stop.</description>
         </key>
     </schema>
 </schemalist>
diff --git a/src/cpu-sub-view.vala b/src/cpu-sub-view.vala
index e1dbc4d..8437554 100644
--- a/src/cpu-sub-view.vala
+++ b/src/cpu-sub-view.vala
@@ -32,7 +32,7 @@ namespace Usage
             cpu_box.pack_start(cpu_graph_box, false, false, 0);
             cpu_box.pack_start(spinner, true, true, 0);
 
-            var no_process_label = new Gtk.Label("<span font_desc=\"14.0\">" + _("No application using 
processor.") + "</span>");
+            var no_process_label = new Gtk.Label("<span font_desc=\"14.0\">" + _("No applications using 
processor.") + "</span>");
             no_process_label.set_use_markup(true);
             no_process_label.get_style_context().add_class("dim-label");
 
diff --git a/src/memory-sub-view.vala b/src/memory-sub-view.vala
index 969f6ce..35838e9 100644
--- a/src/memory-sub-view.vala
+++ b/src/memory-sub-view.vala
@@ -32,7 +32,7 @@ namespace Usage
             memory_box.pack_start(memory_graph_box, false, false, 0);
             memory_box.pack_start(spinner, true, true, 0);
 
-            var no_process_label = new Gtk.Label("<span font_desc=\"14.0\">" + _("No application using 
memory.") + "</span>");
+            var no_process_label = new Gtk.Label("<span font_desc=\"14.0\">" + _("No applications using 
memory.") + "</span>");
             no_process_label.set_use_markup(true);
             no_process_label.get_style_context().add_class("dim-label");
 
diff --git a/src/network-sub-view.vala b/src/network-sub-view.vala
index 179e476..faff178 100644
--- a/src/network-sub-view.vala
+++ b/src/network-sub-view.vala
@@ -31,7 +31,7 @@ namespace Usage
             network_box.pack_start(label, false, false, 0);
             network_box.pack_start(network_graph_box, false, false, 0);
 
-            var no_process_label = new Gtk.Label("<span font_desc=\"14.0\">" + _("No application using 
network.") + "</span>");
+            var no_process_label = new Gtk.Label("<span font_desc=\"14.0\">" + _("No applications using 
network.") + "</span>");
             no_process_label.set_use_markup(true);
             no_process_label.get_style_context().add_class("dim-label");
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]