Changeset 32939
- Timestamp:
- 02/11/15 14:46:22 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/adjust.h
r32937 r32939 264 264 debuglevel->hidden = YES; 265 265 #else 266 addchoicebox(debuglevel, "10", _("Minimal")); 267 addchoicebox(debuglevel, "40", _("TopfieldVFD")); 268 addchoicebox(debuglevel, "50", _("MediaCenter")); 269 addchoicebox(debuglevel, "60", _("Menulist")); 270 addchoicebox(debuglevel, "70", _("Networkbrowser")); 271 addchoicebox(debuglevel, "80", _("Harddisk")); 272 addchoicebox(debuglevel, "90", _("Screensaver")); 273 addchoicebox(debuglevel, "99", _("Tithek/HTTP Header")); 274 addchoicebox(debuglevel, "100", _("Global")); 275 addchoicebox(debuglevel, "130", _("TPK")); 276 addchoicebox(debuglevel, "133", _("IMDbScan")); 277 addchoicebox(debuglevel, "150", _("ePlayer")); 278 addchoicebox(debuglevel, "199", _("Community login")); 279 addchoicebox(debuglevel, "200", _("Tuning")); 280 addchoicebox(debuglevel, "250", _("Stream/Record/Softcam")); 281 addchoicebox(debuglevel, "270", _("EPG")); 282 addchoicebox(debuglevel, "300", _("Radiotext")); 283 addchoicebox(debuglevel, "400", _("Subtitle")); 284 addchoicebox(debuglevel, "500", _("Scan")); 285 addchoicebox(debuglevel, "777", _("MediaDB")); 286 addchoicebox(debuglevel, "900", _("Mutex")); 287 addchoicebox(debuglevel, "1000", _("Function")); 266 tmpstr = ostrcat("10 - ", _("Minimal"), 0, 0); 267 addchoicebox(debuglevel, "10", tmpstr); 268 free(tmpstr), tmpstr = NULL; 269 270 tmpstr = ostrcat("40 - ", _("TopfieldVFD"), 0, 0); 271 addchoicebox(debuglevel, "40", tmpstr); 272 free(tmpstr), tmpstr = NULL; 273 274 tmpstr = ostrcat("50 - ", _("MediaCenter"), 0, 0); 275 addchoicebox(debuglevel, "50", tmpstr); 276 free(tmpstr), tmpstr = NULL; 277 278 tmpstr = ostrcat("60 - ", _("Menulist"), 0, 0); 279 addchoicebox(debuglevel, "60", tmpstr); 280 free(tmpstr), tmpstr = NULL; 281 282 tmpstr = ostrcat("70 - ", _("Networkbrowser"), 0, 0); 283 addchoicebox(debuglevel, "70", tmpstr); 284 free(tmpstr), tmpstr = NULL; 285 286 tmpstr = ostrcat("80 - ", _("Harddisk"), 0, 0); 287 addchoicebox(debuglevel, "80", tmpstr); 288 free(tmpstr), tmpstr = NULL; 289 290 tmpstr = ostrcat("90 - ", _("Screensaver"), 0, 0); 291 addchoicebox(debuglevel, "90", tmpstr); 292 free(tmpstr), tmpstr = NULL; 293 294 tmpstr = ostrcat("99 - ", _("Tithek/HTTP Header"), 0, 0); 295 addchoicebox(debuglevel, "99", tmpstr); 296 free(tmpstr), tmpstr = NULL; 297 298 tmpstr = ostrcat("100 - ", _("Global"), 0, 0); 299 addchoicebox(debuglevel, "100", tmpstr); 300 free(tmpstr), tmpstr = NULL; 301 302 tmpstr = ostrcat("130 - ", _("TPK"), 0, 0); 303 addchoicebox(debuglevel, "130", tmpstr); 304 free(tmpstr), tmpstr = NULL; 305 306 tmpstr = ostrcat("133 - ", _("IMDbScan"), 0, 0); 307 addchoicebox(debuglevel, "133", tmpstr); 308 free(tmpstr), tmpstr = NULL; 309 310 tmpstr = ostrcat("150 - ", _("ePlayer"), 0, 0); 311 addchoicebox(debuglevel, "150", tmpstr); 312 free(tmpstr), tmpstr = NULL; 313 314 tmpstr = ostrcat("199 - ", _("Community login"), 0, 0); 315 addchoicebox(debuglevel, "199", tmpstr); 316 free(tmpstr), tmpstr = NULL; 317 318 tmpstr = ostrcat("200 - ", _("Tuning"), 0, 0); 319 addchoicebox(debuglevel, "200", tmpstr); 320 free(tmpstr), tmpstr = NULL; 321 322 tmpstr = ostrcat("250 - ", _("Stream/Record/Softcam"), 0, 0); 323 addchoicebox(debuglevel, "250", tmpstr); 324 free(tmpstr), tmpstr = NULL; 325 326 tmpstr = ostrcat("270 - ", _("EPG"), 0, 0); 327 addchoicebox(debuglevel, "270", tmpstr); 328 free(tmpstr), tmpstr = NULL; 329 330 tmpstr = ostrcat("300 - ", _("Radiotext"), 0, 0); 331 addchoicebox(debuglevel, "300", tmpstr); 332 free(tmpstr), tmpstr = NULL; 333 334 tmpstr = ostrcat("400 - ", _("Subtitle"), 0, 0); 335 addchoicebox(debuglevel, "400", tmpstr); 336 free(tmpstr), tmpstr = NULL; 337 338 tmpstr = ostrcat("500 - ", _("Scan"), 0, 0); 339 addchoicebox(debuglevel, "500", tmpstr); 340 free(tmpstr), tmpstr = NULL; 341 342 tmpstr = ostrcat("777 - ", _("MediaDB"), 0, 0); 343 addchoicebox(debuglevel, "777", tmpstr); 344 free(tmpstr), tmpstr = NULL; 345 346 tmpstr = ostrcat("900 - ", _("Mutex"), 0, 0); 347 addchoicebox(debuglevel, "900", tmpstr); 348 free(tmpstr), tmpstr = NULL; 349 350 tmpstr = ostrcat("1000 - ", _("Function"), 0, 0); 351 addchoicebox(debuglevel, "1000", tmpstr); 352 free(tmpstr), tmpstr = NULL; 353 288 354 setchoiceboxselection(debuglevel, getconfig("debuglevel", NULL)); 289 355 #endif
Note: See TracChangeset
for help on using the changeset viewer.