aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkraxel <kraxel>2004-11-03 12:57:55 +0000
committerkraxel <kraxel>2004-11-03 12:57:55 +0000
commit6a8df8e9c7442c22f4398141e6414c53aa57f22c (patch)
treecc4c5ce658c27c62d7dda2391a6a69a348ebba31
parentf172e7016a13f435adfbb93a85d5e22b2237a377 (diff)
downloadkrecord-6a8df8e9c7442c22f4398141e6414c53aa57f22c.tar.gz
- add more files.
-rw-r--r--.cvsignore2
-rw-r--r--Changes142
-rw-r--r--VERSION1
-rw-r--r--kdedirs33
-rw-r--r--krecord.desktop9
-rw-r--r--po/.cvsignore1
-rw-r--r--po/de.po324
-rw-r--r--po/el.po295
-rw-r--r--po/fi.po314
-rw-r--r--po/hu.po236
-rw-r--r--po/krecord.pot273
11 files changed, 1630 insertions, 0 deletions
diff --git a/.cvsignore b/.cvsignore
new file mode 100644
index 0000000..aee2356
--- /dev/null
+++ b/.cvsignore
@@ -0,0 +1,2 @@
+Make.config
+krecord
diff --git a/Changes b/Changes
new file mode 100644
index 0000000..7367490
--- /dev/null
+++ b/Changes
@@ -0,0 +1,142 @@
+
+new in 1.16
+-----------
+
+ * optional logarithmic scale for freq spectrum window
+ by Joachim Eibl
+
+
+new in 1.15
+-----------
+
+ * 64bit fixes.
+ * fixed segfaults on closing ftt / level windows.
+ * updated german translations (Sarah <u15051@gmx.de>).
+
+
+new in 1.14
+-----------
+
+ * fixed qt include file names (not using the short ones any more).
+
+
+new in 1.13
+-----------
+
+ * no new code, just a few fixes in the build system.
+
+
+new in 1.12
+-----------
+
+ * ditched the whole autoconf crap into the waste basket.
+ * minor fixes here and there.
+
+
+new in 1.11
+-----------
+
+ * more KDE3 fixes, recent cvs versions broke krecord again :-(
+
+
+new in 1.10
+-----------
+
+ * KDE3 fixes. Builds with both KDE2 and KDE3 now.
+ * Commented some left-over debug printfs
+
+
+new in 1.9
+----------
+
+ * greek translation (Kostas Pistiolis <kpistiolis@yahoo.com>)
+ * fixed some build problems
+
+
+new in 1.7 / 1.8
+----------------
+
+ * fixed broken drag+drop in KDE2
+ * new finnish translation (eleknader@phnet.fi)
+ * fixed aclocal.m4 to make krecord build with newer
+ qt versions which require one more library.
+
+
+new in 1.6
+----------
+
+ * KDE2 port by Thomas Strehl <tstrehl@suse.de>
+
+
+new in 1.5
+----------
+
+ * bugfix: did'nt catch write errors for "save buffer as..."
+ (kde bts #3860)
+ * changed default parameters to 44100/16bit/stereo
+ * krecord accepts small differences between the sample rate
+ requested and the rate used by the hardware.
+
+
+new in 1.4
+----------
+
+ * hungarian translation (Merenyi Miklos
+ <mermik@medgyaszay-veszprem.sulinet.hu>)
+ * Makefile fixes (locale handling)
+
+
+new in 1.3
+----------
+
+ * Makefile bug fixed
+
+
+new in 1.2
+----------
+
+ * fixed the Makefile bug which showed up with bash >= 2.0
+ * fixed a few compiler warnings
+ * some code for sunaudio. I suspect its broken right now, but
+ I can't test/fix this myself due to lack of sun hardware.
+ Contributed by Piotr Klaban <makler@man.torun.pl>, but never
+ heared back from him. I've included the code anyway, maybe
+ it's a good starting point for somebody else.
+ * endian-fixes (byteswap when writing wav files on BE).
+ * Nice improvements for input level control from
+ Stιphane Gourichon <gouricho@poleia.lip6.fr>
+ * Wrote a rpm spec file.
+ * configure script changes
+
+
+new in 1.1
+----------
+
+ * "fixed" the gettext bug by turning off the i18n stuff. There are no
+ translated messages anyway...
+ * some minor tweaks in oss code, it sets the blocksize now to get a
+ constant latency.
+ * wrote a few more lines into the help file (index.html).
+
+
+new in 1.0
+----------
+
+ * bugfix: starting wav-file playback segfaulted sometimes due to a
+ uninitialized variable.
+ * passed the "Cool, it still compiles with KDE 1.0" test :-)
+
+
+new in 0.6
+----------
+
+ * changed input level colors
+ * pinned down a bug while creating files (why the heck creat() opens
+ files write-only ?)
+
+
+new in 0.5
+----------
+
+ * new input level window from Florian Kolbe <Florian.Kolbe@in-gmbh.de>
+
diff --git a/VERSION b/VERSION
new file mode 100644
index 0000000..e715196
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+1.16
diff --git a/kdedirs b/kdedirs
new file mode 100644
index 0000000..a61dd2c
--- /dev/null
+++ b/kdedirs
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+# args
+item="$1"
+prefix=${KDEDIR-/usr}
+
+# look for config file
+for file in \
+ /etc/kde3/system.kdeglobals
+do
+ test -f "$file" || continue
+ conf="$file"
+ break;
+done
+
+if test -f "$conf"; then
+ # parse config
+ value=$(grep -e "^dir_${item}=" "$conf" | sed -e 's/.*=//')
+ src="[$conf]"
+fi
+if test "$value" = ""; then
+ # use defaults
+ case "$item" in
+ html) value="${prefix}/share/doc/HTML" ;;
+ apps) value="${prefix}/share/applnk" ;;
+ data) value="${prefix}/share/apps" ;;
+ esac
+ src="[default]"
+fi
+
+# print result
+echo "kdedirs: debug: $item is $value $src" >&2
+echo "$value"
diff --git a/krecord.desktop b/krecord.desktop
new file mode 100644
index 0000000..1e20579
--- /dev/null
+++ b/krecord.desktop
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Icon=log
+Exec=krecord
+DocPath=
+Comment=KRecord - a Sound Recorder
+Name=KRecord
+Categories=AudioVideo;Recorder
diff --git a/po/.cvsignore b/po/.cvsignore
new file mode 100644
index 0000000..3511eea
--- /dev/null
+++ b/po/.cvsignore
@@ -0,0 +1 @@
+*.pox
diff --git a/po/de.po b/po/de.po
new file mode 100644
index 0000000..10fe3de
--- /dev/null
+++ b/po/de.po
@@ -0,0 +1,324 @@
+# translation of krecord.po to Deutsch
+# This file is distributed under the same license as the PACKAGE package.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# Sarah Bransdor <Sarah@spooky-online.de>, 2003
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: krecord\n"
+"POT-Creation-Date: 2002-10-16 16:58+0200\n"
+"PO-Revision-Date: 2003-06-10 11:36+0200\n"
+"Last-Translator: Sarah Bransdor <Sarah@spooky-online.de>\n"
+"Language-Team: Deutsch <kde-i18n-de@kde.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.1\n"
+
+# krecord - *.po template
+#: sound.cpp:44 sound.cpp:48
+msgid "# of channels"
+msgstr "KanΓ€le"
+
+#: krecord.cpp:144 krecord.cpp:146 krecord.cpp:172
+msgid "&About..."
+msgstr "&Über..."
+
+#: krecord.cpp:126 krecord.cpp:128 krecord.cpp:150 krecord.cpp:176
+msgid "&Delete buffer"
+msgstr "&Puffer LΓΆschen"
+
+#: krecord.cpp:147 krecord.cpp:149 krecord.cpp:175 krecord.cpp:203
+msgid "&File"
+msgstr "&Datei"
+
+#: krecord.cpp:134 krecord.cpp:136 krecord.cpp:158 krecord.cpp:185
+msgid "&Freq Spectrum..."
+msgstr "&Frequnez Spektrum"
+
+#: krecord.cpp:142 krecord.cpp:144 krecord.cpp:150 krecord.cpp:152
+#: krecord.cpp:170 krecord.cpp:178 krecord.cpp:198 krecord.cpp:206
+msgid "&Help"
+msgstr "&Hilfe"
+
+#: krecord.cpp:160 krecord.cpp:187
+msgid "&Input Level..."
+msgstr ""
+
+#: krecord.cpp:489 krecord.cpp:527 krecord.cpp:531
+msgid "&Max"
+msgstr "&Max"
+
+#: krecord.cpp:122
+msgid "&New buffer"
+msgstr "&Neuer Puffer"
+
+#: krecord.cpp:124 krecord.cpp:146 krecord.cpp:169
+msgid "&New memory buffer"
+msgstr "&Neuer Speicher Puffer"
+
+#: krecord.cpp:148 krecord.cpp:150 krecord.cpp:176 krecord.cpp:204
+msgid "&Options"
+msgstr "&Einstellungen"
+
+#: krecord.cpp:482 krecord.cpp:520 krecord.cpp:524
+msgid "&Power"
+msgstr ""
+
+#: krecord.cpp:128 krecord.cpp:130 krecord.cpp:152 krecord.cpp:179
+msgid "&Quit"
+msgstr "&Beenden"
+
+#: krecord.cpp:124 krecord.cpp:126 krecord.cpp:148 krecord.cpp:173
+msgid "&Save buffer as..."
+msgstr "Puffer &speichern als"
+
+#: krecord.cpp:132 krecord.cpp:134 krecord.cpp:156 krecord.cpp:183
+msgid "&Sound Options..."
+msgstr "&Audio Einstellungen"
+
+#: krecord.cpp:200
+msgid "About..."
+msgstr "Über..."
+
+#: sound.cpp:107 sound.cpp:111
+msgid "Apply"
+msgstr "Übernehmen"
+
+#: krecord.cpp:220 krecord.cpp:288 krecord.cpp:285
+msgid "Back"
+msgstr "ZurΓΌck"
+
+#: krecord.cpp:222 krecord.cpp:253
+msgid "Back (not implemented yet)"
+msgstr "ZurΓΌck (noch nicht implementiert)"
+
+#: sound.cpp:102 sound.cpp:106
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: krecord.cpp:486 krecord.cpp:524 krecord.cpp:528
+msgid "Display power carried by signal"
+msgstr ""
+
+#: krecord.cpp:492 krecord.cpp:530 krecord.cpp:534
+msgid "Display signal maximum level"
+msgstr ""
+
+#: buffer.cpp:29 buffer.cpp:35 buffer.cpp:227 buffer.cpp:232 buffer.cpp:257
+#: buffer.cpp:263 buffer.cpp:506 buffer.cpp:656 buffer.cpp:712 buffer.cpp:747
+msgid "Error"
+msgstr "Fehler"
+
+#: krecord.cpp:225 krecord.cpp:293 krecord.cpp:290
+msgid "Forward"
+msgstr "VorwΓ€rts"
+
+#: krecord.cpp:227 krecord.cpp:258
+msgid "Forward (not implemented yet)"
+msgstr "VorwΓ€rts (noch nicht implementiert)"
+
+#: krecord.cpp:177 krecord.cpp:179 krecord.cpp:205 krecord.cpp:233
+#: krecord.cpp:231
+msgid "Freq Spectrum"
+msgstr "Frequenz Spektrum"
+
+#: krecord.cpp:183 krecord.cpp:185 krecord.cpp:216 krecord.cpp:245
+#: krecord.cpp:243
+msgid "Help"
+msgstr "Hilfe"
+
+#: krecord.cpp:137 krecord.cpp:139 krecord.cpp:165 krecord.cpp:192
+#: krecord.cpp:315 krecord.cpp:317 krecord.cpp:357 krecord.cpp:388
+#: krecord.cpp:384
+msgid "Hide &Toolbar"
+msgstr "&Werkzeugleisten verstecken"
+
+#: krecord.cpp:139 krecord.cpp:141 krecord.cpp:167 krecord.cpp:194
+#: krecord.cpp:323 krecord.cpp:325 krecord.cpp:365 krecord.cpp:396
+#: krecord.cpp:395
+msgid "Hide Status&line"
+msgstr "&Statusleiste verstecken"
+
+#: krecord.cpp:210 krecord.cpp:238 krecord.cpp:236
+msgid "Input Level"
+msgstr ""
+
+#: krecord.cpp:468 krecord.cpp:507 krecord.cpp:511
+msgid "L&inear"
+msgstr "L&inear"
+
+#: krecord.cpp:461 krecord.cpp:497 krecord.cpp:504
+msgid "L&og"
+msgstr "L&og"
+
+#: krecord.cpp:471 krecord.cpp:510 krecord.cpp:514
+msgid "Linear scale"
+msgstr ""
+
+#: krecord.cpp:465 krecord.cpp:504 krecord.cpp:508
+msgid "Logarithmic scale"
+msgstr ""
+
+#: krecord.cpp:123 krecord.cpp:125 krecord.cpp:147 krecord.cpp:171
+msgid "New &file buffer..."
+msgstr "Neuer &Datei Puffer"
+
+#: krecord.cpp:166
+msgid "New buffer"
+msgstr "Neuer Puffer"
+
+#: krecord.cpp:168 krecord.cpp:194 krecord.cpp:221 krecord.cpp:219
+msgid "New memory buffer"
+msgstr "Neuer Speicher Puffer"
+
+#: sound.cpp:112 sound.cpp:116
+msgid "OK"
+msgstr "OK"
+
+#: krecord.cpp:188 krecord.cpp:190 krecord.cpp:221 krecord.cpp:251
+#: krecord.cpp:249
+msgid "Quit"
+msgstr "Beenden"
+
+#: krecord.cpp:162 krecord.cpp:189
+msgid "Run &Mixer"
+msgstr "&Mixer starten"
+
+#: krecord.cpp:171 krecord.cpp:173 krecord.cpp:199 krecord.cpp:226
+#: krecord.cpp:224
+msgid "Save buffer"
+msgstr "Puffer speichern"
+
+#: krecord.cpp:315 krecord.cpp:317 krecord.cpp:357 krecord.cpp:388
+#: krecord.cpp:381
+msgid "Show &Toolbar"
+msgstr "&Werkzeugliste zeigen"
+
+#: krecord.cpp:323 krecord.cpp:325 krecord.cpp:365 krecord.cpp:396
+#: krecord.cpp:392
+msgid "Show Status&line"
+msgstr "&Statusleiste zeigen"
+
+#: krecord.cpp:215
+msgid "Sound Playback"
+msgstr "Abspielen"
+
+#: krecord.cpp:205
+msgid "Sound Record"
+msgstr "Aufnehmen"
+
+#: krecord.cpp:217 krecord.cpp:248 krecord.cpp:283 krecord.cpp:280
+msgid "Start Playback"
+msgstr "Abspielen"
+
+#: krecord.cpp:207 krecord.cpp:238 krecord.cpp:273 krecord.cpp:270
+msgid "Start Record"
+msgstr "Aufnehmen"
+
+#: krecord.cpp:210 krecord.cpp:212 krecord.cpp:243 krecord.cpp:278
+#: krecord.cpp:275
+msgid "Stop Record/Playback"
+msgstr "Stop"
+
+#: krecord.cpp:268 krecord.cpp:265
+msgid "Switch to new buffer"
+msgstr "Zum nΓ€chsten Puffer"
+
+#: krecord.cpp:233 krecord.cpp:264 krecord.cpp:299 krecord.cpp:296
+msgid "Turn on/off monitor"
+msgstr "Monitor Ein-/Ausschalten"
+
+#: krecord.cpp:231
+msgid "Turn on/off the Monitor"
+msgstr "Monitor Ein-/Ausschalten"
+
+#: sound.cpp:43 sound.cpp:47
+msgid "audio format"
+msgstr "Audio Format"
+
+#: buffer.cpp:488 buffer.cpp:506 buffer.cpp:633 buffer.cpp:656 buffer.cpp:694
+#: buffer.cpp:712 buffer.cpp:729 buffer.cpp:747
+msgid "buffer is busy"
+msgstr "Puffer ist beschΓ€ftigt"
+
+#: buffer.cpp:211 buffer.cpp:232 buffer.cpp:240
+msgid "can't create wav file"
+msgstr "wav Datei kann nicht erzeugt werden"
+
+#: buffer.cpp:532 buffer.cpp:554 buffer.cpp:585 buffer.cpp:666 buffer.cpp:684
+#: buffer.cpp:699 buffer.cpp:717 buffer.cpp:736 buffer.cpp:754
+msgid "can't open soundcard"
+msgstr "Soundkarte konnte nicht geΓΆffnet werden"
+
+#: buffer.cpp:217 buffer.cpp:238 buffer.cpp:246
+msgid "can't open wav file"
+msgstr "wav datei kann nicht geΓΆffnet werden"
+
+#: buffer.cpp:467 buffer.cpp:561 buffer.cpp:583
+msgid "can't save sound data"
+msgstr "Audio Daten konnten nicht gespeichert werden"
+
+#: buffer.cpp:644
+msgid "can't write sound data"
+msgstr "Audio Daten konnten nicht geschrieben werden."
+
+#: buffer.cpp:539 buffer.cpp:601 buffer.cpp:613 buffer.cpp:673 buffer.cpp:691
+#: buffer.cpp:773 buffer.cpp:786 buffer.cpp:799 buffer.cpp:792 buffer.cpp:805
+msgid "idle"
+msgstr "Leerlauf"
+
+#: buffer.cpp:535 buffer.cpp:603 buffer.cpp:610 buffer.cpp:669 buffer.cpp:687
+#: buffer.cpp:775 buffer.cpp:783 buffer.cpp:788 buffer.cpp:796 buffer.cpp:794
+#: buffer.cpp:802
+msgid "monitor"
+msgstr "Monitor"
+
+#: buffer.cpp:401 buffer.cpp:461 buffer.cpp:478 sound.cpp:54 sound.cpp:58
+msgid "mono"
+msgstr "mono"
+
+#: buffer.cpp:409 buffer.cpp:471 buffer.cpp:488
+msgid "new"
+msgstr "neu"
+
+#: buffer.cpp:228 buffer.cpp:249 buffer.cpp:258
+msgid "not a wav file"
+msgstr "keine wav Datei"
+
+#: buffer.cpp:587 buffer.cpp:589 buffer.cpp:610 buffer.cpp:743 buffer.cpp:760
+msgid "playback"
+msgstr "abspielen"
+
+#: buffer.cpp:530 buffer.cpp:551 buffer.cpp:566 buffer.cpp:588
+msgid "record"
+msgstr "aufnehmen"
+
+#: sound.cpp:46 sound.cpp:50
+msgid "record trigger"
+msgstr ""
+
+#: buffer.cpp:459 buffer.cpp:569 buffer.cpp:712 buffer.cpp:730
+msgid "recording..."
+msgstr "Aufnahme"
+
+#: sound.cpp:45 sound.cpp:49
+msgid "sample rate"
+msgstr "Sample Rate"
+
+#: sound.cpp:127 sound.cpp:131
+msgid "sound options"
+msgstr "Sound Einstellungen"
+
+#: buffer.cpp:401 buffer.cpp:462 buffer.cpp:478 sound.cpp:56 sound.cpp:60
+msgid "stereo"
+msgstr "stereo"
+
+#: buffer.cpp:233 buffer.cpp:254 buffer.cpp:264
+msgid "unsupported audio format"
+msgstr "nicht unterstΓΌtztes Audio Format"
+
+#: buffer.cpp:566 buffer.cpp:709 buffer.cpp:727
+msgid "waiting..."
+msgstr "warte..."
+
diff --git a/po/el.po b/po/el.po
new file mode 100644
index 0000000..1d91572
--- /dev/null
+++ b/po/el.po
@@ -0,0 +1,295 @@
+# krecord - *.po template
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: krecord\n"
+"POT-Creation-Date: 1999-11-07 19:43+0100\n"
+"PO-Revision-Date: 1998-01-03 19:04+0100\n"
+"Last-Translator: Kostas Pistiolis <kpistiolis@yahoo.com>\n"
+"Language-Team: none\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-7\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: sound.cpp:44
+msgid "# of channels"
+msgstr "αριθμός καναλιών"
+
+#: krecord.cpp:144 krecord.cpp:146 krecord.cpp:172
+msgid "&About..."
+msgstr "&Σχετικά..."
+
+#: krecord.cpp:126 krecord.cpp:128 krecord.cpp:150
+msgid "&Delete buffer"
+msgstr "&Διαγραφή ήχου"
+
+#: krecord.cpp:147 krecord.cpp:149 krecord.cpp:175
+msgid "&File"
+msgstr "&Αρχείο"
+
+#: krecord.cpp:134 krecord.cpp:136 krecord.cpp:158
+msgid "&Freq Spectrum..."
+msgstr "&Φάσμα Συχνοτήτων..."
+
+#: krecord.cpp:142 krecord.cpp:144 krecord.cpp:150 krecord.cpp:152
+#: krecord.cpp:170 krecord.cpp:178
+msgid "&Help"
+msgstr "&Βοήθεια"
+
+#: krecord.cpp:160
+msgid "&Input Level..."
+msgstr "Ένταση ει&σόδου..."
+
+#: krecord.cpp:489
+msgid "&Max"
+msgstr "&Μέγιστο"
+
+#: krecord.cpp:122
+msgid "&New buffer"
+msgstr "&Νέος ήχος"
+
+#: krecord.cpp:124 krecord.cpp:146
+msgid "&New memory buffer"
+msgstr "Νέος ήχος στη &μνήμη"
+
+#: krecord.cpp:148 krecord.cpp:150 krecord.cpp:176
+msgid "&Options"
+msgstr "&Επιλογές"
+
+#: krecord.cpp:482
+msgid "&Power"
+msgstr "&Ένταση"
+
+#: krecord.cpp:128 krecord.cpp:130 krecord.cpp:152
+msgid "&Quit"
+msgstr "&Έξοδος"
+
+#: krecord.cpp:124 krecord.cpp:126 krecord.cpp:148
+msgid "&Save buffer as..."
+msgstr "&Αποθήκευση ήχου ως..."
+
+#: krecord.cpp:132 krecord.cpp:134 krecord.cpp:156
+msgid "&Sound Options..."
+msgstr "&Επιλογές ήχου..."
+
+#: sound.cpp:107
+msgid "Apply"
+msgstr "Εφαρμογή"
+
+#: krecord.cpp:220
+msgid "Back"
+msgstr "Πίσω"
+
+#: krecord.cpp:222 krecord.cpp:253
+msgid "Back (not implemented yet)"
+msgstr "Πίσω (δε λειτουργεί ακόμη)"
+
+#: sound.cpp:102
+msgid "Cancel"
+msgstr "Ακύρωση"
+
+#: krecord.cpp:486
+msgid "Display power carried by signal"
+msgstr ""
+
+#: krecord.cpp:492
+msgid "Display signal maximum level"
+msgstr "Εμφάνιση μέγιστης έντασης σήματος"
+
+#: buffer.cpp:29 buffer.cpp:35 buffer.cpp:227 buffer.cpp:232 buffer.cpp:257
+#: buffer.cpp:263 buffer.cpp:506 buffer.cpp:656 buffer.cpp:712 buffer.cpp:747
+msgid "Error"
+msgstr "Σφάλμα"
+
+#: krecord.cpp:225
+msgid "Forward"
+msgstr "Μπροστά"
+
+#: krecord.cpp:227 krecord.cpp:258
+msgid "Forward (not implemented yet)"
+msgstr "Μπροστά (δε λειτουργεί ακόμη)"
+
+#: krecord.cpp:177 krecord.cpp:179 krecord.cpp:205
+msgid "Freq Spectrum"
+msgstr "Φάσμα Συχνοτήτων"
+
+#: krecord.cpp:183 krecord.cpp:185 krecord.cpp:216
+msgid "Help"
+msgstr "Βοήθεια"
+
+#: krecord.cpp:137 krecord.cpp:139 krecord.cpp:165 krecord.cpp:315
+#: krecord.cpp:317 krecord.cpp:357
+msgid "Hide &Toolbar"
+msgstr "Απόκρυψη ερ&γαλείων"
+
+#: krecord.cpp:139 krecord.cpp:141 krecord.cpp:167 krecord.cpp:323
+#: krecord.cpp:325 krecord.cpp:365
+msgid "Hide Status&line"
+msgstr "Απόκρυψη γραμμής &κατάστασης"
+
+#: krecord.cpp:210
+msgid "Input Level"
+msgstr "Ένταση εισόδου"
+
+#: krecord.cpp:468
+msgid "L&inear"
+msgstr "&Γραμ."
+
+#: krecord.cpp:461
+msgid "L&og"
+msgstr "&Λογ."
+
+#: krecord.cpp:471
+msgid "Linear scale"
+msgstr "Γραμμική κλίμακα"
+
+#: krecord.cpp:465
+msgid "Logarithmic scale"
+msgstr "Λογαριθμική κλίμακα"
+
+#: krecord.cpp:123 krecord.cpp:125 krecord.cpp:147
+msgid "New &file buffer..."
+msgstr "Νέος ήχος σε αρ&χείο..."
+
+#: krecord.cpp:166
+msgid "New buffer"
+msgstr "Νέος ήχος"
+
+#: krecord.cpp:168 krecord.cpp:194
+msgid "New memory buffer"
+msgstr "Νέος ήχος στη μνήμη"
+
+#: sound.cpp:112
+msgid "OK"
+msgstr "Εντάξει"
+
+#: krecord.cpp:188 krecord.cpp:190 krecord.cpp:221
+msgid "Quit"
+msgstr "Έξοδος"
+
+#: krecord.cpp:162
+msgid "Run &Mixer"
+msgstr "Εκτέλεση &Μείκτη"
+
+#: krecord.cpp:171 krecord.cpp:173 krecord.cpp:199
+msgid "Save buffer"
+msgstr "Αποθήκευση ήχου"
+
+#: krecord.cpp:315 krecord.cpp:317 krecord.cpp:357
+msgid "Show &Toolbar"
+msgstr "Εμφάνιση ερ&γαλείων"
+
+#: krecord.cpp:323 krecord.cpp:325 krecord.cpp:365
+msgid "Show Status&line"
+msgstr "Εμφάνιση γραμμής &κατάστασης"
+
+#: krecord.cpp:215
+msgid "Sound Playback"
+msgstr "Αναπαραγωγή"
+
+#: krecord.cpp:205
+msgid "Sound Record"
+msgstr "Εγγραφή"
+
+#: krecord.cpp:217 krecord.cpp:248
+msgid "Start Playback"
+msgstr "Έναρξη αναπαραγωγής"
+
+#: krecord.cpp:207 krecord.cpp:238
+msgid "Start Record"
+msgstr "Έναρξη εγγραφής"
+
+#: krecord.cpp:210 krecord.cpp:212 krecord.cpp:243
+msgid "Stop Record/Playback"
+msgstr "Σταμάτημα"
+
+#: krecord.cpp:233 krecord.cpp:264
+msgid "Turn on/off monitor"
+msgstr "Ένδειξη (ή όχι) εισόδου"
+
+#: krecord.cpp:231
+msgid "Turn on/off the Monitor"
+msgstr "Επιλογή ένδειξης ή όχι της εισόδου"
+
+#: sound.cpp:43
+msgid "audio format"
+msgstr "Τύπος ήχου"
+
+#: buffer.cpp:506 buffer.cpp:656 buffer.cpp:712 buffer.cpp:747
+msgid "buffer is busy"
+msgstr "η μονάδα ήχου χρησιμοποιείται ήδη"
+
+#: buffer.cpp:211 buffer.cpp:240
+msgid "can't create wav file"
+msgstr "δε μπορώ να δημιουργήσω το αρχείο wav"
+
+#: buffer.cpp:532 buffer.cpp:554 buffer.cpp:585 buffer.cpp:684 buffer.cpp:717
+#: buffer.cpp:754
+msgid "can't open soundcard"
+msgstr "δε μπορών ν'ανοίξω την κάρτα ήχου"
+
+#: buffer.cpp:217 buffer.cpp:246
+msgid "can't open wav file"
+msgstr "δε μπορώ ν'α ανοίξω το αρχείο wav"
+
+#: buffer.cpp:467 buffer.cpp:583
+msgid "can't save sound data"
+msgstr "δε μπορώ ν'αποθηκεύσω τον ήχο"
+
+#: buffer.cpp:539 buffer.cpp:601 buffer.cpp:613 buffer.cpp:691 buffer.cpp:773
+#: buffer.cpp:786
+msgid "idle"
+msgstr "εν αεργία"
+
+#: buffer.cpp:535 buffer.cpp:603 buffer.cpp:610 buffer.cpp:687 buffer.cpp:775
+#: buffer.cpp:783
+msgid "monitor"
+msgstr "εμφανίζεται η είσοδος"
+
+#: buffer.cpp:401 buffer.cpp:478 sound.cpp:54
+msgid "mono"
+msgstr "μονοφωνικό"
+
+#: buffer.cpp:409 buffer.cpp:488
+msgid "new"
+msgstr "νέο"
+
+#: buffer.cpp:228 buffer.cpp:258
+msgid "not a wav file"
+msgstr "δεν είναι αρχείο wav"
+
+#: buffer.cpp:589 buffer.cpp:610 buffer.cpp:760
+msgid "playback"
+msgstr "αναπαραγωγή"
+
+#: buffer.cpp:551 buffer.cpp:588
+msgid "record"
+msgstr "εγγραφή"
+
+#: sound.cpp:46
+msgid "record trigger"
+msgstr "επίπεδο έναρξης εγγραφής"
+
+#: buffer.cpp:459 buffer.cpp:569 buffer.cpp:730
+msgid "recording..."
+msgstr "εν εγγραφή..."
+
+#: sound.cpp:45
+msgid "sample rate"
+msgstr "ρυθμός δειγματοληψίας"
+
+#: sound.cpp:127
+msgid "sound options"
+msgstr "επιλογές ήχου"
+
+#: buffer.cpp:401 buffer.cpp:478 sound.cpp:56
+msgid "stereo"
+msgstr "στερεοφωνικό"
+
+#: buffer.cpp:233 buffer.cpp:264
+msgid "unsupported audio format"
+msgstr "ο τύπος ήχου δεν υποστηρίζεται"
+
+#: buffer.cpp:566 buffer.cpp:727
+msgid "waiting..."
+msgstr "εν αναμονή..."
diff --git a/po/fi.po b/po/fi.po
new file mode 100644
index 0000000..6700c8a
--- /dev/null
+++ b/po/fi.po
@@ -0,0 +1,314 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: krecord\n"
+"POT-Creation-Date: 2000-10-25 22:50+0200\n"
+"PO-Revision-Date: 2001-02-04 15:54GMT\n"
+"Last-Translator: Tapio Kautto <eleknader@phnet.fi>\n"
+"Language-Team: Finnish <fi@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.8\n"
+
+# krecord - *.po template
+#
+#: sound.cpp:44 sound.cpp:48
+msgid "# of channels"
+msgstr "# kanavista"
+
+#: krecord.cpp:144 krecord.cpp:146 krecord.cpp:172
+msgid "&About..."
+msgstr "&Tietoja"
+
+#: krecord.cpp:126 krecord.cpp:128 krecord.cpp:150 krecord.cpp:176
+msgid "&Delete buffer"
+msgstr "&TyhjennΓ€ puskuri"
+
+#: krecord.cpp:147 krecord.cpp:149 krecord.cpp:175 krecord.cpp:203
+msgid "&File"
+msgstr "&Tiedosto"
+
+#: krecord.cpp:134 krecord.cpp:136 krecord.cpp:158 krecord.cpp:185
+msgid "&Freq Spectrum..."
+msgstr "&Taajuusspektri"
+
+#: krecord.cpp:142 krecord.cpp:144 krecord.cpp:150 krecord.cpp:152
+#: krecord.cpp:170 krecord.cpp:178 krecord.cpp:198 krecord.cpp:206
+msgid "&Help"
+msgstr "O&hje"
+
+#: krecord.cpp:160 krecord.cpp:187
+msgid "&Input Level..."
+msgstr "&SisÀÀntulotaso..."
+
+#: krecord.cpp:489 krecord.cpp:527
+msgid "&Max"
+msgstr "&Maksimi"
+
+#: krecord.cpp:122
+msgid "&New buffer"
+msgstr "&Uusi puskuri"
+
+#: krecord.cpp:124 krecord.cpp:146 krecord.cpp:169
+msgid "&New memory buffer"
+msgstr "&Uusi muistipuskuri"
+
+#: krecord.cpp:148 krecord.cpp:150 krecord.cpp:176 krecord.cpp:204
+msgid "&Options"
+msgstr "&Valinnat"
+
+#: krecord.cpp:482 krecord.cpp:520
+msgid "&Power"
+msgstr ""
+
+#: krecord.cpp:128 krecord.cpp:130 krecord.cpp:152 krecord.cpp:179
+msgid "&Quit"
+msgstr "&Lopeta"
+
+#: krecord.cpp:124 krecord.cpp:126 krecord.cpp:148 krecord.cpp:173
+msgid "&Save buffer as..."
+msgstr "&Tallenna puskuri nimellΓ€"
+
+#: krecord.cpp:132 krecord.cpp:134 krecord.cpp:156 krecord.cpp:183
+msgid "&Sound Options..."
+msgstr "&ÄÀnen valinnat"
+
+#: krecord.cpp:200
+msgid "About..."
+msgstr "Tietoja..."
+
+#: sound.cpp:107 sound.cpp:111
+msgid "Apply"
+msgstr "KΓ€ytΓ€"
+
+#: krecord.cpp:220 krecord.cpp:288
+msgid "Back"
+msgstr "Takaisin"
+
+#: krecord.cpp:222 krecord.cpp:253
+msgid "Back (not implemented yet)"
+msgstr "Takaisin (ei vielΓ€ implementoitu)"
+
+#: sound.cpp:102 sound.cpp:106
+msgid "Cancel"
+msgstr "Peru"
+
+#: krecord.cpp:486 krecord.cpp:524
+msgid "Display power carried by signal"
+msgstr "NΓ€ytΓ€ virta signaalin mukaan"
+
+#: krecord.cpp:492 krecord.cpp:530
+msgid "Display signal maximum level"
+msgstr "NΓ€ytΓ€ signaalin maksimitaso"
+
+#: buffer.cpp:29 buffer.cpp:35 buffer.cpp:227 buffer.cpp:232 buffer.cpp:257
+#: buffer.cpp:263 buffer.cpp:506 buffer.cpp:656 buffer.cpp:712 buffer.cpp:747
+msgid "Error"
+msgstr "Virhe"
+
+#: krecord.cpp:225 krecord.cpp:293
+msgid "Forward"
+msgstr "Seuraava"
+
+#: krecord.cpp:227 krecord.cpp:258
+msgid "Forward (not implemented yet)"
+msgstr "Seuraava (ei vielΓ€ implementoitu)"
+
+#: krecord.cpp:177 krecord.cpp:179 krecord.cpp:205 krecord.cpp:233
+msgid "Freq Spectrum"
+msgstr "Taajuusspektri"
+
+#: krecord.cpp:183 krecord.cpp:185 krecord.cpp:216 krecord.cpp:245
+msgid "Help"
+msgstr "Ohje"
+
+#: krecord.cpp:137 krecord.cpp:139 krecord.cpp:165 krecord.cpp:192
+#: krecord.cpp:315 krecord.cpp:317 krecord.cpp:357 krecord.cpp:388
+msgid "Hide &Toolbar"
+msgstr "Piilota &tyΓΆkalupalkki"
+
+#: krecord.cpp:139 krecord.cpp:141 krecord.cpp:167 krecord.cpp:194
+#: krecord.cpp:323 krecord.cpp:325 krecord.cpp:365 krecord.cpp:396
+msgid "Hide Status&line"
+msgstr "Piilota t&ilarivi"
+
+#: krecord.cpp:210 krecord.cpp:238
+msgid "Input Level"
+msgstr "SisÀÀntulotaso"
+
+#: krecord.cpp:468 krecord.cpp:507
+msgid "L&inear"
+msgstr "L&ineaarinen"
+
+#: krecord.cpp:461 krecord.cpp:497
+msgid "L&og"
+msgstr "L&oki"
+
+#: krecord.cpp:471 krecord.cpp:510
+msgid "Linear scale"
+msgstr "Lineaarinen alue"
+
+#: krecord.cpp:465 krecord.cpp:504
+msgid "Logarithmic scale"
+msgstr "Logaritminen alue"
+
+#: krecord.cpp:123 krecord.cpp:125 krecord.cpp:147 krecord.cpp:171
+msgid "New &file buffer..."
+msgstr "Uusi &tiedostopuskuri"
+
+#: krecord.cpp:166
+msgid "New buffer"
+msgstr "Uusi puskuri"
+
+#: krecord.cpp:168 krecord.cpp:194 krecord.cpp:221
+msgid "New memory buffer"
+msgstr "Uusi muistipuskuri"
+
+#: sound.cpp:112 sound.cpp:116
+msgid "OK"
+msgstr "OK"
+
+#: krecord.cpp:188 krecord.cpp:190 krecord.cpp:221 krecord.cpp:251
+msgid "Quit"
+msgstr "Lopeta"
+
+#: krecord.cpp:162 krecord.cpp:189
+msgid "Run &Mixer"
+msgstr "Aja &mikseri"
+
+#: krecord.cpp:171 krecord.cpp:173 krecord.cpp:199 krecord.cpp:226
+msgid "Save buffer"
+msgstr "Tallenna puskuri"
+
+#: krecord.cpp:315 krecord.cpp:317 krecord.cpp:357 krecord.cpp:388
+msgid "Show &Toolbar"
+msgstr "NΓ€ytΓ€ &tyΓΆkalupalkki"
+
+#: krecord.cpp:323 krecord.cpp:325 krecord.cpp:365 krecord.cpp:396
+msgid "Show Status&line"
+msgstr "NΓ€ytΓ€ tila&rivi"
+
+#: krecord.cpp:215
+msgid "Sound Playback"
+msgstr "ÄÀnen toistaminen"
+
+#: krecord.cpp:205
+msgid "Sound Record"
+msgstr "ÄÀnen tallentaminen"
+
+#: krecord.cpp:217 krecord.cpp:248 krecord.cpp:283
+msgid "Start Playback"
+msgstr "Aloita toistaminen"
+
+#: krecord.cpp:207 krecord.cpp:238 krecord.cpp:273
+msgid "Start Record"
+msgstr "Aloita tallennus"
+
+#: krecord.cpp:210 krecord.cpp:212 krecord.cpp:243 krecord.cpp:278
+msgid "Stop Record/Playback"
+msgstr "PysΓ€ytΓ€ tallennus/toisto"
+
+#: krecord.cpp:268
+msgid "Switch to new buffer"
+msgstr "Vaihda uuteen puskuriin"
+
+#: krecord.cpp:233 krecord.cpp:264 krecord.cpp:299
+msgid "Turn on/off monitor"
+msgstr "Monitori pÀÀlle/pois"
+
+#: krecord.cpp:231
+msgid "Turn on/off the Monitor"
+msgstr "Monitori pÀÀlle/pois"
+
+#: sound.cpp:43 sound.cpp:47
+msgid "audio format"
+msgstr "ÀÀnen tallennusmuoto"
+
+#: buffer.cpp:488 buffer.cpp:506 buffer.cpp:633 buffer.cpp:656 buffer.cpp:694
+#: buffer.cpp:712 buffer.cpp:729 buffer.cpp:747
+msgid "buffer is busy"
+msgstr "puskuri on varattu"
+
+#: buffer.cpp:211 buffer.cpp:232 buffer.cpp:240
+msgid "can't create wav file"
+msgstr "wav -tiedoston luominen ei onnistu"
+
+#: buffer.cpp:532 buffer.cpp:554 buffer.cpp:585 buffer.cpp:666 buffer.cpp:684
+#: buffer.cpp:699 buffer.cpp:717 buffer.cpp:736 buffer.cpp:754
+msgid "can't open soundcard"
+msgstr "ÀÀnikortin avaaminen ei onnistu"
+
+#: buffer.cpp:217 buffer.cpp:238 buffer.cpp:246
+msgid "can't open wav file"
+msgstr "wav -tiedoston avaaminen ei onnistu"
+
+#: buffer.cpp:467 buffer.cpp:561 buffer.cpp:583
+msgid "can't save sound data"
+msgstr "ÀÀnen tallentaminen ei onnistu"
+
+#: buffer.cpp:644
+msgid "can't write sound data"
+msgstr "ÀÀnen datan kirjoittaminen ei onnistu"
+
+#: buffer.cpp:539 buffer.cpp:601 buffer.cpp:613 buffer.cpp:673 buffer.cpp:691
+#: buffer.cpp:773 buffer.cpp:786 buffer.cpp:799
+msgid "idle"
+msgstr "valmis"
+
+#: buffer.cpp:535 buffer.cpp:603 buffer.cpp:610 buffer.cpp:669 buffer.cpp:687
+#: buffer.cpp:775 buffer.cpp:783 buffer.cpp:788 buffer.cpp:796
+msgid "monitor"
+msgstr "monitori"
+
+#: buffer.cpp:401 buffer.cpp:461 buffer.cpp:478 sound.cpp:54 sound.cpp:58
+msgid "mono"
+msgstr "mono"
+
+#: buffer.cpp:409 buffer.cpp:471 buffer.cpp:488
+msgid "new"
+msgstr "uusi"
+
+#: buffer.cpp:228 buffer.cpp:249 buffer.cpp:258
+msgid "not a wav file"
+msgstr "ei wav -tiedosto"
+
+#: buffer.cpp:587 buffer.cpp:589 buffer.cpp:610 buffer.cpp:743 buffer.cpp:760
+msgid "playback"
+msgstr "toisto"
+
+#: buffer.cpp:530 buffer.cpp:551 buffer.cpp:566 buffer.cpp:588
+msgid "record"
+msgstr "tallennus"
+
+#: sound.cpp:46 sound.cpp:50
+msgid "record trigger"
+msgstr "tallennuspainike"
+
+#: buffer.cpp:459 buffer.cpp:569 buffer.cpp:712 buffer.cpp:730
+msgid "recording..."
+msgstr "tallentaa..."
+
+#: sound.cpp:45 sound.cpp:49
+msgid "sample rate"
+msgstr "nΓ€ytteenottotaajuus"
+
+#: sound.cpp:127 sound.cpp:131
+msgid "sound options"
+msgstr "ÀÀnen valinnat"
+
+#: buffer.cpp:401 buffer.cpp:462 buffer.cpp:478 sound.cpp:56 sound.cpp:60
+msgid "stereo"
+msgstr "stereo"
+
+#: buffer.cpp:233 buffer.cpp:254 buffer.cpp:264
+msgid "unsupported audio format"
+msgstr "ÀÀnen tallennusmuotoa ei tueta"
+
+#: buffer.cpp:566 buffer.cpp:709 buffer.cpp:727
+msgid "waiting..."
+msgstr "odottaa..."
+
diff --git a/po/hu.po b/po/hu.po
new file mode 100644
index 0000000..e87a57a
--- /dev/null
+++ b/po/hu.po
@@ -0,0 +1,236 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: krecord\n"
+"POT-Creation-Date: 1998-01-03 20:47+0100\n"
+"PO-Revision-Date: Thu Oct 14 1999 20:29:54+0200\n"
+"Last-Translator: Miklos Merenyi <mermik@swi.hu>\n"
+"Language-Team: Hungarian <hu@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KTranslator v 0.5.0"
+
+#: sound.cpp:44
+msgid "# of channels"
+msgstr "csatornαk szαma"
+
+#: krecord.cpp:144 krecord.cpp:146
+msgid "&About..."
+msgstr "&Nιvjegy..."
+
+#: krecord.cpp:126 krecord.cpp:128
+msgid "&Delete buffer"
+msgstr "Puffer &tφrlιse"
+
+#: krecord.cpp:147 krecord.cpp:149
+msgid "&File"
+msgstr "&Fαjl"
+
+#: krecord.cpp:134 krecord.cpp:136
+msgid "&Freq Spectrum..."
+msgstr "&Frekvenciaspektrum"
+
+#: krecord.cpp:142 krecord.cpp:144 krecord.cpp:150 krecord.cpp:152
+msgid "&Help"
+msgstr "&Segνtsιg"
+
+#: krecord.cpp:122
+msgid "&New buffer"
+msgstr "Ϊj &puffer"
+
+#: krecord.cpp:124
+msgid "&New memory buffer"
+msgstr "&Ϊj memσriapuffer"
+
+#: krecord.cpp:148 krecord.cpp:150
+msgid "&Options"
+msgstr "&Beαllνtαsok"
+
+#: krecord.cpp:128 krecord.cpp:130
+msgid "&Quit"
+msgstr "&Kilιp"
+
+#: krecord.cpp:124 krecord.cpp:126
+msgid "&Save buffer as..."
+msgstr "Puffer mentιse mα&skιnt..."
+
+#: krecord.cpp:132 krecord.cpp:134
+msgid "&Sound Options..."
+msgstr "&Hangtulajdonsαgok"
+
+#: sound.cpp:107
+msgid "Apply"
+msgstr "Alkalmaz"
+
+#: krecord.cpp:220
+msgid "Back"
+msgstr "Vissza"
+
+#: krecord.cpp:222
+msgid "Back (not implemented yet)"
+msgstr "Vissza (mιg nem megy)"
+
+#: sound.cpp:102
+msgid "Cancel"
+msgstr "Mιgsem"
+
+#: buffer.cpp:29 buffer.cpp:227 buffer.cpp:232
+msgid "Error"
+msgstr "Hiba"
+
+#: krecord.cpp:225
+msgid "Forward"
+msgstr "Elυre"
+
+#: krecord.cpp:227
+msgid "Forward (not implemented yet)"
+msgstr "Elυre (mιg nem megy)"
+
+#: krecord.cpp:177 krecord.cpp:179
+msgid "Freq Spectrum"
+msgstr "Frekvenciaspektrum"
+
+#: krecord.cpp:183 krecord.cpp:185
+msgid "Help"
+msgstr "Segνtsιg"
+
+#: krecord.cpp:137 krecord.cpp:139 krecord.cpp:315 krecord.cpp:317
+msgid "Hide &Toolbar"
+msgstr "Eszkφztαr &elrejtιse"
+
+#: krecord.cpp:139 krecord.cpp:141 krecord.cpp:323 krecord.cpp:325
+msgid "Hide Status&line"
+msgstr "Α&llapotsor elrejtιse"
+
+#: krecord.cpp:123 krecord.cpp:125
+msgid "New &file buffer..."
+msgstr "Ϊj &fαjlpuffer"
+
+#: krecord.cpp:166
+msgid "New buffer"
+msgstr "Ϊj puffer"
+
+#: krecord.cpp:168
+msgid "New memory buffer"
+msgstr "Ϊj memσriapuffer"
+
+#: sound.cpp:112
+msgid "OK"
+msgstr "OK"
+
+#: krecord.cpp:188 krecord.cpp:190
+msgid "Quit"
+msgstr "Kilιp"
+
+#: krecord.cpp:171 krecord.cpp:173
+msgid "Save buffer"
+msgstr "Puffer mentιse"
+
+#: krecord.cpp:315 krecord.cpp:317
+msgid "Show &Toolbar"
+msgstr "&Eszkφztαr megjelenνtιse"
+
+#: krecord.cpp:323 krecord.cpp:325
+msgid "Show Status&line"
+msgstr "Α&llapotsor megjelenνtιse"
+
+#: krecord.cpp:215
+msgid "Sound Playback"
+msgstr "Visszajαtszαs"
+
+#: krecord.cpp:205
+msgid "Sound Record"
+msgstr "Felvιtel"
+
+#: krecord.cpp:217
+msgid "Start Playback"
+msgstr "Visszajαtszαs"
+
+#: krecord.cpp:207
+msgid "Start Record"
+msgstr "Felvιtel"
+
+#: krecord.cpp:210 krecord.cpp:212
+msgid "Stop Record/Playback"
+msgstr "Stop"
+""
+
+#: krecord.cpp:233
+msgid "Turn on/off monitor"
+msgstr "A monitor ki/be kapcsolαsa"
+
+#: krecord.cpp:231
+msgid "Turn on/off the Monitor"
+msgstr "A monitor ki/be kapcsolαsa"
+
+#: sound.cpp:43
+msgid "audio format"
+msgstr "audio formαtum"
+
+#: buffer.cpp:211
+msgid "can't create wav file"
+msgstr "nem lehet a wav-fαlt lιtrehozni"
+
+#: buffer.cpp:532 buffer.cpp:554 buffer.cpp:585
+msgid "can't open soundcard"
+msgstr "nem talαlom a hangkαrtyαt"
+
+#: buffer.cpp:217
+msgid "can't open wav file"
+msgstr "nem lehet a wav-fαjlt megnyitni"
+
+#: buffer.cpp:467
+msgid "can't save sound data"
+msgstr "nem lehet menteni"
+
+#: buffer.cpp:539 buffer.cpp:601 buffer.cpp:613
+msgid "idle"
+msgstr "αll"
+
+#: buffer.cpp:535 buffer.cpp:603 buffer.cpp:610
+msgid "monitor"
+msgstr "monitor"
+
+#: buffer.cpp:401 sound.cpp:54
+msgid "mono"
+msgstr "mono"
+
+#: buffer.cpp:409
+msgid "new"
+msgstr "ϊj"
+
+#: buffer.cpp:228
+msgid "not a wav file"
+msgstr "nem wav-fαjl"
+
+#: buffer.cpp:589
+msgid "playback"
+msgstr "visszajαtszαs"
+
+#: sound.cpp:46
+msgid "record trigger"
+msgstr "felvιtel-kapcsolσ"
+
+#: buffer.cpp:459 buffer.cpp:569
+msgid "recording..."
+msgstr "felvιtel..."
+
+#: sound.cpp:45
+msgid "sample rate"
+msgstr "mintavιteli frekvencia (Hz)"
+
+#: sound.cpp:127
+msgid "sound options"
+msgstr "hangbeαllνtαsok"
+
+#: buffer.cpp:401 sound.cpp:56
+msgid "stereo"
+msgstr "sztereo"
+
+#: buffer.cpp:233
+msgid "unsupported audio format"
+msgstr "ismeretlen audio formαtum"
+
+#: buffer.cpp:566
+msgid "waiting..."
+msgstr "vαrok..."
diff --git a/po/krecord.pot b/po/krecord.pot
new file mode 100644
index 0000000..1c9fab9
--- /dev/null
+++ b/po/krecord.pot
@@ -0,0 +1,273 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2004-11-03 13:55+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: sound.cpp:44
+msgid "# of channels"
+msgstr ""
+
+#: krecord.cpp:192
+msgid "&Delete buffer"
+msgstr ""
+
+#: krecord.cpp:215
+msgid "&File"
+msgstr ""
+
+#: krecord.cpp:201
+msgid "&Freq Spectrum..."
+msgstr ""
+
+#: krecord.cpp:217
+msgid "&Help"
+msgstr ""
+
+#: krecord.cpp:203
+msgid "&Input Level..."
+msgstr ""
+
+#: krecord.cpp:549
+msgid "&Max"
+msgstr ""
+
+#: krecord.cpp:185
+msgid "&New memory buffer"
+msgstr ""
+
+#: krecord.cpp:216
+msgid "&Options"
+msgstr ""
+
+#: krecord.cpp:542
+msgid "&Power"
+msgstr ""
+
+#: krecord.cpp:195
+msgid "&Quit"
+msgstr ""
+
+#: krecord.cpp:189
+msgid "&Save buffer as..."
+msgstr ""
+
+#: krecord.cpp:199
+msgid "&Sound Options..."
+msgstr ""
+
+#: sound.cpp:107
+msgid "Apply"
+msgstr ""
+
+#: krecord.cpp:298
+msgid "Back"
+msgstr ""
+
+#: sound.cpp:102
+msgid "Cancel"
+msgstr ""
+
+#: krecord.cpp:546
+msgid "Display power carried by signal"
+msgstr ""
+
+#: krecord.cpp:552
+msgid "Display signal maximum level"
+msgstr ""
+
+#: krecord.cpp:303
+msgid "Forward"
+msgstr ""
+
+#: krecord.cpp:242
+msgid "Freq Spectrum"
+msgstr ""
+
+#: krecord.cpp:255
+msgid "Help"
+msgstr ""
+
+#: krecord.cpp:208 krecord.cpp:397
+msgid "Hide &Toolbar"
+msgstr ""
+
+#: krecord.cpp:210 krecord.cpp:408
+msgid "Hide Status&line"
+msgstr ""
+
+#: krecord.cpp:247
+msgid "Input Level"
+msgstr ""
+
+#: krecord.cpp:455 krecord.cpp:529
+msgid "L&inear"
+msgstr ""
+
+#: krecord.cpp:451 krecord.cpp:522
+msgid "L&og"
+msgstr ""
+
+#: krecord.cpp:457
+msgid "Linear Y scale"
+msgstr ""
+
+#: krecord.cpp:532
+msgid "Linear scale"
+msgstr ""
+
+#: krecord.cpp:452
+msgid "Logarithmic Y scale"
+msgstr ""
+
+#: krecord.cpp:526
+msgid "Logarithmic scale"
+msgstr ""
+
+#: krecord.cpp:187
+msgid "New &file buffer..."
+msgstr ""
+
+#: krecord.cpp:230
+msgid "New memory buffer"
+msgstr ""
+
+#: sound.cpp:112
+msgid "OK"
+msgstr ""
+
+#: krecord.cpp:262
+msgid "Quit"
+msgstr ""
+
+#: krecord.cpp:205
+msgid "Run &Mixer"
+msgstr ""
+
+#: krecord.cpp:235
+msgid "Save buffer"
+msgstr ""
+
+#: krecord.cpp:394
+msgid "Show &Toolbar"
+msgstr ""
+
+#: krecord.cpp:405
+msgid "Show Status&line"
+msgstr ""
+
+#: krecord.cpp:293
+msgid "Start Playback"
+msgstr ""
+
+#: krecord.cpp:283
+msgid "Start Record"
+msgstr ""
+
+#: krecord.cpp:288
+msgid "Stop Record/Playback"
+msgstr ""
+
+#: krecord.cpp:278
+msgid "Switch to new buffer"
+msgstr ""
+
+#: krecord.cpp:309
+msgid "Turn on/off monitor"
+msgstr ""
+
+#: sound.cpp:43
+msgid "audio format"
+msgstr ""
+
+#: buffer.cpp:488 buffer.cpp:633 buffer.cpp:694 buffer.cpp:729
+msgid "buffer is busy"
+msgstr ""
+
+#: buffer.cpp:232
+msgid "can't create wav file"
+msgstr ""
+
+#: buffer.cpp:666 buffer.cpp:699 buffer.cpp:736
+msgid "can't open soundcard"
+msgstr ""
+
+#: buffer.cpp:238
+msgid "can't open wav file"
+msgstr ""
+
+#: buffer.cpp:561
+msgid "can't save sound data"
+msgstr ""
+
+#: buffer.cpp:644
+msgid "can't write sound data"
+msgstr ""
+
+#: buffer.cpp:673 buffer.cpp:792 buffer.cpp:805
+msgid "idle"
+msgstr ""
+
+#: buffer.cpp:669 buffer.cpp:794 buffer.cpp:802
+msgid "monitor"
+msgstr ""
+
+#: sound.cpp:54 buffer.cpp:461
+msgid "mono"
+msgstr ""
+
+#: buffer.cpp:471
+msgid "new"
+msgstr ""
+
+#: buffer.cpp:249
+msgid "not a wav file"
+msgstr ""
+
+#: buffer.cpp:587 buffer.cpp:743
+msgid "playback"
+msgstr ""
+
+#: buffer.cpp:530 buffer.cpp:566
+msgid "record"
+msgstr ""
+
+#: sound.cpp:46
+msgid "record trigger"
+msgstr ""
+
+#: buffer.cpp:712
+msgid "recording..."
+msgstr ""
+
+#: sound.cpp:45
+msgid "sample rate"
+msgstr ""
+
+#: sound.cpp:127
+msgid "sound options"
+msgstr ""
+
+#: sound.cpp:56 buffer.cpp:462
+msgid "stereo"
+msgstr ""
+
+#: buffer.cpp:254
+msgid "unsupported audio format"
+msgstr ""
+
+#: buffer.cpp:709
+msgid "waiting..."
+msgstr ""