diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-23 04:24:28 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-23 04:24:28 +0000 |
| commit | 0e98685d800c766c7fb5a53e2e133aedb732df87 (patch) | |
| tree | 957e321342ce773a5bb3f8367b287b7e9616de39 | |
| parent | a4b4e61a022174cef201524939d2345a40f1566f (diff) | |
add the "desktop %i" string to the translations
| -rw-r--r-- | openbox/screen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openbox/screen.c b/openbox/screen.c index 61e46b71..d92f18da 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -935,7 +935,8 @@ void screen_update_desktop_names() screen_desktop_names[i] = g_strdup(it->data); else /* make up a nice name if it's not though */ - screen_desktop_names[i] = g_strdup_printf("desktop %i", i + 1); + screen_desktop_names[i] = g_strdup_printf(_("desktop %i"), + i + 1); if (it) it = g_slist_next(it); } |
