From 0b6ef93b855660b36ce8641dc5cd36e5d465142b Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Sun, 22 Jul 2018 21:28:12 +0100 Subject: GUI: Use consistent capitalization for options As discussed on the mailing list we should use title capitalization only for push buttons and tabs and use sentence capitalization for everything else. --- audio/adlib.cpp | 2 +- audio/mods/paula.cpp | 2 +- audio/softsynth/appleiigs.cpp | 2 +- audio/softsynth/cms.cpp | 2 +- audio/softsynth/mt32.cpp | 2 +- audio/softsynth/pcspk.cpp | 4 ++-- audio/softsynth/sid.cpp | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) (limited to 'audio') diff --git a/audio/adlib.cpp b/audio/adlib.cpp index fd21eb1537..9ea3b88cbe 100644 --- a/audio/adlib.cpp +++ b/audio/adlib.cpp @@ -2287,7 +2287,7 @@ void MidiDriver_ADLIB::adlibNoteOnEx(int chan, byte note, int mod) { class AdLibEmuMusicPlugin : public MusicPluginObject { public: const char *getName() const { - return _s("AdLib Emulator"); + return _s("AdLib emulator"); } const char *getId() const { diff --git a/audio/mods/paula.cpp b/audio/mods/paula.cpp index 896a272ee9..0ebf3bc32a 100644 --- a/audio/mods/paula.cpp +++ b/audio/mods/paula.cpp @@ -193,7 +193,7 @@ int Paula::readBufferIntern(int16 *buffer, const int numSamples) { class AmigaMusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("Amiga Audio Emulator"); + return _s("Amiga Audio emulator"); } const char *getId() const { diff --git a/audio/softsynth/appleiigs.cpp b/audio/softsynth/appleiigs.cpp index e07e282de6..49e31b0e7b 100644 --- a/audio/softsynth/appleiigs.cpp +++ b/audio/softsynth/appleiigs.cpp @@ -30,7 +30,7 @@ class AppleIIGSMusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("Apple II GS Emulator (NOT IMPLEMENTED)"); + return _s("Apple II GS emulator (NOT IMPLEMENTED)"); } const char *getId() const { diff --git a/audio/softsynth/cms.cpp b/audio/softsynth/cms.cpp index 206bd36d2d..ce058b515b 100644 --- a/audio/softsynth/cms.cpp +++ b/audio/softsynth/cms.cpp @@ -347,7 +347,7 @@ void CMSEmulator::portWriteIntern(int chip, int offset, int data) { class CMSMusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("Creative Music System Emulator"); + return _s("Creative Music System emulator"); } const char *getId() const { diff --git a/audio/softsynth/mt32.cpp b/audio/softsynth/mt32.cpp index 38978b8edf..09a8083f7b 100644 --- a/audio/softsynth/mt32.cpp +++ b/audio/softsynth/mt32.cpp @@ -434,7 +434,7 @@ void MidiDriver_ThreadedMT32::onTimer() { class MT32EmuMusicPlugin : public MusicPluginObject { public: const char *getName() const { - return _s("MT-32 Emulator"); + return _s("MT-32 emulator"); } const char *getId() const { diff --git a/audio/softsynth/pcspk.cpp b/audio/softsynth/pcspk.cpp index 72f33a4761..e490583749 100644 --- a/audio/softsynth/pcspk.cpp +++ b/audio/softsynth/pcspk.cpp @@ -136,7 +136,7 @@ int8 PCSpeaker::generateTriangle(uint32 x, uint32 oscLength) { class PCSpeakerMusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("PC Speaker Emulator"); + return _s("PC Speaker emulator"); } const char *getId() const { @@ -155,7 +155,7 @@ MusicDevices PCSpeakerMusicPlugin::getDevices() const { class PCjrMusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("IBM PCjr Emulator"); + return _s("IBM PCjr emulator"); } const char *getId() const { diff --git a/audio/softsynth/sid.cpp b/audio/softsynth/sid.cpp index bafbd4ab53..ac26922514 100644 --- a/audio/softsynth/sid.cpp +++ b/audio/softsynth/sid.cpp @@ -1427,7 +1427,7 @@ int SID::updateClock(cycle_count& delta_t, short* buf, int n, int interleave) { class C64MusicPlugin : public NullMusicPlugin { public: const char *getName() const { - return _s("C64 Audio Emulator"); + return _s("C64 Audio emulator"); } const char *getId() const { -- cgit v1.2.3