| 21 frame = purple_plugin_pref_frame_new(); |
21 frame = purple_plugin_pref_frame_new(); |
| 22 |
22 |
| 23 ppref = purple_plugin_pref_new_with_label(_("Timestamp Format Options")); |
23 ppref = purple_plugin_pref_new_with_label(_("Timestamp Format Options")); |
| 24 purple_plugin_pref_frame_add(frame, ppref); |
24 purple_plugin_pref_frame_add(frame, ppref); |
| 25 |
25 |
| 26 tmp = g_strdup_printf(_("_Force (traditional %s) 24-hour time format"), PIDGIN_NAME); |
26 tmp = g_strdup_printf(_("_Force 24-hour time format")); |
| 27 ppref = purple_plugin_pref_new_with_name_and_label( |
27 ppref = purple_plugin_pref_new_with_name_and_label( |
| 28 "/plugins/gtk/timestamp_format/force_24hr", |
28 "/plugins/gtk/timestamp_format/force_24hr", |
| 29 tmp); |
29 tmp); |
| 30 purple_plugin_pref_frame_add(frame, ppref); |
30 purple_plugin_pref_frame_add(frame, ppref); |
| 31 g_free(tmp); |
31 g_free(tmp); |