[gnome-software] trivial: Use sensible icon names for the artificial category names
- From: Richard Hughes <rhughes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software] trivial: Use sensible icon names for the artificial category names
- Date: Tue, 5 Jul 2016 12:24:06 +0000 (UTC)
commit cd988a37930ed466a77102dd8e1d6ba3caecd540
Author: Richard Hughes <richard hughsie com>
Date: Tue Jul 5 13:04:06 2016 +0100
trivial: Use sensible icon names for the artificial category names
src/gs-category.c | 22 +++++++---------------
1 files changed, 7 insertions(+), 15 deletions(-)
---
diff --git a/src/gs-category.c b/src/gs-category.c
index 63dd468..bcb1d4a 100644
--- a/src/gs-category.c
+++ b/src/gs-category.c
@@ -172,21 +172,13 @@ gs_category_get_icon (GsCategory *category)
{
g_return_val_if_fail (GS_IS_CATEGORY (category), NULL);
- /* special case, we don't want translations in the plugins */
- if (g_strcmp0 (category->id, "other") == 0) {
- /* TRANSLATORS: this is where all applications that don't
- * fit in other groups are put */
- return _("Other");
- }
- if (g_strcmp0 (category->id, "all") == 0) {
- /* TRANSLATORS: this is a subcategory matching all the
- * different apps in the parent category, e.g. "Games" */
- return _("All");
- }
- if (g_strcmp0 (category->id, "featured") == 0) {
- /* TRANSLATORS: this is a subcategory of featured apps */
- return _("Featured");
- }
+ /* special case */
+ if (g_strcmp0 (category->id, "other") == 0)
+ return "emblem-system-symbolic";
+ if (g_strcmp0 (category->id, "all") == 0)
+ return "emblem-default-symbolic";
+ if (g_strcmp0 (category->id, "featured") == 0)
+ return "emblem-favorite-symbolic";
return category->icon;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]