[seahorse] Add a gettext call to the place where a static arrays elements are used. These strings appeared untr



commit 8ced30c3c2c1bc94a2357b3b7fe9638bcf123b7d
Author: Gabor Kelemen <kelemeng gnome hu>
Date:   Tue Jul 9 14:13:01 2013 +0200

    Add a gettext call to the place where a static arrays elements are
    used. These strings appeared untranslated in the right side of
    the main window.

 gkr/gkr-item.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gkr/gkr-item.vala b/gkr/gkr-item.vala
index 0698425..0fe2148 100644
--- a/gkr/gkr-item.vala
+++ b/gkr/gkr-item.vala
@@ -167,7 +167,7 @@ public class Item : Secret.Item, Deletable, Viewable {
                                if (entry.custom_func != null)
                                        entry.custom_func(label, attrs, ref this._info);
                                if (this._info.description == null)
-                                       this._info.description = entry.description;
+                                       this._info.description = _(entry.description);
                                break;
                        }
                }


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