Merge lp:~codygarver/switchboard/fix-1194167 into lp:~elementary-pantheon/switchboard/switchboard

Proposed by Cody Garver
Status: Merged
Approved by: David Gomes
Approved revision: 416
Merged at revision: 416
Proposed branch: lp:~codygarver/switchboard/fix-1194167
Merge into: lp:~elementary-pantheon/switchboard/switchboard
Diff against target: 119 lines (+35/-40)
2 files modified
po/switchboard.pot (+33/-38)
src/CategoryView.vala (+2/-2)
To merge this branch: bzr merge lp:~codygarver/switchboard/fix-1194167
Reviewer Review Type Date Requested Status
David Gomes (community) Approve
Review via email: mp+202186@code.launchpad.net

Commit message

Change "System" category to "Administration" to fix bug #1194167.

To post a comment you must log in.
Revision history for this message
David Gomes (davidgomes) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'po/switchboard.pot'
2--- po/switchboard.pot 2013-12-14 16:45:44 +0000
3+++ po/switchboard.pot 2014-01-17 23:42:24 +0000
4@@ -8,7 +8,7 @@
5 msgstr ""
6 "Project-Id-Version: PACKAGE VERSION\n"
7 "Report-Msgid-Bugs-To: \n"
8-"POT-Creation-Date: 2013-12-14 17:45+0100\n"
9+"POT-Creation-Date: 2014-01-17 17:40-0600\n"
10 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: LANGUAGE <LL@li.org>\n"
13@@ -17,56 +17,51 @@
14 "Content-Type: text/plain; charset=CHARSET\n"
15 "Content-Transfer-Encoding: 8bit\n"
16
17-#: /home/noelco/libpeas-isis/po/../src//DesktopLauncher.vala:6
18-msgid "Change system and user settings"
19-msgstr ""
20-
21-#: /home/noelco/libpeas-isis/po/../src//DesktopLauncher.vala:7
22-msgid "Settings Center"
23-msgstr ""
24-
25-#: /home/noelco/libpeas-isis/po/../src//CategoryView.vala:174
26-#, c-format
27-msgid "Unable to load plug %s's icon: %s"
28-msgstr ""
29-
30-#: /home/noelco/libpeas-isis/po/../src//CategoryView.vala:211
31-#: /home/noelco/libpeas-isis/po/../src//Switchboard.vala:132
32+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//Switchboard.vala:21
33+msgid "Open a plug"
34+msgstr ""
35+
36+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//Switchboard.vala:53
37+msgid "All Settings"
38+msgstr ""
39+
40+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//Switchboard.vala:201
41+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//CategoryView.vala:233
42 msgid "No settings found"
43 msgstr ""
44
45-#: /home/noelco/libpeas-isis/po/../src//CategoryView.vala:211
46+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//Switchboard.vala:201
47+msgid "Install some and re-launch Switchboard"
48+msgstr ""
49+
50+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//Switchboard.vala:263
51+msgid "Search Settings"
52+msgstr ""
53+
54+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//CategoryView.vala:233
55 msgid "Try changing your search terms"
56 msgstr ""
57
58-#: /home/noelco/libpeas-isis/po/../src//CategoryView.vala:302
59+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//CategoryView.vala:323
60 msgid "Personal"
61 msgstr ""
62
63-#: /home/noelco/libpeas-isis/po/../src//CategoryView.vala:305
64+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//CategoryView.vala:325
65 msgid "Hardware"
66 msgstr ""
67
68-#: /home/noelco/libpeas-isis/po/../src//CategoryView.vala:308
69+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//CategoryView.vala:327
70 msgid "Network and Wireless"
71 msgstr ""
72
73-#: /home/noelco/libpeas-isis/po/../src//CategoryView.vala:311
74-msgid "System"
75-msgstr ""
76-
77-#: /home/noelco/libpeas-isis/po/../src//Switchboard.vala:38
78-msgid "All Settings"
79-msgstr ""
80-
81-#: /home/noelco/libpeas-isis/po/../src//Switchboard.vala:132
82-msgid "Install some and re-launch Switchboard"
83-msgstr ""
84-
85-#: /home/noelco/libpeas-isis/po/../src//Switchboard.vala:215
86-msgid "Search Settings"
87-msgstr ""
88-
89-#: /home/noelco/libpeas-isis/po/../src//Switchboard.vala:315
90-msgid "Open a plug"
91+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//CategoryView.vala:329
92+msgid "Administration"
93+msgstr ""
94+
95+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//DesktopLauncher.vala:6
96+msgid "Change system and user settings"
97+msgstr ""
98+
99+#: /tmp/tmp.KVRL5pG1d8/s/po/../src//DesktopLauncher.vala:7
100+msgid "Settings Center"
101 msgstr ""
102
103=== modified file 'src/CategoryView.vala'
104--- src/CategoryView.vala 2014-01-02 20:29:12 +0000
105+++ src/CategoryView.vala 2014-01-17 23:42:24 +0000
106@@ -326,10 +326,10 @@
107 case Plug.Category.NETWORK:
108 return _("Network and Wireless");
109 case Plug.Category.SYSTEM:
110- return _("System");
111+ return _("Administration");
112 }
113
114 return null;
115 }
116 }
117-}
118\ No newline at end of file
119+}

Subscribers

People subscribed via source and target branches

to all changes: