diff options
author | Julien Lavergne <gilir@ubuntu.com> | 2013-01-05 16:18:38 +0100 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2014-01-03 08:02:30 -0200 |
commit | eb77158796dbf5f3ce395f5b85a2d0f78038fa00 (patch) | |
tree | fd3e5bc8281922378b388020f662871aeb60d805 /modules/computer/alsa.c | |
parent | ba24b32ccaaf44f683ffe35cd4ac4ddf61c8da06 (diff) |
Add initial translation support (patch from rodin.s)
Diffstat (limited to 'modules/computer/alsa.c')
-rw-r--r-- | modules/computer/alsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/computer/alsa.c b/modules/computer/alsa.c index f1ff3ad8..e1e7b946 100644 --- a/modules/computer/alsa.c +++ b/modules/computer/alsa.c @@ -23,14 +23,14 @@ gchar * computer_get_alsacards(Computer * computer) { GSList *p; - gchar *tmp = g_strdup("[Audio Devices]\n"); + gchar *tmp = g_strdup(_("[Audio Devices]\n")); gint n = 0; if (computer->alsa) { for (p = computer->alsa->cards; p; p = p->next) { AlsaCard *ac = (AlsaCard *) p->data; - tmp = h_strdup_cprintf("Audio Adapter#%d=%s\n", + tmp = h_strdup_cprintf(_("Audio Adapter#%d=%s\n"), tmp, ++n, ac->friendly_name); } } |