From 75cfe07b1414259c97b2102cf0ab0c7a130f0d5b Mon Sep 17 00:00:00 2001 From: Kevin Bataille Date: Sun, 8 Feb 2026 14:58:06 +0100 Subject: [PATCH] Rename sound files with -fr suffix for French tones Add country suffix to sound filenames to clarify the tone standard in use. Remove the unsuffixed and North American variants. --- data/meson.build | 4 ++-- ...outgoing-busy.oga => phone-outgoing-busy-fr.oga} | Bin ...ng-calling.oga => phone-outgoing-calling-fr.oga} | Bin src/calls-media-playback.c | 4 ++-- 4 files changed, 4 insertions(+), 4 deletions(-) rename data/sounds/{phone-outgoing-busy.oga => phone-outgoing-busy-fr.oga} (100%) rename data/sounds/{phone-outgoing-calling.oga => phone-outgoing-calling-fr.oga} (100%) diff --git a/data/meson.build b/data/meson.build index f0a277c..dfbeec1 100644 --- a/data/meson.build +++ b/data/meson.build @@ -113,7 +113,7 @@ endif # Sounds (fallback for systems without telephony events in sound theme) install_data( - 'sounds/phone-outgoing-calling.oga', - 'sounds/phone-outgoing-busy.oga', + 'sounds/phone-outgoing-calling-fr.oga', + 'sounds/phone-outgoing-busy-fr.oga', install_dir: join_paths(datadir, calls_name, 'sounds'), ) diff --git a/data/sounds/phone-outgoing-busy.oga b/data/sounds/phone-outgoing-busy-fr.oga similarity index 100% rename from data/sounds/phone-outgoing-busy.oga rename to data/sounds/phone-outgoing-busy-fr.oga diff --git a/data/sounds/phone-outgoing-calling.oga b/data/sounds/phone-outgoing-calling-fr.oga similarity index 100% rename from data/sounds/phone-outgoing-calling.oga rename to data/sounds/phone-outgoing-calling-fr.oga diff --git a/src/calls-media-playback.c b/src/calls-media-playback.c index b257a60..e44fc14 100644 --- a/src/calls-media-playback.c +++ b/src/calls-media-playback.c @@ -104,10 +104,10 @@ playback_event_to_filename (PlaybackEvent event) { switch (event) { case PLAYBACK_CALLING: - return CALLS_SOUNDS_DIR "/phone-outgoing-calling.oga"; + return CALLS_SOUNDS_DIR "/phone-outgoing-calling-fr.oga"; case PLAYBACK_BUSY: - return CALLS_SOUNDS_DIR "/phone-outgoing-busy.oga"; + return CALLS_SOUNDS_DIR "/phone-outgoing-busy-fr.oga"; case PLAYBACK_LAST: default: