grig-0.8.1/ 0000775 0001750 0001750 00000000000 12635615157 007466 5 0000000 0000000 grig-0.8.1/depcomp 0000755 0001750 0001750 00000056016 12635233734 010766 0000000 0000000 #! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
scriptversion=2013-05-30.07; # UTC
# Copyright (C) 1999-2014 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.
# Originally written by Alexandre Oliva .
case $1 in
'')
echo "$0: No command. Try '$0 --help' for more information." 1>&2
exit 1;
;;
-h | --h*)
cat <<\EOF
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
Run PROGRAMS ARGS to compile a file, generating dependencies
as side-effects.
Environment variables:
depmode Dependency tracking mode.
source Source file read by 'PROGRAMS ARGS'.
object Object file output by 'PROGRAMS ARGS'.
DEPDIR directory where to store dependencies.
depfile Dependency file to output.
tmpdepfile Temporary file to use when outputting dependencies.
libtool Whether libtool is used (yes/no).
Report bugs to .
EOF
exit $?
;;
-v | --v*)
echo "depcomp $scriptversion"
exit $?
;;
esac
# Get the directory component of the given path, and save it in the
# global variables '$dir'. Note that this directory component will
# be either empty or ending with a '/' character. This is deliberate.
set_dir_from ()
{
case $1 in
*/*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
*) dir=;;
esac
}
# Get the suffix-stripped basename of the given path, and save it the
# global variable '$base'.
set_base_from ()
{
base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
}
# If no dependency file was actually created by the compiler invocation,
# we still have to create a dummy depfile, to avoid errors with the
# Makefile "include basename.Plo" scheme.
make_dummy_depfile ()
{
echo "#dummy" > "$depfile"
}
# Factor out some common post-processing of the generated depfile.
# Requires the auxiliary global variable '$tmpdepfile' to be set.
aix_post_process_depfile ()
{
# If the compiler actually managed to produce a dependency file,
# post-process it.
if test -f "$tmpdepfile"; then
# Each line is of the form 'foo.o: dependency.h'.
# Do two passes, one to just change these to
# $object: dependency.h
# and one to simply output
# dependency.h:
# which is needed to avoid the deleted-header problem.
{ sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
} > "$depfile"
rm -f "$tmpdepfile"
else
make_dummy_depfile
fi
}
# A tabulation character.
tab=' '
# A newline character.
nl='
'
# Character ranges might be problematic outside the C locale.
# These definitions help.
upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
lower=abcdefghijklmnopqrstuvwxyz
digits=0123456789
alpha=${upper}${lower}
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
echo "depcomp: Variables source, object and depmode must be set" 1>&2
exit 1
fi
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
depfile=${depfile-`echo "$object" |
sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
rm -f "$tmpdepfile"
# Avoid interferences from the environment.
gccflag= dashmflag=
# Some modes work just like other modes, but use different flags. We
# parameterize here, but still list the modes in the big case below,
# to make depend.m4 easier to write. Note that we *cannot* use a case
# here, because this file can only contain one case statement.
if test "$depmode" = hp; then
# HP compiler uses -M and no extra arg.
gccflag=-M
depmode=gcc
fi
if test "$depmode" = dashXmstdout; then
# This is just like dashmstdout with a different argument.
dashmflag=-xM
depmode=dashmstdout
fi
cygpath_u="cygpath -u -f -"
if test "$depmode" = msvcmsys; then
# This is just like msvisualcpp but w/o cygpath translation.
# Just convert the backslash-escaped backslashes to single forward
# slashes to satisfy depend.m4
cygpath_u='sed s,\\\\,/,g'
depmode=msvisualcpp
fi
if test "$depmode" = msvc7msys; then
# This is just like msvc7 but w/o cygpath translation.
# Just convert the backslash-escaped backslashes to single forward
# slashes to satisfy depend.m4
cygpath_u='sed s,\\\\,/,g'
depmode=msvc7
fi
if test "$depmode" = xlc; then
# IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
gccflag=-qmakedep=gcc,-MF
depmode=gcc
fi
case "$depmode" in
gcc3)
## gcc 3 implements dependency tracking that does exactly what
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
## it if -MD -MP comes after the -MF stuff. Hmm.
## Unfortunately, FreeBSD c89 acceptance of flags depends upon
## the command line argument order; so add the flags where they
## appear in depend2.am. Note that the slowdown incurred here
## affects only configure: in makefiles, %FASTDEP% shortcuts this.
for arg
do
case $arg in
-c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
*) set fnord "$@" "$arg" ;;
esac
shift # fnord
shift # $arg
done
"$@"
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
mv "$tmpdepfile" "$depfile"
;;
gcc)
## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
## (see the conditional assignment to $gccflag above).
## There are various ways to get dependency output from gcc. Here's
## why we pick this rather obscure method:
## - Don't want to use -MD because we'd like the dependencies to end
## up in a subdir. Having to rename by hand is ugly.
## (We might end up doing this anyway to support other compilers.)
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
## -MM, not -M (despite what the docs say). Also, it might not be
## supported by the other compilers which use the 'gcc' depmode.
## - Using -M directly means running the compiler twice (even worse
## than renaming).
if test -z "$gccflag"; then
gccflag=-MD,
fi
"$@" -Wp,"$gccflag$tmpdepfile"
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
echo "$object : \\" > "$depfile"
# The second -e expression handles DOS-style file names with drive
# letters.
sed -e 's/^[^:]*: / /' \
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
## This next piece of magic avoids the "deleted header file" problem.
## The problem is that when a header file which appears in a .P file
## is deleted, the dependency causes make to die (because there is
## typically no way to rebuild the header). We avoid this by adding
## dummy dependencies for each header file. Too bad gcc doesn't do
## this for us directly.
## Some versions of gcc put a space before the ':'. On the theory
## that the space means something, we add a space to the output as
## well. hp depmode also adds that space, but also prefixes the VPATH
## to the object. Take care to not repeat it in the output.
## Some versions of the HPUX 10.20 sed can't process this invocation
## correctly. Breaking it into two sed invocations is a workaround.
tr ' ' "$nl" < "$tmpdepfile" \
| sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
| sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
hp)
# This case exists only to let depend.m4 do its work. It works by
# looking at the text of this script. This case will never be run,
# since it is checked for above.
exit 1
;;
sgi)
if test "$libtool" = yes; then
"$@" "-Wp,-MDupdate,$tmpdepfile"
else
"$@" -MDupdate "$tmpdepfile"
fi
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
echo "$object : \\" > "$depfile"
# Clip off the initial element (the dependent). Don't try to be
# clever and replace this with sed code, as IRIX sed won't handle
# lines with more than a fixed number of characters (4096 in
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
# the IRIX cc adds comments like '#:fec' to the end of the
# dependency line.
tr ' ' "$nl" < "$tmpdepfile" \
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \
| tr "$nl" ' ' >> "$depfile"
echo >> "$depfile"
# The second pass generates a dummy entry for each header file.
tr ' ' "$nl" < "$tmpdepfile" \
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
>> "$depfile"
else
make_dummy_depfile
fi
rm -f "$tmpdepfile"
;;
xlc)
# This case exists only to let depend.m4 do its work. It works by
# looking at the text of this script. This case will never be run,
# since it is checked for above.
exit 1
;;
aix)
# The C for AIX Compiler uses -M and outputs the dependencies
# in a .u file. In older versions, this file always lives in the
# current directory. Also, the AIX compiler puts '$object:' at the
# start of each line; $object doesn't have directory information.
# Version 6 uses the directory in both cases.
set_dir_from "$object"
set_base_from "$object"
if test "$libtool" = yes; then
tmpdepfile1=$dir$base.u
tmpdepfile2=$base.u
tmpdepfile3=$dir.libs/$base.u
"$@" -Wc,-M
else
tmpdepfile1=$dir$base.u
tmpdepfile2=$dir$base.u
tmpdepfile3=$dir$base.u
"$@" -M
fi
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
exit $stat
fi
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
do
test -f "$tmpdepfile" && break
done
aix_post_process_depfile
;;
tcc)
# tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
# FIXME: That version still under development at the moment of writing.
# Make that this statement remains true also for stable, released
# versions.
# It will wrap lines (doesn't matter whether long or short) with a
# trailing '\', as in:
#
# foo.o : \
# foo.c \
# foo.h \
#
# It will put a trailing '\' even on the last line, and will use leading
# spaces rather than leading tabs (at least since its commit 0394caf7
# "Emit spaces for -MD").
"$@" -MD -MF "$tmpdepfile"
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
# Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
# We have to change lines of the first kind to '$object: \'.
sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
# And for each line of the second kind, we have to emit a 'dep.h:'
# dummy dependency, to avoid the deleted-header problem.
sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
rm -f "$tmpdepfile"
;;
## The order of this option in the case statement is important, since the
## shell code in configure will try each of these formats in the order
## listed in this file. A plain '-MD' option would be understood by many
## compilers, so we must ensure this comes after the gcc and icc options.
pgcc)
# Portland's C compiler understands '-MD'.
# Will always output deps to 'file.d' where file is the root name of the
# source file under compilation, even if file resides in a subdirectory.
# The object file name does not affect the name of the '.d' file.
# pgcc 10.2 will output
# foo.o: sub/foo.c sub/foo.h
# and will wrap long lines using '\' :
# foo.o: sub/foo.c ... \
# sub/foo.h ... \
# ...
set_dir_from "$object"
# Use the source, not the object, to determine the base name, since
# that's sadly what pgcc will do too.
set_base_from "$source"
tmpdepfile=$base.d
# For projects that build the same source file twice into different object
# files, the pgcc approach of using the *source* file root name can cause
# problems in parallel builds. Use a locking strategy to avoid stomping on
# the same $tmpdepfile.
lockdir=$base.d-lock
trap "
echo '$0: caught signal, cleaning up...' >&2
rmdir '$lockdir'
exit 1
" 1 2 13 15
numtries=100
i=$numtries
while test $i -gt 0; do
# mkdir is a portable test-and-set.
if mkdir "$lockdir" 2>/dev/null; then
# This process acquired the lock.
"$@" -MD
stat=$?
# Release the lock.
rmdir "$lockdir"
break
else
# If the lock is being held by a different process, wait
# until the winning process is done or we timeout.
while test -d "$lockdir" && test $i -gt 0; do
sleep 1
i=`expr $i - 1`
done
fi
i=`expr $i - 1`
done
trap - 1 2 13 15
if test $i -le 0; then
echo "$0: failed to acquire lock after $numtries attempts" >&2
echo "$0: check lockdir '$lockdir'" >&2
exit 1
fi
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
# Each line is of the form `foo.o: dependent.h',
# or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
# Do two passes, one to just change these to
# `$object: dependent.h' and one to simply `dependent.h:'.
sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
# Some versions of the HPUX 10.20 sed can't process this invocation
# correctly. Breaking it into two sed invocations is a workaround.
sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
| sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
hp2)
# The "hp" stanza above does not work with aCC (C++) and HP's ia64
# compilers, which have integrated preprocessors. The correct option
# to use with these is +Maked; it writes dependencies to a file named
# 'foo.d', which lands next to the object file, wherever that
# happens to be.
# Much of this is similar to the tru64 case; see comments there.
set_dir_from "$object"
set_base_from "$object"
if test "$libtool" = yes; then
tmpdepfile1=$dir$base.d
tmpdepfile2=$dir.libs/$base.d
"$@" -Wc,+Maked
else
tmpdepfile1=$dir$base.d
tmpdepfile2=$dir$base.d
"$@" +Maked
fi
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile1" "$tmpdepfile2"
exit $stat
fi
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
do
test -f "$tmpdepfile" && break
done
if test -f "$tmpdepfile"; then
sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
# Add 'dependent.h:' lines.
sed -ne '2,${
s/^ *//
s/ \\*$//
s/$/:/
p
}' "$tmpdepfile" >> "$depfile"
else
make_dummy_depfile
fi
rm -f "$tmpdepfile" "$tmpdepfile2"
;;
tru64)
# The Tru64 compiler uses -MD to generate dependencies as a side
# effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
# dependencies in 'foo.d' instead, so we check for that too.
# Subdirectories are respected.
set_dir_from "$object"
set_base_from "$object"
if test "$libtool" = yes; then
# Libtool generates 2 separate objects for the 2 libraries. These
# two compilations output dependencies in $dir.libs/$base.o.d and
# in $dir$base.o.d. We have to check for both files, because
# one of the two compilations can be disabled. We should prefer
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
# automatically cleaned when .libs/ is deleted, while ignoring
# the former would cause a distcleancheck panic.
tmpdepfile1=$dir$base.o.d # libtool 1.5
tmpdepfile2=$dir.libs/$base.o.d # Likewise.
tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504
"$@" -Wc,-MD
else
tmpdepfile1=$dir$base.d
tmpdepfile2=$dir$base.d
tmpdepfile3=$dir$base.d
"$@" -MD
fi
stat=$?
if test $stat -ne 0; then
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
exit $stat
fi
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
do
test -f "$tmpdepfile" && break
done
# Same post-processing that is required for AIX mode.
aix_post_process_depfile
;;
msvc7)
if test "$libtool" = yes; then
showIncludes=-Wc,-showIncludes
else
showIncludes=-showIncludes
fi
"$@" $showIncludes > "$tmpdepfile"
stat=$?
grep -v '^Note: including file: ' "$tmpdepfile"
if test $stat -ne 0; then
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
echo "$object : \\" > "$depfile"
# The first sed program below extracts the file names and escapes
# backslashes for cygpath. The second sed program outputs the file
# name when reading, but also accumulates all include files in the
# hold buffer in order to output them again at the end. This only
# works with sed implementations that can handle large buffers.
sed < "$tmpdepfile" -n '
/^Note: including file: *\(.*\)/ {
s//\1/
s/\\/\\\\/g
p
}' | $cygpath_u | sort -u | sed -n '
s/ /\\ /g
s/\(.*\)/'"$tab"'\1 \\/p
s/.\(.*\) \\/\1:/
H
$ {
s/.*/'"$tab"'/
G
p
}' >> "$depfile"
echo >> "$depfile" # make sure the fragment doesn't end with a backslash
rm -f "$tmpdepfile"
;;
msvc7msys)
# This case exists only to let depend.m4 do its work. It works by
# looking at the text of this script. This case will never be run,
# since it is checked for above.
exit 1
;;
#nosideeffect)
# This comment above is used by automake to tell side-effect
# dependency tracking mechanisms from slower ones.
dashmstdout)
# Important note: in order to support this mode, a compiler *must*
# always write the preprocessed file to stdout, regardless of -o.
"$@" || exit $?
# Remove the call to Libtool.
if test "$libtool" = yes; then
while test "X$1" != 'X--mode=compile'; do
shift
done
shift
fi
# Remove '-o $object'.
IFS=" "
for arg
do
case $arg in
-o)
shift
;;
$object)
shift
;;
*)
set fnord "$@" "$arg"
shift # fnord
shift # $arg
;;
esac
done
test -z "$dashmflag" && dashmflag=-M
# Require at least two characters before searching for ':'
# in the target name. This is to cope with DOS-style filenames:
# a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
"$@" $dashmflag |
sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
rm -f "$depfile"
cat < "$tmpdepfile" > "$depfile"
# Some versions of the HPUX 10.20 sed can't process this sed invocation
# correctly. Breaking it into two sed invocations is a workaround.
tr ' ' "$nl" < "$tmpdepfile" \
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
| sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
dashXmstdout)
# This case only exists to satisfy depend.m4. It is never actually
# run, as this mode is specially recognized in the preamble.
exit 1
;;
makedepend)
"$@" || exit $?
# Remove any Libtool call
if test "$libtool" = yes; then
while test "X$1" != 'X--mode=compile'; do
shift
done
shift
fi
# X makedepend
shift
cleared=no eat=no
for arg
do
case $cleared in
no)
set ""; shift
cleared=yes ;;
esac
if test $eat = yes; then
eat=no
continue
fi
case "$arg" in
-D*|-I*)
set fnord "$@" "$arg"; shift ;;
# Strip any option that makedepend may not understand. Remove
# the object too, otherwise makedepend will parse it as a source file.
-arch)
eat=yes ;;
-*|$object)
;;
*)
set fnord "$@" "$arg"; shift ;;
esac
done
obj_suffix=`echo "$object" | sed 's/^.*\././'`
touch "$tmpdepfile"
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
rm -f "$depfile"
# makedepend may prepend the VPATH from the source file name to the object.
# No need to regex-escape $object, excess matching of '.' is harmless.
sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
# Some versions of the HPUX 10.20 sed can't process the last invocation
# correctly. Breaking it into two sed invocations is a workaround.
sed '1,2d' "$tmpdepfile" \
| tr ' ' "$nl" \
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
| sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile" "$tmpdepfile".bak
;;
cpp)
# Important note: in order to support this mode, a compiler *must*
# always write the preprocessed file to stdout.
"$@" || exit $?
# Remove the call to Libtool.
if test "$libtool" = yes; then
while test "X$1" != 'X--mode=compile'; do
shift
done
shift
fi
# Remove '-o $object'.
IFS=" "
for arg
do
case $arg in
-o)
shift
;;
$object)
shift
;;
*)
set fnord "$@" "$arg"
shift # fnord
shift # $arg
;;
esac
done
"$@" -E \
| sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
-e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
| sed '$ s: \\$::' > "$tmpdepfile"
rm -f "$depfile"
echo "$object : \\" > "$depfile"
cat < "$tmpdepfile" >> "$depfile"
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
msvisualcpp)
# Important note: in order to support this mode, a compiler *must*
# always write the preprocessed file to stdout.
"$@" || exit $?
# Remove the call to Libtool.
if test "$libtool" = yes; then
while test "X$1" != 'X--mode=compile'; do
shift
done
shift
fi
IFS=" "
for arg
do
case "$arg" in
-o)
shift
;;
$object)
shift
;;
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
set fnord "$@"
shift
shift
;;
*)
set fnord "$@" "$arg"
shift
shift
;;
esac
done
"$@" -E 2>/dev/null |
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
rm -f "$depfile"
echo "$object : \\" > "$depfile"
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
echo "$tab" >> "$depfile"
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
rm -f "$tmpdepfile"
;;
msvcmsys)
# This case exists only to let depend.m4 do its work. It works by
# looking at the text of this script. This case will never be run,
# since it is checked for above.
exit 1
;;
none)
exec "$@"
;;
*)
echo "Unknown depmode $depmode" 1>&2
exit 1
;;
esac
exit 0
# Local Variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook 'write-file-hooks 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-time-zone: "UTC"
# time-stamp-end: "; # UTC"
# End:
grig-0.8.1/configure.ac 0000644 0001750 0001750 00000005760 12635615117 011676 0000000 0000000 ## Process this file with autoconf to create configure. -*- autoconf -*-
AC_PREREQ([2.67])
AC_INIT([grig],
[0.8.1],
[groundstation-developer@lists.sourceforge.net],
[grig],
[http://groundstation.sourceforge.net/grig])
AM_INIT_AUTOMAKE([-Wall subdir-objects])
AM_CONFIG_HEADER(config.h)
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AM_MAINTAINER_MODE
AC_CONFIG_MACRO_DIR([m4])
dnl check for programs
AC_PROG_CC
AC_ISC_POSIX
AC_HEADER_STDC
AM_PROG_LIBTOOL
LT_PREREQ([2.2.6b])
LT_INIT([win32-dll])
AC_CHECK_HEADERS([sys/time.h getopt.h])
if test "${ac_cv_c_compiler_gnu}" = "yes"; then
CFLAGS="${CFLAGS} -Wall"
fi
pkg_modules="gtk+-2.0 >= 2.12.0 gthread-2.0 >= 2.14.0"
PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
AC_SUBST(PACKAGE_CFLAGS)
AC_SUBST(PACKAGE_LIBS)
ALL_LINGUAS=""
dnl The gettext domain of the library
GETTEXT_PACKAGE=${PACKAGE}
AM_GNU_GETTEXT([external])
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[The gettext domain])
AC_SUBST(GETTEXT_PACKAGE)
AM_GNU_GETTEXT_VERSION([0.18])
AM_XGETTEXT_OPTION([--from-code=UTF-8])
# Check intltool
#IT_PROG_INTLTOOL([0.33], [no-xml])
AC_CHECK_LIB([m], [sincos])
dnl Check hamlib
hamlib_modules="hamlib >= 1.2.8"
PKG_CHECK_MODULES(HAMLIB, [$hamlib_modules], [
CFLAGS="$CFLAGS $HAMLIB_CFLAGS";
LIBS="$LIBS $HAMLIB_LIBS";
dnl AC_DEFINE(WANT_HAMLIB, 1)
], [
AC_MSG_ERROR([Hamradio control libraries 1.2.8 or later not found...])
])
dnl various developer/devloper options
dnl diable HW interaction; usefull to access RIG caps without
dnl having rig; default=no
AC_ARG_ENABLE(hardware, [ --disable-hardware disable hardware IO],
[if test "$enableval" = no ; then disable_hadware=yes; else disable_hadware=no; fi],disable_hadware=no)
if test "$disable_hadware" = yes ; then
AC_DEFINE(DISABLE_HW, 1, [Define if hardware is disabled.])
fi
dnl compiler flags to enable generating coverage report
dnl using gcov
AC_ARG_ENABLE(coverage, [ --enable-coverage enable coverge reports],enable_coverage="$enableval",enable_coverage=no)
if test "$enable_coverage" = yes ; then
CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage";
AC_DEFINE(DISABLE_HW, 1, [Define if hardware is disabled.])
fi
dnl store library versions
HAMLIB_V=`pkg-config --modversion hamlib`
GLIB_V=`pkg-config --modversion glib-2.0`
GTHR_V=`pkg-config --modversion gthread-2.0`
GDK_V=`pkg-config --modversion gdk-2.0`
GTK_V=`pkg-config --modversion gtk+-2.0`
AC_DEFINE_UNQUOTED([HAMLIB_VERSION],[`pkg-config --modversion hamlib`],["Hamlib version"])
AC_SUBST(CFLAGS)
AC_SUBST(LDFLAGS)
AC_OUTPUT([
Makefile
doc/Makefile
doc/man/grig.1
doc/man/Makefile
grig.spec
src/Makefile
pixmaps/Makefile
po/Makefile.in
])
echo
echo SUMMARY:
echo
echo grig version....... : $VERSION
echo Hamlib version..... : $HAMLIB_V
echo Glib version....... : $GLIB_V
echo Gthread version.... : $GTHR_V
echo Gdk version........ : $GDK_V
echo Gtk+ version....... : $GTK_V
echo Disable hardware... : $disable_hadware
echo Enable coverage.... : $enable_coverage
echo
grig-0.8.1/ChangeLog 0000644 0001750 0001750 00000133451 12635614442 011161 0000000 0000000 2015-12-19; Stephane Fillod
* Makefile.am, configure.ac:
* src/Makefile.am:
Keep-up with newer versions of autotools.
* src/rig-daemon.c, src/main.c:
Don't call deprecated glib functions and use the new gthread API.
* src/main.c, src/rig-selector.c, src/rig-gui-vfo.c:
* src/rig-gui-message-window.c:
Cleanup compile warnings.
* po/fr.po:
Update from launchpad.net
* configure.ac, NEWS:
Update for 0.8.1
2011-08-20; Stephane Fillod
* Makefile.am:
Fixes for make distcheck
* src/Makefile.am:
Don't define GDK_DISABLE_DEPRECATED/GTK_DISABLE_DEPRECATED
until the code base is converted to more recent gtk.
* configure.ac, README, TODO, NEWS, AUTHORS:
* po/Makevars, po/grig.pot, po/fr.po:
Update for 0.8.0
2011-06-24; Stephane Fillod
* src/rig-gui-lcd.c:
Fix VFO indicator not being repainted after window minimization
2011-06-21; Nirgal Vourgère
* NEWS:
* src/key-press-handler.c:
Now using left/right arrows rather than up/down for freq change
2011-06-21; Nirgal Vourgère
* src/grig-debug.c:
* src/rig-data.c:
* rig-gui-message-window.c:
* src/rig-selector.c:
Removed a bunch of unused vars
* doc/man/grig.1.in:
Escaped addtionnal '-' in man file
* po/POTFILES.in:
Added extra files containing strings to translate
* src/rig-gui-lcd.[ch]:
Added an extra gigahertz digit in lcd display
2010-03-02; Stephane Fillod
* src/rig-gui-message-window.c:
* src/grig-about.c:
Replace deprecated calls since Gtk 2.14
* src/rig-daemon-check.c:
* src/rig-data.[ch]:
* src/rig-gui-ctrl2.c:
Added antenna control.
* src/rig-gui-lcd.c:
Fix buffer access out-of-bounds, found by cppcheck.
* po/fr.po:
Misc update.
2010-02-05; Alexandru Csete
* src/rig-gui-lcd.c:
Fix crash that occurs when mouse is clicked between MHz and kHz digits.
Reported as Ubuntu bug 517816.
2009-01-21; Alessandro Zummo
* src/rig-gui-vfo.c:
Added memory/vfo button.
2009-01-13; Alessandro Zummo
* src/rig-gui-lcd.c:
Do not clear frequency if user hits return and
the new freq has not been entered.
2009-01-13; Alessandro Zummo
* src/grig-debug.c:
Fixed debug levels
2008-12-15; Stephane Fillod
* src/grig-menubar.[ch]:
* src/rig-gui-func.[ch]:
* src/Makefile.am:
* src/rig-daemon-check.c:
* src/rig-daemon.[ch]:
* src/rig-data.[ch]:
* po/POTFILES.in:
Special Function window.
* src/grig-menubar.c:
* src/rig-gui-ctrl2.c:
* src/rig-gui-message-window.c:
* src/rig-gui-smeter.c:
Allow l10n of menu items.
* configure.ac:
* po/fr.po:
Translation to French.
2008-11-03; Alexandru Csete
* configure.ac:
Updated Gtk+ and Hamlib requirements.
2007-04-14; Alexandru Csete
* src/rig-gui-keypad.[ch]:
* src/rig-gui-lcd.[ch]:
* src/rig-gui.c:
* src/rig-gui-smeter.c:
* src/rig-gui-vfo.c:
* src/Makefile.am:
Keypad support from Alessandro Zummo.
2007-01-02; Alexandru Csete
* src/radio-conf.[ch]:
Added data field for config version.
2007-12-31; Alexandru Csete
* src/rig-selector.[ch]:
Added widget showing a list of selected radios. Some basic functionality
but far from finished.
2007-12-29; Alexandru Csete
* src/compat.[ch]:
Added function to retrieve user config directory.
* src/radio-conf.[ch]:
Added files containing functions for reading and writing .radio files.
2007-11-16; Alexandru Csete
* src/key-press-handler.[ch]:
Added functions to snoop and manage key press events.
* src/main.c:
Use new key press event handler.
* src/rig-gui-lcd.[ch]:
Changed rig_gui_lcd_set_freq_digits and rig_gui_lcd_set_rit_digits
to be public in order to allow direct setting of frequency display
when managing events other than the ones occuring on the LCD area.
2007-11-15; Alexandru Csete
* NEWS, TODO:
Separate NEWS and future improvments.
* src/Makefile.am:
Allow build with Gtk+ 2.12 (GtkTooltips deprecated).
2007-09-15; Alexandru Csete
* doc/um/xml:
Added files that will eventually become a real user manual.
2007-01-17; Alexandru Csete
* Makefile.am:
Include win32 files in source distribution (bug #1630052).
2007-01-07; Alexandru Csete
* src/grig-debug.c:
Use g_get_current_time() instead of gettimeoftheday().
* src/main.c:
Use portable pixmap_file_name() instead of PACKAGE_PIXMAP_DIR, which
only works on Unix (bug #1629905).
Removed other traces of PACKAGE_PIXMAP_DIR too.
* src/rig-gui-lcd.c:
* src/rig-gui-smeter.c:
Removed traces of PACKAGE_PIXMAP_DIR.
* win32:
Added files related to win32 build.
2006-12-16; Alexandru Csete
* src/rig-data.c:
Set 'new' flags to TRUE when receiving new values for mic gain and
compressor (bug #1613622).
* src/rig-daemon.[ch]:
Fixed bug that caused wrong handling of RF gain and IF shift
(bug #1613622). Give RIG_CMD_AF higher priority to avoid jumpy
behaviour (bug #1616926).
* configure.ac, NEWS:
Updated for 0.7.2
2006-07-24; Alexandru Csete
* Makefile.am:
Explicitly create $(DESTDIR)$(pkgdatadir) before trying to install.
This fixes bug #1523367.
* configure.ac:
Updated version number.
2006-07-07; Alexandru Csete
* src/rig-data.[ch]:
Added missing support functions.
* src/rig-gui-tx.c:
Implemented RF power and ALC.
* src/rig-daemon.c:
Implemented missing commands.
* src/grig-about.c:
Updated to use GtkAboutDialog.
* src/compat.c:
Fix pixmaps directory.
2006-07-06; Alexandru Csete
* src/rig-gui-tx.c:
Implemented TX levels with the exception of RFPOWER and ALC.
2006-07-02; Alexandru Csete
* src/rig-daemon-check.c:
Store IF shift range and step in rig-data.
* src/rig-data.[ch]:
Store IF shift range and step.
* src/rig-gui-rx.c:
Finished implementation. Can not test until daemon has support for it.
* src/rig-daemon.c:
Added support for RX level controls. Cycle also includes TX level controls.
2006-07-01; Alexandru Csete
* src/rig-gui-rx.[ch]:
Added files.
* src/rig-gui-tx.[ch]:
Added files.
* src/grig-debug.[ch]:
Added funstion to read the current debug level.
* src/grig-menubar.c:
Use grig_debug_get_level instead of direct reference to debug var in
main.c. Moved UIManager to be global private so that we can access the
individual menu items after creation. Added functions to force the value
of the RX, TX and CW level controls.
2006-06-30; Alexandru Csete
* src/rig-data.[ch]:
Added support for all missing level settings.
* src/rig-daemon-check.c:
Added checks for remaining levels.
* src/rig-daemon.h:
Added new level commands.
* doc/devnotes/commands.txt:
Updated.
2006-06-26; Alexandru Csete
* configure.ac:
Don't use AC_DEFINEs to define locale, data and pixmapsdirs because that
does not work with autoconf 2.59e anymore (was the wrong way to do it
according to GNU Coding Std).
* src/Makefile.am:
Added locale, data and pixmapdir definitions:
-DPACKAGE_DATA_DIR=\""$(datadir)/grig"\" \
-DPACKAGE_PIXMAPS_DIR=\""$(datadir)/pixmaps/grig"\" \
-DPACKAGE_LOCALE_DIR=\""$(datadir)/locale"\"
Pixmaps will thus go to /usr/local/share/pixmaps/grig instead of
/usr/local/share/grig/pixmaps by default.
* pixmaps/Makefile.am:
Redefined pixmapsdir to $(datadir)/pixmaps/grig
2006-03-28; Alexandru Csete
* src/rig-daemon.c:
Sleep between commands only if the last command has been executed.
Added hamlib error message when a command failes to execute.
* src/grig-debug:
Use local debug level in order to be able to filter grig debug messages
(bug #1457361).
* src/grig-menubar.c, src/main.c:
Use grig_debug_set_level instead of rig_set_debug.
2006-03-27; Alexandru Csete
* src/rig-daemon.c:
Generate log message when rig_daemon_set_suspend is called.
* src/rig-state.c:
Finished save/load state of supported parameters.
* NEWS:
Updated with information about saving and restoring rig state.
* src/rig-daemon-check.c:
Fixed bug, which gave the error message "Can not find VFO list for this
rig! Bug in backend?" if the rig did not have any of the rig_set_vfo or
rig_get_vfo functions (bug #1440876).
* src/grig-menubar.c:
Modified menu utems in View menu to toggle items.
2006-03-23; Alexandru Csete
* src/rig-daemon.c:
Nailed even more potential flicker bugs. Added function to obtain hamlib
id of radio.
* src/rig-utils:
Added function to check file name for extension.
* src/rig-state.c:
Done some work on save state. Rig ID is already saved, all I need is to
add the remaining parameters and the save function is done.
2006-03-22; Alexandru Csete
* src/rig-daemon.c:
Fixed bug, which caused the ptt and pstat readings to be overwritten
by the old set values every time the SET command was executed. Added
and extra SET_PTT and GET_PTT command to both the RX and the TX cycle.
Same bug found for SET_FREQx (may fix bug #1388342?).
* src/rig-daemon-check.c:
Check and store maximum RF power level.
* src/rig-data.c, src/rig-data.h:
Added possibility to store maximum RF power level (needed to scale the
power meter).
* src/rig-gui-smeter.c:
Implemented power meter scale. Select best scale automatically.
2006-03-21; Alexandru Csete
* src/rig-state.c:
Finished load and save state callbacks.
2006-03-19; Alexandru Csete
* src/rig-state.c, src/rig-state.h:
Added files.
* src/Makefile.am:
Added new files to list.
* src/grig-menubar.c:
Enable Load and Save State entries.
2006-03-17; Alexandru Csete
* doc/userman/latex:
Added a few files containing a skeleton for a user manual.
2006-03-16; Alexandru Csete
* COPYING:
Updated the address of FSF.
* src/*.c, src/*.h:
Update year and replace FSF address with website.
* doc/man/grig.1.in:
Added minimal info about the debug handler.
2006-03-12; Alexandru Csete
* src/rig-gui-message-window.c:
Implemented clear message list signal. Added message source to
summary. Tested using in near-real-time by piping messages to file
and at the same time monitoring with tail and reading into message
list. Uncertain whether this would work in wintendo.
* src/grig-menubar.c:
Removed unused config function. Disabled menu items that have not been
implemented.
* src/main.c, doc/man/grig.1.in:
Changed --rig-device back to --rig-file. It's best to keep compatibility
with rigctl as much as possible.
2006-03-11; Alexandru Csete
* src/grig-debug:
Include to avoid compiler warning. Changes separator
to ";;". Changed grig_debug_local to use variable argument list in order
to save code throughout grig.
* src/rig-gui-vfo.c:
Modified to use grig debug handler instead of the one from Hamlib.
* src/rig-daemon.c, src/rig-daemon-check.c:
Modfied to use grig debug handler and use i18n for strings.
* src/rig-gui-message-window.c:
Implemented reading debug messages from log files. Still to do is
"Clean" and some visual fixups.
2006-02-27; Alexandru Csete
* src/Makefile.am:
Added new files to list.
* configure.ac:
Require hamlib 1.2.5
* src/grig-debug.c, src/grig-debug.h:
Implemented logging source but there is no code to explicitly save to
log file. The messages are printed to stderr, so the log can be saved
that way.
* src/main.c:
Use new grig-debug infrastructure.
2006-02-24; Alexandru Csete
* src/grig-debug.c, src/grig-debug.h:
Added files containing new debug handler. The new debug handler will
format the debug messages coming from hamlib, print them on stderr and,
if requested, save them to a log file. The log file must be specified
on the command line.
2006-02-23; Alexandru Csete
* src/main.c, doc/man/grig.1.in:
Changed --rig-file to --rig-device. We keep the former for compatibility
reasons but issue a warning message to tell the user about this.
2006-02-21; Alexandru Csete
* src/rig-gui-message-window:
Moved column definition from header to source file. Add debug messages
to the the message list. Works all right but needs a lot of optimisation.
2006-01-16; Alexandru Csete
* src/rig-gui-message-window, src/main.c:
Changed back to original hamlib implementation of debug message
handler. As Stephane pointed out, it was wrong use of the va_list
which caused the misbehaviour.
2005-12-22; Alexandru Csete
* src/rig-daemon.c:
Added RIG_CMD_SET_FREQ_1 and RIG_CMD_GET_FREQ_1 to the default TX
cycle to allow change of frequency while the TX is on. On the FT-817,
however, it seems that I can not control frequency in TX mode. Bug
report opened #1388342.
2005-12-19; Alexandru Csete
* src/menubar.c:
Moved message window to View menu, band map and spectrum to tools menu.
* src/rig-gui-message-window.c:
Changed debug callback not to use va_list but expect a simple char *
- proposition to modify hamlib interface sent to hamlib-developer.
Added code to update message statistics.
2005-11-25; Alexandru Csete
* src/rig-gui-message-window.c:
Added code to create list view. Need some minor mods to allow access
to GtkListStore.
2005-11-23; Alexandru Csete
* src/rig-gui-message-window.c:
Create message window skeleton.
2005-11-22; Alexandru Csete
* src/rig-gui-message_window.c:
Added code to show and hide window.
2005-11-14; Alexandru Csete
* src/grig-menubar.c:
Added RIG_FUNC and software memory menu entries.
Use stock pixmaps where apropriate.
* src/rig-gui.c:
Change lcd box spacing for better layout.
2005-11-11; Alexandru Csete
* src/rig-gui-vfo.c:
Added split button. Rearranged button layout.
* src/rig-data.h, src/rig-data.c:
Added support for SPLIT ON/OFF. Currently passes RIG_VFO_RX and RIG_VFO_TX
as parameters to hamlib.
* src/rig-daemon.c, src/rig-daemon.h:
Added RIG_CMD_SET_SPLIT and RIG_CMD_GET_SPLIT.
* src/rig-daemon-check.c:
Check for set_split_vfo and get_split_vfo.
2005-11-10; Alexandru Csete
* src/rig-gui.c:
Don't include level controls in main window. They will be in separate
windows.
* src/grig-menubar.c:
Added View menu. No actions yet.
* src/rig-data.c, src/rig-data.h,
* src/rig-daemon.c, rc/rig-daemon.h, src/rig-daemon-check.c:
Added support for VFO COPY and EXCHANGE.
2005-11-08; Alexandru Csete
* src/compat.c, src/compat.h:
Added files containing utilities for data directory retrieval.
2005-09-29; Alexandru Csete
* src/rig-gui-lcd.c:
Added readback of VFO.
* src/rig-daemon.h, src/rig-daemon.c:
Added support for RIG_CMD_VFO_TOGGLE, ie. RIG_OP_TOGGLE.
2005-09-28; Alexandru Csete
* src/rig-gui-vfo.c, src/rig-gui-vfo.h:
Added files containing VFO controls.
* src/rig-gui.c:
Use rig-gui-vfo.
* src/rig-data.c, src/rig-data.h:
Added support for RIG_OP_TOGGLE.
* src/Makefile.am:
Added rig-gui-vfo to build list.
2005-09-22; Alexandru Csete
* src/rig-gui-info-data.h:
Added RIG_FUNC_STR and RIG_OP arrays.
* src/rig-gui-info.c:
Added RIG_FUNC and VFO_OP settings.
2005-09-21; Alexandru Csete
* src/rig-gui-buttons,
* src/rig-data,
* src/rig-daemon,
Added support for RIG_FUNC_LOCK.
* src/rig-daemon-check:
Added generic checks for rig_set_func and rig_get_func
availabilities.
2005-09-20; Alexandru Csete
* src/rig-gui-message-window:
Added prototype for debug callback function.
2005-09-06; Alexandru Csete
* src/rig-daemon.c, src/rig-daemon-check.c:
Added additional check in rig_daemon_check_mode to ensure that
the correct frequency range for the current mode is selected and
not just the first one found. Also, get the frequency resolution
for the current mode. Also store the list of all modes in rig-data.
* src/rig-data.c, src/rig-data.h:
Added bitfield of all supported modes including a get_ function.
* src/rig-gui-ctrl2.c:
Only show supported modes in the mode selector combo.
* NEWS:
Updated.
2005-08-25; Alexandru Csete
* src/rig-daemon.c:
Fixed bug which caused grig to show WIDE instead of NORMAL
passband width in those cases where the rig does not have any
particular WIDE passband and the rig_passband_wide function
returns 0, which also happens to be the value of the RIG_PASSBAND_NORMAL
macro.
* src/rig-daemon-check.c:
Power button should now really work as claimed :o)
2005-08-22; Alexandru Csete
* src/rig-daemon.c:
Suspend all but RIG_CMD_SET_PSTAT command while the rig is in
power OFF state.
* doc/man/grig.1.in:
Added a few sentences concerning the new handling of the
power OFF state.
2005-08-21; Alexandru Csete
* src/rig-daemon-check.c:
Fixed very nasty bug in checking the availability of level
set/get functions (bug #1266068).
Improved RIT and XIT checking code.
* src/rig-gui-info.c:
Fixed a bug which caused incorrect handling of empty ATT and
PREAMP arrays. In worse cases the program caused memory
corruption (bug #1266071).
Fixed a bug which caused a crash while reading the tuning
step lists (bug #1266071).
* src/rig-data.c, src/rig-data.h:
Added has_set_rit and has_set_xit.
* src/rig-gui-lcd.c:
Display initial RIT value even if only set_it is available.
* NEWS:
Updated.
2005-08-16; Alexandru Csete
* grig.spec.in:
Fix erroneous pixmap drectories.
2005-08-10; Alexandru Csete
* src/rig-gui-smeter.h:
Adjusted DEF_TVAL and DEF_FALLOFF based on tests using a
FT-817ND. The meter behaves quite the same using both 4800,
9600 and 38400 baud. It would, however, improve the real-time
feeling if the raise time would be different (lower) than the
fall-off time.
2005-07-25; Alexandru Csete
* src/rig-daemon, src/rig-daemon.h, src/main.c:
Disable POWER and PTT buttons by default. Use command line
options to enable them at run-time.
* doc/man/grig.1.in:
Added description of the new command line switches.
2005-06-21; Alexandru Csete
* src/rig-gui-message-window.c, src/rig-gui-message-window.h:
Added files.
* src/grig-menubar.c:
Added menu entry for message window. Also added menu items for
saving and loading the rig state.
* src/Makfile.am:
Added message window files.
2005-06-16; Alexandru Csete
* doc/man/grig.1.in:
Corrected one more error.
* src/rig-daemon.c:
Corrected a spelling error.
* src/grig-about.c:
Experimented with new GtkAboutDialog. Will stick with the
old one for a while.
2005-06-15; Alexandru Csete
* src/rig-daemon.c, src/rig-daemon.h:
Changed shut-down procedure to wait until daemon process
actually finishes. There is, however, still a timeout of
10 seconds, in case something goes wrong. Change command
table to flat arrays. This also allows faster reaction
when PTT is toggled. Added the possibility to suspend
command execution without shutting down the daemon.
* doc/man/grig.1.in:
Corrected wrong command line argument for no-thread option.
* configure.ac:
Increment version number to 0.5.cvs
Require Gtk+ 2.6
* NEWS:
Added some news for 0.5
2005-06-03; Alexandru Csete
* src/rig-daemon.c:
Use g_usleep instead of usleep to make code more portable.
* configure.ac:
Increment micro version and remove check for unistd.h
2005-02-12; Alexandru Csete
* src/rig-daemon.c:
Implemented timeout based daemon process. The timeout
delay is 2*cmd_del*nb_of_cmd.
Only poll selected setting when in TX mode (power, alc
or swr but not all). Modified default TX cycle
accordingly. Decreased command delay factor for TX mode
from 3 to 2.
Added function to acquire the command delay. This allows
the GUI to adjust the callback delays for the widgets.
* src/rig-gui-smeter.c, src/rig-gui-smeter.h:
Added function to acquire the current meter setting
in TX mode. This allows the daemon to decide which
level to poll when the rig is in TX mode.
* src/rig-gui-lcd.c:
Check frequency for lower limit to avoid flicker
(bug #1082319).
* doc/man/grig.1.in:
Updated man page with info about the -n or --nothread
option.
* configure.ac:
Updated version to 0.4.2
* src/*:
Updated year.
* NEWS:
Updated info.
2005-02-11; Alexandru Csete
* src/main.c:
Added --nothread command line option.
* src/rig-daemon.c, src/rig-daemon.h:
Added (empty) branch for the --nothread option.
2005-02-09; Alexandru Csete
* src/rig-daemon.c:
Added error handling when creation of daemon process
is not successful.
2005-02-02; Alexandru Csete
* src/rig-daemon.h, src/rig-daemon.c:
Replaced cycle delay with a default command delay. The
delay in TX mode is three times the delay in RX mode.
Added possibility for user defined delay.
* src/main.c:
Added command line option for command delay.
* doc/man/grig.1.in:
Added section about comamnd delays and buggy power off
state.
* Makefile.am:
Added AUTHORS, NEWS, COPYING, README and ChangeLog to
install data.
* NEWS:
Updated with some 0.4.2 info.
2005-02-01; Alexandru Csete
* configure.ac:
Define PACKAGE_LOCALE_DIR. Increment version number.
2005-01-27; Alexandru Csete
* pixmaps/Makefile.am:
Fixed typo which caused pixmaps not to be included in
datapack.
* configure.ac:
Incremented version number.
2005-01-22; Alexandru Csete
* src/rig-gui-smeter-conv.c, src/rig-gui-smeter-conv.h:
Implemented linear conversion for TX scale. No need for
polynomial fit since TX scale is linear.
* src/rig-gui-smeter.c:
Enabled TX meter. Disable scale selector.
* src/rig-gui-smeter.h:
Increased default fall-off speed and frames per second.
* src/grig-about.c:
Removed empty notebook pages.
* NEWS:
Updated.
* configure.ac:
Changed versionnumber to 0.4
2005-01-21; Alexandru Csete
* src/rig-data.c, src/rig-data.h:
Added get functions for tx power, swr and alc.
* src/rig-gui-smeter.c:
Added code to read meter value for tx power, swr and alc.
* doc/man/grig.1.in:
Updated year.
2005-01-20; Alexandru Csete
* src/rig-data.h:
Removed TX levels that are not available via rig_get_level.
* src/rig-data.c, src/rig-daemon.c, src/rig-daemon.h:
Added support for TX power, SWR and ALC.
* src/rig-daemon.h, src/rig-daemon.c:
Change MAX_CMD_PER_CYCLE from 5 to 6.
* src/rig-data.c, src/rig-data.h:
Added has_get for ALC, SWR and RFPOWER.
* src/rig-gui-smeter-conv.c, src/rig-gui-smeter-conv.h:
Added function to convert floating point number between 0.0 and 1.0 to
s-meter angle. Still need to define conversion parameters.
2005-01-07; Alexandru Csete
* src/rig-data.c:
Fixed a mis-spelling.
* src/rig-gui-smeter.h:
Updated doxygen comments for smeter_scale_t.
2004-12-21; Alexandru Csete
* src/rig-daemon-check.c:
Worked on a fix for bug #1082325, which causes misbehaviour if the rig
is OFF when grig is started. Basically, only the powerstatus is tested
for real, all other setting availabilities are obtained from the rig
caps. If power status is not available from rig, RIG_POWER_ON is stored
in the rig data structure.
* src/rig-daemon.c:
Only get/set power status if rig is in power off state.
* doc/man/grig.1.in:
Removed section saying that RIG must be powered ON.
2004-12-12; Alexandru Csete
* src/rig-daemon.c, src/rig-daemon.h:
Added rigconf parameter to rig_daemon_start.
* src/main.c:
Added check for pixmap files to exit cleanly with an error message if
installation is incomplete (bug #1057427). Changed pixmap paths from
PACKAGE_DATA_DIR to PACKAGE_PIXMAPS_DIR.
* src/grig-about.c:
Changed pixmap paths from PACKAGE_DATA_DIR to PACKAGE_PIXMAPS_DIR.
* src/rig-gui-lcd.c:
Changed pixmap paths from PACKAGE_DATA_DIR to PACKAGE_PIXMAPS_DIR.
* src/rig-gui-smeter.c:
Changed pixmap paths from PACKAGE_DATA_DIR to PACKAGE_PIXMAPS_DIR.
* doc/man/grig.1.in:
Added debug level info and a warning that rig must be turned ON before
starting grig. Also added description of --set-conf command line
option.
2004-12-11; Alexandru Csete
* configure.ac:
Added HAMLIB_VERSION define.
* src/main.c, src/grig-about.c, src/rig-gui-lcd.c:
* src/rig-gui-smeter.c:
Include config.h
* src/main.c:
Added --set-conf command line option (bug #1082329). Has no effect yet.
2004-12-10; Alexandru Csete
* config.guess, config.sub, configure.in:
Removed files.
* configure.ac:
Added file based on gnome-hello template and xlog.
* .cvsignore:
Added file.
* autogen.sh:
Modified according to gnome-hello template. Does not use gnome-autogen
though.
* COPYING:
Added file.
* Makefile.am:
Modified according to gnome-hello template.
* doc/.cvsignore:
Added file.
* doc/man/.cvsignore:
Added file.
* pixmaps/.cvsignore:
Added file.
* po/.cvsignore:
Added file.
* po/Makevars:
Removed file.
* src/.cvsignore:
Added file.
* pixmaps/Makefile.am:
Added file.
* acconfig.h:
Removed file.
* acinclode.m4:
Removed file.
2004-12-06; Alexandru Csete
* src/rig-gui-info.c:
Don't translate strings containing UTF-8 octal codes.
2004-12-05; Alexandru Csete
* configure.in:
Bumped version number.
2004-12-04; Alexandru Csete
* configure.in:
Removed possibility to fall back to the old style hamlib check.
hamlib.pc is required to detect hamlib settings (cf. bug #1078800).
* AUTHORS:
Updated with proper credits.
* NEWS:
Updated.
2004-12-03; Alexandru Csete
* grig.desktop:
Removed file.
2004-12-02; Alexandru Csete
* src/grig-gtk-workarounds.c, src/griggtk-workarounds.h:
Created files. Intended to contain various workaround tricks for Gtk+
bugs and limitations. Currently it contains funtions to allow tooltips
with the GtkComboBox widget.
* src/rig-guit-ctrl2.c, src/rig-gui-buttons.c:
Added tooltips for combo boxes using the new utilities.
Fixes bug #1002573.
* src/Makefile.am:
Added new files to the list.
2004-12-01; Alexandru Csete
* configure.in:
Added configure option to enable coverage report generation by gcov.
2004-11-30; Alexandru Csete
* src/main.c:
Catch SIGTERM, SIGINT and SIGABRT and try to make a clean exit.
* doc/man/grig.1.in:
Fixed a typo.
2004-11-27; Alexandru Csete
* configure.in, grig.1.in:
Moved man page to doc/man/ subdirectory. Added more text to man page.
* doc/man/Makefile.am, doc/Makefile.am:
Created files. Man page now installed correctly (fixes bug #1065828).
* README:
Updated.
* Makefile.am:
Removed explicit handling of man page.
2004-11-23; Alexandru Csete
* src/rig-daemon.c:
Added rig_daemon.get_brand and rig_daemon_get_model functions. Ideally,
these function should have been in rig-data but since the only user at
the moment is main.c which already has visibility on rig-daemon, it was
easiest to implement them here.
Fixed a typo.
* src/main.c:
Use new get_brand and get_model functions. This fixes bug #1069293.
* src/rig-gui-info.c:
Changed packing options for tuning step frame.
* src/rig-gui.c:
Don't include the levels widget since it contains nothing yet.
2004-11-21; Alexandru Csete
* src/rig-gui-info.c:
Finished preamp and att info frame and reorganized main container.
2004-11-19; Alexandru Csete
* src/rig-data.c:
Fixed bug which caused the new secondary frequency to be sent to
the daemon but not registered in the readback buffer until next
read cycle.
* src/rig-gui-info.c:
Added skeleton for front end info frame (attenuator and preamp).
2004-11-15; Alexandru Csete
* configure.in, Makefile.am:
autogen.sh was (again!) behaving stupid again. Removed all output
requests for po and m4.
* src/rig-gui-info-data.h:
Added string representation for mode symbolic references.
* src/rig-gui-info.c:
Added tuing step info frame.
2004-11-14; Alexandru Csete
* src/rig-gui-info.c, src/grig-about.c, src/grig-menubar.c,
* src/main.c, src/rig-data.c, src/rig-gui-buttons.c,
* src/rig-gui-ctrl2.c,
* src/rig-gui-lcd.c, src/rig-gui-levels.c, src/rig-gui-smeter.c:
Replaced support.h with glib/gi18n.h (bug #1042301).
* src/support.h:
Removed file since we use glib/gi18n.h instead.
* Makefile.am:
Removed support.h from list.
2004-11-13; Alexandru Csete
* src/rig-gui-info.c:
Added interface info frame.
2004-11-12; Alexandru Csete
* src/rig-gui-info.c:
Changed level checkboxes to labels. Fixed bug which caused the not all
levels were correctly displayed. Fixed bug which caused the scrolled
window to be non-functional (the new scrolled window api does not use
gtk_container_add but gtk_scrolled_window_add_with_viewport).
2004-11-10; Alexandru Csete - IC177
* src/rig-gui-info.c:
Rewrote create_levels to use a vertical table in a scrolled window.
* src/rig-gui-info-data.h:
Added string representations for port caps family.
2004-11-09; Alexandru Csete
* src/rig-gui-info.c:
Added offset and level info widgets.
* src/rig-gui-info-data.h:
Added file. Contains some constant data definitions.
* src/Makefile.am:
Added new file.
2004-11-05; Alexandru Csete
* src/rig-gui-ctrl2.c:
Removed note regarding the discrepacy between hamlib and grig symbillic
references for AGC settings (they are the same now).
* grig.1.in, grig.spec.in:
Updated.
* src/rig-utils.c:
Fixed bug which caused the last three modes (ECLSB, ECUSB and FAX) to
be discarded as valid modes.
* src/rig-daemon.c:
Fixed bug which caused the pass band to be set to 1Hz each time the
mode was changed. Replaced XIT comamnds with VFO comamnds.
* src/rig-daemon-check.c:
Set smeter value to -54dB if comamnd is not available. Added code to
storeavailableVFOs in rig-data.
* src/rig-data-c, src/rig-data.h:
Added rig_data_set_vfos and rig_data_get_vfos to store the bitfield of
available VFOs.
* src/rig-gui-lcd.c:
Ahow true VFO on LCD.
2004-11-04; Alexandru Csete
* src/rig-gui-buttons.c:
Added preamp selector. Added code to disable controls if read or write
ability not present.
* src/rig-data-c, src/rig-data.h:
Added has_get and has_set for power status and PTT.
* src/rig-daemon.c:
Added RX matrix for debug mode.
2004-11-02; Alexandru Csete
* src/rig-data.c, src/rig-data.h:
Added global private data to store ATT and PREAMP levels. Also added
unctions to set and read these arrays. Also added functions to get
the index of a specific value (useful to the GUI).
* src/rig-daemon-check.c:
Added code to initialise attenuator and preamp arrays.
* src/rig-gui-buttons.c:
Finished ATT selector code.
2004-10-30; Alexandru Csete
* src/rig-gui-info.c:
Added doxygen description.
* src/rig-data.c, src/rig-data.h:
Added attenuator and preamp related fields and functions. Also added
has_get_agc and has_set_agc. Minor rearrangements in the code. Added
a comment about the incompleteness of the package.
* src/rig-daemon.h:
Added RIG_CMD_GET_ATT, RIG_CMD_SET_ATT, RIG_CMD_GET_PREAMP,
RIG_CMD_SET_PREAMP to the list of modes. Include unistd.h to avoid
compiler warning about implicit declaration of usleep.
* src/rig-daemon.c:
Added ATT and PREAMP command handling.
* src/rig-daemon-check.c:
Added checks for ATT and PREAMP under the levels checking function.
* src/rig-gui-buttons.c:
Added RIG_GUI_ATT_SELECTOR and RIG_GUI_PREAMP_SELECTOR to the list of
object IDs.
* src/rig-gui-levels.c, src/rig-gui-levels.h:
Added files. Contain level controls hidden using a GtkExpander widget.
* src/Makefile.am:
Added new files to list.
* src/rig-gui.c:
Include level controls.
2004-10-29; Alexandru Csete - SK568
* src/main.c:
Removed some useless comments from command line option handlig code and
compressed code a little.
* NOTE:
error in doxygen comment in rig.h:rig_caps saying rotator type instead
of rig_type.
2004-10-26; Alexandru Csete
* configure.in:
Added --disable-hardware option to disable any hamlib operations except
rig_init and rig_cleanup (usefull to test rig caps and such).
* src/rig-daemon-check.c:
Added '\n' to the end of error messages.
2004-10-25; Alexandru Csete
* src/rig-gui-lcd.c:
Fixed a bug which caused incorrect RIT jumps especially when the RIT
sign chnges (eg. -0.40 + 1.00 gave 0.60 instead of 0.40). Added utility
function to explicitly convert RIT/XIT values to byte array.
* configure.in:
Added summary of library versions (hamlib, glib, gthread, gdk and gtk).
2004-10-24; Alexandru Csete
* src/rig-gui-lcd.c:
Fixed bug where RIT could jump from -9.99 to 9.99 kHz.
2004-10-23; Alexandru Csete
* src/grig-about.c:
Added missing ';' character (caused compiled error).
* src/main:
Cleaning. Removed unused variables and split lines which were too long.
* src/rig-gui-lcd.c:
Reduced display width by one small digit.
* src/rig-gui-ctrl2.c, src/rig-gui-ctrl2.h:
Added files. Mode, filter and AGC selector moved into this container.
This container is displayed on the right side of the LCD.
* src/rig-gui-buttons.c:
Removed mode, filter and AGC selectors.
* src/Makefile.am:
Added new files to the list.
* src/rig-daemon.c:
The passband width code was buggy it made implicit conversion from
frequency to rig_data_pbw_e. Fixed using rig_passband_xxx hamlib
functions. Changed new flags to be reset to FALSE even if write error
ocurres (maybe I will change that back). get variables are always set
to the value of set after writing new value.
2004-10-21; Alexandru Csete
* src/grig-menubar.c:
Removed about-callback since grig_about_run an be used directly as
menu callback.
* src/grig-about.c:
Added dialog window, logo and some info.
* grig.spec.in:
Added some info.
2004-10-20; Alexandru Csete
* src/grig-menubar.c:
Added debug level menu items.
* src/rig-gui-info.c, src/rig-gui-info.h:
Added files. Contains popup dialog showing rig-caps.
* src/Makefile.am:
Added new files to list.
2004-10-19; Alexandru Csete
* src/grig-menubar.c, src/grig-menubar.h:
Remove rotator and GConf related code. Created menubar using GtkAction
achitecture.
* src/rig-gui.c:
Include menubar in the GUI.
* src/main.c:
Rearranged some code in the creation of the main window so that the
window is ceated before the creation of the menubar.
2004-10-18; Alexandru Csete
* src/main.c:
Added grig_show_help, grig_show_version, grig_list_add and
grig_list_compare. Implemented grig_list_rigs. Command line arguments
are now working (all of them).
2004-10-17; Alexandru Csete - SK1563
* src/main.c:
More work on command line arguments.
2004-10-15; Alexandru Csete - CDG
* src/main.c:
Begun work on command line arguments. Added list of args and while loop
skeleton. Had to stop because departure was only 30 min delayed instead
of the first announced 2h30.
2004-10-11; Alexandru Csete
* src/rig-daemon.c, src/rig-daemon.h:
Changed rig_daemon_start interface to take port, speed and CIV address
as optional parameters.
* src/main.c:
Modified in accordance with the new rig_daemon_start interface.
Removed any rotator related code.
2004-10-10; Alexandru Csete
* src/rig-gui-lcd.c:
Fixed bug which cause grig to crash when user clicked on RIT decimal
separator. Modified code to take new pixmaps with '-' into account.
Also found and fixed a memory leak in rig_gui_lcd_set_rit_digits.
Added function to draw miscellaneous text on the display.
Updated design docs accrdingly.
* pixmaps/digits_normal.png, pixmaps/digits_small.png:
Added '-'sign.
* configure.in:
Changed version number. Added checks for sys/time.h unistd.h getopt.h
2004-10-09; Alexandru Csete
* src/rig-data.c, src/rig-data.h:
Added has_set_freq and macros to wrap set_freq.
Added min/maxfields and functions for RIT and XIT.
* src/rig-gui-lcd.c:
Finished tuning code for both frequency and RIT/XIT. Only RIT is
suported at the moment. Also added RIT/XIT mode selection field to
the main ata structure.
* src/rig-daemon-check.c:
Store RIT and XIT ranges when check for functionalities.
2004-10-08; Alexandru Csete
* src/rig-gui-lcd.c:
Added more event handlig code to catch mouse events on the LCD
display. Expose event call has been merged into this code.
2004-10-07; Alexandru Csete
* src/rig-gui-lcd.c:
Added code to display small digits and removed first dot between
MHz and kHz (too confusing). Aded RIT/XIT display. Added bug text
that it does not work with frequencies above 1 GHz.
* src/rig-data.c, src/rig-data.h:
Added rig_data_has_get_rit() and rig_data_has_get_xit().
2004-10-06; Alexandru Csete
* configure.in, Makefile.am:
Even more build environment fixes :(
* src/rig-data.c, src/rig-data.h:
Added rig_data_has_get_freq1 and rig_data_has_get_freq2.
* src/rig-gui-lcd.c, src/rig-gui-lcd.h:
Begun to add and update digits. Frequency readback tested with RPC.
Small digits and RIT/XIT still to be done. Adjusted fields in lcd
structure accordingly.
2004-10-05; Alexandru Csete
* NEWS:
Readded file currently containing primary objectives for this
development baseline.
* src/rig-gui-lcd.c:
First draft of calculating digit positions. Can be optimized or made
nicer.
2004-10-04; Alexandru Csete
* src/main.c, src/rig-gui-lcd.c, src/rig-gui-smeter.c:
Replaced "/" with G_DIR_SEPARATOR_S.
* src/rig-gui-lcd.c:
Added rig_gui_lcd_calc_dim which will calculate frequently used sizes
and positions.
2004-10-03; Alexandru Csete
* src/rig-data.h:
Added fields to store frequency limits and tuning step for the current
mode. The fields are fmin, fmax and fstep.
* src/rig-data.c:
Added rig_data_get_fmax, rig_data_get_fmin and rig_data_get_fstep.
* src/rig-daemon.c, src/rig-daemon-check.c:
Added code to update frequency limits and tuning step at initialization
and each time the mode is acquired.
2004-10-02; Alexandru Csete
* src/rig-gui-smeter.c, src/rig-gui-smeter.h:
Finished implementation of s-meter using GtkDrawingArea. Added code to
test s-meter with random numbers. Adjusted the default constants and
updated design docs.
2004-10-02; Alexandru Csete
* src/rig-gui-meter.c, src/rig-gui-smeter.h, src/rig-gui-smeter-conv.c,
* src/rig-gui-lcd.c, src/rig-gui-lcd.h, src/rig-gui-buttons.c,
Removed GNOME and GConf dependencies so that files can be compiled
with Gtk+ only. Replaced code which is deprecated in Gtk+ 2.4
* src/grig-menu.c:
Changed file name to grig-menubar.c, added corresponding header file
and removed GNOME dependencies.
* src/Makeile.am:
Updated list with new files.
* configure.in:
Added check for gthread-2.0 >= 2.4.0; explicitly required to use
gthread.
* src/Makevars:
Added file.
* src/main.c:
Added window icon. Changed title style.
2004-10-01; Alexandru Csete
* src/grig-duid.[ch]:
Deleted files.
* src/Makefile.am:
Removed grig-druid from list.
* src/support.h:
Added file containing gettext macros.
* src/main.c, src/grig-about.c, src/rig-anomaly.c,
* src/rig-daemon.c, src/rig-daemon-check.c, src/rig-data.c:
* src/rig-gui.c
Removed GNOME and GConf dependencies so that files can be compiled
with Gtk+ only. Replaced code which is deprecated in Gtk+ 2.4
2004-09-30; Alexandru Csete
* src/main.c:
Removed GNOME dependencies.
* autogen.sh, Makefile.am, cofigure.in:
Updated for Gtk+ only.
* src/Makefile.am:
Updated for Gtk+ only.
* ChangeLog:
Updated.
* aclocal.m4, config.h.in:
Deleted files.
* grig.1.in, grig.desktop, grig.spec.in, acinclude.m4, config.guess,
* config.sub:
Added files.
2004-09-29; Alexandru Csete
* pixmaps/digits_normal.png, digits_small.png:
Added files.
2004-09-26; Alexandru Csete - SK1563
* src/rig-data.c:
rig_data_set functions will temporarely set the 'get' data to
the 'set' value to avoid gui flip-back when daemon is to slow to
update the 'get' variable.
* src/rig-gui-smeter.c:
Added bug comment about object limitations. Corrected description
of rig_gui_meter_create.
* src/rig-gui-lcd.[ch]:
Created files containing LCD widgets.
* src/Makefile.am:
Added the two new iles to the list.
2004-09-22; Alexandru Csete
* src/rig-gui-smeter.c:
Added callback functions to mode and range selector widgets.
The s-meter callback now checks whether we are in RX or TX mode.
* src/rig-gui-smeter.h:
Adjusted fall-off delays.
2004-09-21; Alexandru Csete
* src/rig-gui-smeter.h:
Renamed rig_gui_smeter_t to smeter_t. Added enumerations
smeter_scale_t and smeter_tx_mode_t for selecting s-meter
configuration.
* src/rig-gui-smeter.c:
Renamed rig_gui_smeter_t to smeter_t. Added combo boxes for scale
and mode selection.
2004-09-20; Alexandru Csete
* src/rig-data.[ch]:
Added rig_data_get_strength function. Added almost all
rig_data_has_get_xxx functions (at least prototype templates).
* src/rig-daemon.c: Changed powerstat sequence to set-and-get
instead of get-and-set which could cause override of GUI command.
2004-09-18; Alexandru Csete
* src/rig-gui-smeter-conv.[ch]:
Added files. Contain utility functions to convert dB to needle angle
and then needle angle to (x,y) coordinates. The conversion is done in
two passes with the needle angle as intermediate result, so that it
can be adjusted for mechanical delays.
* src/rig-gui-smeter.c:
Removed conversion macros in favor of new conversion utility functions
in the aboe mentioned file.
* src/Makefile.am:
Added new files to list.
2004-09-13; Alexandru Csete
* src/rig-gui-smeter.c:
Added constants an macros to convert from dB to
degrees correspondingto the inclination of the needle. The S-meter will
be a so-called perfect S-meter with 6dB per S-unit and S9 = 0dB.
2004-08-03; Alexandru Csete
* src/rig-utils.c:
mode_to_index algorithm was buggy. Fixed.
* src/rig-gui-smeter.c, src/rig-gui-smeter.h:
Added files containing S-meter skeleton (no functionality yet).
* src/rig-gui.c:
Include S-meter widget. Changed packing mode from default to
FALSE/FALSE.
* src/Makefile.am:
Added new files to list. Resolved patch for bug 996435 (bug closed).
2004-08-02; Alexandru Csete
* src/rig-gui-buttons.c:
Finished readback handlers. Also, connected signal
handler for the filter selector (looks like I forgot to add it before).
This component should be quite finished now, except some outstanding
issues with no tooltips for the combo boxes.
* src/rig-gui-buttons.h:
Moved the default timeout value def to this file.
Also defined min and max values for the timer delay.
* src/grig-about.c:
Added logo pixmap.
2004-08-01; Alexandru Csete
* src/rig-daemon-check.c, src/rig-daemon-check.h:
Added function to check AGC.
This is part of the rig_daemon_check_level() function.
* src/rig-daemon.c, src/rig-daemon.h:
Added code handling AGC commands.
* mkinstalldirs:
Added file because it is not copied into grig automatically.
* Makefile.am:
Added mkinstalldirs to dist files.
* src/rig-gui-buttons.c:
Added readback timeout.
2004-07-31; Alexandru Csete
* src/main.c:
Added more info on -r and -a options.
* src/grig-menu.c:
Changed debug parameters to use hamlib symbols instead of
hardcoded numbers.
* src/rig-utils.c, src/rig-utils.h:
Created files. Contains conversion functions between hamlib
mode and array index type.
* src/Makefile.am:
Added new files to the list.
* src/rig-gui-buttons.c:
Added mode and filter selectors. Fixed up layout.
* src/rig-data.h, src/rig-data.c:
Added internal representation for passband width. Changed GET
and SET function prototypes accordingly.
2004-07-28; Alexandru Csete
* configure.in: Require Gtk+ >= 2.4
2004-07-24; Alexandru Csete
* src/rig-gui.c, src/rig-gui.h:
Added files.
* src/rig-gui-buttons.c, src/rig-gui-buttons.h:
Added files.
* src/main.c:
Added call to rig_gui_create.
* src/rig-daemon.c:
Added code to manually update 'get' data if rig doesn't support
any get functions.
* src/rig-data.c, src/rig-data.h:
Added AGC.
2004-07-23; Alexandru Csete
* src/main.c, src/rig-daemon.c:
Added patch for bug #996426.
2004-07-18; Alexandru Csete
* src/grig-druid.c:
Added basic functionality with start and end pages.
2004-07-17; Alexandru Csete
* src/grig-about.c, src/grig-about.h:
Added files.
2004-07-14; Alexandru Csete
* src/main.c:
Implemented missing functions and added main application
window.
* src/grig-menu.c:
Added file with menu declarations.
* src/rig-ctrl.c, src/rig-ctrl.h:
Created files.
2004-07-01; Alexandru Csete
* src/rig-daemon.c, src/rig-daemon.h:
Finished first draft of rig daemon.
grig-0.8.1/install-sh 0000755 0001750 0001750 00000034523 12635233734 011414 0000000 0000000 #!/bin/sh
# install - install a program, script, or datafile
scriptversion=2013-12-25.23; # UTC
# This originates from X11R5 (mit/util/scripts/install.sh), which was
# later released in X11R6 (xc/config/util/install.sh) with the
# following copyright and license.
#
# Copyright (C) 1994 X Consortium
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# Except as contained in this notice, the name of the X Consortium shall not
# be used in advertising or otherwise to promote the sale, use or other deal-
# ings in this Software without prior written authorization from the X Consor-
# tium.
#
#
# FSF changes to this file are in the public domain.
#
# Calling this script install-sh is preferred over install.sh, to prevent
# 'make' implicit rules from creating a file called install from it
# when there is no Makefile.
#
# This script is compatible with the BSD install script, but was written
# from scratch.
tab=' '
nl='
'
IFS=" $tab$nl"
# Set DOITPROG to "echo" to test this script.
doit=${DOITPROG-}
doit_exec=${doit:-exec}
# Put in absolute file names if you don't have them in your path;
# or use environment vars.
chgrpprog=${CHGRPPROG-chgrp}
chmodprog=${CHMODPROG-chmod}
chownprog=${CHOWNPROG-chown}
cmpprog=${CMPPROG-cmp}
cpprog=${CPPROG-cp}
mkdirprog=${MKDIRPROG-mkdir}
mvprog=${MVPROG-mv}
rmprog=${RMPROG-rm}
stripprog=${STRIPPROG-strip}
posix_mkdir=
# Desired mode of installed file.
mode=0755
chgrpcmd=
chmodcmd=$chmodprog
chowncmd=
mvcmd=$mvprog
rmcmd="$rmprog -f"
stripcmd=
src=
dst=
dir_arg=
dst_arg=
copy_on_change=false
is_target_a_directory=possibly
usage="\
Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
or: $0 [OPTION]... SRCFILES... DIRECTORY
or: $0 [OPTION]... -t DIRECTORY SRCFILES...
or: $0 [OPTION]... -d DIRECTORIES...
In the 1st form, copy SRCFILE to DSTFILE.
In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
In the 4th, create DIRECTORIES.
Options:
--help display this help and exit.
--version display version info and exit.
-c (ignored)
-C install only if different (preserve the last data modification time)
-d create directories instead of installing files.
-g GROUP $chgrpprog installed files to GROUP.
-m MODE $chmodprog installed files to MODE.
-o USER $chownprog installed files to USER.
-s $stripprog installed files.
-t DIRECTORY install into DIRECTORY.
-T report an error if DSTFILE is a directory.
Environment variables override the default commands:
CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
RMPROG STRIPPROG
"
while test $# -ne 0; do
case $1 in
-c) ;;
-C) copy_on_change=true;;
-d) dir_arg=true;;
-g) chgrpcmd="$chgrpprog $2"
shift;;
--help) echo "$usage"; exit $?;;
-m) mode=$2
case $mode in
*' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*)
echo "$0: invalid mode: $mode" >&2
exit 1;;
esac
shift;;
-o) chowncmd="$chownprog $2"
shift;;
-s) stripcmd=$stripprog;;
-t)
is_target_a_directory=always
dst_arg=$2
# Protect names problematic for 'test' and other utilities.
case $dst_arg in
-* | [=\(\)!]) dst_arg=./$dst_arg;;
esac
shift;;
-T) is_target_a_directory=never;;
--version) echo "$0 $scriptversion"; exit $?;;
--) shift
break;;
-*) echo "$0: invalid option: $1" >&2
exit 1;;
*) break;;
esac
shift
done
# We allow the use of options -d and -T together, by making -d
# take the precedence; this is for compatibility with GNU install.
if test -n "$dir_arg"; then
if test -n "$dst_arg"; then
echo "$0: target directory not allowed when installing a directory." >&2
exit 1
fi
fi
if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
# When -d is used, all remaining arguments are directories to create.
# When -t is used, the destination is already specified.
# Otherwise, the last argument is the destination. Remove it from $@.
for arg
do
if test -n "$dst_arg"; then
# $@ is not empty: it contains at least $arg.
set fnord "$@" "$dst_arg"
shift # fnord
fi
shift # arg
dst_arg=$arg
# Protect names problematic for 'test' and other utilities.
case $dst_arg in
-* | [=\(\)!]) dst_arg=./$dst_arg;;
esac
done
fi
if test $# -eq 0; then
if test -z "$dir_arg"; then
echo "$0: no input file specified." >&2
exit 1
fi
# It's OK to call 'install-sh -d' without argument.
# This can happen when creating conditional directories.
exit 0
fi
if test -z "$dir_arg"; then
if test $# -gt 1 || test "$is_target_a_directory" = always; then
if test ! -d "$dst_arg"; then
echo "$0: $dst_arg: Is not a directory." >&2
exit 1
fi
fi
fi
if test -z "$dir_arg"; then
do_exit='(exit $ret); exit $ret'
trap "ret=129; $do_exit" 1
trap "ret=130; $do_exit" 2
trap "ret=141; $do_exit" 13
trap "ret=143; $do_exit" 15
# Set umask so as not to create temps with too-generous modes.
# However, 'strip' requires both read and write access to temps.
case $mode in
# Optimize common cases.
*644) cp_umask=133;;
*755) cp_umask=22;;
*[0-7])
if test -z "$stripcmd"; then
u_plus_rw=
else
u_plus_rw='% 200'
fi
cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
*)
if test -z "$stripcmd"; then
u_plus_rw=
else
u_plus_rw=,u+rw
fi
cp_umask=$mode$u_plus_rw;;
esac
fi
for src
do
# Protect names problematic for 'test' and other utilities.
case $src in
-* | [=\(\)!]) src=./$src;;
esac
if test -n "$dir_arg"; then
dst=$src
dstdir=$dst
test -d "$dstdir"
dstdir_status=$?
else
# Waiting for this to be detected by the "$cpprog $src $dsttmp" command
# might cause directories to be created, which would be especially bad
# if $src (and thus $dsttmp) contains '*'.
if test ! -f "$src" && test ! -d "$src"; then
echo "$0: $src does not exist." >&2
exit 1
fi
if test -z "$dst_arg"; then
echo "$0: no destination specified." >&2
exit 1
fi
dst=$dst_arg
# If destination is a directory, append the input filename; won't work
# if double slashes aren't ignored.
if test -d "$dst"; then
if test "$is_target_a_directory" = never; then
echo "$0: $dst_arg: Is a directory" >&2
exit 1
fi
dstdir=$dst
dst=$dstdir/`basename "$src"`
dstdir_status=0
else
dstdir=`dirname "$dst"`
test -d "$dstdir"
dstdir_status=$?
fi
fi
obsolete_mkdir_used=false
if test $dstdir_status != 0; then
case $posix_mkdir in
'')
# Create intermediate dirs using mode 755 as modified by the umask.
# This is like FreeBSD 'install' as of 1997-10-28.
umask=`umask`
case $stripcmd.$umask in
# Optimize common cases.
*[2367][2367]) mkdir_umask=$umask;;
.*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
*[0-7])
mkdir_umask=`expr $umask + 22 \
- $umask % 100 % 40 + $umask % 20 \
- $umask % 10 % 4 + $umask % 2
`;;
*) mkdir_umask=$umask,go-w;;
esac
# With -d, create the new directory with the user-specified mode.
# Otherwise, rely on $mkdir_umask.
if test -n "$dir_arg"; then
mkdir_mode=-m$mode
else
mkdir_mode=
fi
posix_mkdir=false
case $umask in
*[123567][0-7][0-7])
# POSIX mkdir -p sets u+wx bits regardless of umask, which
# is incompatible with FreeBSD 'install' when (umask & 300) != 0.
;;
*)
tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
if (umask $mkdir_umask &&
exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
then
if test -z "$dir_arg" || {
# Check for POSIX incompatibilities with -m.
# HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
# other-writable bit of parent directory when it shouldn't.
# FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
ls_ld_tmpdir=`ls -ld "$tmpdir"`
case $ls_ld_tmpdir in
d????-?r-*) different_mode=700;;
d????-?--*) different_mode=755;;
*) false;;
esac &&
$mkdirprog -m$different_mode -p -- "$tmpdir" && {
ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
}
}
then posix_mkdir=:
fi
rmdir "$tmpdir/d" "$tmpdir"
else
# Remove any dirs left behind by ancient mkdir implementations.
rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
fi
trap '' 0;;
esac;;
esac
if
$posix_mkdir && (
umask $mkdir_umask &&
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
)
then :
else
# The umask is ridiculous, or mkdir does not conform to POSIX,
# or it failed possibly due to a race condition. Create the
# directory the slow way, step by step, checking for races as we go.
case $dstdir in
/*) prefix='/';;
[-=\(\)!]*) prefix='./';;
*) prefix='';;
esac
oIFS=$IFS
IFS=/
set -f
set fnord $dstdir
shift
set +f
IFS=$oIFS
prefixes=
for d
do
test X"$d" = X && continue
prefix=$prefix$d
if test -d "$prefix"; then
prefixes=
else
if $posix_mkdir; then
(umask=$mkdir_umask &&
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
# Don't fail if two instances are running concurrently.
test -d "$prefix" || exit 1
else
case $prefix in
*\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
*) qprefix=$prefix;;
esac
prefixes="$prefixes '$qprefix'"
fi
fi
prefix=$prefix/
done
if test -n "$prefixes"; then
# Don't fail if two instances are running concurrently.
(umask $mkdir_umask &&
eval "\$doit_exec \$mkdirprog $prefixes") ||
test -d "$dstdir" || exit 1
obsolete_mkdir_used=true
fi
fi
fi
if test -n "$dir_arg"; then
{ test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
{ test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
else
# Make a couple of temp file names in the proper directory.
dsttmp=$dstdir/_inst.$$_
rmtmp=$dstdir/_rm.$$_
# Trap to clean up those temp files at exit.
trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
# Copy the file name to the temp name.
(umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
# and set any options; do chmod last to preserve setuid bits.
#
# If any of these fail, we abort the whole thing. If we want to
# ignore errors from any of these, just make sure not to ignore
# errors from the above "$doit $cpprog $src $dsttmp" command.
#
{ test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
{ test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
{ test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
# If -C, don't bother to copy if it wouldn't change the file.
if $copy_on_change &&
old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
set -f &&
set X $old && old=:$2:$4:$5:$6 &&
set X $new && new=:$2:$4:$5:$6 &&
set +f &&
test "$old" = "$new" &&
$cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
then
rm -f "$dsttmp"
else
# Rename the file to the real destination.
$doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
# The rename failed, perhaps because mv can't rename something else
# to itself, or perhaps because mv is so ancient that it does not
# support -f.
{
# Now remove or move aside any old file at destination location.
# We try this two ways since rm can't unlink itself on some
# systems and the destination file might be busy for other
# reasons. In this case, the final cleanup might fail but the new
# file should still install successfully.
{
test ! -f "$dst" ||
$doit $rmcmd -f "$dst" 2>/dev/null ||
{ $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
{ $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
} ||
{ echo "$0: cannot unlink or rename $dst" >&2
(exit 1); exit 1
}
} &&
# Now rename the file to the real destination.
$doit $mvcmd "$dsttmp" "$dst"
}
fi || exit 1
trap '' 0
fi
done
# Local variables:
# eval: (add-hook 'write-file-hooks 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-time-zone: "UTC"
# time-stamp-end: "; # UTC"
# End:
grig-0.8.1/po/ 0000775 0001750 0001750 00000000000 12635615157 010104 5 0000000 0000000 grig-0.8.1/po/POTFILES.in 0000644 0001750 0001750 00000001170 11602052464 011563 0000000 0000000 # List of source files containing translatable strings.
src/compat.c
src/grig-about.c
src/grig-config.c
src/grig-debug.c
src/grig-gtk-workarounds.c
src/grig-menubar.c
src/key-press-handler.c
src/main.c
src/rig-anomaly.c
src/rig-daemon.c
src/rig-daemon-check.c
src/rig-data.c
src/rig-gui-buttons.c
src/rig-gui.c
src/rig-gui-ctrl2.c
src/rig-gui-func.c
src/rig-gui-info.c
src/rig-gui-info-data.h
src/rig-gui-keypad.c
src/rig-gui-lcd.c
src/rig-gui-levels.c
src/rig-gui-message-window.c
src/rig-gui-rx.c
src/rig-gui-smeter.c
src/rig-gui-smeter-conv.c
src/rig-gui-tx.c
src/rig-gui-vfo.c
src/rig-selector.c
src/rig-state.c
src/rig-utils.c
grig-0.8.1/po/en@quot.header 0000664 0001750 0001750 00000002263 11707107033 012600 0000000 0000000 # All this catalog "translates" are quotation characters.
# The msgids must be ASCII and therefore cannot contain real quotation
# characters, only substitutes like grave accent (0x60), apostrophe (0x27)
# and double quote (0x22). These substitutes look strange; see
# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
#
# This catalog translates grave accent (0x60) and apostrophe (0x27) to
# left single quotation mark (U+2018) and right single quotation mark (U+2019).
# It also translates pairs of apostrophe (0x27) to
# left single quotation mark (U+2018) and right single quotation mark (U+2019)
# and pairs of quotation mark (0x22) to
# left double quotation mark (U+201C) and right double quotation mark (U+201D).
#
# When output to an UTF-8 terminal, the quotation characters appear perfectly.
# When output to an ISO-8859-1 terminal, the single quotation marks are
# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to
# grave/acute accent (by libiconv), and the double quotation marks are
# transliterated to 0x22.
# When output to an ASCII terminal, the single quotation marks are
# transliterated to apostrophes, and the double quotation marks are
# transliterated to 0x22.
#
grig-0.8.1/po/boldquot.sed 0000664 0001750 0001750 00000000331 11707107033 012333 0000000 0000000 s/"\([^"]*\)"/“\1”/g
s/`\([^`']*\)'/‘\1’/g
s/ '\([^`']*\)' / ‘\1’ /g
s/ '\([^`']*\)'$/ ‘\1’/g
s/^'\([^`']*\)' /‘\1’ /g
s/“”/""/g
s/“/“[1m/g
s/”/[0m”/g
s/‘/‘[1m/g
s/’/[0m’/g
grig-0.8.1/po/Rules-quot 0000664 0001750 0001750 00000003400 11707107033 012010 0000000 0000000 # Special Makefile rules for English message catalogs with quotation marks.
DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot
.SUFFIXES: .insert-header .po-update-en
en@quot.po-create:
$(MAKE) en@quot.po-update
en@boldquot.po-create:
$(MAKE) en@boldquot.po-update
en@quot.po-update: en@quot.po-update-en
en@boldquot.po-update: en@boldquot.po-update-en
.insert-header.po-update-en:
@lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \
if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \
tmpdir=`pwd`; \
echo "$$lang:"; \
ll=`echo $$lang | sed -e 's/@.*//'`; \
LC_ALL=C; export LC_ALL; \
cd $(srcdir); \
if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$lang -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \
if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
rm -f $$tmpdir/$$lang.new.po; \
else \
if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
:; \
else \
echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
exit 1; \
fi; \
fi; \
else \
echo "creation of $$lang.po failed!" 1>&2; \
rm -f $$tmpdir/$$lang.new.po; \
fi
en@quot.insert-header: insert-header.sin
sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
en@boldquot.insert-header: insert-header.sin
sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header
mostlyclean: mostlyclean-quot
mostlyclean-quot:
rm -f *.insert-header
grig-0.8.1/po/ChangeLog 0000644 0001750 0001750 00000000141 10453565630 011564 0000000 0000000 2006-07-07; Alexandru Csete
* grig.pot: Updated for grig 0.7.0
grig-0.8.1/po/fr.po 0000664 0001750 0001750 00000153075 12635615157 011006 0000000 0000000 # translation of fr.po to French
# Copyright (C) 2001-2008 Alexandru Csete
# This file is distributed under the same license as the grig package.
#
# Stéphane Fillod , 2008-2010.
msgid ""
msgstr ""
"Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: groundstation-developer@lists.sourcforge.net\n"
"POT-Creation-Date: 2015-12-20 22:15+0100\n"
"PO-Revision-Date: 2015-03-29 11:47+0000\n"
"Last-Translator: Jean-Marc \n"
"Language-Team: French \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Launchpad-Export-Date: 2015-12-19 15:44+0000\n"
"X-Generator: Launchpad (build 17865)\n"
#: src/grig-about.c:58
msgid ""
"Copyright (C) 2001-2009 Alexandru Csete OZ9AEC>\n"
"\n"
"Grig is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published\n"
"by the Free Software Foundation; either version 2 of the License,\n"
"or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Library General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, you can find a copy on the FSF\n"
"website http://www.fsf.org/ or you can write to the\n"
"\n"
"Free Software Foundation, Inc.\n"
"51 Franklin Street - Fifth Floor\n"
"Boston\n"
"MA 02110-1301\n"
"USA.\n"
msgstr ""
#: src/grig-about.c:91 src/rig-gui-message-window.c:687
msgid "Grig"
msgstr "Grig"
#: src/grig-about.c:94
msgid "Copyright (C) 2001-2007 Alexandru Csete OZ9AEC"
msgstr "Copyright (C) 2001-2007 Alexandru Csete OZ9AEC"
#: src/grig-about.c:98
msgid "Grig Website"
msgstr "Site web de Grig"
#: src/grig-about.c:108
msgid "translator-credits"
msgstr ""
"Launchpad Contributions:\n"
" Eliovir https://launchpad.net/~eliovir\n"
" Jean-Marc https://launchpad.net/~m-balthazar\n"
" Jean-Michel Vourgère https://launchpad.net/~jmb-deb\n"
" Stéphane Fillod https://launchpad.net/~fillods"
#: src/grig-config.c:68
msgid "Checking GRIG configuration."
msgstr "Vérification de la configuration de GRIG"
#: src/grig-config.c:106
#, c-format
msgid "..Configuration directory: %s"
msgstr "..Répertoire de configuration : %s"
#: src/grig-config.c:107 src/rig-gui-message-window.c:80
msgid "ERROR"
msgstr "ERREUR"
#: src/grig-config.c:107
msgid "OK"
msgstr "OK"
#: src/grig-config.c:147
msgid "..Radio config files:"
msgstr "..Fichiers de configuration radio :"
#: src/grig-config.c:155
#, c-format
msgid "%s: %s"
msgstr "%s : %s"
#: src/grig-config.c:172
#, c-format
msgid "....%s OK"
msgstr "....%s OK"
#: src/grig-debug.c:60 src/rig-gui-message-window.c:78
msgid "NONE"
msgstr "AUCUN"
#: src/grig-debug.c:60
msgid "HAMLIB"
msgstr "HAMLIB"
#: src/grig-debug.c:60 src/rig-gui-message-window.c:485
msgid "GRIG"
msgstr "GRIG"
#: src/grig-debug.c:89
#, c-format
msgid "%s: Debug handler initialised."
msgstr "%s : gestionnaire de débogage initialisé."
#: src/grig-debug.c:106
#, c-format
msgid "%s: Shutting down debug handler."
msgstr "%s : fermeture du gestionnaire de débogage."
#: src/grig-menubar.c:59
msgid "_Radio"
msgstr "_Radio"
#: src/grig-menubar.c:60
msgid "_Settings"
msgstr "_Paramètres"
#: src/grig-menubar.c:61
msgid "_View"
msgstr "_Vue"
#: src/grig-menubar.c:62
msgid "_Tools"
msgstr "_Outils"
#: src/grig-menubar.c:63
msgid "_Help"
msgstr "_Aide"
#: src/grig-menubar.c:66
msgid "_Info"
msgstr "_Informations"
#: src/grig-menubar.c:66
msgid "Show info about radio"
msgstr "Afficher les informations à propos de la radio"
#: src/grig-menubar.c:67
msgid "St_op daemon"
msgstr "A_rrêter le démon"
#: src/grig-menubar.c:67
msgid "Stop the Grig daemon"
msgstr "Arrêter le démon Grig"
#: src/grig-menubar.c:68
msgid "St_art daemon"
msgstr "_Démarrer le démon"
#: src/grig-menubar.c:68
msgid "Start the Grig daemon"
msgstr "Démarrer le démon Grig"
#: src/grig-menubar.c:69
msgid "_Save State"
msgstr "Enregi_strer l'état"
#: src/grig-menubar.c:69
msgid "Save the state of the rig to a file"
msgstr "Enregistrer l'état de la radio dans un fichier"
#: src/grig-menubar.c:70
msgid "_Load State"
msgstr "_Charger l'état"
#: src/grig-menubar.c:70
msgid "Load the state of the rig from a file"
msgstr "Charger l'état de la radio depuis un fichier"
#: src/grig-menubar.c:71
msgid "E_xit"
msgstr "_Quitter"
#: src/grig-menubar.c:71
msgid "Exit the program"
msgstr "Quitter le programme"
#: src/grig-menubar.c:74
msgid "_Debug Level"
msgstr "Niveau de _Débogage"
#: src/grig-menubar.c:74
msgid "Set Hamlib debug level"
msgstr "Définir le niveau de débogage de Hamlib"
#: src/grig-menubar.c:77
msgid "Message _Window"
msgstr "_Fenêtre de message"
#: src/grig-menubar.c:77
msgid "Show window with debug messages"
msgstr "Afficher la fenêtre des messages de débogage"
#: src/grig-menubar.c:80
msgid "_SW Memory"
msgstr "Mémoire _SW"
#: src/grig-menubar.c:80
msgid "Software Memory Mamager"
msgstr "Gestionnaire de mémoire logicielle"
#: src/grig-menubar.c:81
msgid "_Band Map"
msgstr ""
#: src/grig-menubar.c:81
msgid "Show the band map"
msgstr ""
#: src/grig-menubar.c:82
msgid "S_pectrum Scope"
msgstr ""
#: src/grig-menubar.c:82
msgid "Show the spectrum scope"
msgstr ""
#: src/grig-menubar.c:85
msgid "_About Grig"
msgstr "_À propos de Grig"
#: src/grig-menubar.c:85
msgid "Show about dialog"
msgstr "Afficher la boite de dialogue « À propos »"
#: src/grig-menubar.c:91
msgid "_No Debug"
msgstr "_Aucun débogage"
#: src/grig-menubar.c:91
msgid "Don't show any debug mesages"
msgstr "Ne pas afficher les messages de débogage"
#: src/grig-menubar.c:92
msgid "_Bug"
msgstr "_Bogue"
#: src/grig-menubar.c:92
msgid "Show error messages caused by possible bugs"
msgstr "Afficher les messages d'erreur causés par de possible bogues"
#: src/grig-menubar.c:93
msgid "_Error"
msgstr "_Erreur"
#: src/grig-menubar.c:93
msgid "Show run-time error messages"
msgstr "Afficher les messages d'erreur d'exécution"
#: src/grig-menubar.c:94
msgid "_Warning"
msgstr "_Avertissement"
#: src/grig-menubar.c:94
msgid "Show warnings"
msgstr "Afficher les avertissements"
#: src/grig-menubar.c:95
msgid "_Verbose"
msgstr "Ba_vard"
#: src/grig-menubar.c:95
msgid "Verbose reporting"
msgstr ""
#: src/grig-menubar.c:96
msgid "_Trace"
msgstr "_Trace"
#: src/grig-menubar.c:96
msgid "Trace everything"
msgstr ""
#: src/grig-menubar.c:102
msgid "_RX Level Controls"
msgstr "Commandes de niveaux _RX"
#: src/grig-menubar.c:102
msgid "Show receiver level controls"
msgstr "Afficher les commandes de niveaux de réception"
#: src/grig-menubar.c:103
msgid "_TX Level Controls"
msgstr "Commandes de niveaux _TX"
#: src/grig-menubar.c:103
msgid "Show transmitter level controls"
msgstr "Afficher les commandes de niveaux d'émission"
#: src/grig-menubar.c:104
msgid "_DCS/CTCSS"
msgstr "_DCS/CTCSS"
#: src/grig-menubar.c:104
msgid "Show DCS and CTCSS controls"
msgstr "Afficher les commandes DCS et CTCSS"
#: src/grig-menubar.c:105
msgid "_Special Functions"
msgstr "Fonctions _spéciales"
#: src/grig-menubar.c:105
msgid "Radio specific functions"
msgstr "Fonctions spécifiques radio"
#: src/grig-menubar.c:217
#, c-format
msgid "Failed to build menubar: %s"
msgstr "Impossible de créer la barre de menus : %s"
#: src/key-press-handler.c:57
msgid "Initialising key press handler"
msgstr "Initialisation du gestionnaire de touche pressée"
#: src/key-press-handler.c:67
msgid "Closing key press handler"
msgstr "Fermeture du gestionnaire de touches pressées"
#: src/main.c:170
msgid "Grig can not find some necessary data files.\n"
msgstr "Grig n'arrive pas à trouver des fichiers de données nécessaires.\n"
#: src/main.c:171
msgid "This usually means that your installation is incomplete.\n"
msgstr "Cela signifie habituellement que votre installation est incomplète.\n"
#: src/main.c:172 src/main.c:350
msgid "Sorry... but I can not continue..."
msgstr "Désolé... mais je ne peux pas continuer..."
#: src/main.c:348
msgid "Grig configuration check failed!\n"
msgstr "Échec lors de la vérification de la configuration Grig !\n"
#: src/main.c:349
msgid "This usually means that your configuration is broken.\n"
msgstr "Cela signifie généralement que votre configuration est cassée.\n"
#: src/main.c:352
msgid "Proposed solutions:\n"
msgstr "Solutions proposées :\n"
#: src/main.c:439
#, c-format
msgid "GRIG: %s %s"
msgstr "GRIG : %s %s"
#: src/main.c:484
#, c-format
msgid ""
"Received signal %d\n"
"Trying clean exit..."
msgstr ""
"Réception du signal %d\n"
"Tentative de sortie propre..."
#: src/main.c:560
msgid ""
"Usage: grig [OPTION]...\n"
"\n"
msgstr ""
"Utilisation : grig [OPTION]...\n"
"\n"
#: src/main.c:561
msgid " -m, --model=ID select radio model number; see --list\n"
msgstr ""
" -m, --model=ID sélectionner le numéro de modèle de radio ; "
"voir --list\n"
#: src/main.c:563
msgid " -r, --rig-file=DEVICE set device of the radio, eg. /dev/ttyS0\n"
msgstr ""
" -r, --rig-file=DEVICE sélectionner le fichier de périphérique de la "
"radio, par exemple /dev/ttyS0\n"
#: src/main.c:565
msgid " -s, --speed=BAUD set transfer rate (serial port only)\n"
msgstr ""
" -s, --speed=BAUD définir la vitesse de transfert (port série "
"uniquement)\n"
#: src/main.c:567
msgid " -c, --civaddr=ID set CI-V address (decimal, ICOM only)\n"
msgstr ""
" -c, --civaddr=ID définir l'adresse CI-V (décimal, ICOM "
"seulement)\n"
#: src/main.c:569
msgid ""
" -C, --set-conf=param=val set config parameter (same as in rigctl)\n"
msgstr ""
" -C, --set-conf=param=val définir un paramètre de configuration (comme "
"dans rigctl)\n"
#: src/main.c:571
msgid " -d, --debug=LEVEL set hamlib debug level (0..5)\n"
msgstr ""
" -d, --debug=NIVEAU définir le niveau de débogage de hamlib "
"(0..5)\n"
#: src/main.c:573
msgid " -D, --delay=val set delay between commands in msec\n"
msgstr ""
" -D, --delay=val définir le délai entre les commandes en ms\n"
#: src/main.c:575
msgid " -n, --nothread start daemon without using threads\n"
msgstr ""
" -n, --nothread démarrer le démon sans utiliser de threads\n"
#: src/main.c:577
msgid " -l, --list list supported radios and exit\n"
msgstr ""
" -l, --list énumérer les radios prises en charge et "
"quitter\n"
#: src/main.c:579
msgid " -p, --enable-ptt enable PTT button\n"
msgstr " -p, --enable-ptt activer le bouton PPP\n"
#: src/main.c:581
msgid " -P, --enable-pwr enable POWER button\n"
msgstr " -P, --enable-pwr activer le bouton MARCHE\n"
#: src/main.c:583
msgid " -h, --help show this help message and exit\n"
msgstr " -h, --help afficher ce message d'aide et quitter\n"
#: src/main.c:585
msgid " -v, --version show version information and exit\n"
msgstr ""
" -v, --version afficher l'information sur la version et "
"quitter\n"
#: src/main.c:588
msgid "Example:"
msgstr "Exemple :"
#: src/main.c:590
msgid ""
"Start grig using YAESU FT-990 connected to the first serial port, using 4800 "
"baud and debug level set to warning:"
msgstr ""
"Démarrer grig en utilisant le YAESU FT-990 connecté au premier port série, à "
"4800 bauds et avec un niveau de débogage fixé à avertissements :"
#: src/main.c:596
msgid "or if you prefer the long options:"
msgstr "ou si vous préférez les options longues :"
#: src/main.c:601
msgid "It is usually enough to specify the model ID and the DEVICE."
msgstr "Il est généralement suffisant de spécifier l'ID du modèle et le PORT"
#: src/main.c:604
msgid ""
"If you start grig without any options it will use the Dummy backend and set "
"the debug level to RIG_DEBUG_NONE. If you don't specify the transfer rate "
"for the serial port, the default value will be used by the backend and even "
"if you specify a value, it can be overridden by the backend."
msgstr ""
"Si vous démarrez grig sans aucune option, il utilisera le backend Dummy et "
"le niveau de débogage sera RIG_DEBUG_NONE. Si vous ne spécifiez pas la "
"vitesse du port série, la valeur pas défaut sera utilisée par le moteur ; et "
"même si vous spécifiez une valeur, elle peut être ignorée par le moteur."
#: src/main.c:614
msgid "Debug levels:"
msgstr "Niveaux de débogage :"
#: src/main.c:616
msgid " 0 No debug, keep quiet.\n"
msgstr " 0 Pas de débogage, mode silencieux.\n"
#: src/main.c:617
msgid " 1 Serious bug.\n"
msgstr " 1 Bogue sérieux.\n"
#: src/main.c:618
msgid " 2 Error case (e.g. protocol, memory allocation).\n"
msgstr " 2 Cas d'erreur (p.ex. protocole, allocation mémoire).\n"
#: src/main.c:619
msgid " 3 Warnings.\n"
msgstr " 3 Avertissements.\n"
#: src/main.c:620
msgid " 4 Verbose information.\n"
msgstr " 4 Bavard.\n"
#: src/main.c:621
msgid " 5 Trace.\n"
msgstr " 5 Trace.\n"
#: src/main.c:633
#, c-format
msgid "grig %s\n"
msgstr "grig %s\n"
#: src/main.c:634
msgid "Graphical User Interface for the Hamradio Control Libraries."
msgstr ""
"Interface utilisateur graphique pour les bibliothèques de contrôle "
"radioamateur."
#: src/main.c:637
msgid "Copyright (C) 2001-2007 Alexandru Csete."
msgstr "Copyright (C) 2001-2007 Alexandru Csete."
#: src/main.c:639
msgid "This is free software; see the source for copying conditions. "
msgstr ""
"Ceci est un logiciel libre ; voir les sources pour les conditions de copie. "
#: src/main.c:641
msgid ""
"There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A "
"PARTICULAR PURPOSE."
msgstr ""
#: src/main.c:687
msgid " ID Manufacturer Model Ver. Status\n"
msgstr ""
#: src/rig-daemon.c:397
msgid "No error"
msgstr "Aucune erreur"
#: src/rig-daemon.c:398
msgid "Invalid parameter"
msgstr "Paramètre non valide"
#: src/rig-daemon.c:399
msgid "Invalid configuration"
msgstr "Configuration non valide"
#: src/rig-daemon.c:400
msgid "Memory shortage"
msgstr "Mémoire insuffisante"
#: src/rig-daemon.c:401
msgid "Function not implemented"
msgstr "Fonction non implémentée"
#: src/rig-daemon.c:402
msgid "Communication timed out"
msgstr "Délai d'attente de communication expiré"
#: src/rig-daemon.c:403
msgid "I/O error"
msgstr "Erreur E/S"
#: src/rig-daemon.c:404
msgid "Internal Hamlib error :-("
msgstr "Erreur interne Hamlib :-("
#: src/rig-daemon.c:405
msgid "Protocol error"
msgstr "Erreur de protocole"
#: src/rig-daemon.c:406
msgid "Command rejected"
msgstr "Commande refusée"
#: src/rig-daemon.c:407
msgid "Command performed, but arg truncated"
msgstr "Commande exécutée, mais argument tronqué"
#: src/rig-daemon.c:408
msgid "Function not available"
msgstr "Fonction non disponible"
#: src/rig-daemon.c:409
msgid "VFO not targetable"
msgstr ""
#: src/rig-daemon.c:410
msgid "BUS error"
msgstr "Erreur de bus"
#: src/rig-daemon.c:411
msgid "Collision on the bus"
msgstr "Collision sur le bus"
#: src/rig-daemon.c:412
msgid "NULL RIG handle or invalid pointer param"
msgstr ""
#: src/rig-daemon.c:413
msgid "Invalid VFO"
msgstr "VFO non valide"
#: src/rig-daemon.c:414
msgid "Argument out of domain"
msgstr "Argument hors du domaine"
#: src/rig-daemon.c:481
#, c-format
msgid "%s entered"
msgstr "%s saisi"
#: src/rig-daemon.c:523
#, c-format
msgid "%s: Initializing rig (id=%d)"
msgstr "%s : initialisation rig (id=%d)"
#: src/rig-daemon.c:532
#, c-format
msgid "%s: Init failed; Hamlib returned NULL!"
msgstr "%s : échec de l'initialisation ; Hamlib a renvoyé NULL !"
#: src/rig-daemon.c:566
#, c-format
msgid "%s: Setting conf param (%s,%s)..."
msgstr "%s : configuration du paramètre (%s,%s)..."
#: src/rig-daemon.c:575
#, c-format
msgid "%s: Set conf OK"
msgstr "%s : configuration OK"
#: src/rig-daemon.c:580
#, c-format
msgid "%s: Set conf failed (%d)"
msgstr "%s : échec de la configuration (%d)"
#: src/rig-daemon.c:600
#, c-format
msgid "%s: Failed to open rig port %s: %s (permissions?)"
msgstr "%s : échec de l'ouverture du port du rig %s : %s (permissions ?)"
#: src/rig-daemon.c:611
#, c-format
msgid "%s: Init successfull, executing post-init"
msgstr "%s : succès de l'initialisation, exécution post-init"
#: src/rig-daemon.c:618
#, c-format
msgid "%s: Starting rig daemon"
msgstr "%s : démarage du démon rig"
#: src/rig-daemon.c:637
#, c-format
msgid "%s: Daemon timeout started, ID: %d"
msgstr ""
#: src/rig-daemon.c:658
#, c-format
msgid "%s: Failed to start daemon thread"
msgstr ""
#: src/rig-daemon.c:661
#, c-format
msgid "%s: Error %d: %s"
msgstr "%s : erreur %d : %s"
#: src/rig-daemon.c:671
#, c-format
msgid "%s: Daemon thread started"
msgstr ""
#: src/rig-daemon.c:697
#, c-format
msgid "%s: Sending stop signal to rig daemon"
msgstr ""
#: src/rig-daemon.c:731
#, c-format
msgid "%s: Cleaning up rig"
msgstr ""
#: src/rig-daemon.c:803
#, c-format
msgid "%s: GET bits: %d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d"
msgstr ""
#: src/rig-daemon.c:826
#, c-format
msgid "%s: SET bits: %d%d%d%d%d%d%d%d%d%d%d%d%dXXX"
msgstr ""
#: src/rig-daemon.c:880
#, c-format
msgid "%s started."
msgstr "%s démarré."
#: src/rig-daemon.c:978
#, c-format
msgid "%s stopped"
msgstr "%s arrêté"
#: src/rig-daemon.c:1024
#, c-format
msgid "%s called."
msgstr "%s appelé."
#: src/rig-daemon.c:1159
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_FREQ_1:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_GET_FREQ_1 :\n"
"%s"
#: src/rig-daemon.c:1186
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_FREQ_1:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_SET_FREQ_1 :\n"
"%s"
#: src/rig-daemon.c:1243 src/rig-daemon.c:1311
#, c-format
msgid "%s: I can't figure out available VFOs (got %d)"
msgstr ""
#: src/rig-daemon.c:1256
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_FREQ_2:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_GET_FREQ_2 :\n"
"%s"
#: src/rig-daemon.c:1324
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_FREQ_2:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_SET_FREQ_2 :\n"
"%s"
#: src/rig-daemon.c:1353
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_RIT:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_GET_RIT :\n"
"%s"
#: src/rig-daemon.c:1380
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_RIT:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_SET_RIT :\n"
"%s"
#: src/rig-daemon.c:1409
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_XIT:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_GET_XIT :\n"
"%s"
#: src/rig-daemon.c:1436
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_XIT:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_SET_XIT :\n"
"%s"
#: src/rig-daemon.c:1465
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_VFO:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_GET_VFO :\n"
"%s"
#: src/rig-daemon.c:1492
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_VFO:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_SET_VFO :\n"
"%s"
#: src/rig-daemon.c:1521
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PSTAT:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_GET_PSTAT :\n"
"%s"
#: src/rig-daemon.c:1548
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PSTAT:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_SET_PSTAT :\n"
"%s"
#: src/rig-daemon.c:1577
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PTT:\n"
"%s"
msgstr ""
"%s : échec de l'exécution de RIG_CMD_GET_PTT :\n"
"%s"
#: src/rig-daemon.c:1604
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PTT:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_PTT:\n"
"%s"
#: src/rig-daemon.c:1634
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_MODE:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_MODE:\n"
"%s"
#: src/rig-daemon.c:1685 src/rig-daemon-check.c:409
#, c-format
msgid "%s: Found frequency range for mode %d"
msgstr ""
#: src/rig-daemon.c:1688 src/rig-daemon-check.c:412
#, c-format
msgid "%s: %.0f...(%.0f)...%.0f kHz"
msgstr "%s : %.0f...(%.0f)...%.0f kHz"
#: src/rig-daemon.c:1707
#, c-format
msgid "%s: Can not find frequency range for this mode (%d)!Bug in backend?"
msgstr ""
#: src/rig-daemon.c:1780
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_MODE:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_MODE:\n"
"%s"
#: src/rig-daemon.c:1814
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_AGC:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_AGC:\n"
"%s"
#: src/rig-daemon.c:1844
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_AGC:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_AGC:\n"
"%s"
#: src/rig-daemon.c:1872
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_ATT:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_ATT:\n"
"%s"
#: src/rig-daemon.c:1900
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_ATT:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_ATT:\n"
"%s"
#: src/rig-daemon.c:1928
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PREAMP:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_PREAMP:\n"
"%s"
#: src/rig-daemon.c:1958
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PREAMP:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_PREAMP:\n"
"%s"
#: src/rig-daemon.c:1986
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_STRENGTH:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_STRENGTH:\n"
"%s"
#: src/rig-daemon.c:2015
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_POWER:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_POWER:\n"
"%s"
#: src/rig-daemon.c:2043
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_POWER:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_POWER:\n"
"%s"
#: src/rig-daemon.c:2070
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_SWR:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_SWR:\n"
"%s"
#: src/rig-daemon.c:2097
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_ALC:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_ALC:\n"
"%s"
#: src/rig-daemon.c:2126
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_ALC:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_ALC:\n"
"%s"
#: src/rig-daemon.c:2151
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_LOCK:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_LOCK:\n"
"%s"
#: src/rig-daemon.c:2178
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_LOCK:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_LOCK:\n"
"%s"
#: src/rig-daemon.c:2202
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_VFO_TOGGLE:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_VFO_TOGGLE:\n"
"%s"
#: src/rig-daemon.c:2225
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_VFO_COPY:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_VFO_COPY:\n"
"%s"
#: src/rig-daemon.c:2248
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_VFO_XCHG:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_VFO_XCHG:\n"
"%s"
#: src/rig-daemon.c:2270
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_SPLIT:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_SPLIT:\n"
"%s"
#: src/rig-daemon.c:2291
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_SPLIT:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_SPLIT:\n"
"%s"
#: src/rig-daemon.c:2316
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_AF:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_AF:\n"
"%s"
#: src/rig-daemon.c:2341
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_AF:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_AF:\n"
"%s"
#: src/rig-daemon.c:2367
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_RF:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_RF:\n"
"%s"
#: src/rig-daemon.c:2392
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_RF:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_RF:\n"
"%s"
#: src/rig-daemon.c:2418
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_SQL:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_SQL:\n"
"%s"
#: src/rig-daemon.c:2443
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_SQL:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_SQL:\n"
"%s"
#: src/rig-daemon.c:2469
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_IFS:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_IFS:\n"
"%s"
#: src/rig-daemon.c:2494
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_IFS:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_IFS:\n"
"%s"
#: src/rig-daemon.c:2520
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_APF:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_APF:\n"
"%s"
#: src/rig-daemon.c:2545
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_APF:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_APF:\n"
"%s"
#: src/rig-daemon.c:2571
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_NR:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_NR:\n"
"%s"
#: src/rig-daemon.c:2596
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_NR:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_NR:\n"
"%s"
#: src/rig-daemon.c:2622
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_NOTCH:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_NOTCH:\n"
"%s"
#: src/rig-daemon.c:2647
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_NOTCH:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_NOTCH:\n"
"%s"
#: src/rig-daemon.c:2673
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PBT_IN:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_PBT_IN:\n"
"%s"
#: src/rig-daemon.c:2698
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PBT_IN:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_PBT_IN:\n"
"%s"
#: src/rig-daemon.c:2724
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PBT_OUT:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_PBT_OUT:\n"
"%s"
#: src/rig-daemon.c:2749
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PBT_OUT:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_PBT_OUT:\n"
"%s"
#: src/rig-daemon.c:2775
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_CW_PITCH:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_CW_PITCH:\n"
"%s"
#: src/rig-daemon.c:2800
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_CW_PITCH:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_CW_PITCH:\n"
"%s"
#: src/rig-daemon.c:2826
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_KEYSPD:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_KEYSPD:\n"
"%s"
#: src/rig-daemon.c:2851
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_KEYSPD:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_KEYSPD:\n"
"%s"
#: src/rig-daemon.c:2877
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_BKINDEL:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_BKINDEL:\n"
"%s"
#: src/rig-daemon.c:2902
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_BKINDEL:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_BKINDEL:\n"
"%s"
#: src/rig-daemon.c:2928
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_BALANCE:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_BALANCE:\n"
"%s"
#: src/rig-daemon.c:2953
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_BALANCE:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_BALANCE:\n"
"%s"
#: src/rig-daemon.c:2979
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_VOXDEL:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_VOXDEL:\n"
"%s"
#: src/rig-daemon.c:3004
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_VOXDEL:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_VOXDEL:\n"
"%s"
#: src/rig-daemon.c:3030
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_VOXGAIN:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_VOXGAIN:\n"
"%s"
#: src/rig-daemon.c:3055
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_VOXGAIN:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_VOXGAIN:\n"
"%s"
#: src/rig-daemon.c:3081
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_ANTIVOX:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_ANTIVOX:\n"
"%s"
#: src/rig-daemon.c:3106
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_ANTIVOX:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_ANTIVOX:\n"
"%s"
#: src/rig-daemon.c:3132
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_MICGAIN:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_MICGAIN:\n"
"%s"
#: src/rig-daemon.c:3157
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_MICGAIN:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_MICGAIN:\n"
"%s"
#: src/rig-daemon.c:3184
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_COMP:\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_COMP:\n"
"%s"
#: src/rig-daemon.c:3210
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_FUNC(%s):\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_SET_FUNC(%s):\n"
"%s"
#: src/rig-daemon.c:3240
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_FUNC(%s):\n"
"%s"
msgstr ""
"%s: Échec de l'exécution de RIG_CMD_GET_FUNC(%s):\n"
"%s"
#: src/rig-daemon.c:3259
#, c-format
msgid "%s: Unknown command %d (grig bug)"
msgstr "%s: Commande inconnue %d (bogue grig)"
#: src/rig-daemon.c:3352
#, c-format
msgid "%s: %d"
msgstr "%s : %d"
#: src/rig-daemon-check.c:157
#, c-format
msgid "%s: Can not find VFO list for this backend! Bug in backend?"
msgstr ""
#: src/rig-daemon-check.c:430
#, c-format
msgid "%s: Can not find frequency range for this mode (%d)! Bug in backend?"
msgstr ""
#: src/rig-daemon-check.c:518
#, c-format
msgid "%s: Could not get RF power"
msgstr ""
#: src/rig-daemon-check.c:533
#, c-format
msgid "%s: Maximum RF power is %.3f watts"
msgstr ""
#: src/rig-daemon-check.c:545
#, c-format
msgid "%s: Could not get signal strength"
msgstr ""
#: src/rig-daemon-check.c:560
#, c-format
msgid "%s: Could not get SWR"
msgstr ""
#: src/rig-daemon-check.c:573
#, c-format
msgid "%s: Could not get ALC"
msgstr ""
#: src/rig-daemon-check.c:586
#, c-format
msgid "%s: Could not get AGC"
msgstr ""
#: src/rig-daemon-check.c:599
#, c-format
msgid "%s: Could not get ATT"
msgstr ""
#: src/rig-daemon-check.c:612
#, c-format
msgid "%s: Could not get PREAMP"
msgstr ""
#: src/rig-daemon-check.c:625
#, c-format
msgid "%s: Could not get AF"
msgstr ""
#: src/rig-daemon-check.c:638
#, c-format
msgid "%s: Could not get RF"
msgstr ""
#: src/rig-daemon-check.c:651
#, c-format
msgid "%s: Could not get SQL"
msgstr ""
#: src/rig-daemon-check.c:666
#, c-format
msgid "%s: Could not get IF shift"
msgstr ""
#: src/rig-daemon-check.c:679
#, c-format
msgid "%s: Could not get APF"
msgstr ""
#: src/rig-daemon-check.c:692
#, c-format
msgid "%s: Could not get NR"
msgstr ""
#: src/rig-daemon-check.c:705
#, c-format
msgid "%s: Could not get NOTCH"
msgstr ""
#: src/rig-daemon-check.c:718
#, c-format
msgid "%s: Could not get PBT IN"
msgstr ""
#: src/rig-daemon-check.c:731
#, c-format
msgid "%s: Could not get PBT OUT"
msgstr ""
#: src/rig-daemon-check.c:744
#, c-format
msgid "%s: Could not get CW pitch"
msgstr ""
#: src/rig-daemon-check.c:757
#, c-format
msgid "%s: Could not get CW speed"
msgstr ""
#: src/rig-daemon-check.c:770
#, c-format
msgid "%s: Could not get break-in delay"
msgstr ""
#: src/rig-daemon-check.c:783
#, c-format
msgid "%s: Could not get balance"
msgstr ""
#: src/rig-daemon-check.c:796
#, c-format
msgid "%s: Could not get VOX delay"
msgstr ""
#: src/rig-daemon-check.c:809
#, c-format
msgid "%s: Could not get VOX gain"
msgstr ""
#: src/rig-daemon-check.c:822
#, c-format
msgid "%s: Could not get anti-vox"
msgstr ""
#: src/rig-daemon-check.c:835
#, c-format
msgid "%s: Could not get compression level"
msgstr "%s : impossible d'obtenir le niveau de compression"
#: src/rig-daemon-check.c:848
#, c-format
msgid "%s: Could not get MIC gain"
msgstr ""
#: src/rig-daemon-check.c:954
#, c-format
msgid "%s: Could not get LOCK status"
msgstr ""
#: src/rig-daemon-check.c:969
#, c-format
msgid "%s: Could not get %s status"
msgstr ""
#: src/rig-data.c:352 src/rig-data.c:544
#, c-format
msgid "%s: Invalid target: %d\n"
msgstr ""
#: src/rig-gui-buttons.c:148 src/rig-gui-smeter.c:75
msgid "Power"
msgstr ""
#: src/rig-gui-buttons.c:149
msgid "Power status"
msgstr "Indicateur de mise en marche"
#: src/rig-gui-buttons.c:193
msgid "PTT"
msgstr "PPP"
#: src/rig-gui-buttons.c:194
msgid "Push to talk"
msgstr "Presser pour parler"
#: src/rig-gui-buttons.c:238
msgid "Lock"
msgstr "Verrouiller"
#: src/rig-gui-buttons.c:239
msgid "Lock tuning dial"
msgstr ""
#: src/rig-gui-buttons.c:284
msgid "ATT OFF"
msgstr ""
#: src/rig-gui-buttons.c:307
msgid "Attenuator level"
msgstr "Niveau atténuateur"
#: src/rig-gui-buttons.c:344
msgid "PREAMP OFF"
msgstr "PRÉAMP OFF"
#: src/rig-gui-buttons.c:367
msgid "Preamp level"
msgstr "Niveau préampli"
#: src/rig-gui-ctrl2.c:86 src/rig-gui-info-data.h:172
msgid "AM"
msgstr "AM"
#: src/rig-gui-ctrl2.c:87 src/rig-gui-info-data.h:165
#: src/rig-gui-info-data.h:173
msgid "CW"
msgstr "CW"
#: src/rig-gui-ctrl2.c:88 src/rig-gui-info-data.h:174
msgid "USB"
msgstr "USB"
#: src/rig-gui-ctrl2.c:89 src/rig-gui-info-data.h:175
msgid "LSB"
msgstr "LSB"
#: src/rig-gui-ctrl2.c:90 src/rig-gui-info-data.h:176
msgid "RTTY"
msgstr "RTTY"
#: src/rig-gui-ctrl2.c:91
msgid "FM Narrow"
msgstr "FM Étroit"
#: src/rig-gui-ctrl2.c:92
msgid "FM Wide"
msgstr "FM Large"
#: src/rig-gui-ctrl2.c:93
msgid "CW Rev"
msgstr ""
#: src/rig-gui-ctrl2.c:94
msgid "RTTY Rev"
msgstr ""
#: src/rig-gui-ctrl2.c:95
msgid "AM Synch"
msgstr ""
#: src/rig-gui-ctrl2.c:96
msgid "Pkt (LSB)"
msgstr "Pkt (LSB)"
#: src/rig-gui-ctrl2.c:97
msgid "Pkt (USB)"
msgstr "Pkt (USB)"
#: src/rig-gui-ctrl2.c:98
msgid "Pkt (FM)"
msgstr "Pkt (FM)"
#: src/rig-gui-ctrl2.c:99
msgid "ECUSB"
msgstr "ECUSB"
#: src/rig-gui-ctrl2.c:100
msgid "ECLSB"
msgstr "ECLSB"
#: src/rig-gui-ctrl2.c:101 src/rig-gui-info-data.h:187
msgid "FAX"
msgstr "FAX"
#: src/rig-gui-ctrl2.c:207
msgid "AGC OFF"
msgstr "Hors CAG"
#: src/rig-gui-ctrl2.c:208
msgid "Super Fast"
msgstr "Super Rapide"
#: src/rig-gui-ctrl2.c:209
msgid "Fast"
msgstr "Rapide"
#: src/rig-gui-ctrl2.c:210
msgid "Medium"
msgstr "Moyen"
#: src/rig-gui-ctrl2.c:211
msgid "Slow"
msgstr "Lent"
#: src/rig-gui-ctrl2.c:212
msgid "Auto"
msgstr ""
#: src/rig-gui-ctrl2.c:214
msgid "Automatic Gain Control Level"
msgstr "Niveau de Contrôle Automatique de Gain"
#: src/rig-gui-ctrl2.c:320
msgid "Communication mode"
msgstr "Mode de communication"
#: src/rig-gui-ctrl2.c:359
msgid "Wide"
msgstr "Large"
#: src/rig-gui-ctrl2.c:360
msgid "Normal"
msgstr "Normal"
#: src/rig-gui-ctrl2.c:361
msgid "Narrow"
msgstr "Étroit"
#: src/rig-gui-ctrl2.c:362
msgid "[User]"
msgstr "[Utilisateur]"
#: src/rig-gui-ctrl2.c:384
msgid "Passband Width"
msgstr "Largeur du filtre passe-bande"
#: src/rig-gui-ctrl2.c:443
#, c-format
msgid "ANT %d"
msgstr ""
#: src/rig-gui-ctrl2.c:460
msgid "Antenna Port"
msgstr "Port Antenne"
#: src/rig-gui-func.c:82
#, c-format
msgid "%s: FUNC window already visible."
msgstr ""
#: src/rig-gui-func.c:93
#, c-format
msgid "%s (Special Functions)"
msgstr "%s (Fonctions Spéciales)"
#: src/rig-gui-func.c:160
#, c-format
msgid "%s: FUNC window is not visible."
msgstr ""
#: src/rig-gui-func.c:185 src/rig-gui-rx.c:242 src/rig-gui-tx.c:238
#, c-format
msgid "%s:%d: Invalid level %d"
msgstr ""
#: src/rig-gui-func.c:227 src/rig-gui-rx.c:507 src/rig-gui-tx.c:463
msgid "Rig has no support."
msgstr ""
#: src/rig-gui-info.c:115
msgid "Radio Info"
msgstr "Info Radio"
#: src/rig-gui-info.c:250
msgid "RIT:"
msgstr "RIT :"
#: src/rig-gui-info.c:270
msgid "XIT:"
msgstr "XIT :"
#: src/rig-gui-info.c:289
msgid "IF-SHIFT:"
msgstr "IF-SHIFT :"
#: src/rig-gui-info.c:308
msgid "Max. Offsets"
msgstr ""
#: src/rig-gui-info.c:346
msgid "LEVEL"
msgstr "NIVEAU"
#: src/rig-gui-info.c:356 src/rig-gui-info.c:987
msgid "READ"
msgstr "LIRE"
#: src/rig-gui-info.c:364 src/rig-gui-info.c:995
msgid "WRITE"
msgstr "ÉCRIRE"
#: src/rig-gui-info.c:392 src/rig-gui-info.c:401 src/rig-gui-info.c:1023
#: src/rig-gui-info.c:1032 src/rig-gui-info.c:1110
msgid "-"
msgstr "-"
#: src/rig-gui-info.c:397 src/rig-gui-info.c:406 src/rig-gui-info.c:1028
#: src/rig-gui-info.c:1037 src/rig-gui-info.c:1115
msgid "X"
msgstr "X"
#: src/rig-gui-info.c:442
msgid "Port Type:"
msgstr "Type Port:"
#: src/rig-gui-info.c:460 src/rig-gui-info.c:489 src/rig-gui-info.c:518
#: src/rig-gui-info.c:632 src/rig-gui-info.c:667
msgid "Unknown"
msgstr "Inconnu"
#: src/rig-gui-info.c:471
msgid "DCD Type:"
msgstr "Type DCD:"
#: src/rig-gui-info.c:500
msgid "PTT Type:"
msgstr "Type PTT"
#: src/rig-gui-info.c:529
msgid "Serial Speed:"
msgstr "Vitesse Série:"
#: src/rig-gui-info.c:540
#, c-format
msgid "%d..%d baud"
msgstr "%d..%d baud"
#: src/rig-gui-info.c:547 src/rig-gui-info.c:574 src/rig-gui-info.c:601
#: src/rig-gui-info.c:636 src/rig-gui-info.c:671 src/rig-gui-info-data.h:67
#: src/rig-gui-info-data.h:68 src/rig-gui-info-data.h:69
#: src/rig-gui-info-data.h:103
msgid "N/A"
msgstr "N/A"
#: src/rig-gui-info.c:558
msgid "Data bits:"
msgstr "Bits données:"
#: src/rig-gui-info.c:585
msgid "Stop bits:"
msgstr "Bits arrêt:"
#: src/rig-gui-info.c:612
msgid "Parity:"
msgstr "Parité:"
#: src/rig-gui-info.c:647
msgid "Handshake:"
msgstr "Ctrl de flux:"
#: src/rig-gui-info.c:683
msgid "Interface"
msgstr "Interface"
#: src/rig-gui-info.c:720
msgid "STEP"
msgstr "PAS"
#: src/rig-gui-info.c:730
msgid "MODES"
msgstr "MODES"
#: src/rig-gui-info.c:845
msgid "PREAMP:"
msgstr "PRÉAMP"
#: src/rig-gui-info.c:893
msgid "ATT:"
msgstr "ATT ::"
#: src/rig-gui-info.c:939
msgid "Front End"
msgstr ""
#: src/rig-gui-info.c:977
msgid "FUNCTION"
msgstr "FONCTION"
#: src/rig-gui-info.c:1071
msgid "VFO OP"
msgstr ""
#: src/rig-gui-info.c:1081
msgid "SET"
msgstr ""
#: src/rig-gui-info-data.h:44
msgid "PREAMP"
msgstr "PRÉAMP"
#: src/rig-gui-info-data.h:45
msgid "ATT"
msgstr "ATT"
#: src/rig-gui-info-data.h:46 src/rig-gui-info-data.h:82
msgid "VOX"
msgstr "VOX"
#: src/rig-gui-info-data.h:47
msgid "AF"
msgstr "AF"
#: src/rig-gui-info-data.h:48
msgid "RF"
msgstr "RF"
#: src/rig-gui-info-data.h:49 src/rig-gui-info-data.h:99
msgid "SQL"
msgstr "SQL"
#: src/rig-gui-info-data.h:50
msgid "IF"
msgstr "IF"
#: src/rig-gui-info-data.h:51 src/rig-gui-info-data.h:90 src/rig-gui-rx.c:412
msgid "APF"
msgstr "APF"
#: src/rig-gui-info-data.h:52 src/rig-gui-info-data.h:88
msgid "NR"
msgstr "NR"
#: src/rig-gui-info-data.h:53
msgid "PBT_IN"
msgstr "PBT_IN"
#: src/rig-gui-info-data.h:54
msgid "PBT_OUT"
msgstr "PBT_OUT"
#: src/rig-gui-info-data.h:55
msgid "CWPITCH"
msgstr "CWPITCH"
#: src/rig-gui-info-data.h:56
msgid "RFPOWER"
msgstr "RFPOWER"
#: src/rig-gui-info-data.h:57
msgid "MICGAIN"
msgstr "MICGAIN"
#: src/rig-gui-info-data.h:58
msgid "KEYSPD"
msgstr "KEYSPD"
#: src/rig-gui-info-data.h:59
msgid "NOTCHF"
msgstr "NOTCHF"
#: src/rig-gui-info-data.h:60
msgid "COMP"
msgstr "COMP"
#: src/rig-gui-info-data.h:61
msgid "AGC"
msgstr "CAG"
#: src/rig-gui-info-data.h:62
msgid "BKINDL"
msgstr "BKINDL"
#: src/rig-gui-info-data.h:63
msgid "BALANCE"
msgstr "BALANCE"
#: src/rig-gui-info-data.h:64
msgid "METER"
msgstr "METER"
#: src/rig-gui-info-data.h:65
msgid "VOXGAIN"
msgstr "VOXGAIN"
#: src/rig-gui-info-data.h:66
msgid "ANTIVOX"
msgstr "ANTIVOX"
#: src/rig-gui-info-data.h:70
msgid "RAWSTR"
msgstr "RAWSTR"
#: src/rig-gui-info-data.h:71
msgid "SQLSTAT"
msgstr "SQLSTAT"
#: src/rig-gui-info-data.h:72 src/rig-gui-smeter.c:76
msgid "SWR"
msgstr "SWR"
#: src/rig-gui-info-data.h:73 src/rig-gui-smeter.c:77 src/rig-gui-tx.c:347
msgid "ALC"
msgstr "ALC"
#: src/rig-gui-info-data.h:74
msgid "STRENGTH"
msgstr ""
#: src/rig-gui-info-data.h:79
msgid "FAST AGC"
msgstr ""
#: src/rig-gui-info-data.h:80
msgid "NB"
msgstr "NB"
#: src/rig-gui-info-data.h:81 src/rig-gui-tx.c:388
msgid "COMPR"
msgstr "COMPR"
#: src/rig-gui-info-data.h:83
msgid "TONE"
msgstr "TONE"
#: src/rig-gui-info-data.h:84
msgid "CTCSS"
msgstr "CTCSS"
#: src/rig-gui-info-data.h:85
msgid "SEMI BK"
msgstr ""
#: src/rig-gui-info-data.h:86
msgid "FULL BK"
msgstr ""
#: src/rig-gui-info-data.h:87
msgid "ANF"
msgstr "ANF"
#: src/rig-gui-info-data.h:89
msgid "AIP"
msgstr "AIP"
#: src/rig-gui-info-data.h:91
msgid "MON"
msgstr ""
#: src/rig-gui-info-data.h:92
msgid "MAN NOTCH"
msgstr ""
#: src/rig-gui-info-data.h:93
msgid "RNF"
msgstr "RNF"
#: src/rig-gui-info-data.h:94
msgid "AUTO RO"
msgstr ""
#: src/rig-gui-info-data.h:95
msgid "LOCK"
msgstr ""
#: src/rig-gui-info-data.h:96
msgid "MUTE"
msgstr "MUTE"
#: src/rig-gui-info-data.h:97
msgid "VOICE SCAN"
msgstr "VOICE SCAN"
#: src/rig-gui-info-data.h:98
msgid "REV TRX"
msgstr "REV TRX"
#: src/rig-gui-info-data.h:100
msgid "ABM"
msgstr ""
#: src/rig-gui-info-data.h:101
msgid "BEAT CANC"
msgstr ""
#: src/rig-gui-info-data.h:102
msgid "MAN BC"
msgstr ""
#: src/rig-gui-info-data.h:104
msgid "AFC"
msgstr "AFC"
#: src/rig-gui-info-data.h:105
msgid "SATMODE"
msgstr "SATMODE"
#: src/rig-gui-info-data.h:106
msgid "SCOPE"
msgstr "SCOPE"
#: src/rig-gui-info-data.h:107
msgid "RESUME"
msgstr "RESUME"
#: src/rig-gui-info-data.h:108
msgid "TBURST"
msgstr "TBURST"
#: src/rig-gui-info-data.h:109
msgid "TUNER"
msgstr "TUNER"
#: src/rig-gui-info-data.h:114 src/rig-gui-info-data.h:123
#: src/rig-gui-info-data.h:134 src/rig-gui-info-data.h:148
#: src/rig-gui-info-data.h:155 src/rig-gui-smeter.c:74
msgid "None"
msgstr "Aucun"
#: src/rig-gui-info-data.h:115 src/rig-gui-info-data.h:124
msgid "Legacy"
msgstr ""
#: src/rig-gui-info-data.h:116
msgid "SER_DTR"
msgstr ""
#: src/rig-gui-info-data.h:117
msgid "SER_RTS"
msgstr ""
#: src/rig-gui-info-data.h:118 src/rig-gui-info-data.h:128
msgid "PARPORT"
msgstr ""
#: src/rig-gui-info-data.h:125
msgid "SER_DSR"
msgstr ""
#: src/rig-gui-info-data.h:126
msgid "SER_CTS"
msgstr ""
#: src/rig-gui-info-data.h:127
msgid "SER_CAR"
msgstr ""
#: src/rig-gui-info-data.h:135
msgid "Serial"
msgstr "Série"
#: src/rig-gui-info-data.h:136
msgid "Network"
msgstr "Réseau"
#: src/rig-gui-info-data.h:137
msgid "Device"
msgstr "Périphérique"
#: src/rig-gui-info-data.h:138
msgid "Packet"
msgstr "Paquet"
#: src/rig-gui-info-data.h:139
msgid "DTMF"
msgstr "DTMF"
#: src/rig-gui-info-data.h:140
msgid "IrDA"
msgstr "IrDA"
#: src/rig-gui-info-data.h:141
msgid "RPC"
msgstr "RPC"
#: src/rig-gui-info-data.h:142
msgid "Parallel"
msgstr "Parallèle"
#: src/rig-gui-info-data.h:149
msgid "Odd"
msgstr "Impaire"
#: src/rig-gui-info-data.h:150
msgid "Even"
msgstr "Paire"
#: src/rig-gui-info-data.h:156
msgid "XONXOFF"
msgstr ""
#: src/rig-gui-info-data.h:157
msgid "Hardware"
msgstr "Matériel"
#: src/rig-gui-info-data.h:162
msgid "OFF"
msgstr "Hors CAG"
#: src/rig-gui-info-data.h:163
msgid "FREQ"
msgstr "FRÉQ"
#: src/rig-gui-info-data.h:164
msgid "RXMODE"
msgstr ""
#: src/rig-gui-info-data.h:166
msgid "EMG"
msgstr ""
#: src/rig-gui-info-data.h:167
msgid "JAP"
msgstr ""
#: src/rig-gui-info-data.h:177
msgid "FM"
msgstr "FM"
#: src/rig-gui-info-data.h:178
msgid "WFM"
msgstr ""
#: src/rig-gui-info-data.h:179
msgid "CWR"
msgstr "CWR"
#: src/rig-gui-info-data.h:180
msgid "RTTYR"
msgstr "RTTYR"
#: src/rig-gui-info-data.h:181
msgid "AMS"
msgstr "AMS"
#: src/rig-gui-info-data.h:182
msgid "PKTLSB"
msgstr ""
#: src/rig-gui-info-data.h:183
msgid "PKTUSB"
msgstr "PKTUSB"
#: src/rig-gui-info-data.h:184
msgid "PKTFM"
msgstr "PKTFM"
#: src/rig-gui-info-data.h:185
msgid "ECSSUSB"
msgstr "ECSSUSB"
#: src/rig-gui-info-data.h:186
msgid "ECSSLSB"
msgstr "ECSSLSB"
#: src/rig-gui-info-data.h:193
msgid "COPY A=B"
msgstr ""
#: src/rig-gui-info-data.h:194
msgid "XCHG A/B"
msgstr ""
#: src/rig-gui-info-data.h:195
msgid "VFO->MEM"
msgstr ""
#: src/rig-gui-info-data.h:196
msgid "MEM->VFO"
msgstr ""
#: src/rig-gui-info-data.h:197
msgid "MEMCLEAR"
msgstr ""
#: src/rig-gui-info-data.h:198
msgid "UP"
msgstr ""
#: src/rig-gui-info-data.h:199
msgid "DOWN"
msgstr ""
#: src/rig-gui-info-data.h:200
msgid "BAND UP"
msgstr ""
#: src/rig-gui-info-data.h:201
msgid "BAND DOWN"
msgstr ""
#: src/rig-gui-info-data.h:202
msgid "LEFT"
msgstr "GAUCHE"
#: src/rig-gui-info-data.h:203
msgid "RIGHT"
msgstr "DROITE"
#: src/rig-gui-info-data.h:204
msgid "TUNE"
msgstr ""
#: src/rig-gui-info-data.h:205
msgid "TOGGLE"
msgstr ""
#: src/rig-gui-keypad.c:289
msgid "ENT"
msgstr ""
#: src/rig-gui-keypad.c:291
msgid "Begin manual frequency entry mode"
msgstr "Active le mode de saisie manuelle de la fréquence"
#: src/rig-gui-keypad.c:301
msgid "CLR"
msgstr ""
#: src/rig-gui-keypad.c:303
msgid "Clear manual frequency entry mode"
msgstr "Annule le mode de saisie manuelle de la fréquence"
#: src/rig-gui-lcd.c:1396
msgid "kHz"
msgstr "kHz"
#: src/rig-gui-lcd.c:1421
msgid "RIT"
msgstr "RIT"
#: src/rig-gui-lcd.c:1472
msgid "VFO A"
msgstr "VFO A"
#: src/rig-gui-lcd.c:1476
msgid "VFO B"
msgstr "VFO B"
#: src/rig-gui-lcd.c:1480
msgid "VFO C"
msgstr "VFO C"
#: src/rig-gui-lcd.c:1484
msgid "MAIN VFO"
msgstr ""
#: src/rig-gui-lcd.c:1488
msgid "SUB VFO"
msgstr ""
#: src/rig-gui-lcd.c:1492
msgid "MEM"
msgstr "MEM"
#: src/rig-gui-lcd.c:1496
msgid "VFO ?"
msgstr ""
#: src/rig-gui-levels.c:52
msgid "Level Controls"
msgstr "Contrôle Niveaux"
#: src/rig-gui-levels.c:53
msgid "Show/hide level controls"
msgstr "Affiche/cache les contrôles de niveaux"
#: src/rig-gui-message-window.c:65
msgid "Time"
msgstr "Heure"
#: src/rig-gui-message-window.c:66
msgid "Source"
msgstr "Source"
#: src/rig-gui-message-window.c:67
msgid "Level"
msgstr "Niveau"
#: src/rig-gui-message-window.c:68
msgid "Message"
msgstr "Message"
#: src/rig-gui-message-window.c:79
msgid "BUG"
msgstr "BOGUE"
#: src/rig-gui-message-window.c:81
msgid "WARNING"
msgstr "AVERTISSEMENT"
#: src/rig-gui-message-window.c:82
msgid "DEBUG"
msgstr "DÉBOGAGE"
#: src/rig-gui-message-window.c:83
msgid "TRACE"
msgstr ""
#: src/rig-gui-message-window.c:162
msgid "Grig Message Window"
msgstr "Fenêtre de Message Grig"
#: src/rig-gui-message-window.c:407
msgid "Open Debug File"
msgstr "Ouvrir un fichier de débogage"
#: src/rig-gui-message-window.c:476
msgid "SYS"
msgstr ""
#: src/rig-gui-message-window.c:486
msgid "Log file seems corrupt"
msgstr "Le fichier de log semble endommagé"
#: src/rig-gui-message-window.c:509
#, c-format
msgid "%s:%d: Error open debug log (%s)"
msgstr ""
#: src/rig-gui-message-window.c:681
msgid "Hamlib"
msgstr "Hamlib"
#: src/rig-gui-message-window.c:693
msgid "Other"
msgstr "Autre"
#: src/rig-gui-message-window.c:703
msgid "Bugs"
msgstr "Bogues"
#: src/rig-gui-message-window.c:709
msgid "Errors"
msgstr "Erreurs"
#: src/rig-gui-message-window.c:715
msgid "Warning"
msgstr "Avertissement"
#: src/rig-gui-message-window.c:721
msgid "Verbose"
msgstr "Bavard"
#: src/rig-gui-message-window.c:727
msgid "Trace"
msgstr "Trace"
#: src/rig-gui-message-window.c:740
msgid "Total"
msgstr "Total"
#: src/rig-gui-message-window.c:765
msgid " Summary "
msgstr " Résumé "
#: src/rig-gui-rx.c:97
#, c-format
msgid "%s: RX window already visible."
msgstr ""
#: src/rig-gui-rx.c:108
#, c-format
msgid "%s (RX Levels)"
msgstr "%s (Niveaux RX)"
#: src/rig-gui-rx.c:172
#, c-format
msgid "%s: RX window is not visible."
msgstr ""
#: src/rig-gui-rx.c:284
msgid "AF Gain"
msgstr "AF Gain"
#: src/rig-gui-rx.c:304
msgid "RF Gain"
msgstr "RF Gain"
#: src/rig-gui-rx.c:331
msgid "IF Shift"
msgstr "IF Shift"
#: src/rig-gui-rx.c:351
msgid "CW Pitch"
msgstr "CW Pitch"
#: src/rig-gui-rx.c:371
msgid "PBT In"
msgstr "PBT In"
#: src/rig-gui-rx.c:391
msgid "PBT Out"
msgstr ""
#: src/rig-gui-rx.c:432
msgid "N.R."
msgstr "N.R."
#: src/rig-gui-rx.c:452
msgid "NOTCH"
msgstr ""
#: src/rig-gui-rx.c:472
msgid "Squelch"
msgstr "Squelch"
#: src/rig-gui-rx.c:492
msgid "Balance"
msgstr "Balance"
#: src/rig-gui-smeter.c:83
msgid "0..5"
msgstr "0..5"
#: src/rig-gui-smeter.c:84
msgid "0..10"
msgstr "0..10"
#: src/rig-gui-smeter.c:85
msgid "0..50"
msgstr "0..50"
#: src/rig-gui-smeter.c:86
msgid "0..100"
msgstr "0..100"
#: src/rig-gui-smeter.c:87
msgid "0..500"
msgstr "0..500"
#: src/rig-gui-smeter.c:430
msgid "Select TX mode for the meter"
msgstr "Sélectionne le mode de mesure en émission"
#: src/rig-gui-smeter.c:479
msgid "Select TX meter scale"
msgstr "Sélectionne l'échelle de mesure en émission"
#: src/rig-gui-tx.c:98
#, c-format
msgid "%s: TX window already visible."
msgstr ""
#: src/rig-gui-tx.c:109
#, c-format
msgid "%s (TX Levels)"
msgstr "%s (Niveaux TX)"
#: src/rig-gui-tx.c:176
#, c-format
msgid "%s: TX window is not visible."
msgstr ""
#: src/rig-gui-tx.c:286
msgid "CW SPD"
msgstr ""
#: src/rig-gui-tx.c:306
msgid "BKIN DEL"
msgstr ""
#: src/rig-gui-tx.c:326
msgid "POWER"
msgstr ""
#: src/rig-gui-tx.c:368
msgid "MIC GAIN"
msgstr "MIC GAIN"
#: src/rig-gui-tx.c:408
msgid "VOX GAIN"
msgstr "VOX GAIN"
#: src/rig-gui-tx.c:428
msgid "VOX DEL"
msgstr ""
#: src/rig-gui-tx.c:448
msgid "ANTI VOX"
msgstr "ANTI VOX"
#: src/rig-gui-vfo.c:119
msgid "Main / Sub"
msgstr ""
#: src/rig-gui-vfo.c:120
msgid "Toggle active VFO"
msgstr ""
#: src/rig-gui-vfo.c:123
msgid "A / B"
msgstr "A / B"
#: src/rig-gui-vfo.c:124
msgid "Toggle between available VFOs"
msgstr ""
#: src/rig-gui-vfo.c:235
msgid "Main = Sub"
msgstr ""
#: src/rig-gui-vfo.c:236
msgid "Set Main VFO = Sub VFO"
msgstr ""
#: src/rig-gui-vfo.c:239
msgid "A = B"
msgstr "A = B"
#: src/rig-gui-vfo.c:240
msgid "Set VFO B = VFO A"
msgstr ""
#: src/rig-gui-vfo.c:304
msgid "Main«»Sub"
msgstr ""
#: src/rig-gui-vfo.c:305
msgid "Exchange Main and sub VFOs"
msgstr ""
#: src/rig-gui-vfo.c:308
msgid "A«»B"
msgstr "A«»B"
#: src/rig-gui-vfo.c:309
msgid "Exchange VFO A and B"
msgstr ""
#: src/rig-gui-vfo.c:370
msgid "Split"
msgstr ""
#: src/rig-gui-vfo.c:371
msgid "Toggle split mode operation"
msgstr ""
#: src/rig-gui-vfo.c:399
msgid "M / V"
msgstr ""
#: src/rig-gui-vfo.c:400
msgid "Toggle between memory and VFO"
msgstr ""
#: src/rig-selector.c:116
msgid ""
"Connect to the selected radio.Grig will attempt to establish connection to "
"the selected radio using the specified settings. If the connection is "
"successful, the main application window will be loaded."
msgstr ""
#: src/rig-selector.c:125
msgid "Cancel radio selection. This will end grig."
msgstr ""
#: src/rig-selector.c:130
msgid ""
"Add a new radio to the list.A new configuration window will be shown "
"allowing you to select a radio and specify the connection settings."
msgstr ""
#: src/rig-selector.c:139
msgid "Delete the currently selected radio."
msgstr ""
#: src/rig-selector.c:145
msgid "Edit the settings for the currently selected radio."
msgstr ""
#: src/rig-selector.c:170
msgid "Select a Radio"
msgstr "Sélectionnez une radio"
#: src/rig-selector.c:230
msgid "Company"
msgstr "Société"
#: src/rig-selector.c:236
msgid "Model"
msgstr "Modèle"
#: src/rig-selector.c:242
msgid "Port"
msgstr "Port"
#: src/rig-selector.c:248
msgid "Speed"
msgstr "Vitesse"
#: src/rig-selector.c:254
msgid "CI-V"
msgstr ""
#: src/rig-selector.c:262
msgid "DTR"
msgstr "DTR"
#: src/rig-selector.c:270
msgid "RTS"
msgstr "RTS"
#: src/rig-selector.c:483
#, c-format
msgid "%s:%s: Failed to delete %s"
msgstr ""
#: src/rig-selector.c:488
#, c-format
msgid "%s:%s: Removed %s"
msgstr ""
#: src/rig-state.c:130
msgid "Load Rig State"
msgstr ""
#: src/rig-state.c:139 src/rig-state.c:262
msgid "Rig state files (*.rig)"
msgstr ""
#: src/rig-state.c:144 src/rig-state.c:267
msgid "All files"
msgstr "Tous les fichiers"
#: src/rig-state.c:164
#, c-format
msgid ""
"There was an error reading the settings from:\n"
"\n"
" %s\n"
"\n"
" Examine the log messages for further info."
msgstr ""
#: src/rig-state.c:182
#, c-format
msgid ""
"The selected file:\n"
" %s\n"
" does not exist or is not a regular file."
msgstr ""
#: src/rig-state.c:253
msgid "Save Rig State"
msgstr ""
#: src/rig-state.c:283
#, c-format
msgid ""
"%s: User selected new file:\n"
"%s"
msgstr ""
#: src/rig-state.c:295
msgid ""
"Selected file already exists.\n"
"Overwrite file?"
msgstr ""
#: src/rig-state.c:313 src/rig-state.c:347
#, c-format
msgid ""
"There was an error saving the settings to:\n"
"\n"
" %s\n"
"\n"
" Examine the log messages for further info."
msgstr ""
#: src/rig-state.c:406
#, c-format
msgid "%s: Error loading rig file (%s)"
msgstr ""
#: src/rig-state.c:419
#, c-format
msgid "%s: Error reading rig id (%s)"
msgstr ""
#: src/rig-state.c:430
#, c-format
msgid ""
"%s: ID mismatch detected: state id is %d\n"
"while current rig id is %d"
msgstr ""
#: src/rig-state.c:449
#, c-format
msgid "%s: Applying settings (model=%d)"
msgstr ""
#: src/rig-state.c:579
#, c-format
msgid "%s: RIG ID is invalid (%d)"
msgstr ""
#: src/rig-state.c:654
#, c-format
msgid "%s: Error building state data (%s)"
msgstr ""
#: src/rig-state.c:665
#, c-format
msgid ""
"%s: Could not create data file (%s)\n"
"%s"
msgstr ""
#: src/rig-state.c:682
#, c-format
msgid "%s: Error writing config data (%s)"
msgstr ""
#: src/rig-state.c:689
#, c-format
msgid "%s: Wrote only %d instead of %d chars"
msgstr ""
#: src/rig-state.c:695
#, c-format
msgid ""
"%s: Rig state saved successfully to\n"
"%s."
msgstr ""
#: src/rig-state.c:724
#, c-format
msgid ""
"Selected rig state has been saved for model %d,\n"
"while the current rig model is %d.\n"
"Do you want to try to apply settings?"
msgstr ""
#: src/rig-state.c:771 src/rig-state.c:826 src/rig-state.c:869
#: src/rig-state.c:909
#, c-format
msgid ""
"%s:%d: Could nor read param %s::%s\n"
"(%s)"
msgstr ""
#: src/rig-state.c:788
#, c-format
msgid ""
"%s:%d:\n"
"FLOAT value out of range: %.2f\n"
"Floats expected to be between 0.0 and 1.0"
msgstr ""
grig-0.8.1/po/quot.sed 0000664 0001750 0001750 00000000231 11707107033 011471 0000000 0000000 s/"\([^"]*\)"/“\1”/g
s/`\([^`']*\)'/‘\1’/g
s/ '\([^`']*\)' / ‘\1’ /g
s/ '\([^`']*\)'$/ ‘\1’/g
s/^'\([^`']*\)' /‘\1’ /g
s/“”/""/g
grig-0.8.1/po/remove-potcdate.sin 0000664 0001750 0001750 00000000660 11707107033 013623 0000000 0000000 # Sed script that remove the POT-Creation-Date line in the header entry
# from a POT file.
#
# The distinction between the first and the following occurrences of the
# pattern is achieved by looking at the hold space.
/^"POT-Creation-Date: .*"$/{
x
# Test if the hold space is empty.
s/P/P/
ta
# Yes it was empty. First occurrence. Remove the line.
g
d
bb
:a
# The hold space was nonempty. Following occurrences. Do nothing.
x
:b
}
grig-0.8.1/po/tr.po 0000664 0001750 0001750 00000126671 12635615157 011026 0000000 0000000 # Turkish translation for grig
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the grig package.
# zeugma , 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: grig\n"
"Report-Msgid-Bugs-To: groundstation-developer@lists.sourcforge.net\n"
"POT-Creation-Date: 2015-12-20 22:15+0100\n"
"PO-Revision-Date: 2013-03-16 08:16+0000\n"
"Last-Translator: Stéphane Fillod \n"
"Language-Team: Turkish \n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-12-19 15:44+0000\n"
"X-Generator: Launchpad (build 17865)\n"
#: src/grig-about.c:58
msgid ""
"Copyright (C) 2001-2009 Alexandru Csete OZ9AEC>\n"
"\n"
"Grig is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published\n"
"by the Free Software Foundation; either version 2 of the License,\n"
"or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Library General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, you can find a copy on the FSF\n"
"website http://www.fsf.org/ or you can write to the\n"
"\n"
"Free Software Foundation, Inc.\n"
"51 Franklin Street - Fifth Floor\n"
"Boston\n"
"MA 02110-1301\n"
"USA.\n"
msgstr ""
#: src/grig-about.c:91 src/rig-gui-message-window.c:687
msgid "Grig"
msgstr "Grig"
#: src/grig-about.c:94
msgid "Copyright (C) 2001-2007 Alexandru Csete OZ9AEC"
msgstr "Telif Hakkı (C) 2001-2007 Alexandru Csete OZ9AEC"
#: src/grig-about.c:98
msgid "Grig Website"
msgstr "Grig Web sayfası"
#: src/grig-about.c:108
msgid "translator-credits"
msgstr ""
"Launchpad Contributions:\n"
" Stéphane Fillod https://launchpad.net/~fillods\n"
" zeugma https://launchpad.net/~sunder67"
#: src/grig-config.c:68
msgid "Checking GRIG configuration."
msgstr ""
#: src/grig-config.c:106
#, c-format
msgid "..Configuration directory: %s"
msgstr ""
#: src/grig-config.c:107 src/rig-gui-message-window.c:80
msgid "ERROR"
msgstr "HATA"
#: src/grig-config.c:107
msgid "OK"
msgstr "TAMAM"
#: src/grig-config.c:147
msgid "..Radio config files:"
msgstr ""
#: src/grig-config.c:155
#, c-format
msgid "%s: %s"
msgstr "%s: %s"
#: src/grig-config.c:172
#, c-format
msgid "....%s OK"
msgstr "....%s TAMAM"
#: src/grig-debug.c:60 src/rig-gui-message-window.c:78
msgid "NONE"
msgstr "HİÇBİRİ"
#: src/grig-debug.c:60
msgid "HAMLIB"
msgstr ""
#: src/grig-debug.c:60 src/rig-gui-message-window.c:485
msgid "GRIG"
msgstr "GRIG"
#: src/grig-debug.c:89
#, c-format
msgid "%s: Debug handler initialised."
msgstr ""
#: src/grig-debug.c:106
#, c-format
msgid "%s: Shutting down debug handler."
msgstr ""
#: src/grig-menubar.c:59
msgid "_Radio"
msgstr "_Radyo"
#: src/grig-menubar.c:60
msgid "_Settings"
msgstr "_Ayarlar"
#: src/grig-menubar.c:61
msgid "_View"
msgstr "_Görünüm"
#: src/grig-menubar.c:62
msgid "_Tools"
msgstr "_Araçlar"
#: src/grig-menubar.c:63
msgid "_Help"
msgstr "_Yardım"
#: src/grig-menubar.c:66
msgid "_Info"
msgstr "_Bilgi"
#: src/grig-menubar.c:66
msgid "Show info about radio"
msgstr ""
#: src/grig-menubar.c:67
msgid "St_op daemon"
msgstr ""
#: src/grig-menubar.c:67
msgid "Stop the Grig daemon"
msgstr ""
#: src/grig-menubar.c:68
msgid "St_art daemon"
msgstr ""
#: src/grig-menubar.c:68
msgid "Start the Grig daemon"
msgstr ""
#: src/grig-menubar.c:69
msgid "_Save State"
msgstr ""
#: src/grig-menubar.c:69
msgid "Save the state of the rig to a file"
msgstr ""
#: src/grig-menubar.c:70
msgid "_Load State"
msgstr ""
#: src/grig-menubar.c:70
msgid "Load the state of the rig from a file"
msgstr ""
#: src/grig-menubar.c:71
msgid "E_xit"
msgstr "_Çıkış"
#: src/grig-menubar.c:71
msgid "Exit the program"
msgstr "Programdan çık"
#: src/grig-menubar.c:74
msgid "_Debug Level"
msgstr ""
#: src/grig-menubar.c:74
msgid "Set Hamlib debug level"
msgstr ""
#: src/grig-menubar.c:77
msgid "Message _Window"
msgstr ""
#: src/grig-menubar.c:77
msgid "Show window with debug messages"
msgstr ""
#: src/grig-menubar.c:80
msgid "_SW Memory"
msgstr ""
#: src/grig-menubar.c:80
msgid "Software Memory Mamager"
msgstr ""
#: src/grig-menubar.c:81
msgid "_Band Map"
msgstr ""
#: src/grig-menubar.c:81
msgid "Show the band map"
msgstr ""
#: src/grig-menubar.c:82
msgid "S_pectrum Scope"
msgstr ""
#: src/grig-menubar.c:82
msgid "Show the spectrum scope"
msgstr ""
#: src/grig-menubar.c:85
msgid "_About Grig"
msgstr ""
#: src/grig-menubar.c:85
msgid "Show about dialog"
msgstr ""
#: src/grig-menubar.c:91
msgid "_No Debug"
msgstr ""
#: src/grig-menubar.c:91
msgid "Don't show any debug mesages"
msgstr ""
#: src/grig-menubar.c:92
msgid "_Bug"
msgstr ""
#: src/grig-menubar.c:92
msgid "Show error messages caused by possible bugs"
msgstr ""
#: src/grig-menubar.c:93
msgid "_Error"
msgstr "_Hata"
#: src/grig-menubar.c:93
msgid "Show run-time error messages"
msgstr ""
#: src/grig-menubar.c:94
msgid "_Warning"
msgstr ""
#: src/grig-menubar.c:94
msgid "Show warnings"
msgstr "Uyarıları göster"
#: src/grig-menubar.c:95
msgid "_Verbose"
msgstr ""
#: src/grig-menubar.c:95
msgid "Verbose reporting"
msgstr ""
#: src/grig-menubar.c:96
msgid "_Trace"
msgstr ""
#: src/grig-menubar.c:96
msgid "Trace everything"
msgstr ""
#: src/grig-menubar.c:102
msgid "_RX Level Controls"
msgstr ""
#: src/grig-menubar.c:102
msgid "Show receiver level controls"
msgstr ""
#: src/grig-menubar.c:103
msgid "_TX Level Controls"
msgstr ""
#: src/grig-menubar.c:103
msgid "Show transmitter level controls"
msgstr ""
#: src/grig-menubar.c:104
msgid "_DCS/CTCSS"
msgstr "_DCS/CTCSS"
#: src/grig-menubar.c:104
msgid "Show DCS and CTCSS controls"
msgstr ""
#: src/grig-menubar.c:105
msgid "_Special Functions"
msgstr ""
#: src/grig-menubar.c:105
msgid "Radio specific functions"
msgstr ""
#: src/grig-menubar.c:217
#, c-format
msgid "Failed to build menubar: %s"
msgstr ""
#: src/key-press-handler.c:57
msgid "Initialising key press handler"
msgstr ""
#: src/key-press-handler.c:67
msgid "Closing key press handler"
msgstr ""
#: src/main.c:170
msgid "Grig can not find some necessary data files.\n"
msgstr ""
#: src/main.c:171
msgid "This usually means that your installation is incomplete.\n"
msgstr ""
#: src/main.c:172 src/main.c:350
msgid "Sorry... but I can not continue..."
msgstr ""
#: src/main.c:348
msgid "Grig configuration check failed!\n"
msgstr ""
#: src/main.c:349
msgid "This usually means that your configuration is broken.\n"
msgstr ""
#: src/main.c:352
msgid "Proposed solutions:\n"
msgstr ""
#: src/main.c:439
#, c-format
msgid "GRIG: %s %s"
msgstr "GRIG: %s %s"
#: src/main.c:484
#, c-format
msgid ""
"Received signal %d\n"
"Trying clean exit..."
msgstr ""
#: src/main.c:560
msgid ""
"Usage: grig [OPTION]...\n"
"\n"
msgstr ""
#: src/main.c:561
msgid " -m, --model=ID select radio model number; see --list\n"
msgstr ""
#: src/main.c:563
msgid " -r, --rig-file=DEVICE set device of the radio, eg. /dev/ttyS0\n"
msgstr ""
#: src/main.c:565
msgid " -s, --speed=BAUD set transfer rate (serial port only)\n"
msgstr ""
#: src/main.c:567
msgid " -c, --civaddr=ID set CI-V address (decimal, ICOM only)\n"
msgstr ""
#: src/main.c:569
msgid ""
" -C, --set-conf=param=val set config parameter (same as in rigctl)\n"
msgstr ""
#: src/main.c:571
msgid " -d, --debug=LEVEL set hamlib debug level (0..5)\n"
msgstr ""
#: src/main.c:573
msgid " -D, --delay=val set delay between commands in msec\n"
msgstr ""
#: src/main.c:575
msgid " -n, --nothread start daemon without using threads\n"
msgstr ""
#: src/main.c:577
msgid " -l, --list list supported radios and exit\n"
msgstr ""
#: src/main.c:579
msgid " -p, --enable-ptt enable PTT button\n"
msgstr ""
#: src/main.c:581
msgid " -P, --enable-pwr enable POWER button\n"
msgstr ""
#: src/main.c:583
msgid " -h, --help show this help message and exit\n"
msgstr ""
#: src/main.c:585
msgid " -v, --version show version information and exit\n"
msgstr ""
#: src/main.c:588
msgid "Example:"
msgstr "Örnek:"
#: src/main.c:590
msgid ""
"Start grig using YAESU FT-990 connected to the first serial port, using 4800 "
"baud and debug level set to warning:"
msgstr ""
#: src/main.c:596
msgid "or if you prefer the long options:"
msgstr ""
#: src/main.c:601
msgid "It is usually enough to specify the model ID and the DEVICE."
msgstr ""
#: src/main.c:604
msgid ""
"If you start grig without any options it will use the Dummy backend and set "
"the debug level to RIG_DEBUG_NONE. If you don't specify the transfer rate "
"for the serial port, the default value will be used by the backend and even "
"if you specify a value, it can be overridden by the backend."
msgstr ""
#: src/main.c:614
msgid "Debug levels:"
msgstr ""
#: src/main.c:616
msgid " 0 No debug, keep quiet.\n"
msgstr ""
#: src/main.c:617
msgid " 1 Serious bug.\n"
msgstr ""
#: src/main.c:618
msgid " 2 Error case (e.g. protocol, memory allocation).\n"
msgstr ""
#: src/main.c:619
msgid " 3 Warnings.\n"
msgstr ""
#: src/main.c:620
msgid " 4 Verbose information.\n"
msgstr ""
#: src/main.c:621
msgid " 5 Trace.\n"
msgstr ""
#: src/main.c:633
#, c-format
msgid "grig %s\n"
msgstr "grig %s\n"
#: src/main.c:634
msgid "Graphical User Interface for the Hamradio Control Libraries."
msgstr ""
#: src/main.c:637
msgid "Copyright (C) 2001-2007 Alexandru Csete."
msgstr "Telif Hakkı (C) 2001-2007 Alexandru Csete."
#: src/main.c:639
msgid "This is free software; see the source for copying conditions. "
msgstr ""
#: src/main.c:641
msgid ""
"There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A "
"PARTICULAR PURPOSE."
msgstr ""
#: src/main.c:687
msgid " ID Manufacturer Model Ver. Status\n"
msgstr ""
#: src/rig-daemon.c:397
msgid "No error"
msgstr "Hata yok"
#: src/rig-daemon.c:398
msgid "Invalid parameter"
msgstr "Geçersiz parametre"
#: src/rig-daemon.c:399
msgid "Invalid configuration"
msgstr "Geçersiz yapılanma"
#: src/rig-daemon.c:400
msgid "Memory shortage"
msgstr ""
#: src/rig-daemon.c:401
msgid "Function not implemented"
msgstr ""
#: src/rig-daemon.c:402
msgid "Communication timed out"
msgstr ""
#: src/rig-daemon.c:403
msgid "I/O error"
msgstr "G/Ç hatası"
#: src/rig-daemon.c:404
msgid "Internal Hamlib error :-("
msgstr ""
#: src/rig-daemon.c:405
msgid "Protocol error"
msgstr ""
#: src/rig-daemon.c:406
msgid "Command rejected"
msgstr ""
#: src/rig-daemon.c:407
msgid "Command performed, but arg truncated"
msgstr ""
#: src/rig-daemon.c:408
msgid "Function not available"
msgstr ""
#: src/rig-daemon.c:409
msgid "VFO not targetable"
msgstr ""
#: src/rig-daemon.c:410
msgid "BUS error"
msgstr ""
#: src/rig-daemon.c:411
msgid "Collision on the bus"
msgstr ""
#: src/rig-daemon.c:412
msgid "NULL RIG handle or invalid pointer param"
msgstr ""
#: src/rig-daemon.c:413
msgid "Invalid VFO"
msgstr ""
#: src/rig-daemon.c:414
msgid "Argument out of domain"
msgstr ""
#: src/rig-daemon.c:481
#, c-format
msgid "%s entered"
msgstr ""
#: src/rig-daemon.c:523
#, c-format
msgid "%s: Initializing rig (id=%d)"
msgstr ""
#: src/rig-daemon.c:532
#, c-format
msgid "%s: Init failed; Hamlib returned NULL!"
msgstr ""
#: src/rig-daemon.c:566
#, c-format
msgid "%s: Setting conf param (%s,%s)..."
msgstr ""
#: src/rig-daemon.c:575
#, c-format
msgid "%s: Set conf OK"
msgstr ""
#: src/rig-daemon.c:580
#, c-format
msgid "%s: Set conf failed (%d)"
msgstr ""
#: src/rig-daemon.c:600
#, c-format
msgid "%s: Failed to open rig port %s: %s (permissions?)"
msgstr ""
#: src/rig-daemon.c:611
#, c-format
msgid "%s: Init successfull, executing post-init"
msgstr ""
#: src/rig-daemon.c:618
#, c-format
msgid "%s: Starting rig daemon"
msgstr ""
#: src/rig-daemon.c:637
#, c-format
msgid "%s: Daemon timeout started, ID: %d"
msgstr ""
#: src/rig-daemon.c:658
#, c-format
msgid "%s: Failed to start daemon thread"
msgstr ""
#: src/rig-daemon.c:661
#, c-format
msgid "%s: Error %d: %s"
msgstr ""
#: src/rig-daemon.c:671
#, c-format
msgid "%s: Daemon thread started"
msgstr ""
#: src/rig-daemon.c:697
#, c-format
msgid "%s: Sending stop signal to rig daemon"
msgstr ""
#: src/rig-daemon.c:731
#, c-format
msgid "%s: Cleaning up rig"
msgstr ""
#: src/rig-daemon.c:803
#, c-format
msgid "%s: GET bits: %d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d"
msgstr ""
#: src/rig-daemon.c:826
#, c-format
msgid "%s: SET bits: %d%d%d%d%d%d%d%d%d%d%d%d%dXXX"
msgstr ""
#: src/rig-daemon.c:880
#, c-format
msgid "%s started."
msgstr "%s başladı."
#: src/rig-daemon.c:978
#, c-format
msgid "%s stopped"
msgstr "%s kapatıldı"
#: src/rig-daemon.c:1024
#, c-format
msgid "%s called."
msgstr ""
#: src/rig-daemon.c:1159
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_FREQ_1:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1186
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_FREQ_1:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1243 src/rig-daemon.c:1311
#, c-format
msgid "%s: I can't figure out available VFOs (got %d)"
msgstr ""
#: src/rig-daemon.c:1256
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_FREQ_2:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1324
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_FREQ_2:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1353
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_RIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1380
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_RIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1409
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_XIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1436
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_XIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1465
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_VFO:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1492
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_VFO:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1521
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PSTAT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1548
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PSTAT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1577
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PTT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1604
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PTT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1634
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_MODE:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1685 src/rig-daemon-check.c:409
#, c-format
msgid "%s: Found frequency range for mode %d"
msgstr ""
#: src/rig-daemon.c:1688 src/rig-daemon-check.c:412
#, c-format
msgid "%s: %.0f...(%.0f)...%.0f kHz"
msgstr "%s: %.0f...(%.0f)...%.0f kHz"
#: src/rig-daemon.c:1707
#, c-format
msgid "%s: Can not find frequency range for this mode (%d)!Bug in backend?"
msgstr ""
#: src/rig-daemon.c:1780
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_MODE:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1814
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_AGC:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1844
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_AGC:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1872
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_ATT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1900
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_ATT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1928
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PREAMP:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1958
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PREAMP:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1986
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_STRENGTH:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2015
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_POWER:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2043
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_POWER:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2070
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_SWR:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2097
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_ALC:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2126
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_ALC:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2151
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_LOCK:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2178
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_LOCK:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2202
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_VFO_TOGGLE:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2225
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_VFO_COPY:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2248
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_VFO_XCHG:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2270
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_SPLIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2291
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_SPLIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2316
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_AF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2341
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_AF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2367
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_RF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2392
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_RF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2418
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_SQL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2443
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_SQL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2469
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_IFS:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2494
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_IFS:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2520
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_APF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2545
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_APF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2571
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_NR:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2596
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_NR:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2622
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_NOTCH:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2647
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_NOTCH:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2673
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PBT_IN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2698
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PBT_IN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2724
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PBT_OUT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2749
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PBT_OUT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2775
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_CW_PITCH:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2800
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_CW_PITCH:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2826
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_KEYSPD:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2851
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_KEYSPD:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2877
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_BKINDEL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2902
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_BKINDEL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2928
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_BALANCE:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2953
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_BALANCE:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2979
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_VOXDEL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3004
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_VOXDEL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3030
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_VOXGAIN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3055
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_VOXGAIN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3081
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_ANTIVOX:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3106
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_ANTIVOX:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3132
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_MICGAIN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3157
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_MICGAIN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3184
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_COMP:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3210
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_FUNC(%s):\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3240
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_FUNC(%s):\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3259
#, c-format
msgid "%s: Unknown command %d (grig bug)"
msgstr ""
#: src/rig-daemon.c:3352
#, c-format
msgid "%s: %d"
msgstr "%s: %d"
#: src/rig-daemon-check.c:157
#, c-format
msgid "%s: Can not find VFO list for this backend! Bug in backend?"
msgstr ""
#: src/rig-daemon-check.c:430
#, c-format
msgid "%s: Can not find frequency range for this mode (%d)! Bug in backend?"
msgstr ""
#: src/rig-daemon-check.c:518
#, c-format
msgid "%s: Could not get RF power"
msgstr ""
#: src/rig-daemon-check.c:533
#, c-format
msgid "%s: Maximum RF power is %.3f watts"
msgstr ""
#: src/rig-daemon-check.c:545
#, c-format
msgid "%s: Could not get signal strength"
msgstr ""
#: src/rig-daemon-check.c:560
#, c-format
msgid "%s: Could not get SWR"
msgstr ""
#: src/rig-daemon-check.c:573
#, c-format
msgid "%s: Could not get ALC"
msgstr ""
#: src/rig-daemon-check.c:586
#, c-format
msgid "%s: Could not get AGC"
msgstr ""
#: src/rig-daemon-check.c:599
#, c-format
msgid "%s: Could not get ATT"
msgstr ""
#: src/rig-daemon-check.c:612
#, c-format
msgid "%s: Could not get PREAMP"
msgstr ""
#: src/rig-daemon-check.c:625
#, c-format
msgid "%s: Could not get AF"
msgstr ""
#: src/rig-daemon-check.c:638
#, c-format
msgid "%s: Could not get RF"
msgstr ""
#: src/rig-daemon-check.c:651
#, c-format
msgid "%s: Could not get SQL"
msgstr ""
#: src/rig-daemon-check.c:666
#, c-format
msgid "%s: Could not get IF shift"
msgstr ""
#: src/rig-daemon-check.c:679
#, c-format
msgid "%s: Could not get APF"
msgstr ""
#: src/rig-daemon-check.c:692
#, c-format
msgid "%s: Could not get NR"
msgstr ""
#: src/rig-daemon-check.c:705
#, c-format
msgid "%s: Could not get NOTCH"
msgstr ""
#: src/rig-daemon-check.c:718
#, c-format
msgid "%s: Could not get PBT IN"
msgstr ""
#: src/rig-daemon-check.c:731
#, c-format
msgid "%s: Could not get PBT OUT"
msgstr ""
#: src/rig-daemon-check.c:744
#, c-format
msgid "%s: Could not get CW pitch"
msgstr ""
#: src/rig-daemon-check.c:757
#, c-format
msgid "%s: Could not get CW speed"
msgstr ""
#: src/rig-daemon-check.c:770
#, c-format
msgid "%s: Could not get break-in delay"
msgstr ""
#: src/rig-daemon-check.c:783
#, c-format
msgid "%s: Could not get balance"
msgstr ""
#: src/rig-daemon-check.c:796
#, c-format
msgid "%s: Could not get VOX delay"
msgstr ""
#: src/rig-daemon-check.c:809
#, c-format
msgid "%s: Could not get VOX gain"
msgstr ""
#: src/rig-daemon-check.c:822
#, c-format
msgid "%s: Could not get anti-vox"
msgstr ""
#: src/rig-daemon-check.c:835
#, c-format
msgid "%s: Could not get compression level"
msgstr ""
#: src/rig-daemon-check.c:848
#, c-format
msgid "%s: Could not get MIC gain"
msgstr ""
#: src/rig-daemon-check.c:954
#, c-format
msgid "%s: Could not get LOCK status"
msgstr ""
#: src/rig-daemon-check.c:969
#, c-format
msgid "%s: Could not get %s status"
msgstr ""
#: src/rig-data.c:352 src/rig-data.c:544
#, c-format
msgid "%s: Invalid target: %d\n"
msgstr ""
#: src/rig-gui-buttons.c:148 src/rig-gui-smeter.c:75
msgid "Power"
msgstr "Güç"
#: src/rig-gui-buttons.c:149
msgid "Power status"
msgstr ""
#: src/rig-gui-buttons.c:193
msgid "PTT"
msgstr ""
#: src/rig-gui-buttons.c:194
msgid "Push to talk"
msgstr ""
#: src/rig-gui-buttons.c:238
msgid "Lock"
msgstr ""
#: src/rig-gui-buttons.c:239
msgid "Lock tuning dial"
msgstr ""
#: src/rig-gui-buttons.c:284
msgid "ATT OFF"
msgstr ""
#: src/rig-gui-buttons.c:307
msgid "Attenuator level"
msgstr ""
#: src/rig-gui-buttons.c:344
msgid "PREAMP OFF"
msgstr ""
#: src/rig-gui-buttons.c:367
msgid "Preamp level"
msgstr ""
#: src/rig-gui-ctrl2.c:86 src/rig-gui-info-data.h:172
msgid "AM"
msgstr ""
#: src/rig-gui-ctrl2.c:87 src/rig-gui-info-data.h:165
#: src/rig-gui-info-data.h:173
msgid "CW"
msgstr ""
#: src/rig-gui-ctrl2.c:88 src/rig-gui-info-data.h:174
msgid "USB"
msgstr "USB"
#: src/rig-gui-ctrl2.c:89 src/rig-gui-info-data.h:175
msgid "LSB"
msgstr ""
#: src/rig-gui-ctrl2.c:90 src/rig-gui-info-data.h:176
msgid "RTTY"
msgstr ""
#: src/rig-gui-ctrl2.c:91
msgid "FM Narrow"
msgstr ""
#: src/rig-gui-ctrl2.c:92
msgid "FM Wide"
msgstr ""
#: src/rig-gui-ctrl2.c:93
msgid "CW Rev"
msgstr ""
#: src/rig-gui-ctrl2.c:94
msgid "RTTY Rev"
msgstr ""
#: src/rig-gui-ctrl2.c:95
msgid "AM Synch"
msgstr ""
#: src/rig-gui-ctrl2.c:96
msgid "Pkt (LSB)"
msgstr ""
#: src/rig-gui-ctrl2.c:97
msgid "Pkt (USB)"
msgstr ""
#: src/rig-gui-ctrl2.c:98
msgid "Pkt (FM)"
msgstr ""
#: src/rig-gui-ctrl2.c:99
msgid "ECUSB"
msgstr ""
#: src/rig-gui-ctrl2.c:100
msgid "ECLSB"
msgstr ""
#: src/rig-gui-ctrl2.c:101 src/rig-gui-info-data.h:187
msgid "FAX"
msgstr ""
#: src/rig-gui-ctrl2.c:207
msgid "AGC OFF"
msgstr ""
#: src/rig-gui-ctrl2.c:208
msgid "Super Fast"
msgstr ""
#: src/rig-gui-ctrl2.c:209
msgid "Fast"
msgstr "Hızlı"
#: src/rig-gui-ctrl2.c:210
msgid "Medium"
msgstr "Normal"
#: src/rig-gui-ctrl2.c:211
msgid "Slow"
msgstr ""
#: src/rig-gui-ctrl2.c:212
msgid "Auto"
msgstr "Otomaik"
#: src/rig-gui-ctrl2.c:214
msgid "Automatic Gain Control Level"
msgstr ""
#: src/rig-gui-ctrl2.c:320
msgid "Communication mode"
msgstr ""
#: src/rig-gui-ctrl2.c:359
msgid "Wide"
msgstr ""
#: src/rig-gui-ctrl2.c:360
msgid "Normal"
msgstr "Normal"
#: src/rig-gui-ctrl2.c:361
msgid "Narrow"
msgstr ""
#: src/rig-gui-ctrl2.c:362
msgid "[User]"
msgstr ""
#: src/rig-gui-ctrl2.c:384
msgid "Passband Width"
msgstr ""
#: src/rig-gui-ctrl2.c:443
#, c-format
msgid "ANT %d"
msgstr ""
#: src/rig-gui-ctrl2.c:460
msgid "Antenna Port"
msgstr ""
#: src/rig-gui-func.c:82
#, c-format
msgid "%s: FUNC window already visible."
msgstr ""
#: src/rig-gui-func.c:93
#, c-format
msgid "%s (Special Functions)"
msgstr ""
#: src/rig-gui-func.c:160
#, c-format
msgid "%s: FUNC window is not visible."
msgstr ""
#: src/rig-gui-func.c:185 src/rig-gui-rx.c:242 src/rig-gui-tx.c:238
#, c-format
msgid "%s:%d: Invalid level %d"
msgstr ""
#: src/rig-gui-func.c:227 src/rig-gui-rx.c:507 src/rig-gui-tx.c:463
msgid "Rig has no support."
msgstr ""
#: src/rig-gui-info.c:115
msgid "Radio Info"
msgstr ""
#: src/rig-gui-info.c:250
msgid "RIT:"
msgstr ""
#: src/rig-gui-info.c:270
msgid "XIT:"
msgstr ""
#: src/rig-gui-info.c:289
msgid "IF-SHIFT:"
msgstr ""
#: src/rig-gui-info.c:308
msgid "Max. Offsets"
msgstr ""
#: src/rig-gui-info.c:346
msgid "LEVEL"
msgstr "SEVİYE"
#: src/rig-gui-info.c:356 src/rig-gui-info.c:987
msgid "READ"
msgstr ""
#: src/rig-gui-info.c:364 src/rig-gui-info.c:995
msgid "WRITE"
msgstr ""
#: src/rig-gui-info.c:392 src/rig-gui-info.c:401 src/rig-gui-info.c:1023
#: src/rig-gui-info.c:1032 src/rig-gui-info.c:1110
msgid "-"
msgstr "-"
#: src/rig-gui-info.c:397 src/rig-gui-info.c:406 src/rig-gui-info.c:1028
#: src/rig-gui-info.c:1037 src/rig-gui-info.c:1115
msgid "X"
msgstr "X"
#: src/rig-gui-info.c:442
msgid "Port Type:"
msgstr ""
#: src/rig-gui-info.c:460 src/rig-gui-info.c:489 src/rig-gui-info.c:518
#: src/rig-gui-info.c:632 src/rig-gui-info.c:667
msgid "Unknown"
msgstr "Bilinmeyen"
#: src/rig-gui-info.c:471
msgid "DCD Type:"
msgstr ""
#: src/rig-gui-info.c:500
msgid "PTT Type:"
msgstr ""
#: src/rig-gui-info.c:529
msgid "Serial Speed:"
msgstr ""
#: src/rig-gui-info.c:540
#, c-format
msgid "%d..%d baud"
msgstr ""
#: src/rig-gui-info.c:547 src/rig-gui-info.c:574 src/rig-gui-info.c:601
#: src/rig-gui-info.c:636 src/rig-gui-info.c:671 src/rig-gui-info-data.h:67
#: src/rig-gui-info-data.h:68 src/rig-gui-info-data.h:69
#: src/rig-gui-info-data.h:103
msgid "N/A"
msgstr "YOK"
#: src/rig-gui-info.c:558
msgid "Data bits:"
msgstr ""
#: src/rig-gui-info.c:585
msgid "Stop bits:"
msgstr ""
#: src/rig-gui-info.c:612
msgid "Parity:"
msgstr ""
#: src/rig-gui-info.c:647
msgid "Handshake:"
msgstr ""
#: src/rig-gui-info.c:683
msgid "Interface"
msgstr "Arayüz"
#: src/rig-gui-info.c:720
msgid "STEP"
msgstr ""
#: src/rig-gui-info.c:730
msgid "MODES"
msgstr ""
#: src/rig-gui-info.c:845
msgid "PREAMP:"
msgstr ""
#: src/rig-gui-info.c:893
msgid "ATT:"
msgstr ""
#: src/rig-gui-info.c:939
msgid "Front End"
msgstr ""
#: src/rig-gui-info.c:977
msgid "FUNCTION"
msgstr ""
#: src/rig-gui-info.c:1071
msgid "VFO OP"
msgstr ""
#: src/rig-gui-info.c:1081
msgid "SET"
msgstr ""
#: src/rig-gui-info-data.h:44
msgid "PREAMP"
msgstr ""
#: src/rig-gui-info-data.h:45
msgid "ATT"
msgstr ""
#: src/rig-gui-info-data.h:46 src/rig-gui-info-data.h:82
msgid "VOX"
msgstr ""
#: src/rig-gui-info-data.h:47
msgid "AF"
msgstr ""
#: src/rig-gui-info-data.h:48
msgid "RF"
msgstr ""
#: src/rig-gui-info-data.h:49 src/rig-gui-info-data.h:99
msgid "SQL"
msgstr "SQL"
#: src/rig-gui-info-data.h:50
msgid "IF"
msgstr ""
#: src/rig-gui-info-data.h:51 src/rig-gui-info-data.h:90 src/rig-gui-rx.c:412
msgid "APF"
msgstr ""
#: src/rig-gui-info-data.h:52 src/rig-gui-info-data.h:88
msgid "NR"
msgstr ""
#: src/rig-gui-info-data.h:53
msgid "PBT_IN"
msgstr ""
#: src/rig-gui-info-data.h:54
msgid "PBT_OUT"
msgstr ""
#: src/rig-gui-info-data.h:55
msgid "CWPITCH"
msgstr ""
#: src/rig-gui-info-data.h:56
msgid "RFPOWER"
msgstr ""
#: src/rig-gui-info-data.h:57
msgid "MICGAIN"
msgstr ""
#: src/rig-gui-info-data.h:58
msgid "KEYSPD"
msgstr ""
#: src/rig-gui-info-data.h:59
msgid "NOTCHF"
msgstr ""
#: src/rig-gui-info-data.h:60
msgid "COMP"
msgstr ""
#: src/rig-gui-info-data.h:61
msgid "AGC"
msgstr ""
#: src/rig-gui-info-data.h:62
msgid "BKINDL"
msgstr ""
#: src/rig-gui-info-data.h:63
msgid "BALANCE"
msgstr ""
#: src/rig-gui-info-data.h:64
msgid "METER"
msgstr ""
#: src/rig-gui-info-data.h:65
msgid "VOXGAIN"
msgstr ""
#: src/rig-gui-info-data.h:66
msgid "ANTIVOX"
msgstr ""
#: src/rig-gui-info-data.h:70
msgid "RAWSTR"
msgstr ""
#: src/rig-gui-info-data.h:71
msgid "SQLSTAT"
msgstr ""
#: src/rig-gui-info-data.h:72 src/rig-gui-smeter.c:76
msgid "SWR"
msgstr ""
#: src/rig-gui-info-data.h:73 src/rig-gui-smeter.c:77 src/rig-gui-tx.c:347
msgid "ALC"
msgstr ""
#: src/rig-gui-info-data.h:74
msgid "STRENGTH"
msgstr ""
#: src/rig-gui-info-data.h:79
msgid "FAST AGC"
msgstr ""
#: src/rig-gui-info-data.h:80
msgid "NB"
msgstr ""
#: src/rig-gui-info-data.h:81 src/rig-gui-tx.c:388
msgid "COMPR"
msgstr ""
#: src/rig-gui-info-data.h:83
msgid "TONE"
msgstr ""
#: src/rig-gui-info-data.h:84
msgid "CTCSS"
msgstr ""
#: src/rig-gui-info-data.h:85
msgid "SEMI BK"
msgstr ""
#: src/rig-gui-info-data.h:86
msgid "FULL BK"
msgstr ""
#: src/rig-gui-info-data.h:87
msgid "ANF"
msgstr ""
#: src/rig-gui-info-data.h:89
msgid "AIP"
msgstr ""
#: src/rig-gui-info-data.h:91
msgid "MON"
msgstr ""
#: src/rig-gui-info-data.h:92
msgid "MAN NOTCH"
msgstr ""
#: src/rig-gui-info-data.h:93
msgid "RNF"
msgstr ""
#: src/rig-gui-info-data.h:94
msgid "AUTO RO"
msgstr ""
#: src/rig-gui-info-data.h:95
msgid "LOCK"
msgstr ""
#: src/rig-gui-info-data.h:96
msgid "MUTE"
msgstr ""
#: src/rig-gui-info-data.h:97
msgid "VOICE SCAN"
msgstr ""
#: src/rig-gui-info-data.h:98
msgid "REV TRX"
msgstr ""
#: src/rig-gui-info-data.h:100
msgid "ABM"
msgstr ""
#: src/rig-gui-info-data.h:101
msgid "BEAT CANC"
msgstr ""
#: src/rig-gui-info-data.h:102
msgid "MAN BC"
msgstr ""
#: src/rig-gui-info-data.h:104
msgid "AFC"
msgstr ""
#: src/rig-gui-info-data.h:105
msgid "SATMODE"
msgstr ""
#: src/rig-gui-info-data.h:106
msgid "SCOPE"
msgstr ""
#: src/rig-gui-info-data.h:107
msgid "RESUME"
msgstr ""
#: src/rig-gui-info-data.h:108
msgid "TBURST"
msgstr ""
#: src/rig-gui-info-data.h:109
msgid "TUNER"
msgstr ""
#: src/rig-gui-info-data.h:114 src/rig-gui-info-data.h:123
#: src/rig-gui-info-data.h:134 src/rig-gui-info-data.h:148
#: src/rig-gui-info-data.h:155 src/rig-gui-smeter.c:74
msgid "None"
msgstr "Yok"
#: src/rig-gui-info-data.h:115 src/rig-gui-info-data.h:124
msgid "Legacy"
msgstr ""
#: src/rig-gui-info-data.h:116
msgid "SER_DTR"
msgstr ""
#: src/rig-gui-info-data.h:117
msgid "SER_RTS"
msgstr ""
#: src/rig-gui-info-data.h:118 src/rig-gui-info-data.h:128
msgid "PARPORT"
msgstr ""
#: src/rig-gui-info-data.h:125
msgid "SER_DSR"
msgstr ""
#: src/rig-gui-info-data.h:126
msgid "SER_CTS"
msgstr ""
#: src/rig-gui-info-data.h:127
msgid "SER_CAR"
msgstr ""
#: src/rig-gui-info-data.h:135
msgid "Serial"
msgstr ""
#: src/rig-gui-info-data.h:136
msgid "Network"
msgstr "Ağ"
#: src/rig-gui-info-data.h:137
msgid "Device"
msgstr "Aygıt"
#: src/rig-gui-info-data.h:138
msgid "Packet"
msgstr ""
#: src/rig-gui-info-data.h:139
msgid "DTMF"
msgstr ""
#: src/rig-gui-info-data.h:140
msgid "IrDA"
msgstr "IrDA"
#: src/rig-gui-info-data.h:141
msgid "RPC"
msgstr ""
#: src/rig-gui-info-data.h:142
msgid "Parallel"
msgstr "Paralel"
#: src/rig-gui-info-data.h:149
msgid "Odd"
msgstr ""
#: src/rig-gui-info-data.h:150
msgid "Even"
msgstr ""
#: src/rig-gui-info-data.h:156
msgid "XONXOFF"
msgstr ""
#: src/rig-gui-info-data.h:157
msgid "Hardware"
msgstr "Donanım"
#: src/rig-gui-info-data.h:162
msgid "OFF"
msgstr "KAPALI"
#: src/rig-gui-info-data.h:163
msgid "FREQ"
msgstr "FREKANS"
#: src/rig-gui-info-data.h:164
msgid "RXMODE"
msgstr ""
#: src/rig-gui-info-data.h:166
msgid "EMG"
msgstr ""
#: src/rig-gui-info-data.h:167
msgid "JAP"
msgstr ""
#: src/rig-gui-info-data.h:177
msgid "FM"
msgstr ""
#: src/rig-gui-info-data.h:178
msgid "WFM"
msgstr ""
#: src/rig-gui-info-data.h:179
msgid "CWR"
msgstr ""
#: src/rig-gui-info-data.h:180
msgid "RTTYR"
msgstr ""
#: src/rig-gui-info-data.h:181
msgid "AMS"
msgstr ""
#: src/rig-gui-info-data.h:182
msgid "PKTLSB"
msgstr ""
#: src/rig-gui-info-data.h:183
msgid "PKTUSB"
msgstr ""
#: src/rig-gui-info-data.h:184
msgid "PKTFM"
msgstr ""
#: src/rig-gui-info-data.h:185
msgid "ECSSUSB"
msgstr ""
#: src/rig-gui-info-data.h:186
msgid "ECSSLSB"
msgstr ""
#: src/rig-gui-info-data.h:193
msgid "COPY A=B"
msgstr ""
#: src/rig-gui-info-data.h:194
msgid "XCHG A/B"
msgstr ""
#: src/rig-gui-info-data.h:195
msgid "VFO->MEM"
msgstr ""
#: src/rig-gui-info-data.h:196
msgid "MEM->VFO"
msgstr ""
#: src/rig-gui-info-data.h:197
msgid "MEMCLEAR"
msgstr ""
#: src/rig-gui-info-data.h:198
msgid "UP"
msgstr ""
#: src/rig-gui-info-data.h:199
msgid "DOWN"
msgstr ""
#: src/rig-gui-info-data.h:200
msgid "BAND UP"
msgstr ""
#: src/rig-gui-info-data.h:201
msgid "BAND DOWN"
msgstr ""
#: src/rig-gui-info-data.h:202
msgid "LEFT"
msgstr ""
#: src/rig-gui-info-data.h:203
msgid "RIGHT"
msgstr ""
#: src/rig-gui-info-data.h:204
msgid "TUNE"
msgstr ""
#: src/rig-gui-info-data.h:205
msgid "TOGGLE"
msgstr ""
#: src/rig-gui-keypad.c:289
msgid "ENT"
msgstr ""
#: src/rig-gui-keypad.c:291
msgid "Begin manual frequency entry mode"
msgstr ""
#: src/rig-gui-keypad.c:301
msgid "CLR"
msgstr ""
#: src/rig-gui-keypad.c:303
msgid "Clear manual frequency entry mode"
msgstr ""
#: src/rig-gui-lcd.c:1396
msgid "kHz"
msgstr "kHz"
#: src/rig-gui-lcd.c:1421
msgid "RIT"
msgstr ""
#: src/rig-gui-lcd.c:1472
msgid "VFO A"
msgstr ""
#: src/rig-gui-lcd.c:1476
msgid "VFO B"
msgstr ""
#: src/rig-gui-lcd.c:1480
msgid "VFO C"
msgstr ""
#: src/rig-gui-lcd.c:1484
msgid "MAIN VFO"
msgstr ""
#: src/rig-gui-lcd.c:1488
msgid "SUB VFO"
msgstr ""
#: src/rig-gui-lcd.c:1492
msgid "MEM"
msgstr ""
#: src/rig-gui-lcd.c:1496
msgid "VFO ?"
msgstr ""
#: src/rig-gui-levels.c:52
msgid "Level Controls"
msgstr ""
#: src/rig-gui-levels.c:53
msgid "Show/hide level controls"
msgstr ""
#: src/rig-gui-message-window.c:65
msgid "Time"
msgstr ""
#: src/rig-gui-message-window.c:66
msgid "Source"
msgstr "Kaynak"
#: src/rig-gui-message-window.c:67
msgid "Level"
msgstr "Seviye"
#: src/rig-gui-message-window.c:68
msgid "Message"
msgstr "İleti"
#: src/rig-gui-message-window.c:79
msgid "BUG"
msgstr ""
#: src/rig-gui-message-window.c:81
msgid "WARNING"
msgstr "UYARI"
#: src/rig-gui-message-window.c:82
msgid "DEBUG"
msgstr ""
#: src/rig-gui-message-window.c:83
msgid "TRACE"
msgstr ""
#: src/rig-gui-message-window.c:162
msgid "Grig Message Window"
msgstr ""
#: src/rig-gui-message-window.c:407
msgid "Open Debug File"
msgstr ""
#: src/rig-gui-message-window.c:476
msgid "SYS"
msgstr ""
#: src/rig-gui-message-window.c:486
msgid "Log file seems corrupt"
msgstr ""
#: src/rig-gui-message-window.c:509
#, c-format
msgid "%s:%d: Error open debug log (%s)"
msgstr ""
#: src/rig-gui-message-window.c:681
msgid "Hamlib"
msgstr ""
#: src/rig-gui-message-window.c:693
msgid "Other"
msgstr "Diğer"
#: src/rig-gui-message-window.c:703
msgid "Bugs"
msgstr ""
#: src/rig-gui-message-window.c:709
msgid "Errors"
msgstr "Hatalar"
#: src/rig-gui-message-window.c:715
msgid "Warning"
msgstr "Uyarı"
#: src/rig-gui-message-window.c:721
msgid "Verbose"
msgstr ""
#: src/rig-gui-message-window.c:727
msgid "Trace"
msgstr ""
#: src/rig-gui-message-window.c:740
msgid "Total"
msgstr "Toplam"
#: src/rig-gui-message-window.c:765
msgid " Summary "
msgstr ""
#: src/rig-gui-rx.c:97
#, c-format
msgid "%s: RX window already visible."
msgstr ""
#: src/rig-gui-rx.c:108
#, c-format
msgid "%s (RX Levels)"
msgstr ""
#: src/rig-gui-rx.c:172
#, c-format
msgid "%s: RX window is not visible."
msgstr ""
#: src/rig-gui-rx.c:284
msgid "AF Gain"
msgstr ""
#: src/rig-gui-rx.c:304
msgid "RF Gain"
msgstr ""
#: src/rig-gui-rx.c:331
msgid "IF Shift"
msgstr ""
#: src/rig-gui-rx.c:351
msgid "CW Pitch"
msgstr ""
#: src/rig-gui-rx.c:371
msgid "PBT In"
msgstr ""
#: src/rig-gui-rx.c:391
msgid "PBT Out"
msgstr ""
#: src/rig-gui-rx.c:432
msgid "N.R."
msgstr ""
#: src/rig-gui-rx.c:452
msgid "NOTCH"
msgstr ""
#: src/rig-gui-rx.c:472
msgid "Squelch"
msgstr ""
#: src/rig-gui-rx.c:492
msgid "Balance"
msgstr "Denge"
#: src/rig-gui-smeter.c:83
msgid "0..5"
msgstr "0..5"
#: src/rig-gui-smeter.c:84
msgid "0..10"
msgstr "0..10"
#: src/rig-gui-smeter.c:85
msgid "0..50"
msgstr "0..50"
#: src/rig-gui-smeter.c:86
msgid "0..100"
msgstr "0..100"
#: src/rig-gui-smeter.c:87
msgid "0..500"
msgstr "0..500"
#: src/rig-gui-smeter.c:430
msgid "Select TX mode for the meter"
msgstr ""
#: src/rig-gui-smeter.c:479
msgid "Select TX meter scale"
msgstr ""
#: src/rig-gui-tx.c:98
#, c-format
msgid "%s: TX window already visible."
msgstr ""
#: src/rig-gui-tx.c:109
#, c-format
msgid "%s (TX Levels)"
msgstr ""
#: src/rig-gui-tx.c:176
#, c-format
msgid "%s: TX window is not visible."
msgstr ""
#: src/rig-gui-tx.c:286
msgid "CW SPD"
msgstr ""
#: src/rig-gui-tx.c:306
msgid "BKIN DEL"
msgstr ""
#: src/rig-gui-tx.c:326
msgid "POWER"
msgstr ""
#: src/rig-gui-tx.c:368
msgid "MIC GAIN"
msgstr ""
#: src/rig-gui-tx.c:408
msgid "VOX GAIN"
msgstr ""
#: src/rig-gui-tx.c:428
msgid "VOX DEL"
msgstr ""
#: src/rig-gui-tx.c:448
msgid "ANTI VOX"
msgstr ""
#: src/rig-gui-vfo.c:119
msgid "Main / Sub"
msgstr ""
#: src/rig-gui-vfo.c:120
msgid "Toggle active VFO"
msgstr ""
#: src/rig-gui-vfo.c:123
msgid "A / B"
msgstr ""
#: src/rig-gui-vfo.c:124
msgid "Toggle between available VFOs"
msgstr ""
#: src/rig-gui-vfo.c:235
msgid "Main = Sub"
msgstr ""
#: src/rig-gui-vfo.c:236
msgid "Set Main VFO = Sub VFO"
msgstr ""
#: src/rig-gui-vfo.c:239
msgid "A = B"
msgstr "A = B"
#: src/rig-gui-vfo.c:240
msgid "Set VFO B = VFO A"
msgstr ""
#: src/rig-gui-vfo.c:304
msgid "Main«»Sub"
msgstr ""
#: src/rig-gui-vfo.c:305
msgid "Exchange Main and sub VFOs"
msgstr ""
#: src/rig-gui-vfo.c:308
msgid "A«»B"
msgstr "A«»B"
#: src/rig-gui-vfo.c:309
msgid "Exchange VFO A and B"
msgstr ""
#: src/rig-gui-vfo.c:370
msgid "Split"
msgstr ""
#: src/rig-gui-vfo.c:371
msgid "Toggle split mode operation"
msgstr ""
#: src/rig-gui-vfo.c:399
msgid "M / V"
msgstr ""
#: src/rig-gui-vfo.c:400
msgid "Toggle between memory and VFO"
msgstr ""
#: src/rig-selector.c:116
msgid ""
"Connect to the selected radio.Grig will attempt to establish connection to "
"the selected radio using the specified settings. If the connection is "
"successful, the main application window will be loaded."
msgstr ""
#: src/rig-selector.c:125
msgid "Cancel radio selection. This will end grig."
msgstr ""
#: src/rig-selector.c:130
msgid ""
"Add a new radio to the list.A new configuration window will be shown "
"allowing you to select a radio and specify the connection settings."
msgstr ""
#: src/rig-selector.c:139
msgid "Delete the currently selected radio."
msgstr ""
#: src/rig-selector.c:145
msgid "Edit the settings for the currently selected radio."
msgstr ""
#: src/rig-selector.c:170
msgid "Select a Radio"
msgstr ""
#: src/rig-selector.c:230
msgid "Company"
msgstr ""
#: src/rig-selector.c:236
msgid "Model"
msgstr "Model"
#: src/rig-selector.c:242
msgid "Port"
msgstr ""
#: src/rig-selector.c:248
msgid "Speed"
msgstr "Hız"
#: src/rig-selector.c:254
msgid "CI-V"
msgstr ""
#: src/rig-selector.c:262
msgid "DTR"
msgstr ""
#: src/rig-selector.c:270
msgid "RTS"
msgstr ""
#: src/rig-selector.c:483
#, c-format
msgid "%s:%s: Failed to delete %s"
msgstr ""
#: src/rig-selector.c:488
#, c-format
msgid "%s:%s: Removed %s"
msgstr ""
#: src/rig-state.c:130
msgid "Load Rig State"
msgstr ""
#: src/rig-state.c:139 src/rig-state.c:262
msgid "Rig state files (*.rig)"
msgstr ""
#: src/rig-state.c:144 src/rig-state.c:267
msgid "All files"
msgstr "Tüm dosyalar"
#: src/rig-state.c:164
#, c-format
msgid ""
"There was an error reading the settings from:\n"
"\n"
" %s\n"
"\n"
" Examine the log messages for further info."
msgstr ""
#: src/rig-state.c:182
#, c-format
msgid ""
"The selected file:\n"
" %s\n"
" does not exist or is not a regular file."
msgstr ""
#: src/rig-state.c:253
msgid "Save Rig State"
msgstr ""
#: src/rig-state.c:283
#, c-format
msgid ""
"%s: User selected new file:\n"
"%s"
msgstr ""
#: src/rig-state.c:295
msgid ""
"Selected file already exists.\n"
"Overwrite file?"
msgstr ""
#: src/rig-state.c:313 src/rig-state.c:347
#, c-format
msgid ""
"There was an error saving the settings to:\n"
"\n"
" %s\n"
"\n"
" Examine the log messages for further info."
msgstr ""
#: src/rig-state.c:406
#, c-format
msgid "%s: Error loading rig file (%s)"
msgstr ""
#: src/rig-state.c:419
#, c-format
msgid "%s: Error reading rig id (%s)"
msgstr ""
#: src/rig-state.c:430
#, c-format
msgid ""
"%s: ID mismatch detected: state id is %d\n"
"while current rig id is %d"
msgstr ""
#: src/rig-state.c:449
#, c-format
msgid "%s: Applying settings (model=%d)"
msgstr ""
#: src/rig-state.c:579
#, c-format
msgid "%s: RIG ID is invalid (%d)"
msgstr ""
#: src/rig-state.c:654
#, c-format
msgid "%s: Error building state data (%s)"
msgstr ""
#: src/rig-state.c:665
#, c-format
msgid ""
"%s: Could not create data file (%s)\n"
"%s"
msgstr ""
#: src/rig-state.c:682
#, c-format
msgid "%s: Error writing config data (%s)"
msgstr ""
#: src/rig-state.c:689
#, c-format
msgid "%s: Wrote only %d instead of %d chars"
msgstr ""
#: src/rig-state.c:695
#, c-format
msgid ""
"%s: Rig state saved successfully to\n"
"%s."
msgstr ""
#: src/rig-state.c:724
#, c-format
msgid ""
"Selected rig state has been saved for model %d,\n"
"while the current rig model is %d.\n"
"Do you want to try to apply settings?"
msgstr ""
#: src/rig-state.c:771 src/rig-state.c:826 src/rig-state.c:869
#: src/rig-state.c:909
#, c-format
msgid ""
"%s:%d: Could nor read param %s::%s\n"
"(%s)"
msgstr ""
#: src/rig-state.c:788
#, c-format
msgid ""
"%s:%d:\n"
"FLOAT value out of range: %.2f\n"
"Floats expected to be between 0.0 and 1.0"
msgstr ""
grig-0.8.1/po/grig.pot 0000664 0001750 0001750 00000125150 12635615157 011504 0000000 0000000 # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Alexandru Csete
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR , YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: grig 0.8.1\n"
"Report-Msgid-Bugs-To: groundstation-developer@lists.sourcforge.net\n"
"POT-Creation-Date: 2015-12-20 22:15+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/grig-about.c:58
msgid ""
"Copyright (C) 2001-2009 Alexandru Csete OZ9AEC>\n"
"\n"
"Grig is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published\n"
"by the Free Software Foundation; either version 2 of the License,\n"
"or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Library General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, you can find a copy on the FSF\n"
"website http://www.fsf.org/ or you can write to the\n"
"\n"
"Free Software Foundation, Inc.\n"
"51 Franklin Street - Fifth Floor\n"
"Boston\n"
"MA 02110-1301\n"
"USA.\n"
msgstr ""
#: src/grig-about.c:91 src/rig-gui-message-window.c:687
msgid "Grig"
msgstr ""
#: src/grig-about.c:94
msgid "Copyright (C) 2001-2007 Alexandru Csete OZ9AEC"
msgstr ""
#: src/grig-about.c:98
msgid "Grig Website"
msgstr ""
#: src/grig-about.c:108
msgid "translator-credits"
msgstr ""
#: src/grig-config.c:68
msgid "Checking GRIG configuration."
msgstr ""
#: src/grig-config.c:106
#, c-format
msgid "..Configuration directory: %s"
msgstr ""
#: src/grig-config.c:107 src/rig-gui-message-window.c:80
msgid "ERROR"
msgstr ""
#: src/grig-config.c:107
msgid "OK"
msgstr ""
#: src/grig-config.c:147
msgid "..Radio config files:"
msgstr ""
#: src/grig-config.c:155
#, c-format
msgid "%s: %s"
msgstr ""
#: src/grig-config.c:172
#, c-format
msgid "....%s OK"
msgstr ""
#: src/grig-debug.c:60 src/rig-gui-message-window.c:78
msgid "NONE"
msgstr ""
#: src/grig-debug.c:60
msgid "HAMLIB"
msgstr ""
#: src/grig-debug.c:60 src/rig-gui-message-window.c:485
msgid "GRIG"
msgstr ""
#: src/grig-debug.c:89
#, c-format
msgid "%s: Debug handler initialised."
msgstr ""
#: src/grig-debug.c:106
#, c-format
msgid "%s: Shutting down debug handler."
msgstr ""
#: src/grig-menubar.c:59
msgid "_Radio"
msgstr ""
#: src/grig-menubar.c:60
msgid "_Settings"
msgstr ""
#: src/grig-menubar.c:61
msgid "_View"
msgstr ""
#: src/grig-menubar.c:62
msgid "_Tools"
msgstr ""
#: src/grig-menubar.c:63
msgid "_Help"
msgstr ""
#: src/grig-menubar.c:66
msgid "_Info"
msgstr ""
#: src/grig-menubar.c:66
msgid "Show info about radio"
msgstr ""
#: src/grig-menubar.c:67
msgid "St_op daemon"
msgstr ""
#: src/grig-menubar.c:67
msgid "Stop the Grig daemon"
msgstr ""
#: src/grig-menubar.c:68
msgid "St_art daemon"
msgstr ""
#: src/grig-menubar.c:68
msgid "Start the Grig daemon"
msgstr ""
#: src/grig-menubar.c:69
msgid "_Save State"
msgstr ""
#: src/grig-menubar.c:69
msgid "Save the state of the rig to a file"
msgstr ""
#: src/grig-menubar.c:70
msgid "_Load State"
msgstr ""
#: src/grig-menubar.c:70
msgid "Load the state of the rig from a file"
msgstr ""
#: src/grig-menubar.c:71
msgid "E_xit"
msgstr ""
#: src/grig-menubar.c:71
msgid "Exit the program"
msgstr ""
#: src/grig-menubar.c:74
msgid "_Debug Level"
msgstr ""
#: src/grig-menubar.c:74
msgid "Set Hamlib debug level"
msgstr ""
#: src/grig-menubar.c:77
msgid "Message _Window"
msgstr ""
#: src/grig-menubar.c:77
msgid "Show window with debug messages"
msgstr ""
#: src/grig-menubar.c:80
msgid "_SW Memory"
msgstr ""
#: src/grig-menubar.c:80
msgid "Software Memory Mamager"
msgstr ""
#: src/grig-menubar.c:81
msgid "_Band Map"
msgstr ""
#: src/grig-menubar.c:81
msgid "Show the band map"
msgstr ""
#: src/grig-menubar.c:82
msgid "S_pectrum Scope"
msgstr ""
#: src/grig-menubar.c:82
msgid "Show the spectrum scope"
msgstr ""
#: src/grig-menubar.c:85
msgid "_About Grig"
msgstr ""
#: src/grig-menubar.c:85
msgid "Show about dialog"
msgstr ""
#: src/grig-menubar.c:91
msgid "_No Debug"
msgstr ""
#: src/grig-menubar.c:91
msgid "Don't show any debug mesages"
msgstr ""
#: src/grig-menubar.c:92
msgid "_Bug"
msgstr ""
#: src/grig-menubar.c:92
msgid "Show error messages caused by possible bugs"
msgstr ""
#: src/grig-menubar.c:93
msgid "_Error"
msgstr ""
#: src/grig-menubar.c:93
msgid "Show run-time error messages"
msgstr ""
#: src/grig-menubar.c:94
msgid "_Warning"
msgstr ""
#: src/grig-menubar.c:94
msgid "Show warnings"
msgstr ""
#: src/grig-menubar.c:95
msgid "_Verbose"
msgstr ""
#: src/grig-menubar.c:95
msgid "Verbose reporting"
msgstr ""
#: src/grig-menubar.c:96
msgid "_Trace"
msgstr ""
#: src/grig-menubar.c:96
msgid "Trace everything"
msgstr ""
#: src/grig-menubar.c:102
msgid "_RX Level Controls"
msgstr ""
#: src/grig-menubar.c:102
msgid "Show receiver level controls"
msgstr ""
#: src/grig-menubar.c:103
msgid "_TX Level Controls"
msgstr ""
#: src/grig-menubar.c:103
msgid "Show transmitter level controls"
msgstr ""
#: src/grig-menubar.c:104
msgid "_DCS/CTCSS"
msgstr ""
#: src/grig-menubar.c:104
msgid "Show DCS and CTCSS controls"
msgstr ""
#: src/grig-menubar.c:105
msgid "_Special Functions"
msgstr ""
#: src/grig-menubar.c:105
msgid "Radio specific functions"
msgstr ""
#: src/grig-menubar.c:217
#, c-format
msgid "Failed to build menubar: %s"
msgstr ""
#: src/key-press-handler.c:57
msgid "Initialising key press handler"
msgstr ""
#: src/key-press-handler.c:67
msgid "Closing key press handler"
msgstr ""
#: src/main.c:170
msgid "Grig can not find some necessary data files.\n"
msgstr ""
#: src/main.c:171
msgid "This usually means that your installation is incomplete.\n"
msgstr ""
#: src/main.c:172 src/main.c:350
msgid "Sorry... but I can not continue..."
msgstr ""
#: src/main.c:348
msgid "Grig configuration check failed!\n"
msgstr ""
#: src/main.c:349
msgid "This usually means that your configuration is broken.\n"
msgstr ""
#: src/main.c:352
msgid "Proposed solutions:\n"
msgstr ""
#: src/main.c:439
#, c-format
msgid "GRIG: %s %s"
msgstr ""
#: src/main.c:484
#, c-format
msgid ""
"Received signal %d\n"
"Trying clean exit..."
msgstr ""
#: src/main.c:560
msgid ""
"Usage: grig [OPTION]...\n"
"\n"
msgstr ""
#: src/main.c:561
msgid " -m, --model=ID select radio model number; see --list\n"
msgstr ""
#: src/main.c:563
msgid " -r, --rig-file=DEVICE set device of the radio, eg. /dev/ttyS0\n"
msgstr ""
#: src/main.c:565
msgid " -s, --speed=BAUD set transfer rate (serial port only)\n"
msgstr ""
#: src/main.c:567
msgid " -c, --civaddr=ID set CI-V address (decimal, ICOM only)\n"
msgstr ""
#: src/main.c:569
msgid ""
" -C, --set-conf=param=val set config parameter (same as in rigctl)\n"
msgstr ""
#: src/main.c:571
msgid " -d, --debug=LEVEL set hamlib debug level (0..5)\n"
msgstr ""
#: src/main.c:573
msgid " -D, --delay=val set delay between commands in msec\n"
msgstr ""
#: src/main.c:575
msgid " -n, --nothread start daemon without using threads\n"
msgstr ""
#: src/main.c:577
msgid " -l, --list list supported radios and exit\n"
msgstr ""
#: src/main.c:579
msgid " -p, --enable-ptt enable PTT button\n"
msgstr ""
#: src/main.c:581
msgid " -P, --enable-pwr enable POWER button\n"
msgstr ""
#: src/main.c:583
msgid " -h, --help show this help message and exit\n"
msgstr ""
#: src/main.c:585
msgid " -v, --version show version information and exit\n"
msgstr ""
#: src/main.c:588
msgid "Example:"
msgstr ""
#: src/main.c:590
msgid ""
"Start grig using YAESU FT-990 connected to the first serial port, using 4800 "
"baud and debug level set to warning:"
msgstr ""
#: src/main.c:596
msgid "or if you prefer the long options:"
msgstr ""
#: src/main.c:601
msgid "It is usually enough to specify the model ID and the DEVICE."
msgstr ""
#: src/main.c:604
msgid ""
"If you start grig without any options it will use the Dummy backend and set "
"the debug level to RIG_DEBUG_NONE. If you don't specify the transfer rate "
"for the serial port, the default value will be used by the backend and even "
"if you specify a value, it can be overridden by the backend."
msgstr ""
#: src/main.c:614
msgid "Debug levels:"
msgstr ""
#: src/main.c:616
msgid " 0 No debug, keep quiet.\n"
msgstr ""
#: src/main.c:617
msgid " 1 Serious bug.\n"
msgstr ""
#: src/main.c:618
msgid " 2 Error case (e.g. protocol, memory allocation).\n"
msgstr ""
#: src/main.c:619
msgid " 3 Warnings.\n"
msgstr ""
#: src/main.c:620
msgid " 4 Verbose information.\n"
msgstr ""
#: src/main.c:621
msgid " 5 Trace.\n"
msgstr ""
#: src/main.c:633
#, c-format
msgid "grig %s\n"
msgstr ""
#: src/main.c:634
msgid "Graphical User Interface for the Hamradio Control Libraries."
msgstr ""
#: src/main.c:637
msgid "Copyright (C) 2001-2007 Alexandru Csete."
msgstr ""
#: src/main.c:639
msgid "This is free software; see the source for copying conditions. "
msgstr ""
#: src/main.c:641
msgid ""
"There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A "
"PARTICULAR PURPOSE."
msgstr ""
#: src/main.c:687
msgid " ID Manufacturer Model Ver. Status\n"
msgstr ""
#: src/rig-daemon.c:397
msgid "No error"
msgstr ""
#: src/rig-daemon.c:398
msgid "Invalid parameter"
msgstr ""
#: src/rig-daemon.c:399
msgid "Invalid configuration"
msgstr ""
#: src/rig-daemon.c:400
msgid "Memory shortage"
msgstr ""
#: src/rig-daemon.c:401
msgid "Function not implemented"
msgstr ""
#: src/rig-daemon.c:402
msgid "Communication timed out"
msgstr ""
#: src/rig-daemon.c:403
msgid "I/O error"
msgstr ""
#: src/rig-daemon.c:404
msgid "Internal Hamlib error :-("
msgstr ""
#: src/rig-daemon.c:405
msgid "Protocol error"
msgstr ""
#: src/rig-daemon.c:406
msgid "Command rejected"
msgstr ""
#: src/rig-daemon.c:407
msgid "Command performed, but arg truncated"
msgstr ""
#: src/rig-daemon.c:408
msgid "Function not available"
msgstr ""
#: src/rig-daemon.c:409
msgid "VFO not targetable"
msgstr ""
#: src/rig-daemon.c:410
msgid "BUS error"
msgstr ""
#: src/rig-daemon.c:411
msgid "Collision on the bus"
msgstr ""
#: src/rig-daemon.c:412
msgid "NULL RIG handle or invalid pointer param"
msgstr ""
#: src/rig-daemon.c:413
msgid "Invalid VFO"
msgstr ""
#: src/rig-daemon.c:414
msgid "Argument out of domain"
msgstr ""
#: src/rig-daemon.c:481
#, c-format
msgid "%s entered"
msgstr ""
#: src/rig-daemon.c:523
#, c-format
msgid "%s: Initializing rig (id=%d)"
msgstr ""
#: src/rig-daemon.c:532
#, c-format
msgid "%s: Init failed; Hamlib returned NULL!"
msgstr ""
#: src/rig-daemon.c:566
#, c-format
msgid "%s: Setting conf param (%s,%s)..."
msgstr ""
#: src/rig-daemon.c:575
#, c-format
msgid "%s: Set conf OK"
msgstr ""
#: src/rig-daemon.c:580
#, c-format
msgid "%s: Set conf failed (%d)"
msgstr ""
#: src/rig-daemon.c:600
#, c-format
msgid "%s: Failed to open rig port %s: %s (permissions?)"
msgstr ""
#: src/rig-daemon.c:611
#, c-format
msgid "%s: Init successfull, executing post-init"
msgstr ""
#: src/rig-daemon.c:618
#, c-format
msgid "%s: Starting rig daemon"
msgstr ""
#: src/rig-daemon.c:637
#, c-format
msgid "%s: Daemon timeout started, ID: %d"
msgstr ""
#: src/rig-daemon.c:658
#, c-format
msgid "%s: Failed to start daemon thread"
msgstr ""
#: src/rig-daemon.c:661
#, c-format
msgid "%s: Error %d: %s"
msgstr ""
#: src/rig-daemon.c:671
#, c-format
msgid "%s: Daemon thread started"
msgstr ""
#: src/rig-daemon.c:697
#, c-format
msgid "%s: Sending stop signal to rig daemon"
msgstr ""
#: src/rig-daemon.c:731
#, c-format
msgid "%s: Cleaning up rig"
msgstr ""
#: src/rig-daemon.c:803
#, c-format
msgid "%s: GET bits: %d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d"
msgstr ""
#: src/rig-daemon.c:826
#, c-format
msgid "%s: SET bits: %d%d%d%d%d%d%d%d%d%d%d%d%dXXX"
msgstr ""
#: src/rig-daemon.c:880
#, c-format
msgid "%s started."
msgstr ""
#: src/rig-daemon.c:978
#, c-format
msgid "%s stopped"
msgstr ""
#: src/rig-daemon.c:1024
#, c-format
msgid "%s called."
msgstr ""
#: src/rig-daemon.c:1159
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_FREQ_1:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1186
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_FREQ_1:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1243 src/rig-daemon.c:1311
#, c-format
msgid "%s: I can't figure out available VFOs (got %d)"
msgstr ""
#: src/rig-daemon.c:1256
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_FREQ_2:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1324
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_FREQ_2:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1353
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_RIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1380
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_RIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1409
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_XIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1436
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_XIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1465
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_VFO:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1492
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_VFO:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1521
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PSTAT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1548
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PSTAT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1577
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PTT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1604
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PTT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1634
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_MODE:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1685 src/rig-daemon-check.c:409
#, c-format
msgid "%s: Found frequency range for mode %d"
msgstr ""
#: src/rig-daemon.c:1688 src/rig-daemon-check.c:412
#, c-format
msgid "%s: %.0f...(%.0f)...%.0f kHz"
msgstr ""
#: src/rig-daemon.c:1707
#, c-format
msgid "%s: Can not find frequency range for this mode (%d)!Bug in backend?"
msgstr ""
#: src/rig-daemon.c:1780
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_MODE:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1814
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_AGC:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1844
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_AGC:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1872
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_ATT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1900
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_ATT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1928
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PREAMP:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1958
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PREAMP:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:1986
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_STRENGTH:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2015
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_POWER:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2043
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_POWER:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2070
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_SWR:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2097
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_ALC:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2126
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_ALC:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2151
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_LOCK:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2178
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_LOCK:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2202
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_VFO_TOGGLE:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2225
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_VFO_COPY:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2248
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_VFO_XCHG:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2270
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_SPLIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2291
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_SPLIT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2316
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_AF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2341
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_AF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2367
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_RF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2392
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_RF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2418
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_SQL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2443
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_SQL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2469
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_IFS:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2494
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_IFS:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2520
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_APF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2545
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_APF:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2571
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_NR:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2596
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_NR:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2622
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_NOTCH:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2647
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_NOTCH:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2673
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PBT_IN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2698
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PBT_IN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2724
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_PBT_OUT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2749
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_PBT_OUT:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2775
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_CW_PITCH:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2800
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_CW_PITCH:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2826
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_KEYSPD:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2851
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_KEYSPD:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2877
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_BKINDEL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2902
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_BKINDEL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2928
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_BALANCE:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2953
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_BALANCE:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:2979
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_VOXDEL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3004
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_VOXDEL:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3030
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_VOXGAIN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3055
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_VOXGAIN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3081
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_ANTIVOX:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3106
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_ANTIVOX:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3132
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_MICGAIN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3157
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_MICGAIN:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3184
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_COMP:\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3210
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_SET_FUNC(%s):\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3240
#, c-format
msgid ""
"%s: Failed to execute RIG_CMD_GET_FUNC(%s):\n"
"%s"
msgstr ""
#: src/rig-daemon.c:3259
#, c-format
msgid "%s: Unknown command %d (grig bug)"
msgstr ""
#: src/rig-daemon.c:3352
#, c-format
msgid "%s: %d"
msgstr ""
#: src/rig-daemon-check.c:157
#, c-format
msgid "%s: Can not find VFO list for this backend! Bug in backend?"
msgstr ""
#: src/rig-daemon-check.c:430
#, c-format
msgid "%s: Can not find frequency range for this mode (%d)! Bug in backend?"
msgstr ""
#: src/rig-daemon-check.c:518
#, c-format
msgid "%s: Could not get RF power"
msgstr ""
#: src/rig-daemon-check.c:533
#, c-format
msgid "%s: Maximum RF power is %.3f watts"
msgstr ""
#: src/rig-daemon-check.c:545
#, c-format
msgid "%s: Could not get signal strength"
msgstr ""
#: src/rig-daemon-check.c:560
#, c-format
msgid "%s: Could not get SWR"
msgstr ""
#: src/rig-daemon-check.c:573
#, c-format
msgid "%s: Could not get ALC"
msgstr ""
#: src/rig-daemon-check.c:586
#, c-format
msgid "%s: Could not get AGC"
msgstr ""
#: src/rig-daemon-check.c:599
#, c-format
msgid "%s: Could not get ATT"
msgstr ""
#: src/rig-daemon-check.c:612
#, c-format
msgid "%s: Could not get PREAMP"
msgstr ""
#: src/rig-daemon-check.c:625
#, c-format
msgid "%s: Could not get AF"
msgstr ""
#: src/rig-daemon-check.c:638
#, c-format
msgid "%s: Could not get RF"
msgstr ""
#: src/rig-daemon-check.c:651
#, c-format
msgid "%s: Could not get SQL"
msgstr ""
#: src/rig-daemon-check.c:666
#, c-format
msgid "%s: Could not get IF shift"
msgstr ""
#: src/rig-daemon-check.c:679
#, c-format
msgid "%s: Could not get APF"
msgstr ""
#: src/rig-daemon-check.c:692
#, c-format
msgid "%s: Could not get NR"
msgstr ""
#: src/rig-daemon-check.c:705
#, c-format
msgid "%s: Could not get NOTCH"
msgstr ""
#: src/rig-daemon-check.c:718
#, c-format
msgid "%s: Could not get PBT IN"
msgstr ""
#: src/rig-daemon-check.c:731
#, c-format
msgid "%s: Could not get PBT OUT"
msgstr ""
#: src/rig-daemon-check.c:744
#, c-format
msgid "%s: Could not get CW pitch"
msgstr ""
#: src/rig-daemon-check.c:757
#, c-format
msgid "%s: Could not get CW speed"
msgstr ""
#: src/rig-daemon-check.c:770
#, c-format
msgid "%s: Could not get break-in delay"
msgstr ""
#: src/rig-daemon-check.c:783
#, c-format
msgid "%s: Could not get balance"
msgstr ""
#: src/rig-daemon-check.c:796
#, c-format
msgid "%s: Could not get VOX delay"
msgstr ""
#: src/rig-daemon-check.c:809
#, c-format
msgid "%s: Could not get VOX gain"
msgstr ""
#: src/rig-daemon-check.c:822
#, c-format
msgid "%s: Could not get anti-vox"
msgstr ""
#: src/rig-daemon-check.c:835
#, c-format
msgid "%s: Could not get compression level"
msgstr ""
#: src/rig-daemon-check.c:848
#, c-format
msgid "%s: Could not get MIC gain"
msgstr ""
#: src/rig-daemon-check.c:954
#, c-format
msgid "%s: Could not get LOCK status"
msgstr ""
#: src/rig-daemon-check.c:969
#, c-format
msgid "%s: Could not get %s status"
msgstr ""
#: src/rig-data.c:352 src/rig-data.c:544
#, c-format
msgid "%s: Invalid target: %d\n"
msgstr ""
#: src/rig-gui-buttons.c:148 src/rig-gui-smeter.c:75
msgid "Power"
msgstr ""
#: src/rig-gui-buttons.c:149
msgid "Power status"
msgstr ""
#: src/rig-gui-buttons.c:193
msgid "PTT"
msgstr ""
#: src/rig-gui-buttons.c:194
msgid "Push to talk"
msgstr ""
#: src/rig-gui-buttons.c:238
msgid "Lock"
msgstr ""
#: src/rig-gui-buttons.c:239
msgid "Lock tuning dial"
msgstr ""
#: src/rig-gui-buttons.c:284
msgid "ATT OFF"
msgstr ""
#: src/rig-gui-buttons.c:307
msgid "Attenuator level"
msgstr ""
#: src/rig-gui-buttons.c:344
msgid "PREAMP OFF"
msgstr ""
#: src/rig-gui-buttons.c:367
msgid "Preamp level"
msgstr ""
#: src/rig-gui-ctrl2.c:86 src/rig-gui-info-data.h:172
msgid "AM"
msgstr ""
#: src/rig-gui-ctrl2.c:87 src/rig-gui-info-data.h:165
#: src/rig-gui-info-data.h:173
msgid "CW"
msgstr ""
#: src/rig-gui-ctrl2.c:88 src/rig-gui-info-data.h:174
msgid "USB"
msgstr ""
#: src/rig-gui-ctrl2.c:89 src/rig-gui-info-data.h:175
msgid "LSB"
msgstr ""
#: src/rig-gui-ctrl2.c:90 src/rig-gui-info-data.h:176
msgid "RTTY"
msgstr ""
#: src/rig-gui-ctrl2.c:91
msgid "FM Narrow"
msgstr ""
#: src/rig-gui-ctrl2.c:92
msgid "FM Wide"
msgstr ""
#: src/rig-gui-ctrl2.c:93
msgid "CW Rev"
msgstr ""
#: src/rig-gui-ctrl2.c:94
msgid "RTTY Rev"
msgstr ""
#: src/rig-gui-ctrl2.c:95
msgid "AM Synch"
msgstr ""
#: src/rig-gui-ctrl2.c:96
msgid "Pkt (LSB)"
msgstr ""
#: src/rig-gui-ctrl2.c:97
msgid "Pkt (USB)"
msgstr ""
#: src/rig-gui-ctrl2.c:98
msgid "Pkt (FM)"
msgstr ""
#: src/rig-gui-ctrl2.c:99
msgid "ECUSB"
msgstr ""
#: src/rig-gui-ctrl2.c:100
msgid "ECLSB"
msgstr ""
#: src/rig-gui-ctrl2.c:101 src/rig-gui-info-data.h:187
msgid "FAX"
msgstr ""
#: src/rig-gui-ctrl2.c:207
msgid "AGC OFF"
msgstr ""
#: src/rig-gui-ctrl2.c:208
msgid "Super Fast"
msgstr ""
#: src/rig-gui-ctrl2.c:209
msgid "Fast"
msgstr ""
#: src/rig-gui-ctrl2.c:210
msgid "Medium"
msgstr ""
#: src/rig-gui-ctrl2.c:211
msgid "Slow"
msgstr ""
#: src/rig-gui-ctrl2.c:212
msgid "Auto"
msgstr ""
#: src/rig-gui-ctrl2.c:214
msgid "Automatic Gain Control Level"
msgstr ""
#: src/rig-gui-ctrl2.c:320
msgid "Communication mode"
msgstr ""
#: src/rig-gui-ctrl2.c:359
msgid "Wide"
msgstr ""
#: src/rig-gui-ctrl2.c:360
msgid "Normal"
msgstr ""
#: src/rig-gui-ctrl2.c:361
msgid "Narrow"
msgstr ""
#: src/rig-gui-ctrl2.c:362
msgid "[User]"
msgstr ""
#: src/rig-gui-ctrl2.c:384
msgid "Passband Width"
msgstr ""
#: src/rig-gui-ctrl2.c:443
#, c-format
msgid "ANT %d"
msgstr ""
#: src/rig-gui-ctrl2.c:460
msgid "Antenna Port"
msgstr ""
#: src/rig-gui-func.c:82
#, c-format
msgid "%s: FUNC window already visible."
msgstr ""
#: src/rig-gui-func.c:93
#, c-format
msgid "%s (Special Functions)"
msgstr ""
#: src/rig-gui-func.c:160
#, c-format
msgid "%s: FUNC window is not visible."
msgstr ""
#: src/rig-gui-func.c:185 src/rig-gui-rx.c:242 src/rig-gui-tx.c:238
#, c-format
msgid "%s:%d: Invalid level %d"
msgstr ""
#: src/rig-gui-func.c:227 src/rig-gui-rx.c:507 src/rig-gui-tx.c:463
msgid "Rig has no support."
msgstr ""
#: src/rig-gui-info.c:115
msgid "Radio Info"
msgstr ""
#: src/rig-gui-info.c:250
msgid "RIT:"
msgstr ""
#: src/rig-gui-info.c:270
msgid "XIT:"
msgstr ""
#: src/rig-gui-info.c:289
msgid "IF-SHIFT:"
msgstr ""
#: src/rig-gui-info.c:308
msgid "Max. Offsets"
msgstr ""
#: src/rig-gui-info.c:346
msgid "LEVEL"
msgstr ""
#: src/rig-gui-info.c:356 src/rig-gui-info.c:987
msgid "READ"
msgstr ""
#: src/rig-gui-info.c:364 src/rig-gui-info.c:995
msgid "WRITE"
msgstr ""
#: src/rig-gui-info.c:392 src/rig-gui-info.c:401 src/rig-gui-info.c:1023
#: src/rig-gui-info.c:1032 src/rig-gui-info.c:1110
msgid "-"
msgstr ""
#: src/rig-gui-info.c:397 src/rig-gui-info.c:406 src/rig-gui-info.c:1028
#: src/rig-gui-info.c:1037 src/rig-gui-info.c:1115
msgid "X"
msgstr ""
#: src/rig-gui-info.c:442
msgid "Port Type:"
msgstr ""
#: src/rig-gui-info.c:460 src/rig-gui-info.c:489 src/rig-gui-info.c:518
#: src/rig-gui-info.c:632 src/rig-gui-info.c:667
msgid "Unknown"
msgstr ""
#: src/rig-gui-info.c:471
msgid "DCD Type:"
msgstr ""
#: src/rig-gui-info.c:500
msgid "PTT Type:"
msgstr ""
#: src/rig-gui-info.c:529
msgid "Serial Speed:"
msgstr ""
#: src/rig-gui-info.c:540
#, c-format
msgid "%d..%d baud"
msgstr ""
#: src/rig-gui-info.c:547 src/rig-gui-info.c:574 src/rig-gui-info.c:601
#: src/rig-gui-info.c:636 src/rig-gui-info.c:671 src/rig-gui-info-data.h:67
#: src/rig-gui-info-data.h:68 src/rig-gui-info-data.h:69
#: src/rig-gui-info-data.h:103
msgid "N/A"
msgstr ""
#: src/rig-gui-info.c:558
msgid "Data bits:"
msgstr ""
#: src/rig-gui-info.c:585
msgid "Stop bits:"
msgstr ""
#: src/rig-gui-info.c:612
msgid "Parity:"
msgstr ""
#: src/rig-gui-info.c:647
msgid "Handshake:"
msgstr ""
#: src/rig-gui-info.c:683
msgid "Interface"
msgstr ""
#: src/rig-gui-info.c:720
msgid "STEP"
msgstr ""
#: src/rig-gui-info.c:730
msgid "MODES"
msgstr ""
#: src/rig-gui-info.c:845
msgid "PREAMP:"
msgstr ""
#: src/rig-gui-info.c:893
msgid "ATT:"
msgstr ""
#: src/rig-gui-info.c:939
msgid "Front End"
msgstr ""
#: src/rig-gui-info.c:977
msgid "FUNCTION"
msgstr ""
#: src/rig-gui-info.c:1071
msgid "VFO OP"
msgstr ""
#: src/rig-gui-info.c:1081
msgid "SET"
msgstr ""
#: src/rig-gui-info-data.h:44
msgid "PREAMP"
msgstr ""
#: src/rig-gui-info-data.h:45
msgid "ATT"
msgstr ""
#: src/rig-gui-info-data.h:46 src/rig-gui-info-data.h:82
msgid "VOX"
msgstr ""
#: src/rig-gui-info-data.h:47
msgid "AF"
msgstr ""
#: src/rig-gui-info-data.h:48
msgid "RF"
msgstr ""
#: src/rig-gui-info-data.h:49 src/rig-gui-info-data.h:99
msgid "SQL"
msgstr ""
#: src/rig-gui-info-data.h:50
msgid "IF"
msgstr ""
#: src/rig-gui-info-data.h:51 src/rig-gui-info-data.h:90 src/rig-gui-rx.c:412
msgid "APF"
msgstr ""
#: src/rig-gui-info-data.h:52 src/rig-gui-info-data.h:88
msgid "NR"
msgstr ""
#: src/rig-gui-info-data.h:53
msgid "PBT_IN"
msgstr ""
#: src/rig-gui-info-data.h:54
msgid "PBT_OUT"
msgstr ""
#: src/rig-gui-info-data.h:55
msgid "CWPITCH"
msgstr ""
#: src/rig-gui-info-data.h:56
msgid "RFPOWER"
msgstr ""
#: src/rig-gui-info-data.h:57
msgid "MICGAIN"
msgstr ""
#: src/rig-gui-info-data.h:58
msgid "KEYSPD"
msgstr ""
#: src/rig-gui-info-data.h:59
msgid "NOTCHF"
msgstr ""
#: src/rig-gui-info-data.h:60
msgid "COMP"
msgstr ""
#: src/rig-gui-info-data.h:61
msgid "AGC"
msgstr ""
#: src/rig-gui-info-data.h:62
msgid "BKINDL"
msgstr ""
#: src/rig-gui-info-data.h:63
msgid "BALANCE"
msgstr ""
#: src/rig-gui-info-data.h:64
msgid "METER"
msgstr ""
#: src/rig-gui-info-data.h:65
msgid "VOXGAIN"
msgstr ""
#: src/rig-gui-info-data.h:66
msgid "ANTIVOX"
msgstr ""
#: src/rig-gui-info-data.h:70
msgid "RAWSTR"
msgstr ""
#: src/rig-gui-info-data.h:71
msgid "SQLSTAT"
msgstr ""
#: src/rig-gui-info-data.h:72 src/rig-gui-smeter.c:76
msgid "SWR"
msgstr ""
#: src/rig-gui-info-data.h:73 src/rig-gui-smeter.c:77 src/rig-gui-tx.c:347
msgid "ALC"
msgstr ""
#: src/rig-gui-info-data.h:74
msgid "STRENGTH"
msgstr ""
#: src/rig-gui-info-data.h:79
msgid "FAST AGC"
msgstr ""
#: src/rig-gui-info-data.h:80
msgid "NB"
msgstr ""
#: src/rig-gui-info-data.h:81 src/rig-gui-tx.c:388
msgid "COMPR"
msgstr ""
#: src/rig-gui-info-data.h:83
msgid "TONE"
msgstr ""
#: src/rig-gui-info-data.h:84
msgid "CTCSS"
msgstr ""
#: src/rig-gui-info-data.h:85
msgid "SEMI BK"
msgstr ""
#: src/rig-gui-info-data.h:86
msgid "FULL BK"
msgstr ""
#: src/rig-gui-info-data.h:87
msgid "ANF"
msgstr ""
#: src/rig-gui-info-data.h:89
msgid "AIP"
msgstr ""
#: src/rig-gui-info-data.h:91
msgid "MON"
msgstr ""
#: src/rig-gui-info-data.h:92
msgid "MAN NOTCH"
msgstr ""
#: src/rig-gui-info-data.h:93
msgid "RNF"
msgstr ""
#: src/rig-gui-info-data.h:94
msgid "AUTO RO"
msgstr ""
#: src/rig-gui-info-data.h:95
msgid "LOCK"
msgstr ""
#: src/rig-gui-info-data.h:96
msgid "MUTE"
msgstr ""
#: src/rig-gui-info-data.h:97
msgid "VOICE SCAN"
msgstr ""
#: src/rig-gui-info-data.h:98
msgid "REV TRX"
msgstr ""
#: src/rig-gui-info-data.h:100
msgid "ABM"
msgstr ""
#: src/rig-gui-info-data.h:101
msgid "BEAT CANC"
msgstr ""
#: src/rig-gui-info-data.h:102
msgid "MAN BC"
msgstr ""
#: src/rig-gui-info-data.h:104
msgid "AFC"
msgstr ""
#: src/rig-gui-info-data.h:105
msgid "SATMODE"
msgstr ""
#: src/rig-gui-info-data.h:106
msgid "SCOPE"
msgstr ""
#: src/rig-gui-info-data.h:107
msgid "RESUME"
msgstr ""
#: src/rig-gui-info-data.h:108
msgid "TBURST"
msgstr ""
#: src/rig-gui-info-data.h:109
msgid "TUNER"
msgstr ""
#: src/rig-gui-info-data.h:114 src/rig-gui-info-data.h:123
#: src/rig-gui-info-data.h:134 src/rig-gui-info-data.h:148
#: src/rig-gui-info-data.h:155 src/rig-gui-smeter.c:74
msgid "None"
msgstr ""
#: src/rig-gui-info-data.h:115 src/rig-gui-info-data.h:124
msgid "Legacy"
msgstr ""
#: src/rig-gui-info-data.h:116
msgid "SER_DTR"
msgstr ""
#: src/rig-gui-info-data.h:117
msgid "SER_RTS"
msgstr ""
#: src/rig-gui-info-data.h:118 src/rig-gui-info-data.h:128
msgid "PARPORT"
msgstr ""
#: src/rig-gui-info-data.h:125
msgid "SER_DSR"
msgstr ""
#: src/rig-gui-info-data.h:126
msgid "SER_CTS"
msgstr ""
#: src/rig-gui-info-data.h:127
msgid "SER_CAR"
msgstr ""
#: src/rig-gui-info-data.h:135
msgid "Serial"
msgstr ""
#: src/rig-gui-info-data.h:136
msgid "Network"
msgstr ""
#: src/rig-gui-info-data.h:137
msgid "Device"
msgstr ""
#: src/rig-gui-info-data.h:138
msgid "Packet"
msgstr ""
#: src/rig-gui-info-data.h:139
msgid "DTMF"
msgstr ""
#: src/rig-gui-info-data.h:140
msgid "IrDA"
msgstr ""
#: src/rig-gui-info-data.h:141
msgid "RPC"
msgstr ""
#: src/rig-gui-info-data.h:142
msgid "Parallel"
msgstr ""
#: src/rig-gui-info-data.h:149
msgid "Odd"
msgstr ""
#: src/rig-gui-info-data.h:150
msgid "Even"
msgstr ""
#: src/rig-gui-info-data.h:156
msgid "XONXOFF"
msgstr ""
#: src/rig-gui-info-data.h:157
msgid "Hardware"
msgstr ""
#: src/rig-gui-info-data.h:162
msgid "OFF"
msgstr ""
#: src/rig-gui-info-data.h:163
msgid "FREQ"
msgstr ""
#: src/rig-gui-info-data.h:164
msgid "RXMODE"
msgstr ""
#: src/rig-gui-info-data.h:166
msgid "EMG"
msgstr ""
#: src/rig-gui-info-data.h:167
msgid "JAP"
msgstr ""
#: src/rig-gui-info-data.h:177
msgid "FM"
msgstr ""
#: src/rig-gui-info-data.h:178
msgid "WFM"
msgstr ""
#: src/rig-gui-info-data.h:179
msgid "CWR"
msgstr ""
#: src/rig-gui-info-data.h:180
msgid "RTTYR"
msgstr ""
#: src/rig-gui-info-data.h:181
msgid "AMS"
msgstr ""
#: src/rig-gui-info-data.h:182
msgid "PKTLSB"
msgstr ""
#: src/rig-gui-info-data.h:183
msgid "PKTUSB"
msgstr ""
#: src/rig-gui-info-data.h:184
msgid "PKTFM"
msgstr ""
#: src/rig-gui-info-data.h:185
msgid "ECSSUSB"
msgstr ""
#: src/rig-gui-info-data.h:186
msgid "ECSSLSB"
msgstr ""
#: src/rig-gui-info-data.h:193
msgid "COPY A=B"
msgstr ""
#: src/rig-gui-info-data.h:194
msgid "XCHG A/B"
msgstr ""
#: src/rig-gui-info-data.h:195
msgid "VFO->MEM"
msgstr ""
#: src/rig-gui-info-data.h:196
msgid "MEM->VFO"
msgstr ""
#: src/rig-gui-info-data.h:197
msgid "MEMCLEAR"
msgstr ""
#: src/rig-gui-info-data.h:198
msgid "UP"
msgstr ""
#: src/rig-gui-info-data.h:199
msgid "DOWN"
msgstr ""
#: src/rig-gui-info-data.h:200
msgid "BAND UP"
msgstr ""
#: src/rig-gui-info-data.h:201
msgid "BAND DOWN"
msgstr ""
#: src/rig-gui-info-data.h:202
msgid "LEFT"
msgstr ""
#: src/rig-gui-info-data.h:203
msgid "RIGHT"
msgstr ""
#: src/rig-gui-info-data.h:204
msgid "TUNE"
msgstr ""
#: src/rig-gui-info-data.h:205
msgid "TOGGLE"
msgstr ""
#: src/rig-gui-keypad.c:289
msgid "ENT"
msgstr ""
#: src/rig-gui-keypad.c:291
msgid "Begin manual frequency entry mode"
msgstr ""
#: src/rig-gui-keypad.c:301
msgid "CLR"
msgstr ""
#: src/rig-gui-keypad.c:303
msgid "Clear manual frequency entry mode"
msgstr ""
#: src/rig-gui-lcd.c:1396
msgid "kHz"
msgstr ""
#: src/rig-gui-lcd.c:1421
msgid "RIT"
msgstr ""
#: src/rig-gui-lcd.c:1472
msgid "VFO A"
msgstr ""
#: src/rig-gui-lcd.c:1476
msgid "VFO B"
msgstr ""
#: src/rig-gui-lcd.c:1480
msgid "VFO C"
msgstr ""
#: src/rig-gui-lcd.c:1484
msgid "MAIN VFO"
msgstr ""
#: src/rig-gui-lcd.c:1488
msgid "SUB VFO"
msgstr ""
#: src/rig-gui-lcd.c:1492
msgid "MEM"
msgstr ""
#: src/rig-gui-lcd.c:1496
msgid "VFO ?"
msgstr ""
#: src/rig-gui-levels.c:52
msgid "Level Controls"
msgstr ""
#: src/rig-gui-levels.c:53
msgid "Show/hide level controls"
msgstr ""
#: src/rig-gui-message-window.c:65
msgid "Time"
msgstr ""
#: src/rig-gui-message-window.c:66
msgid "Source"
msgstr ""
#: src/rig-gui-message-window.c:67
msgid "Level"
msgstr ""
#: src/rig-gui-message-window.c:68
msgid "Message"
msgstr ""
#: src/rig-gui-message-window.c:79
msgid "BUG"
msgstr ""
#: src/rig-gui-message-window.c:81
msgid "WARNING"
msgstr ""
#: src/rig-gui-message-window.c:82
msgid "DEBUG"
msgstr ""
#: src/rig-gui-message-window.c:83
msgid "TRACE"
msgstr ""
#: src/rig-gui-message-window.c:162
msgid "Grig Message Window"
msgstr ""
#: src/rig-gui-message-window.c:407
msgid "Open Debug File"
msgstr ""
#: src/rig-gui-message-window.c:476
msgid "SYS"
msgstr ""
#: src/rig-gui-message-window.c:486
msgid "Log file seems corrupt"
msgstr ""
#: src/rig-gui-message-window.c:509
#, c-format
msgid "%s:%d: Error open debug log (%s)"
msgstr ""
#: src/rig-gui-message-window.c:681
msgid "Hamlib"
msgstr ""
#: src/rig-gui-message-window.c:693
msgid "Other"
msgstr ""
#: src/rig-gui-message-window.c:703
msgid "Bugs"
msgstr ""
#: src/rig-gui-message-window.c:709
msgid "Errors"
msgstr ""
#: src/rig-gui-message-window.c:715
msgid "Warning"
msgstr ""
#: src/rig-gui-message-window.c:721
msgid "Verbose"
msgstr ""
#: src/rig-gui-message-window.c:727
msgid "Trace"
msgstr ""
#: src/rig-gui-message-window.c:740
msgid "Total"
msgstr ""
#: src/rig-gui-message-window.c:765
msgid " Summary "
msgstr ""
#: src/rig-gui-rx.c:97
#, c-format
msgid "%s: RX window already visible."
msgstr ""
#: src/rig-gui-rx.c:108
#, c-format
msgid "%s (RX Levels)"
msgstr ""
#: src/rig-gui-rx.c:172
#, c-format
msgid "%s: RX window is not visible."
msgstr ""
#: src/rig-gui-rx.c:284
msgid "AF Gain"
msgstr ""
#: src/rig-gui-rx.c:304
msgid "RF Gain"
msgstr ""
#: src/rig-gui-rx.c:331
msgid "IF Shift"
msgstr ""
#: src/rig-gui-rx.c:351
msgid "CW Pitch"
msgstr ""
#: src/rig-gui-rx.c:371
msgid "PBT In"
msgstr ""
#: src/rig-gui-rx.c:391
msgid "PBT Out"
msgstr ""
#: src/rig-gui-rx.c:432
msgid "N.R."
msgstr ""
#: src/rig-gui-rx.c:452
msgid "NOTCH"
msgstr ""
#: src/rig-gui-rx.c:472
msgid "Squelch"
msgstr ""
#: src/rig-gui-rx.c:492
msgid "Balance"
msgstr ""
#: src/rig-gui-smeter.c:83
msgid "0..5"
msgstr ""
#: src/rig-gui-smeter.c:84
msgid "0..10"
msgstr ""
#: src/rig-gui-smeter.c:85
msgid "0..50"
msgstr ""
#: src/rig-gui-smeter.c:86
msgid "0..100"
msgstr ""
#: src/rig-gui-smeter.c:87
msgid "0..500"
msgstr ""
#: src/rig-gui-smeter.c:430
msgid "Select TX mode for the meter"
msgstr ""
#: src/rig-gui-smeter.c:479
msgid "Select TX meter scale"
msgstr ""
#: src/rig-gui-tx.c:98
#, c-format
msgid "%s: TX window already visible."
msgstr ""
#: src/rig-gui-tx.c:109
#, c-format
msgid "%s (TX Levels)"
msgstr ""
#: src/rig-gui-tx.c:176
#, c-format
msgid "%s: TX window is not visible."
msgstr ""
#: src/rig-gui-tx.c:286
msgid "CW SPD"
msgstr ""
#: src/rig-gui-tx.c:306
msgid "BKIN DEL"
msgstr ""
#: src/rig-gui-tx.c:326
msgid "POWER"
msgstr ""
#: src/rig-gui-tx.c:368
msgid "MIC GAIN"
msgstr ""
#: src/rig-gui-tx.c:408
msgid "VOX GAIN"
msgstr ""
#: src/rig-gui-tx.c:428
msgid "VOX DEL"
msgstr ""
#: src/rig-gui-tx.c:448
msgid "ANTI VOX"
msgstr ""
#: src/rig-gui-vfo.c:119
msgid "Main / Sub"
msgstr ""
#: src/rig-gui-vfo.c:120
msgid "Toggle active VFO"
msgstr ""
#: src/rig-gui-vfo.c:123
msgid "A / B"
msgstr ""
#: src/rig-gui-vfo.c:124
msgid "Toggle between available VFOs"
msgstr ""
#: src/rig-gui-vfo.c:235
msgid "Main = Sub"
msgstr ""
#: src/rig-gui-vfo.c:236
msgid "Set Main VFO = Sub VFO"
msgstr ""
#: src/rig-gui-vfo.c:239
msgid "A = B"
msgstr ""
#: src/rig-gui-vfo.c:240
msgid "Set VFO B = VFO A"
msgstr ""
#: src/rig-gui-vfo.c:304
msgid "Main«»Sub"
msgstr ""
#: src/rig-gui-vfo.c:305
msgid "Exchange Main and sub VFOs"
msgstr ""
#: src/rig-gui-vfo.c:308
msgid "A«»B"
msgstr ""
#: src/rig-gui-vfo.c:309
msgid "Exchange VFO A and B"
msgstr ""
#: src/rig-gui-vfo.c:370
msgid "Split"
msgstr ""
#: src/rig-gui-vfo.c:371
msgid "Toggle split mode operation"
msgstr ""
#: src/rig-gui-vfo.c:399
msgid "M / V"
msgstr ""
#: src/rig-gui-vfo.c:400
msgid "Toggle between memory and VFO"
msgstr ""
#: src/rig-selector.c:116
msgid ""
"Connect to the selected radio.Grig will attempt to establish connection to "
"the selected radio using the specified settings. If the connection is "
"successful, the main application window will be loaded."
msgstr ""
#: src/rig-selector.c:125
msgid "Cancel radio selection. This will end grig."
msgstr ""
#: src/rig-selector.c:130
msgid ""
"Add a new radio to the list.A new configuration window will be shown "
"allowing you to select a radio and specify the connection settings."
msgstr ""
#: src/rig-selector.c:139
msgid "Delete the currently selected radio."
msgstr ""
#: src/rig-selector.c:145
msgid "Edit the settings for the currently selected radio."
msgstr ""
#: src/rig-selector.c:170
msgid "Select a Radio"
msgstr ""
#: src/rig-selector.c:230
msgid "Company"
msgstr ""
#: src/rig-selector.c:236
msgid "Model"
msgstr ""
#: src/rig-selector.c:242
msgid "Port"
msgstr ""
#: src/rig-selector.c:248
msgid "Speed"
msgstr ""
#: src/rig-selector.c:254
msgid "CI-V"
msgstr ""
#: src/rig-selector.c:262
msgid "DTR"
msgstr ""
#: src/rig-selector.c:270
msgid "RTS"
msgstr ""
#: src/rig-selector.c:483
#, c-format
msgid "%s:%s: Failed to delete %s"
msgstr ""
#: src/rig-selector.c:488
#, c-format
msgid "%s:%s: Removed %s"
msgstr ""
#: src/rig-state.c:130
msgid "Load Rig State"
msgstr ""
#: src/rig-state.c:139 src/rig-state.c:262
msgid "Rig state files (*.rig)"
msgstr ""
#: src/rig-state.c:144 src/rig-state.c:267
msgid "All files"
msgstr ""
#: src/rig-state.c:164
#, c-format
msgid ""
"There was an error reading the settings from:\n"
"\n"
" %s\n"
"\n"
" Examine the log messages for further info."
msgstr ""
#: src/rig-state.c:182
#, c-format
msgid ""
"The selected file:\n"
" %s\n"
" does not exist or is not a regular file."
msgstr ""
#: src/rig-state.c:253
msgid "Save Rig State"
msgstr ""
#: src/rig-state.c:283
#, c-format
msgid ""
"%s: User selected new file:\n"
"%s"
msgstr ""
#: src/rig-state.c:295
msgid ""
"Selected file already exists.\n"
"Overwrite file?"
msgstr ""
#: src/rig-state.c:313 src/rig-state.c:347
#, c-format
msgid ""
"There was an error saving the settings to:\n"
"\n"
" %s\n"
"\n"
" Examine the log messages for further info."
msgstr ""
#: src/rig-state.c:406
#, c-format
msgid "%s: Error loading rig file (%s)"
msgstr ""
#: src/rig-state.c:419
#, c-format
msgid "%s: Error reading rig id (%s)"
msgstr ""
#: src/rig-state.c:430
#, c-format
msgid ""
"%s: ID mismatch detected: state id is %d\n"
"while current rig id is %d"
msgstr ""
#: src/rig-state.c:449
#, c-format
msgid "%s: Applying settings (model=%d)"
msgstr ""
#: src/rig-state.c:579
#, c-format
msgid "%s: RIG ID is invalid (%d)"
msgstr ""
#: src/rig-state.c:654
#, c-format
msgid "%s: Error building state data (%s)"
msgstr ""
#: src/rig-state.c:665
#, c-format
msgid ""
"%s: Could not create data file (%s)\n"
"%s"
msgstr ""
#: src/rig-state.c:682
#, c-format
msgid "%s: Error writing config data (%s)"
msgstr ""
#: src/rig-state.c:689
#, c-format
msgid "%s: Wrote only %d instead of %d chars"
msgstr ""
#: src/rig-state.c:695
#, c-format
msgid ""
"%s: Rig state saved successfully to\n"
"%s."
msgstr ""
#: src/rig-state.c:724
#, c-format
msgid ""
"Selected rig state has been saved for model %d,\n"
"while the current rig model is %d.\n"
"Do you want to try to apply settings?"
msgstr ""
#: src/rig-state.c:771 src/rig-state.c:826 src/rig-state.c:869
#: src/rig-state.c:909
#, c-format
msgid ""
"%s:%d: Could nor read param %s::%s\n"
"(%s)"
msgstr ""
#: src/rig-state.c:788
#, c-format
msgid ""
"%s:%d:\n"
"FLOAT value out of range: %.2f\n"
"Floats expected to be between 0.0 and 1.0"
msgstr ""
grig-0.8.1/po/LINGUAS 0000644 0001750 0001750 00000000011 12120607777 011035 0000000 0000000 de
fr
tr
grig-0.8.1/po/de.gmo 0000664 0001750 0001750 00000121727 12635615157 011132 0000000 0000000 * l " H. I. h. 7 ~. . . . G . A ?/ 2 / D / <