mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
Rename "Global volume" to "Game volume" (translations need fixing)
Also makes alt speed volume a percentage of game volume, which makes more sense.
This commit is contained in:
+4
-2
@@ -749,10 +749,12 @@ static const ConfigSetting soundSettings[] = {
|
||||
ConfigSetting("Enable", &g_Config.bEnableSound, true, CfgFlag::PER_GAME),
|
||||
ConfigSetting("AudioBackend", &g_Config.iAudioBackend, 0, CfgFlag::PER_GAME),
|
||||
ConfigSetting("ExtraAudioBuffering", &g_Config.bExtraAudioBuffering, false, CfgFlag::DEFAULT),
|
||||
ConfigSetting("GlobalVolume", &g_Config.iGlobalVolume, VOLUME_FULL, CfgFlag::PER_GAME),
|
||||
|
||||
ConfigSetting("GlobalVolume", &g_Config.iGameVolume, VOLUME_FULL, CfgFlag::PER_GAME),
|
||||
ConfigSetting("ReverbVolume", &g_Config.iReverbVolume, VOLUME_FULL, CfgFlag::PER_GAME),
|
||||
ConfigSetting("AltSpeedVolume", &g_Config.iAltSpeedVolume, -1, CfgFlag::PER_GAME),
|
||||
ConfigSetting("AchievementSoundVolume", &g_Config.iAchievementSoundVolume, 6, CfgFlag::PER_GAME),
|
||||
|
||||
ConfigSetting("AudioDevice", &g_Config.sAudioDevice, "", CfgFlag::DEFAULT),
|
||||
ConfigSetting("AutoAudioDevice", &g_Config.bAutoAudioDevice, true, CfgFlag::DEFAULT),
|
||||
ConfigSetting("AudioMixWithOthers", &g_Config.bAudioMixWithOthers, true, CfgFlag::DEFAULT),
|
||||
@@ -1485,7 +1487,7 @@ void Config::PostLoadCleanup(bool gameSpecific) {
|
||||
|
||||
// Automatically silence secondary instances. Could be an option I guess, but meh.
|
||||
if (PPSSPP_ID > 1) {
|
||||
g_Config.iGlobalVolume = 0;
|
||||
g_Config.iGameVolume = 0;
|
||||
}
|
||||
|
||||
// Automatically switch away from deprecated setting value.
|
||||
|
||||
+4
-1
@@ -279,10 +279,13 @@ public:
|
||||
// Sound
|
||||
bool bEnableSound;
|
||||
int iAudioBackend;
|
||||
int iGlobalVolume;
|
||||
|
||||
// Volume settings, 0-10
|
||||
int iGameVolume;
|
||||
int iReverbVolume;
|
||||
int iAltSpeedVolume;
|
||||
int iAchievementSoundVolume;
|
||||
|
||||
bool bExtraAudioBuffering; // For bluetooth
|
||||
std::string sAudioDevice;
|
||||
bool bAutoAudioDevice;
|
||||
|
||||
Generated
+10
-10
@@ -54,9 +54,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "clap"
|
||||
version = "4.5.27"
|
||||
version = "4.5.28"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "769b0145982b4b48713e01ec42d61614425f27b7058bda7180a3a41f30104796"
|
||||
checksum = "3e77c3243bd94243c03672cb5154667347c457ca271254724f9f393aee1c05ff"
|
||||
dependencies = [
|
||||
"clap_builder",
|
||||
"clap_derive",
|
||||
@@ -76,9 +76,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "clap_derive"
|
||||
version = "4.5.24"
|
||||
version = "4.5.28"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
|
||||
checksum = "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed"
|
||||
dependencies = [
|
||||
"heck",
|
||||
"proc-macro2",
|
||||
@@ -119,9 +119,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "once_cell"
|
||||
version = "1.20.2"
|
||||
version = "1.20.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
||||
checksum = "945462a4b81e43c4e3ba96bd7b49d834c6f61198356aa858733bc4acf3cbe62e"
|
||||
|
||||
[[package]]
|
||||
name = "proc-macro2"
|
||||
@@ -149,9 +149,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
||||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "2.0.96"
|
||||
version = "2.0.98"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
||||
checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@@ -160,9 +160,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "unicode-ident"
|
||||
version = "1.0.14"
|
||||
version = "1.0.16"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
||||
checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
|
||||
|
||||
[[package]]
|
||||
name = "utf8parse"
|
||||
|
||||
@@ -654,14 +654,13 @@ void GameSettingsScreen::CreateAudioSettings(UI::ViewGroup *audioSettings) {
|
||||
mixWithOthers->SetEnabledPtr(&g_Config.bEnableSound);
|
||||
#endif
|
||||
|
||||
PopupSliderChoice *volume = audioSettings->Add(new PopupSliderChoice(&g_Config.iGlobalVolume, VOLUME_OFF, VOLUME_FULL, VOLUME_FULL, a->T("Global volume"), screenManager()));
|
||||
PopupSliderChoice *volume = audioSettings->Add(new PopupSliderChoice(&g_Config.iGameVolume, VOLUME_OFF, VOLUME_FULL, VOLUME_FULL, a->T("Global volume"), screenManager()));
|
||||
volume->SetEnabledPtr(&g_Config.bEnableSound);
|
||||
volume->SetZeroLabel(a->T("Mute"));
|
||||
|
||||
PopupSliderChoice *altVolume = audioSettings->Add(new PopupSliderChoice(&g_Config.iAltSpeedVolume, VOLUME_OFF, VOLUME_FULL, NO_DEFAULT_INT, a->T("Alternate speed volume"), screenManager()));
|
||||
altVolume->SetEnabledPtr(&g_Config.bEnableSound);
|
||||
altVolume->SetZeroLabel(a->T("Mute"));
|
||||
altVolume->SetNegativeDisable(a->T("Use global volume"));
|
||||
|
||||
PopupSliderChoice *reverbVolume = audioSettings->Add(new PopupSliderChoice(&g_Config.iReverbVolume, VOLUME_OFF, 2 * VOLUME_FULL, VOLUME_FULL, a->T("Reverb volume"), screenManager()));
|
||||
reverbVolume->SetEnabledPtr(&g_Config.bEnableSound);
|
||||
|
||||
@@ -79,7 +79,7 @@ Device = جهاز
|
||||
Disabled = غير مفعل
|
||||
DSound (compatible) = DSound (متكامل)
|
||||
Enable Sound = تفعيل الصوت
|
||||
Global volume = الصوت العام
|
||||
Game volume = الصوت العام
|
||||
Microphone = Microphone
|
||||
Microphone Device = جهاز المايكروفون
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -87,7 +87,6 @@ Mute = كتم
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = تردد الصوت
|
||||
Use new audio devices automatically = استعمل اجهزة الصوت الجديده تلقائيا
|
||||
Use global volume = استعمل الصوت العالمي
|
||||
WASAPI (fast) = WASAPI (سريع)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = Səs Açıq
|
||||
Global volume = Global volume
|
||||
Game volume = Game volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (fast)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = Включи звук
|
||||
Global volume = Global volume
|
||||
Game volume = Game volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (fast)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Dispositiu
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DirectSound (compatible)
|
||||
Enable Sound = Activar el so
|
||||
Global volume = Volum global
|
||||
Game volume = Volum global
|
||||
Microphone = Micròfon
|
||||
Microphone Device = Dispositiu de micròfon
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Silenciar
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Volum de reverberació
|
||||
Use new audio devices automatically = Canviar a dispositiu d'àudio nou
|
||||
Use global volume = Utilitzar volumen global
|
||||
WASAPI (fast) = WASAPI (ràpid)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (kompatibilní)
|
||||
Enable Sound = Povolit zvuk
|
||||
Global volume = Celková hlasitost
|
||||
Game volume = Celková hlasitost
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (rychlé)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DirectSound (kompatibel)
|
||||
Enable Sound = Aktiver lyd
|
||||
Global volume = Global volume
|
||||
Game volume = Game volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (hurtig)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Gerät
|
||||
Disabled = Deaktiviert
|
||||
DSound (compatible) = DirectSound (kompatibel)
|
||||
Enable Sound = Ton einschalten
|
||||
Global volume = Lautstärke
|
||||
Game volume = Lautstärke
|
||||
Microphone = Mikrofon
|
||||
Microphone Device = Mikrofon Gerät
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Stumm
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Hall Lautstärke
|
||||
Use new audio devices automatically = Neues Tonausgabegerät anschalten
|
||||
Use global volume = Benutze globale Lautstärke
|
||||
WASAPI (fast) = WASAPI (schnell)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = Padenni suarana
|
||||
Global volume = Global volume
|
||||
Game volume = Game volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (fast)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -95,7 +95,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = Enable sound
|
||||
Global volume = Global volume
|
||||
Game volume = Game volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -103,7 +103,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (fast)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Dispositivo
|
||||
Disabled = Deshabilitado
|
||||
DSound (compatible) = DirectSound (compatible)
|
||||
Enable Sound = Activar sonido
|
||||
Global volume = Volumen global
|
||||
Game volume = Volumen global
|
||||
Microphone = Micrófono
|
||||
Microphone Device = Dispositivo de entrada
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Silenciar
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Volumen de reverberación
|
||||
Use new audio devices automatically = Cambiar a dispositivo de audio nuevo
|
||||
Use global volume = Usar volumen global
|
||||
WASAPI (fast) = WASAPI (rápido)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Dispositivo
|
||||
Disabled = Deshabilitado
|
||||
DSound (compatible) = DirectSound (compatible)
|
||||
Enable Sound = Habilitar sonido
|
||||
Global volume = Volumen global
|
||||
Game volume = Volumen global
|
||||
Microphone = Micrófono
|
||||
Microphone Device = Dispositivo de entrada de sonido (Micrófono)
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Silenciar
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Efecto de profundidad espacial de sonido añadiendo reverberación al volumen
|
||||
Use new audio devices automatically = Usar/cambiar a nuevos dispositivos de audio automaticamente
|
||||
Use global volume = Usar volumen global
|
||||
WASAPI (fast) = WASAPI (rápido)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = سیستم
|
||||
Disabled = فعال کردن
|
||||
DSound (compatible) = DSound (پشتیبانی بهتر)
|
||||
Enable Sound = فعال کردن صدا
|
||||
Global volume = بلندی صدا
|
||||
Game volume = بلندی صدا
|
||||
Microphone = میکروفن
|
||||
Microphone Device = میکروفن دستگاه
|
||||
Mix audio with other apps = میکس صدا با برنامههای دیگر
|
||||
@@ -79,7 +79,6 @@ Mute = بیصدا
|
||||
Respect silent mode = احترام به حالت بیصدا
|
||||
Reverb volume = حجم صدا
|
||||
Use new audio devices automatically = استفاده از دستگاههای صوتی جدید به صورت خودکار
|
||||
Use global volume = استفاده از صدای عمومی
|
||||
WASAPI (fast) = WASAPI (سریع)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Laite
|
||||
Disabled = Poistettu käytöstä
|
||||
DSound (compatible) = DSound (yhteensopiva)
|
||||
Enable Sound = Ota äänet käyttöön
|
||||
Global volume = Yleinen äänenvoimakkuus
|
||||
Game volume = Yleinen äänenvoimakkuus
|
||||
Microphone = Mikrofoni
|
||||
Microphone Device = Mikrofonin laite
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mykistä
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Kaikuefektin voimakkuus
|
||||
Use new audio devices automatically = Käytä uusia äänilaitteita automaattisesti
|
||||
Use global volume = Käytä yleistä äänenvoimakkuutta
|
||||
WASAPI (fast) = WASAPI (nopea)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Périphérique de sortie
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DirectSound (compatible)
|
||||
Enable Sound = Activer le son
|
||||
Global volume = Volume global
|
||||
Game volume = Volume global
|
||||
Microphone = Micro
|
||||
Microphone Device = Micro
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Muet
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Basculer sur le nouveau périphérique de sortie
|
||||
Use global volume = Utiliser le volume global
|
||||
WASAPI (fast) = WASAPI (rapide)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = Activar son
|
||||
Global volume = Global volume
|
||||
Game volume = Game volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (rápido)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Συσκευή
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (συμβατό)
|
||||
Enable Sound = Ενεργοποίηση Ήχου
|
||||
Global volume = Γενική ένταση
|
||||
Game volume = Γενική ένταση
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Σίγαση
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Ενεργοποίηση νέας συσκευής ήχου
|
||||
Use global volume = Χρήση γενικής έντασης
|
||||
WASAPI (fast) = WASAPI (γρήγορο)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = אפשר שמע
|
||||
Global volume = Global volume
|
||||
Game volume = Game volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (fast)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = עמש רשפא
|
||||
Global volume = Global volume
|
||||
Game volume = Game volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (fast)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Uređaj
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (kompatibilno)
|
||||
Enable Sound = Uključi zvuk
|
||||
Global volume = Opća glasnoća
|
||||
Game volume = Opća glasnoća
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Priguši
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Promijeni trenutni uređaj
|
||||
Use global volume = Koristi opću glasnoću
|
||||
WASAPI (fast) = WASAPI (brzo)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Eszköz
|
||||
Disabled = Kikapcsolva
|
||||
DSound (compatible) = DSound (kompatibilis)
|
||||
Enable Sound = Hang bekapcsolása
|
||||
Global volume = Globális hangerő
|
||||
Game volume = Globális hangerő
|
||||
Microphone = Mikrofon
|
||||
Microphone Device = Mikrofon eszköz
|
||||
Mix audio with other apps = Audió vegyítése más alkalmazásokkal
|
||||
@@ -79,7 +79,6 @@ Mute = Némítás
|
||||
Respect silent mode = Néma üzemmód betartása
|
||||
Reverb volume = Visszhang hangerő
|
||||
Use new audio devices automatically = Új eszköz észlelésekor átváltás rá
|
||||
Use global volume = Globális hangerő használata
|
||||
WASAPI (fast) = WASAPI (gyors)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Perangkat
|
||||
Disabled = Nonaktif
|
||||
DSound (compatible) = DSound (kompatibel)
|
||||
Enable Sound = Aktifkan suara
|
||||
Global volume = Volume global
|
||||
Game volume = Volume global
|
||||
Microphone = Mikrofon
|
||||
Microphone Device = Mikrofon perangkat
|
||||
Mix audio with other apps = Campur audio dengan aplikasi lain
|
||||
@@ -79,7 +79,6 @@ Mute = Tidak bersuara
|
||||
Respect silent mode = Hargai mode senyap
|
||||
Reverb volume = Volume gema
|
||||
Use new audio devices automatically = Gunakan perangkat audio baru secara otomatis
|
||||
Use global volume = Gunakan volume global
|
||||
WASAPI (fast) = WASAPI (cepat)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Dispositivo
|
||||
Disabled = Disabilitato
|
||||
DSound (compatible) = DirectSound (compatibile)
|
||||
Enable Sound = Attiva il Sonoro
|
||||
Global volume = Volume Globale
|
||||
Game volume = Volume Globale
|
||||
Microphone = Microfono
|
||||
Microphone Device = Periferica Microfono
|
||||
Mix audio with other apps = Mix audio con altre app
|
||||
@@ -79,7 +79,6 @@ Mute = Muto
|
||||
Respect silent mode = Rispetta la modalità silenziosa
|
||||
Reverb volume = Riverb. volume
|
||||
Use new audio devices automatically = Usa nuovi dispositivi audio automaticamente.
|
||||
Use global volume = Usa volume globale
|
||||
WASAPI (fast) = WASAPI (veloce)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = デバイス
|
||||
Disabled = 無効
|
||||
DSound (compatible) = DSound (互換性重視)
|
||||
Enable Sound = オーディオを有効にする
|
||||
Global volume = グローバルボリューム
|
||||
Game volume = グローバルボリューム
|
||||
Microphone = マイクの設定
|
||||
Microphone Device = マイク入力機器の選択
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = ミュート
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = リバーブボリューム
|
||||
Use new audio devices automatically = 新しいオーディオデバイスをオンにする
|
||||
Use global volume = グローバルボリュームを使う
|
||||
WASAPI (fast) = WASAPI (高速)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (kompatibel)
|
||||
Enable Sound = Ngatifke Suoro
|
||||
Global volume = Tingkat Volume
|
||||
Game volume = Tingkat Volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (cepet)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = 장치
|
||||
Disabled = 비활성화
|
||||
DSound (compatible) = DSound (호환)
|
||||
Enable Sound = 사운드 활성화
|
||||
Global volume = 글로벌 볼륨
|
||||
Game volume = 글로벌 볼륨
|
||||
Microphone = 마이크
|
||||
Microphone Device = 마이크 장치
|
||||
Mix audio with other apps = 다른 앱과 오디오 믹스
|
||||
@@ -79,7 +79,6 @@ Mute = 음소거
|
||||
Respect silent mode = 무음 모드 존중
|
||||
Reverb volume = 반향 볼륨
|
||||
Use new audio devices automatically = 새 오디오 장치를 자동으로 사용
|
||||
Use global volume = 글로벌 볼륨 사용
|
||||
WASAPI (fast) = WASAPI (빠름)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -84,7 +84,7 @@ Device = ئامێر
|
||||
Disabled = لەکار خراوە
|
||||
DSound (compatible) = DSound (گونجاو)
|
||||
Enable Sound = بەکارکردنی دەنگ
|
||||
Global volume = دەنگی گشتی
|
||||
Game volume = دەنگی گشتی
|
||||
Microphone = مایکرۆفۆن
|
||||
Microphone Device = ئامێری مایکرۆفۆن
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -92,7 +92,6 @@ Mute = بێدەنگ کردن
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = ئاستی دەنگی گشت ئاڕاستە
|
||||
Use new audio devices automatically = بەکارهێنانی ئامێری دەنگی تازە بە شێوەیەکی ئۆتۆماتیکی
|
||||
Use global volume = بەکارهێنانی دەنگی گشتی
|
||||
WASAPI (fast) = WASAPI (خێرا)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = ເປີດໃຊ້ງານສຽງ
|
||||
Global volume = ລະດັບສຽງຫຼັກ
|
||||
Game volume = ລະດັບສຽງຫຼັກ
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (fast)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = Įjungti garsą
|
||||
Global volume = Global volume
|
||||
Game volume = Game volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (fast)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = Upayakan suara
|
||||
Global volume = Volume keseluruhan
|
||||
Game volume = Volume keseluruhan
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (fast)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DirectSound (compatibel)
|
||||
Enable Sound = Geluid inschakelen
|
||||
Global volume = Globaal volume
|
||||
Game volume = Globaal volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (snel)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatible)
|
||||
Enable Sound = Lyd
|
||||
Global volume = Global volume
|
||||
Game volume = Game volume
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (fast)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Urządzenie
|
||||
Disabled = Wył.
|
||||
DSound (compatible) = DSound (kompatybilny)
|
||||
Enable Sound = Włącz dźwięk
|
||||
Global volume = Głośność globalna
|
||||
Game volume = Głośność globalna
|
||||
Microphone = Mikrofon
|
||||
Microphone Device = Mikrofon
|
||||
Mix audio with other apps = Miksuj audio z innymi aplikacjami
|
||||
@@ -79,7 +79,6 @@ Mute = Wycisz
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Pogłos
|
||||
Use new audio devices automatically = Automatycznie używaj nowego urządzenia audio
|
||||
Use global volume = Używaj głośności globalnej
|
||||
WASAPI (fast) = WASAPI (szybki)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -95,7 +95,7 @@ Device = Dispositivo
|
||||
Disabled = Desativado
|
||||
DSound (compatible) = DirectSound (compatível)
|
||||
Enable Sound = Ativar áudio
|
||||
Global volume = Volume global
|
||||
Game volume = Volume global
|
||||
Microphone = Microfone
|
||||
Microphone Device = Dispositivo Microfone
|
||||
Mix audio with other apps = Misturar o áudio com os outros aplicativos
|
||||
@@ -103,7 +103,6 @@ Mute = Mudo
|
||||
Respect silent mode = Respeitar o modo silencioso
|
||||
Reverb volume = Reverberar volume
|
||||
Use new audio devices automatically = Usar novos dispositivos de áudio automaticamente
|
||||
Use global volume = Usar volume global
|
||||
WASAPI (fast) = WASAPI (rápido)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -95,7 +95,7 @@ Device = Dispositivo
|
||||
Disabled = Desativado
|
||||
DSound (compatible) = DSound (compatível)
|
||||
Enable Sound = Ativar Áudio
|
||||
Global volume = Volume Global
|
||||
Game volume = Volume Global
|
||||
Microphone = Microfone
|
||||
Microphone Device = Dispositivo de Microfone
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -103,7 +103,6 @@ Mute = Mudo
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverberar volume
|
||||
Use new audio devices automatically = Usar novos dispositivos de áudio automaticamente
|
||||
Use global volume = Usar volume global
|
||||
WASAPI (fast) = WASAPI (rápido)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (compatibil)
|
||||
Enable Sound = Activează Sunet
|
||||
Global volume = Volum global
|
||||
Game volume = Volum global
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (rapid)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Устройство
|
||||
Disabled = Отключено
|
||||
DSound (compatible) = DSound (совместимый)
|
||||
Enable Sound = Включить звук
|
||||
Global volume = Общая громкость
|
||||
Game volume = Общая громкость
|
||||
Microphone = Микрофон
|
||||
Microphone Device = Устройство микрофона
|
||||
Mix audio with other apps = Микшировать аудио с другими приложениями
|
||||
@@ -79,7 +79,6 @@ Mute = Без звука
|
||||
Respect silent mode = Уважать бесшумный режим
|
||||
Reverb volume = Громкость реверберации
|
||||
Use new audio devices automatically = Переключаться на новые аудиоустройства автоматически
|
||||
Use global volume = Использовать общую громкость
|
||||
WASAPI (fast) = WASAPI (быстрее)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Enhet
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = DSound (kompatibel)
|
||||
Enable Sound = Ljud på
|
||||
Global volume = Global volym
|
||||
Game volume = Global volym
|
||||
Microphone = Mikrofon
|
||||
Microphone Device = Mikrofon-enhet
|
||||
Mix audio with other apps = Mixa ljud med andra appar
|
||||
@@ -79,7 +79,6 @@ Mute = Tysta
|
||||
Respect silent mode = Respektera tyst läge
|
||||
Reverb volume = Volym på reverb-effekt
|
||||
Use new audio devices automatically = Byt automatiskt till senast inkopplad ljudenhet
|
||||
Use global volume = Använd global volym
|
||||
WASAPI (fast) = WASAPI (snabb)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Kagamitan
|
||||
Disabled = Huwag paganahin
|
||||
DSound (compatible) = DSound (komportable)
|
||||
Enable Sound = Paganahin ang tunog
|
||||
Global volume = Pangkalahatang tunog
|
||||
Game volume = Pangkalahatang tunog
|
||||
Microphone = Mikropono
|
||||
Microphone Device = Device ng Mikropono
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Walang tunog
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Maugong na tunog
|
||||
Use new audio devices automatically = Awtomatiko gamitin ang bagong tunog na kagamitan
|
||||
Use global volume = Paggamit ng pangkalahatang tunog
|
||||
WASAPI (fast) = WASAPI (Mabilis)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,14 +71,13 @@ Device = อุปกรณ์
|
||||
Disabled = ปิดการใช้งาน
|
||||
DSound (compatible) = DSound (เสถียร)
|
||||
Enable Sound = เปิดการใช้งานเสียง
|
||||
Global volume = ระดับเสียงหลัก
|
||||
Game volume = ระดับเสียงหลัก
|
||||
Microphone = ไมโครโฟน
|
||||
Microphone Device = อุปกรณ์ไมโครโฟน
|
||||
Mix audio with other apps = ระบบเสียงผสมผสานร่วมกับแอพอื่นๆ
|
||||
Mute = เงียบ
|
||||
Respect silent mode = โหมดเงียบงัน
|
||||
Reverb volume = ระดับเสียงก้อง
|
||||
Use global volume = ใช้ตามระดับเสียงหลัก
|
||||
Use new audio devices automatically = สลับไปใช้อุปกรณ์เสียงอันใหม่อัตโนมัติ
|
||||
WASAPI (fast) = WASAPI (เร็ว)
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Cihaz
|
||||
Disabled = Devre dışı
|
||||
DSound (compatible) = DSound (uyumlu)
|
||||
Enable Sound = Sesi etkinleştir
|
||||
Global volume = Genel ses
|
||||
Game volume = Genel ses
|
||||
Microphone = Mikrofon
|
||||
Microphone Device = Mikrofon cihazı
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Sessiz
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Yankı sesi
|
||||
Use new audio devices automatically = Otomatik olarak yeni ses cihazlarını kullan
|
||||
Use global volume = Genel ses seviyesini kullan
|
||||
WASAPI (fast) = WASAPI (hızlı)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Пристрій
|
||||
Disabled = Вимкнуто
|
||||
DSound (compatible) = DSound (сумісний)
|
||||
Enable Sound = Ввімкнути звук
|
||||
Global volume = Глобальна гучність
|
||||
Game volume = Глобальна гучність
|
||||
Microphone = Мікрофон
|
||||
Microphone Device = Мікрофонний пристрій
|
||||
Mix audio with other apps = Змішати аудіо з іншими програмами
|
||||
@@ -79,7 +79,6 @@ Mute = Вимкнути звук
|
||||
Respect silent mode = дотримуватись беззвучного режиму
|
||||
Reverb volume = Гучність реверберації
|
||||
Use new audio devices automatically = Увімкніть новий аудіопристрій
|
||||
Use global volume = Використовувати загальну гучність
|
||||
WASAPI (fast) = WASAPI (швидко)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = Device
|
||||
Disabled = Disabled
|
||||
DSound (compatible) = Âm thanh (tương thích)
|
||||
Enable Sound = Mở âm thanh
|
||||
Global volume = Âm lượng
|
||||
Game volume = Âm lượng
|
||||
Microphone = Microphone
|
||||
Microphone Device = Microphone device
|
||||
Mix audio with other apps = Mix audio with other apps
|
||||
@@ -79,7 +79,6 @@ Mute = Mute
|
||||
Respect silent mode = Respect silent mode
|
||||
Reverb volume = Reverb volume
|
||||
Use new audio devices automatically = Use new audio devices automatically
|
||||
Use global volume = Use global volume
|
||||
WASAPI (fast) = WASAPI (nhanh)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = 设备
|
||||
Disabled = 禁用
|
||||
DSound (compatible) = DirectSound (兼容)
|
||||
Enable Sound = 开启声音
|
||||
Global volume = 全局音量
|
||||
Game volume = 全局音量
|
||||
Microphone = 麦克风
|
||||
Microphone Device = 麦克风设备
|
||||
Mix audio with other apps = 允许其他APP同时播放音频
|
||||
@@ -79,7 +79,6 @@ Mute = 静音
|
||||
Respect silent mode = 跟随系统静音模式
|
||||
Reverb volume = 混响强度
|
||||
Use new audio devices automatically = 自动选择新的音频设备
|
||||
Use global volume = 同全局音量一致
|
||||
WASAPI (fast) = WASAPI (快)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -71,7 +71,7 @@ Device = 裝置
|
||||
Disabled = 已停用
|
||||
DSound (compatible) = DSound (相容)
|
||||
Enable Sound = 啟用音效
|
||||
Global volume = 全域音量
|
||||
Game volume = 全域音量
|
||||
Microphone = 麥克風
|
||||
Microphone Device = 麥克風裝置
|
||||
Mix audio with other apps = 與其他應用程式混合音訊
|
||||
@@ -79,7 +79,6 @@ Mute = 靜音
|
||||
Respect silent mode = 尊重靜音模式
|
||||
Reverb volume = 混響裝置音量
|
||||
Use new audio devices automatically = 自動使用新音訊裝置
|
||||
Use global volume = 使用全域音量
|
||||
WASAPI (fast) = WASAPI (快)
|
||||
|
||||
[Controls]
|
||||
|
||||
@@ -527,7 +527,7 @@ int main(int argc, const char* argv[])
|
||||
g_Config.sMACAddress = "12:34:56:78:9A:BC";
|
||||
g_Config.iFirmwareVersion = PSP_DEFAULT_FIRMWARE;
|
||||
g_Config.iPSPModel = PSP_MODEL_SLIM;
|
||||
g_Config.iGlobalVolume = VOLUME_FULL;
|
||||
g_Config.iGameVolume = VOLUME_FULL;
|
||||
g_Config.iReverbVolume = VOLUME_FULL;
|
||||
g_Config.internalDataDirectory.clear();
|
||||
g_Config.bUseExperimentalAtrac = newAtrac;
|
||||
|
||||
Reference in New Issue
Block a user