mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
6784266e3d
"Frames per second" string in audio-video-properties tab was unavailable for translation. To fix this, handle the string with g_dngettext() and allow for both singular and plural translation. Closes https://gitlab.gnome.org/GNOME/nautilus/issues/990
53 lines
1.2 KiB
Meson
53 lines
1.2 KiB
Meson
resources = gnome.compile_resources(
|
|
'nautilus-audio-video-properties-resources',
|
|
join_paths(
|
|
'resources', 'nautilus-audio-video-properties.gresource.xml'
|
|
),
|
|
source_dir: 'resources',
|
|
c_name: 'nautilus_audio_video_properties',
|
|
)
|
|
|
|
libm = cc.find_library('m')
|
|
|
|
libtotem_properties_page_sources = files(
|
|
'totem-properties-main.c',
|
|
'totem-properties-view.c',
|
|
'bacon-video-widget-properties.c',
|
|
'totem-gst-helpers.c',
|
|
) + resources
|
|
|
|
libtotem_properties_page_deps = [
|
|
libm,
|
|
gst_tag_dep,
|
|
gst_pbutils_dep,
|
|
]
|
|
|
|
libtotem_properties_page = shared_module(
|
|
'totem-properties-page',
|
|
sources: libtotem_properties_page_sources,
|
|
dependencies: libtotem_properties_page_deps + [
|
|
nautilus_extension
|
|
],
|
|
c_args: [
|
|
'-DG_LOG_DOMAIN="TotemPropertiesPage"'
|
|
],
|
|
install: true,
|
|
install_dir: extensiondir
|
|
)
|
|
|
|
test_properties_page_sources = files(
|
|
'totem-properties-main.c',
|
|
'totem-properties-view.c',
|
|
'bacon-video-widget-properties.c',
|
|
'totem-gst-helpers.c',
|
|
'test-properties-page.c'
|
|
) + resources
|
|
|
|
executable(
|
|
'test-properties-page',
|
|
test_properties_page_sources,
|
|
dependencies: libtotem_properties_page_deps + [
|
|
nautilus_extension
|
|
],
|
|
)
|
|
|