comparison src/audacious/ui_preferences.c @ 4532:97b29dec6c6b

moved away some stuff from main.c
author mf0102 <0102@gmx.at>
date Thu, 08 May 2008 22:49:52 +0200
parents b3e4f5c31546
children d09dd0960a6a
comparison
equal deleted inserted replaced
4531:cbb1f66d8971 4532:97b29dec6c6b
157 { N_("Year") , "${year}" }, 157 { N_("Year") , "${year}" },
158 { N_("Comment") , "${comment}" }, 158 { N_("Comment") , "${comment}" },
159 { N_("Codec") , "${codec}" }, 159 { N_("Codec") , "${codec}" },
160 { N_("Quality") , "${quality}" }, 160 { N_("Quality") , "${quality}" },
161 }; 161 };
162 static const guint n_title_field_tags = G_N_ELEMENTS(title_field_tags);
163
164
165 const gchar *chardet_detector_presets[] = {
166 N_("None"),
167 N_("Japanese"),
168 N_("Taiwanese"),
169 N_("Chinese"),
170 N_("Korean"),
171 N_("Russian"),
172 N_("Greek"),
173 N_("Hebrew"),
174 N_("Turkish"),
175 N_("Arabic"),
176 #ifdef HAVE_UDET
177 N_("Universal")
178 #endif
179 };
180 const guint n_chardet_detector_presets = G_N_ELEMENTS(chardet_detector_presets);
181
162 182
163 typedef struct { 183 typedef struct {
164 void *next; 184 void *next;
165 GtkWidget *container; 185 GtkWidget *container;
166 char *pg_name; 186 char *pg_name;
167 char *img_url; 187 char *img_url;
168 } CategoryQueueEntry; 188 } CategoryQueueEntry;
169 189
170 CategoryQueueEntry *category_queue = NULL; 190 CategoryQueueEntry *category_queue = NULL;
171
172 static const guint n_title_field_tags = G_N_ELEMENTS(title_field_tags);
173 191
174 typedef enum { 192 typedef enum {
175 WIDGET_NONE, 193 WIDGET_NONE,
176 WIDGET_CHK_BTN, 194 WIDGET_CHK_BTN,
177 WIDGET_LABEL, 195 WIDGET_LABEL,