Remove 'locale' from properties

Having the value stored here is somewhat pointless, so this is one step
in fixing the locale handling.  Locale should be handled by the modules
themselves with their own loaded locale lookup information.
This commit is contained in:
jp9000
2014-06-24 23:54:10 -07:00
parent 899f053034
commit 74b4743bce
18 changed files with 24 additions and 33 deletions

View File

@@ -191,7 +191,7 @@ static void flv_output_data(void *data, struct encoder_packet *packet)
static obs_properties_t flv_output_properties(const char *locale)
{
obs_properties_t props = obs_properties_create(locale);
obs_properties_t props = obs_properties_create();
/* TODO: locale */
obs_properties_add_text(props, "path", "File Path", OBS_TEXT_DEFAULT);

View File

@@ -569,7 +569,7 @@ static void rtmp_stream_defaults(obs_data_t defaults)
static obs_properties_t rtmp_stream_properties(const char *locale)
{
obs_properties_t props = obs_properties_create(locale);
obs_properties_t props = obs_properties_create();
/* TODO: locale */
obs_properties_add_text(props, "path", "Stream URL", OBS_TEXT_DEFAULT);