[gtranslator] Message in status bar is not clear
- From: Ignacio Casal Quinteiro <icq src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gtranslator] Message in status bar is not clear
- Date: Sun, 16 Aug 2009 20:07:09 +0000 (UTC)
commit a92f958a8757f7826e1d987de19bc0234c6971af
Author: Ignacio Casal Quinteiro <icq gnome org>
Date: Sun Aug 16 22:05:04 2009 +0200
Message in status bar is not clear
Rephased the status bar message. Fixes bug #569068
src/window.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/window.c b/src/window.c
index bef5d4c..a8f0160 100644
--- a/src/window.c
+++ b/src/window.c
@@ -761,14 +761,14 @@ gtranslator_window_update_statusbar_message_count(GtranslatorTab *tab,
default: break;
}
- status_msg = g_strdup_printf(_("Status: %s"), status);
+ status_msg = g_strdup_printf("(%s)", status);
current = g_strdup_printf(_("Current: %d"), pos);
- total = g_strdup_printf(_("Total: %d"), message_count);
- fuzzy_msg = g_strdup_printf(_("Fuzzy: %d"), fuzzy);
- untranslated_msg = g_strdup_printf(_("Untranslated: %d"), untranslated);
+ total = g_strdup_printf(_("Total: %d translated"), message_count);
+ fuzzy_msg = g_strdup_printf(_("%d fuzzy"), fuzzy);
+ untranslated_msg = g_strdup_printf(_("%d untranslated"), untranslated);
- msg = g_strconcat(" ", current, " ", status_msg, " ", total,
- " ", fuzzy_msg, " ", untranslated_msg, NULL);
+ msg = g_strconcat (" ", current, " ", status_msg, " ", total,
+ ", ", fuzzy_msg, ", ", untranslated_msg, NULL);
gtranslator_statusbar_pop (GTR_STATUSBAR (window->priv->statusbar),
0);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]