added another localized string.

This commit is contained in:
morkt
2016-05-20 04:08:21 +04:00
parent 41b9dd9a54
commit ecfd324f3b
6 changed files with 26 additions and 1 deletions

View File

@@ -921,7 +921,7 @@ namespace GARbro.GUI
AudioDevice.PlaybackStopped += OnPlaybackStopped;
AudioDevice.Play();
var fmt = CurrentAudio.WaveFormat;
SetResourceText (string.Format ("Playing {0} / {3} / {2}bps / {1}Hz", entry.Name,
SetResourceText (string.Format (guiStrings.MsgPlaying, entry.Name,
fmt.SampleRate, sound.SourceBitrate / 1000,
CurrentAudio.TotalTime.ToString ("m':'ss")));
}