diff --git a/plugins/mac-capture/data/locale/en-US.ini b/plugins/mac-capture/data/locale/en-US.ini index ea4127e50..2eb237c67 100644 --- a/plugins/mac-capture/data/locale/en-US.ini +++ b/plugins/mac-capture/data/locale/en-US.ini @@ -20,5 +20,6 @@ Crop.origin.x="Crop left" Crop.origin.y="Crop top" Crop.size.width="Crop right" Crop.size.height="Crop bottom" -SCKCapture="macOS Screen Capture" -SCKAudioUnavailable="Audio capture requires macOS 13 or newer." +SCK.Name="macOS Screen Capture" +SCK.AudioUnavailable="Audio capture requires macOS 13 or newer." +SCK.Method="Method" diff --git a/plugins/mac-capture/mac-screen-capture.m b/plugins/mac-capture/mac-screen-capture.m index bce93fe66..f36bcc9df 100644 --- a/plugins/mac-capture/mac-screen-capture.m +++ b/plugins/mac-capture/mac-screen-capture.m @@ -718,7 +718,7 @@ static void screen_capture_video_render(void *data, gs_effect_t *effect static const char *screen_capture_getname(void *unused __attribute__((unused))) { - return obs_module_text("SCKCapture"); + return obs_module_text("SCK.Name"); } static uint32_t screen_capture_getwidth(void *data) @@ -1015,8 +1015,8 @@ static obs_properties_t *screen_capture_properties(void *data) obs_properties_t *props = obs_properties_create(); obs_property_t *capture_type = obs_properties_add_list( - props, "type", obs_module_text("Method"), OBS_COMBO_TYPE_LIST, - OBS_COMBO_FORMAT_INT); + props, "type", obs_module_text("SCK.Method"), + OBS_COMBO_TYPE_LIST, OBS_COMBO_FORMAT_INT); obs_property_list_add_int(capture_type, obs_module_text("DisplayCapture"), 0); obs_property_list_add_int(capture_type, @@ -1089,7 +1089,7 @@ static obs_properties_t *screen_capture_properties(void *data) ; else obs_properties_add_text(props, "audio_info", - obs_module_text("SCKAudioUnavailable"), + obs_module_text("SCK.AudioUnavailable"), OBS_TEXT_INFO); return props;