[maemo-commits] [maemo-commits] r12834 - in projects/haf/trunk/hildon-fm: . debian hildon-fm
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Wed Jul 25 14:52:36 EEST 2007
- Previous message: [maemo-commits] r12833 - in projects/haf/trunk/hildon-desktop: . libhildondesktop
- Next message: [maemo-commits] r12835 - in projects/haf/trunk/gtk+: . gtk
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: richard Date: 2007-07-25 14:52:33 +0300 (Wed, 25 Jul 2007) New Revision: 12834 Modified: projects/haf/trunk/hildon-fm/ChangeLog projects/haf/trunk/hildon-fm/debian/changelog projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-system-storage-dialog.c Log: Add two new logical IDs. Modified: projects/haf/trunk/hildon-fm/ChangeLog =================================================================== --- projects/haf/trunk/hildon-fm/ChangeLog 2007-07-25 11:40:24 UTC (rev 12833) +++ projects/haf/trunk/hildon-fm/ChangeLog 2007-07-25 11:52:33 UTC (rev 12834) @@ -1,3 +1,9 @@ +2007-07-25 Richard Hult <richard at imendio.com> + + * hildon-fm/hildon-file-system-storage-dialog.c + (hildon_file_system_storage_dialog_init): Use the new logical IDs + for "Common" and "Data." from the upcoming spec. + 2007-07-25 Kimmo Hämäläinen <kimmo.hamalainen at nokia.com> * hildon-file-system-private.c @@ -28,7 +34,7 @@ * hildon-fm/hildon-file-system-storage-dialog.c: (file_system_storage_dialog_update): Fix NB#63101, wrong - translation of unnames MMC cards. + translation of unnamed MMC cards. 2007-07-05 Marius Vollmer <marius.vollmer at nokia.com> Modified: projects/haf/trunk/hildon-fm/debian/changelog =================================================================== --- projects/haf/trunk/hildon-fm/debian/changelog 2007-07-25 11:40:24 UTC (rev 12833) +++ projects/haf/trunk/hildon-fm/debian/changelog 2007-07-25 11:52:33 UTC (rev 12834) @@ -5,6 +5,7 @@ /system/osso/af/mmc-mount-point and /system/osso/af/mmc-device-name Fixes: NB#62440, NB#60259, NB#51728, NB#59097, NB#61292 * Added a check for a NULL pointer. Fixes: NB#63350 + * Add two logical IDs that were added to the UI spec ("Common", "Data") -- Marius Vollmer <marius.vollmer at nokia.com> Wed, 25 Jul 2007 11:33:08 +0300 Modified: projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-system-storage-dialog.c =================================================================== --- projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-system-storage-dialog.c 2007-07-25 11:40:24 UTC (rev 12833) +++ projects/haf/trunk/hildon-fm/hildon-fm/hildon-file-system-storage-dialog.c 2007-07-25 11:52:33 UTC (rev 12834) @@ -320,7 +320,7 @@ (GtkAttachOptions) (0), 0, 0); page = gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook), 0); - label_common = gtk_label_new ("Common"); /* FIXME: Need logical ID here. */ + label_common = gtk_label_new (_("sfil_ti_storage_details_common")); gtk_widget_show (label_common); gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook), page, label_common); @@ -341,7 +341,7 @@ */ page = gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook), 1); - label_data = gtk_label_new ("Data"); /* FIXME: Need logical ID here. */ + label_data = gtk_label_new (_("sfil_ti_storage_details_data")); gtk_widget_show (label_data); gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook), page, label_data);
- Previous message: [maemo-commits] r12833 - in projects/haf/trunk/hildon-desktop: . libhildondesktop
- Next message: [maemo-commits] r12835 - in projects/haf/trunk/gtk+: . gtk
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]