mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 10:01:08 +00:00
#905 Show codec details for sound items
This commit is contained in:
@@ -124,7 +124,13 @@ public class TagInfoPanel extends JPanel {
|
||||
|
||||
return name;
|
||||
case 1:
|
||||
return "" + item.getValue();
|
||||
Object value = item.getValue();
|
||||
if (value instanceof Boolean) {
|
||||
boolean boolValue = (boolean) value;
|
||||
return boolValue ? AppStrings.translate("yes") : AppStrings.translate("no");
|
||||
}
|
||||
|
||||
return "" + value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -611,3 +611,9 @@ header.uncompressed = Uncompressed
|
||||
header.warning.unsupportedGfxCompression = GFX supports only uncompressed or Zlib compressed content.
|
||||
header.warning.minimumZlibVersion = Zlib compression needs SWF version 6 or greater.
|
||||
header.warning.minimumLzmaVersion = LZMA compression needs SWF version 13 or greater.
|
||||
|
||||
tagInfo.codecName = Codec Name
|
||||
tagInfo.exportFormat = Export Format
|
||||
tagInfo.samplingRate = Sampling Rate
|
||||
tagInfo.stereo = Stereo
|
||||
tagInfo.sampleCount = Sample Count
|
||||
|
||||
@@ -610,3 +610,9 @@ header.uncompressed = T\u00f6m\u00f6r\u00edtetlen
|
||||
header.warning.unsupportedGfxCompression = GFX csak t\u00f6m\u00f6r\u00edtetlen \u00e9s Zlib t\u00f6m\u00f6r\u00edtett tartalmakat t\u00e1mogat.
|
||||
header.warning.minimumZlibVersion = Zlib t\u00f6m\u00f6r\u00edt\u00e9shez 6-os vagy nagyobb SWF verzi\u00f3ra van sz\u00fcks\u00e9g.
|
||||
header.warning.minimumLzmaVersion = LZMA t\u00f6m\u00f6r\u00edt\u00e9shez 13-as vagy nagyobb SWF verzi\u00f3ra van sz\u00fcks\u00e9g.
|
||||
|
||||
tagInfo.codecName = Codec neve
|
||||
tagInfo.exportFormat = Export\u00e1l\u00e1si form\u00e1tum
|
||||
tagInfo.samplingRate = Mintav\u00e9telez\u00e9si frekvencia
|
||||
tagInfo.stereo = Sztere\u00f3
|
||||
tagInfo.sampleCount = Mint\u00e1k sz\u00e1ma
|
||||
|
||||
Reference in New Issue
Block a user