summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore79
-rw-r--r--m4/acinclude.m447
-rw-r--r--m4/intltool.m4216
-rw-r--r--m4/libcurl.m4240
-rw-r--r--m4/pkg.m4157
-rw-r--r--transmission-remote-gtk.pot1512
6 files changed, 79 insertions, 2172 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..cef1612
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,79 @@
+*.o
+*.stamp
+*.la
+*.so
+*.dll
+*.a
+*.exe
+*.lo
+*.log
+*.trs
+*.test
+
+.deps/
+.libs/
+
+Makefile.in.in
+Makefile.in
+Makefile
+config.h.in
+tags
+
+/autom4te.cache
+/aclocal.m4
+/compile
+/configure
+/configure.sub
+/config.*
+/depcomp
+/install-sh
+/ltmain.sh
+/missing
+/ar-lib
+/libtool
+/test-driver
+stamp-h1
+.dirstamp
+/gtk-doc.make
+
+__pycache__/
+
+/po/POTFILES
+/po/stamp-it
+/po/.intltool-merge-cache
+/po/*.pot
+/po/*.gmo
+
+/docs/*.signals
+/docs/*.types
+/docs/*.prerequisites
+/docs/*.interfaces
+/docs/*.hierarchy
+/docs/*.args
+/docs/*-decl*
+/docs/*undocumented.txt
+/docs/*unused.txt
+/docs/*undeclared.txt
+/docs/xml/
+/docs/html/
+/docs/*.c
+
+/m4
+!/m4/desktop.m4
+!/m4/leak-supp.txt
+!/m4/tap-test
+
+*.appdata.xml
+*.desktop
+*.gschema.xml
+*.gschema.valid
+*.desktop.valid
+*.vapi
+*.gir
+*.deps
+*.typelib
+*~
+
+/src/transmission-remote-gtk
+/src/transmission-remote-gtk.1
+
diff --git a/m4/acinclude.m4 b/m4/acinclude.m4
deleted file mode 100644
index f3d8734..0000000
--- a/m4/acinclude.m4
+++ /dev/null
@@ -1,47 +0,0 @@
-##### http://autoconf-archive.cryp.to/ac_define_dir.html
-#
-# SYNOPSIS
-#
-# AC_DEFINE_DIR(VARNAME, DIR [, DESCRIPTION])
-#
-# DESCRIPTION
-#
-# This macro sets VARNAME to the expansion of the DIR variable,
-# taking care of fixing up ${prefix} and such.
-#
-# VARNAME is then offered as both an output variable and a C
-# preprocessor symbol.
-#
-# Example:
-#
-# AC_DEFINE_DIR([DATADIR], [datadir], [Where data are placed to.])
-#
-# LAST MODIFICATION
-#
-# 2006-10-13
-#
-# COPYLEFT
-#
-# Copyright (c) 2006 Stepan Kasal <kasal@ucw.cz>
-# Copyright (c) 2006 Andreas Schwab <schwab@suse.de>
-# Copyright (c) 2006 Guido U. Draheim <guidod@gmx.de>
-# Copyright (c) 2006 Alexandre Oliva
-#
-# Copying and distribution of this file, with or without
-# modification, are permitted in any medium without royalty provided
-# the copyright notice and this notice are preserved.
-
-AC_DEFUN([AC_DEFINE_DIR], [
- prefix_NONE=
- exec_prefix_NONE=
- test "x$prefix" = xNONE && prefix_NONE=yes && prefix=$ac_default_prefix
- test "x$exec_prefix" = xNONE && exec_prefix_NONE=yes && exec_prefix=$prefix
-dnl In Autoconf 2.60, ${datadir} refers to ${datarootdir}, which in turn
-dnl refers to ${prefix}. Thus we have to use `eval' twice.
- eval ac_define_dir="\"[$]$2\""
- eval ac_define_dir="\"$ac_define_dir\""
- AC_SUBST($1, "$ac_define_dir")
- AC_DEFINE_UNQUOTED($1, "$ac_define_dir", [$3])
- test "$prefix_NONE" && prefix=NONE
- test "$exec_prefix_NONE" && exec_prefix=NONE
-])
diff --git a/m4/intltool.m4 b/m4/intltool.m4
deleted file mode 100644
index 839e855..0000000
--- a/m4/intltool.m4
+++ /dev/null
@@ -1,216 +0,0 @@
-## intltool.m4 - Configure intltool for the target system. -*-Shell-script-*-
-## Copyright (C) 2001 Eazel, Inc.
-## Author: Maciej Stachowiak <mjs@noisehavoc.org>
-## Kenneth Christiansen <kenneth@gnu.org>
-##
-## 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 of the License, 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, write to the Free Software
-## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-##
-## 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.
-
-dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml])
-# serial 40 IT_PROG_INTLTOOL
-AC_DEFUN([IT_PROG_INTLTOOL], [
-AC_PREREQ([2.50])dnl
-AC_REQUIRE([AM_NLS])dnl
-
-case "$am__api_version" in
- 1.[01234])
- AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool])
- ;;
- *)
- ;;
-esac
-
-if test -n "$1"; then
- AC_MSG_CHECKING([for intltool >= $1])
-
- INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
- INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
- [INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
- ]
- AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
- test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
- AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.])
-fi
-
-AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update])
-AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge])
-AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract])
-if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
- AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.])
-fi
-
- INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
-INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@'
- INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
-INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@'
- INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
- INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
-
-_IT_SUBST(INTLTOOL_DESKTOP_RULE)
-_IT_SUBST(INTLTOOL_DIRECTORY_RULE)
-_IT_SUBST(INTLTOOL_KEYS_RULE)
-_IT_SUBST(INTLTOOL_PROP_RULE)
-_IT_SUBST(INTLTOOL_OAF_RULE)
-_IT_SUBST(INTLTOOL_PONG_RULE)
-_IT_SUBST(INTLTOOL_SERVER_RULE)
-_IT_SUBST(INTLTOOL_SHEET_RULE)
-_IT_SUBST(INTLTOOL_SOUNDLIST_RULE)
-_IT_SUBST(INTLTOOL_UI_RULE)
-_IT_SUBST(INTLTOOL_XAM_RULE)
-_IT_SUBST(INTLTOOL_KBD_RULE)
-_IT_SUBST(INTLTOOL_XML_RULE)
-_IT_SUBST(INTLTOOL_XML_NOMERGE_RULE)
-_IT_SUBST(INTLTOOL_CAVES_RULE)
-_IT_SUBST(INTLTOOL_SCHEMAS_RULE)
-_IT_SUBST(INTLTOOL_THEME_RULE)
-_IT_SUBST(INTLTOOL_SERVICE_RULE)
-_IT_SUBST(INTLTOOL_POLICY_RULE)
-
-# Check the gettext tools to make sure they are GNU
-AC_PATH_PROG(XGETTEXT, xgettext)
-AC_PATH_PROG(MSGMERGE, msgmerge)
-AC_PATH_PROG(MSGFMT, msgfmt)
-AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
-if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
- AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
-fi
-xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
-mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
-mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
-if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
- AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
-fi
-
-AC_PATH_PROG(INTLTOOL_PERL, perl)
-if test -z "$INTLTOOL_PERL"; then
- AC_MSG_ERROR([perl not found])
-fi
-AC_MSG_CHECKING([for perl >= 5.8.1])
-$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
-if test $? -ne 0; then
- AC_MSG_ERROR([perl 5.8.1 is required for intltool])
-else
- IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`"
- AC_MSG_RESULT([$IT_PERL_VERSION])
-fi
-if test "x$2" != "xno-xml"; then
- AC_MSG_CHECKING([for XML::Parser])
- if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
- AC_MSG_RESULT([ok])
- else
- AC_MSG_ERROR([XML::Parser perl module is required for intltool])
- fi
-fi
-
-# Substitute ALL_LINGUAS so we can use it in po/Makefile
-AC_SUBST(ALL_LINGUAS)
-
-# Set DATADIRNAME correctly if it is not set yet
-# (copied from glib-gettext.m4)
-if test -z "$DATADIRNAME"; then
- AC_LINK_IFELSE(
- [AC_LANG_PROGRAM([[]],
- [[extern int _nl_msg_cat_cntr;
- return _nl_msg_cat_cntr]])],
- [DATADIRNAME=share],
- [case $host in
- *-*-solaris*)
- dnl On Solaris, if bind_textdomain_codeset is in libc,
- dnl GNU format message catalog is always supported,
- dnl since both are added to the libc all together.
- dnl Hence, we'd like to go with DATADIRNAME=share
- dnl in this case.
- AC_CHECK_FUNC(bind_textdomain_codeset,
- [DATADIRNAME=share], [DATADIRNAME=lib])
- ;;
- *)
- [DATADIRNAME=lib]
- ;;
- esac])
-fi
-AC_SUBST(DATADIRNAME)
-
-IT_PO_SUBDIR([po])
-
-])
-
-
-# IT_PO_SUBDIR(DIRNAME)
-# ---------------------
-# All po subdirs have to be declared with this macro; the subdir "po" is
-# declared by IT_PROG_INTLTOOL.
-#
-AC_DEFUN([IT_PO_SUBDIR],
-[AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
-dnl
-dnl The following CONFIG_COMMANDS should be executed at the very end
-dnl of config.status.
-AC_CONFIG_COMMANDS_PRE([
- AC_CONFIG_COMMANDS([$1/stamp-it], [
- if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then
- AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.])
- fi
- rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp"
- >"$1/stamp-it.tmp"
- [sed '/^#/d
- s/^[[].*] *//
- /^[ ]*$/d
- '"s|^| $ac_top_srcdir/|" \
- "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
- ]
- [sed '/^POTFILES =/,/[^\\]$/ {
- /^POTFILES =/!d
- r $1/POTFILES
- }
- ' "$1/Makefile.in" >"$1/Makefile"]
- rm -f "$1/Makefile.tmp"
- mv "$1/stamp-it.tmp" "$1/stamp-it"
- ])
-])dnl
-])
-
-# _IT_SUBST(VARIABLE)
-# -------------------
-# Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
-#
-AC_DEFUN([_IT_SUBST],
-[
-AC_SUBST([$1])
-m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
-]
-)
-
-# deprecated macros
-AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
-# A hint is needed for aclocal from Automake <= 1.9.4:
-# AC_DEFUN([AC_PROG_INTLTOOL], ...)
-
diff --git a/m4/libcurl.m4 b/m4/libcurl.m4
deleted file mode 100644
index f54a5f2..0000000
--- a/m4/libcurl.m4
+++ /dev/null
@@ -1,240 +0,0 @@
-# LIBCURL_CHECK_CONFIG ([DEFAULT-ACTION], [MINIMUM-VERSION],
-# [ACTION-IF-YES], [ACTION-IF-NO])
-# ----------------------------------------------------------
-# David Shaw <dshaw@jabberwocky.com> May-09-2006
-#
-# Checks for libcurl. DEFAULT-ACTION is the string yes or no to
-# specify whether to default to --with-libcurl or --without-libcurl.
-# If not supplied, DEFAULT-ACTION is yes. MINIMUM-VERSION is the
-# minimum version of libcurl to accept. Pass the version as a regular
-# version number like 7.10.1. If not supplied, any version is
-# accepted. ACTION-IF-YES is a list of shell commands to run if
-# libcurl was successfully found and passed the various tests.
-# ACTION-IF-NO is a list of shell commands that are run otherwise.
-# Note that using --without-libcurl does run ACTION-IF-NO.
-#
-# This macro #defines HAVE_LIBCURL if a working libcurl setup is
-# found, and sets @LIBCURL@ and @LIBCURL_CPPFLAGS@ to the necessary
-# values. Other useful defines are LIBCURL_FEATURE_xxx where xxx are
-# the various features supported by libcurl, and LIBCURL_PROTOCOL_yyy
-# where yyy are the various protocols supported by libcurl. Both xxx
-# and yyy are capitalized. See the list of AH_TEMPLATEs at the top of
-# the macro for the complete list of possible defines. Shell
-# variables $libcurl_feature_xxx and $libcurl_protocol_yyy are also
-# defined to 'yes' for those features and protocols that were found.
-# Note that xxx and yyy keep the same capitalization as in the
-# curl-config list (e.g. it's "HTTP" and not "http").
-#
-# Users may override the detected values by doing something like:
-# LIBCURL="-lcurl" LIBCURL_CPPFLAGS="-I/usr/myinclude" ./configure
-#
-# For the sake of sanity, this macro assumes that any libcurl that is
-# found is after version 7.7.2, the first version that included the
-# curl-config script. Note that it is very important for people
-# packaging binary versions of libcurl to include this script!
-# Without curl-config, we can only guess what protocols are available,
-# or use curl_version_info to figure it out at runtime.
-
-AC_DEFUN([LIBCURL_CHECK_CONFIG],
-[
- AH_TEMPLATE([LIBCURL_FEATURE_SSL],[Defined if libcurl supports SSL])
- AH_TEMPLATE([LIBCURL_FEATURE_KRB4],[Defined if libcurl supports KRB4])
- AH_TEMPLATE([LIBCURL_FEATURE_IPV6],[Defined if libcurl supports IPv6])
- AH_TEMPLATE([LIBCURL_FEATURE_LIBZ],[Defined if libcurl supports libz])
- AH_TEMPLATE([LIBCURL_FEATURE_ASYNCHDNS],[Defined if libcurl supports AsynchDNS])
- AH_TEMPLATE([LIBCURL_FEATURE_IDN],[Defined if libcurl supports IDN])
- AH_TEMPLATE([LIBCURL_FEATURE_SSPI],[Defined if libcurl supports SSPI])
- AH_TEMPLATE([LIBCURL_FEATURE_NTLM],[Defined if libcurl supports NTLM])
-
- AH_TEMPLATE([LIBCURL_PROTOCOL_HTTP],[Defined if libcurl supports HTTP])
- AH_TEMPLATE([LIBCURL_PROTOCOL_HTTPS],[Defined if libcurl supports HTTPS])
- AH_TEMPLATE([LIBCURL_PROTOCOL_FTP],[Defined if libcurl supports FTP])
- AH_TEMPLATE([LIBCURL_PROTOCOL_FTPS],[Defined if libcurl supports FTPS])
- AH_TEMPLATE([LIBCURL_PROTOCOL_FILE],[Defined if libcurl supports FILE])
- AH_TEMPLATE([LIBCURL_PROTOCOL_TELNET],[Defined if libcurl supports TELNET])
- AH_TEMPLATE([LIBCURL_PROTOCOL_LDAP],[Defined if libcurl supports LDAP])
- AH_TEMPLATE([LIBCURL_PROTOCOL_DICT],[Defined if libcurl supports DICT])
- AH_TEMPLATE([LIBCURL_PROTOCOL_TFTP],[Defined if libcurl supports TFTP])
-
- AC_ARG_WITH(libcurl,
- AC_HELP_STRING([--with-libcurl=DIR],[look for the curl library in DIR]),
- [_libcurl_with=$withval],[_libcurl_with=ifelse([$1],,[yes],[$1])])
-
- if test "$_libcurl_with" != "no" ; then
-
- AC_PROG_AWK
-
- _libcurl_version_parse="eval $AWK '{split(\$NF,A,\".\"); X=256*256*A[[1]]+256*A[[2]]+A[[3]]; print X;}'"
-
- _libcurl_try_link=yes
-
- if test -d "$_libcurl_with" ; then
- LIBCURL_CPPFLAGS="-I$withval/include"
- _libcurl_ldflags="-L$withval/lib"
- AC_PATH_PROG([_libcurl_config],[curl-config],["$withval/bin"],
- ["$withval/bin"])
- else
- AC_PATH_PROG([_libcurl_config],[curl-config])
- fi
-
- if test x$_libcurl_config != "x" ; then
- AC_CACHE_CHECK([for the version of libcurl],
- [libcurl_cv_lib_curl_version],
- [libcurl_cv_lib_curl_version=`$_libcurl_config --version | $AWK '{print $[]2}'`])
-
- _libcurl_version=`echo $libcurl_cv_lib_curl_version | $_libcurl_version_parse`
- _libcurl_wanted=`echo ifelse([$2],,[0],[$2]) | $_libcurl_version_parse`
-
- if test $_libcurl_wanted -gt 0 ; then
- AC_CACHE_CHECK([for libcurl >= version $2],
- [libcurl_cv_lib_version_ok],
- [
- if test $_libcurl_version -ge $_libcurl_wanted ; then
- libcurl_cv_lib_version_ok=yes
- else
- libcurl_cv_lib_version_ok=no
- fi
- ])
- fi
-
- if test $_libcurl_wanted -eq 0 || test x$libcurl_cv_lib_version_ok = xyes ; then
- if test x"$LIBCURL_CPPFLAGS" = "x" ; then
- LIBCURL_CPPFLAGS=`$_libcurl_config --cflags`
- fi
- if test x"$LIBCURL" = "x" ; then
- LIBCURL=`$_libcurl_config --libs`
-
- # This is so silly, but Apple actually has a bug in their
- # curl-config script. Fixed in Tiger, but there are still
- # lots of Panther installs around.
- case "${host}" in
- powerpc-apple-darwin7*)
- LIBCURL=`echo $LIBCURL | sed -e 's|-arch i386||g'`
- ;;
- esac
- fi
-
- # All curl-config scripts support --feature
- _libcurl_features=`$_libcurl_config --feature`
-
- # Is it modern enough to have --protocols? (7.12.4)
- if test $_libcurl_version -ge 461828 ; then
- _libcurl_protocols=`$_libcurl_config --protocols`
- fi
- else
- _libcurl_try_link=no
- fi
-
- unset _libcurl_wanted
- fi
-
- if test $_libcurl_try_link = yes ; then
-
- # we didn't find curl-config, so let's see if the user-supplied
- # link line (or failing that, "-lcurl") is enough.
- LIBCURL=${LIBCURL-"$_libcurl_ldflags -lcurl"}
-
- AC_CACHE_CHECK([whether libcurl is usable],
- [libcurl_cv_lib_curl_usable],
- [
- _libcurl_save_cppflags=$CPPFLAGS
- CPPFLAGS="$LIBCURL_CPPFLAGS $CPPFLAGS"
- _libcurl_save_libs=$LIBS
- LIBS="$LIBCURL $LIBS"
-
- AC_LINK_IFELSE(AC_LANG_PROGRAM([#include <curl/curl.h>],[
-/* Try and use a few common options to force a failure if we are
- missing symbols or can't link. */
-int x;
-curl_easy_setopt(NULL,CURLOPT_URL,NULL);
-x=CURL_ERROR_SIZE;
-x=CURLOPT_WRITEFUNCTION;
-x=CURLOPT_FILE;
-x=CURLOPT_ERRORBUFFER;
-x=CURLOPT_STDERR;
-x=CURLOPT_VERBOSE;
-]),libcurl_cv_lib_curl_usable=yes,libcurl_cv_lib_curl_usable=no)
-
- CPPFLAGS=$_libcurl_save_cppflags
- LIBS=$_libcurl_save_libs
- unset _libcurl_save_cppflags
- unset _libcurl_save_libs
- ])
-
- if test $libcurl_cv_lib_curl_usable = yes ; then
-
- # Does curl_free() exist in this version of libcurl?
- # If not, fake it with free()
-
- _libcurl_save_cppflags=$CPPFLAGS
- CPPFLAGS="$CPPFLAGS $LIBCURL_CPPFLAGS"
- _libcurl_save_libs=$LIBS
- LIBS="$LIBS $LIBCURL"
-
- AC_CHECK_FUNC(curl_free,,
- AC_DEFINE(curl_free,free,
- [Define curl_free() as free() if our version of curl lacks curl_free.]))
-
- CPPFLAGS=$_libcurl_save_cppflags
- LIBS=$_libcurl_save_libs
- unset _libcurl_save_cppflags
- unset _libcurl_save_libs
-
- AC_DEFINE(HAVE_LIBCURL,1,
- [Define to 1 if you have a functional curl library.])
- AC_SUBST(LIBCURL_CPPFLAGS)
- AC_SUBST(LIBCURL)
-
- for _libcurl_feature in $_libcurl_features ; do
- AC_DEFINE_UNQUOTED(AS_TR_CPP(libcurl_feature_$_libcurl_feature),[1])
- eval AS_TR_SH(libcurl_feature_$_libcurl_feature)=yes
- done
-
- if test "x$_libcurl_protocols" = "x" ; then
-
- # We don't have --protocols, so just assume that all
- # protocols are available
- _libcurl_protocols="HTTP FTP FILE TELNET LDAP DICT"
-
- if test x$libcurl_feature_SSL = xyes ; then
- _libcurl_protocols="$_libcurl_protocols HTTPS"
-
- # FTPS wasn't standards-compliant until version
- # 7.11.0
- if test $_libcurl_version -ge 461568; then
- _libcurl_protocols="$_libcurl_protocols FTPS"
- fi
- fi
- fi
-
- for _libcurl_protocol in $_libcurl_protocols ; do
- AC_DEFINE_UNQUOTED(AS_TR_CPP(libcurl_protocol_$_libcurl_protocol),[1])
- eval AS_TR_SH(libcurl_protocol_$_libcurl_protocol)=yes
- done
- else
- unset LIBCURL
- unset LIBCURL_CPPFLAGS
- fi
- fi
-
- unset _libcurl_try_link
- unset _libcurl_version_parse
- unset _libcurl_config
- unset _libcurl_feature
- unset _libcurl_features
- unset _libcurl_protocol
- unset _libcurl_protocols
- unset _libcurl_version
- unset _libcurl_ldflags
- fi
-
- if test x$_libcurl_with = xno || test x$libcurl_cv_lib_curl_usable != xyes ; then
- # This is the IF-NO path
- ifelse([$4],,:,[$4])
- else
- # This is the IF-YES path
- ifelse([$3],,:,[$3])
- fi
-
- unset _libcurl_with
-])dnl
diff --git a/m4/pkg.m4 b/m4/pkg.m4
deleted file mode 100644
index 73973f7..0000000
--- a/m4/pkg.m4
+++ /dev/null
@@ -1,157 +0,0 @@
-# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
-# serial 1 (pkg-config-0.24)
-#
-# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
-#
-# 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 of the License, 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, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-#
-# 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.
-
-# PKG_PROG_PKG_CONFIG([MIN-VERSION])
-# ----------------------------------
-AC_DEFUN([PKG_PROG_PKG_CONFIG],
-[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
-m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
-AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
-AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
-AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
-
-if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
- AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
-fi
-if test -n "$PKG_CONFIG"; then
- _pkg_min_version=m4_default([$1], [0.9.0])
- AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
- if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
- AC_MSG_RESULT([yes])
- else
- AC_MSG_RESULT([no])
- PKG_CONFIG=""
- fi
-fi[]dnl
-])# PKG_PROG_PKG_CONFIG
-
-# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
-#
-# Check to see whether a particular set of modules exists. Similar
-# to PKG_CHECK_MODULES(), but does not set variables or print errors.
-#
-# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
-# only at the first occurence in configure.ac, so if the first place
-# it's called might be skipped (such as if it is within an "if", you
-# have to call PKG_CHECK_EXISTS manually
-# --------------------------------------------------------------
-AC_DEFUN([PKG_CHECK_EXISTS],
-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
-if test -n "$PKG_CONFIG" && \
- AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
- m4_default([$2], [:])
-m4_ifvaln([$3], [else
- $3])dnl
-fi])
-
-# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
-# ---------------------------------------------
-m4_define([_PKG_CONFIG],
-[if test -n "$$1"; then
- pkg_cv_[]$1="$$1"
- elif test -n "$PKG_CONFIG"; then
- PKG_CHECK_EXISTS([$3],
- [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
- [pkg_failed=yes])
- else
- pkg_failed=untried
-fi[]dnl
-])# _PKG_CONFIG
-
-# _PKG_SHORT_ERRORS_SUPPORTED
-# -----------------------------
-AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
- _pkg_short_errors_supported=yes
-else
- _pkg_short_errors_supported=no
-fi[]dnl
-])# _PKG_SHORT_ERRORS_SUPPORTED
-
-
-# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
-# [ACTION-IF-NOT-FOUND])
-#
-#
-# Note that if there is a possibility the first call to
-# PKG_CHECK_MODULES might not happen, you should be sure to include an
-# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
-#
-#
-# --------------------------------------------------------------
-AC_DEFUN([PKG_CHECK_MODULES],
-[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
-AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
-AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
-
-pkg_failed=no
-AC_MSG_CHECKING([for $1])
-
-_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
-_PKG_CONFIG([$1][_LIBS], [libs], [$2])
-
-m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
-and $1[]_LIBS to avoid the need to call pkg-config.
-See the pkg-config man page for more details.])
-
-if test $pkg_failed = yes; then
- AC_MSG_RESULT([no])
- _PKG_SHORT_ERRORS_SUPPORTED
- if test $_pkg_short_errors_supported = yes; then
- $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1`
- else
- $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1`
- fi
- # Put the nasty error message in config.log where it belongs
- echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
-
- m4_default([$4], [AC_MSG_ERROR(
-[Package requirements ($2) were not met:
-
-$$1_PKG_ERRORS
-
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
-installed software in a non-standard prefix.
-
-_PKG_TEXT])
- ])
-elif test $pkg_failed = untried; then
- AC_MSG_RESULT([no])
- m4_default([$4], [AC_MSG_FAILURE(
-[The pkg-config script could not be found or is too old. Make sure it
-is in your PATH or set the PKG_CONFIG environment variable to the full
-path to pkg-config.
-
-_PKG_TEXT
-
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.])
- ])
-else
- $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
- $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
- AC_MSG_RESULT([yes])
- $3
-fi[]dnl
-])# PKG_CHECK_MODULES
diff --git a/transmission-remote-gtk.pot b/transmission-remote-gtk.pot
deleted file mode 100644
index 5ba9947..0000000
--- a/transmission-remote-gtk.pot
+++ /dev/null
@@ -1,1512 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-14 20:45+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-
-#: src/torrent.c:360 src/torrent.c:380
-msgid "Metadata Downloading"
-msgstr ""
-
-#: src/torrent.c:362 src/torrent.c:382 src/trg-state-selector.c:658
-msgid "Downloading"
-msgstr ""
-
-#: src/torrent.c:364
-msgid "Queued download"
-msgstr ""
-
-#: src/torrent.c:366 src/torrent.c:390
-msgid "Waiting To Check"
-msgstr ""
-
-#: src/torrent.c:368 src/torrent.c:388 src/trg-state-selector.c:684
-msgid "Checking"
-msgstr ""
-
-#: src/torrent.c:370
-msgid "Queued seed"
-msgstr ""
-
-#: src/torrent.c:372 src/torrent.c:386 src/trg-remote-prefs-dialog.c:360
-#: src/trg-state-selector.c:665 src/trg-torrent-props-dialog.c:438
-msgid "Seeding"
-msgstr ""
-
-#: src/torrent.c:374 src/torrent.c:384 src/torrent-cell-renderer.c:278
-#: src/trg-state-selector.c:672
-msgid "Paused"
-msgstr ""
-
-#: src/torrent.c:394
-msgid "Unknown"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:150
-#, c-format
-msgid "%1$s of %2$s (%3$s)"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:160
-#, c-format
-msgid "%1$s of %2$s (%3$s), uploaded %4$s (Ratio: %5$s Goal: %6$s)"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:176
-#, c-format
-msgid "%1$s of %2$s (%3$s), uploaded %4$s (Ratio: %5$s)"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:193
-#, c-format
-msgid "%1$s, uploaded %2$s (Ratio: %3$s Goal: %4$s)"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:207
-#, c-format
-msgid "%1$s, uploaded %2$s (Ratio: %3$s)"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:223
-msgid "Remaining time unknown"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:228
-#, c-format
-msgid "%s remaining"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:252
-#, c-format
-msgid "%1$s %2$s, %3$s %4$s"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:256 src/torrent-cell-renderer.c:259
-#, c-format
-msgid "%1$s %2$s"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:263
-msgid "Idle"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:277
-msgid "Finished"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:280
-msgid "Queued for verification"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:282
-msgid "Queued for download"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:284
-msgid "Queued for seeding"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:287
-#, c-format
-msgid "Verifying data (%1$s tested)"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:295
-#, c-format
-msgid "Ratio %s"
-msgstr ""
-
-#: src/torrent-cell-renderer.c:325
-#, c-format
-msgid "Downloading from %1$lli of %2$lli connected peer"
-msgid_plural "Downloading from %1$lli of %2$lli connected peers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/torrent-cell-renderer.c:333
-#, c-format
-msgid "Downloading metadata from %1$lli peer (%2$s done)"
-msgid_plural "Downloading metadata from %1$lli peers (%2$s done)"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/torrent-cell-renderer.c:344
-#, c-format
-msgid "Seeding to %1$lli of %2$lli connected peer"
-msgid_plural "Seeding to %1$lli of %2$lli connected peers"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/trg-about-window.c:74
-msgid "A remote client to transmission-daemon."
-msgstr ""
-
-#: src/trg-cell-renderer-priority.c:74 src/trg-main-window.c:2062
-#: src/trg-torrent-add-dialog.c:379 src/trg-torrent-props-dialog.c:407
-msgid "Low"
-msgstr ""
-
-#: src/trg-cell-renderer-priority.c:76 src/trg-main-window.c:2058
-#: src/trg-torrent-add-dialog.c:380 src/trg-torrent-props-dialog.c:409
-msgid "High"
-msgstr ""
-
-#: src/trg-cell-renderer-priority.c:78 src/trg-main-window.c:2060
-#: src/trg-torrent-add-dialog.c:379 src/trg-torrent-props-dialog.c:408
-msgid "Normal"
-msgstr ""
-
-#: src/trg-cell-renderer-priority.c:80
-msgid "Mixed"
-msgstr ""
-
-#: src/trg-files-tree-view.c:185 src/trg-general-panel.c:278
-#: src/trg-preferences-dialog.c:644 src/trg-torrent-add-dialog.c:281
-#: src/trg-torrent-tree-view.c:52
-msgid "Name"
-msgstr ""
-
-#: src/trg-files-tree-view.c:189 src/trg-general-panel.c:281
-#: src/trg-torrent-add-dialog.c:299 src/trg-torrent-tree-view.c:57
-msgid "Size"
-msgstr ""
-
-#: src/trg-files-tree-view.c:191 src/trg-peers-tree-view.c:74
-msgid "Progress"
-msgstr ""
-
-#: src/trg-files-tree-view.c:193 src/trg-files-tree-view-common.c:69
-#: src/trg-torrent-add-dialog.c:312 src/trg-torrent-add-dialog.c:662
-msgid "Download"
-msgstr ""
-
-#: src/trg-files-tree-view.c:195 src/trg-main-window.c:2051
-#: src/trg-torrent-add-dialog.c:328 src/trg-torrent-tree-view.c:145
-msgid "Priority"
-msgstr ""
-
-#: src/trg-files-tree-view-common.c:50 src/trg-torrent-add-dialog.c:653
-msgid "High Priority"
-msgstr ""
-
-#: src/trg-files-tree-view-common.c:54 src/trg-torrent-add-dialog.c:656
-msgid "Normal Priority"
-msgstr ""
-
-#: src/trg-files-tree-view-common.c:58 src/trg-torrent-add-dialog.c:659
-msgid "Low Priority"
-msgstr ""
-
-#: src/trg-files-tree-view-common.c:77 src/trg-torrent-add-dialog.c:665
-msgid "Skip"
-msgstr ""
-
-#: src/trg-files-tree-view-common.c:84
-msgid "Expand All"
-msgstr ""
-
-#: src/trg-files-tree-view-common.c:89
-msgid "Collapse All"
-msgstr ""
-
-#: src/trg-general-panel.c:153 src/trg-general-panel.c:212
-msgid "N/A"
-msgstr ""
-
-#: src/trg-general-panel.c:168
-msgid "(Private)"
-msgstr ""
-
-#: src/trg-general-panel.c:168
-msgid "(Public)"
-msgstr ""
-
-#: src/trg-general-panel.c:200 src/trg-main-window.c:1127
-#: src/trg-main-window.c:1540 src/trg-main-window.c:2186
-#: src/trg-rss-window.c:205 src/trg-rss-window.c:219
-#: src/trg-state-selector.c:538 src/trg-torrent-add-url-dialog.c:67
-#: src/util.c:333
-msgid "Error"
-msgstr ""
-
-#: src/trg-general-panel.c:283 src/trg-torrent-tree-view.c:123
-msgid "ETA"
-msgstr ""
-
-#: src/trg-general-panel.c:285 src/trg-torrent-tree-view.c:151
-msgid "Completed"
-msgstr ""
-
-#: src/trg-general-panel.c:288
-msgid "Seeders"
-msgstr ""
-
-#: src/trg-general-panel.c:290
-msgid "Rate Down"
-msgstr ""
-
-#: src/trg-general-panel.c:292 src/trg-torrent-tree-view.c:128
-msgid "Downloaded"
-msgstr ""
-
-#: src/trg-general-panel.c:295 src/trg-torrent-tree-view.c:70
-msgid "Leechers"
-msgstr ""
-
-#: src/trg-general-panel.c:297
-msgid "Rate Up"
-msgstr ""
-
-#: src/trg-general-panel.c:299 src/trg-torrent-tree-view.c:125
-msgid "Uploaded"
-msgstr ""
-
-#: src/trg-general-panel.c:302 src/trg-torrent-tree-view.c:63
-msgid "Status"
-msgstr ""
-
-#: src/trg-general-panel.c:304 src/trg-torrent-tree-view.c:131
-msgid "Ratio"
-msgstr ""
-
-#: src/trg-general-panel.c:307
-msgid "Comment"
-msgstr ""
-
-#: src/trg-general-panel.c:310
-msgid "Completed At"
-msgstr ""
-
-#: src/trg-general-panel.c:314 src/trg-torrent-tree-view.c:139
-msgid "Location"
-msgstr ""
-
-#: src/trg-main-window.c:363
-msgid "This torrent has completed."
-msgstr ""
-
-#: src/trg-main-window.c:375
-msgid "This torrent has been added."
-msgstr ""
-
-#: src/trg-main-window.c:605
-msgid "No hostname set"
-msgstr ""
-
-#: src/trg-main-window.c:608
-msgid "Unknown error getting settings"
-msgstr ""
-
-#: src/trg-main-window.c:628
-msgid "Connecting..."
-msgstr ""
-
-#: src/trg-main-window.c:887
-#, c-format
-msgid "<big><b>Remove torrent \"%s\"?</b></big>"
-msgstr ""
-
-#: src/trg-main-window.c:888
-#, c-format
-msgid "<big><b>Remove %d torrents?</b></big>"
-msgstr ""
-
-#: src/trg-main-window.c:910
-#, c-format
-msgid "<big><b>Remove and delete torrent \"%s\"?</b></big>"
-msgstr ""
-
-#: src/trg-main-window.c:912
-#, c-format
-msgid "<big><b>Remove and delete %d torrents?</b></big>"
-msgstr ""
-
-#: src/trg-main-window.c:1011 src/trg-preferences-dialog.c:931
-#: src/trg-remote-prefs-dialog.c:693
-msgid "General"
-msgstr ""
-
-#: src/trg-main-window.c:1020 src/trg-torrent-props-dialog.c:613
-msgid "Trackers"
-msgstr ""
-
-#: src/trg-main-window.c:1028 src/trg-torrent-props-dialog.c:582
-msgid "Files"
-msgstr ""
-
-#: src/trg-main-window.c:1036 src/trg-remote-prefs-dialog.c:399
-#: src/trg-torrent-props-dialog.c:456 src/trg-torrent-props-dialog.c:596
-#: src/trg-trackers-tree-view.c:190
-msgid "Peers"
-msgstr ""
-
-#: src/trg-main-window.c:1119
-#, c-format
-msgid "This application supports Transmission %g and later, you have %g."
-msgstr ""
-
-#: src/trg-main-window.c:1185 src/trg-status-bar.c:74 src/trg-status-bar.c:104
-msgid "Disconnected"
-msgstr ""
-
-#: src/trg-main-window.c:1230
-#, c-format
-msgid "%d Downloading @ %s"
-msgstr ""
-
-#: src/trg-main-window.c:1237
-#, c-format
-msgid "%d Seeding @ %s"
-msgstr ""
-
-#: src/trg-main-window.c:1288
-#, c-format
-msgid "Request %d/%d failed: %s"
-msgstr ""
-
-#: src/trg-main-window.c:2106
-msgid "No Limit"
-msgstr ""
-
-#: src/trg-main-window.c:2207 src/trg-menu-bar.c:697 src/trg-toolbar.c:224
-msgid "Properties"
-msgstr ""
-
-#: src/trg-main-window.c:2210 src/trg-toolbar.c:217
-msgid "Resume"
-msgstr ""
-
-#: src/trg-main-window.c:2213 src/trg-toolbar.c:220
-msgid "Pause"
-msgstr ""
-
-#: src/trg-main-window.c:2216
-msgid "Verify"
-msgstr ""
-
-#: src/trg-main-window.c:2219
-msgid "Re-announce"
-msgstr ""
-
-#: src/trg-main-window.c:2222 src/trg-torrent-move-dialog.c:119
-#: src/trg-torrent-move-dialog.c:126
-msgid "Move"
-msgstr ""
-
-#: src/trg-main-window.c:2225 src/trg-menu-bar.c:728 src/trg-toolbar.c:228
-msgid "Remove"
-msgstr ""
-
-#: src/trg-main-window.c:2228
-msgid "Remove & Delete"
-msgstr ""
-
-#: src/trg-main-window.c:2252 src/trg-preferences-dialog.c:941
-msgid "Actions"
-msgstr ""
-
-#: src/trg-main-window.c:2281 src/trg-menu-bar.c:744
-msgid "Start Now"
-msgstr ""
-
-#: src/trg-main-window.c:2284 src/trg-menu-bar.c:749
-msgid "Move Up Queue"
-msgstr ""
-
-#: src/trg-main-window.c:2287 src/trg-menu-bar.c:756
-msgid "Move Down Queue"
-msgstr ""
-
-#: src/trg-main-window.c:2290 src/trg-menu-bar.c:763
-msgid "Bottom Of Queue"
-msgstr ""
-
-#: src/trg-main-window.c:2293 src/trg-menu-bar.c:767
-msgid "Top Of Queue"
-msgstr ""
-
-#: src/trg-main-window.c:2302 src/trg-main-window.c:2385
-msgid "Down Limit"
-msgstr ""
-
-#: src/trg-main-window.c:2307 src/trg-main-window.c:2389
-msgid "Up Limit"
-msgstr ""
-
-#: src/trg-main-window.c:2336 src/trg-main-window.c:2343
-#: src/trg-remote-prefs-dialog.c:497
-msgid "Updating..."
-msgstr ""
-
-#: src/trg-main-window.c:2357 src/trg-menu-bar.c:656 src/trg-toolbar.c:196
-msgid "Connect"
-msgstr ""
-
-#: src/trg-main-window.c:2364 src/trg-toolbar.c:207
-msgid "Disconnect"
-msgstr ""
-
-#: src/trg-main-window.c:2368 src/trg-toolbar.c:210
-#: src/trg-trackers-tree-view.c:284 src/trg-trackers-tree-view.c:311
-msgid "Add"
-msgstr ""
-
-#: src/trg-main-window.c:2372
-msgid "Add from URL"
-msgstr ""
-
-#: src/trg-main-window.c:2376
-msgid "Resume All"
-msgstr ""
-
-#: src/trg-main-window.c:2380
-msgid "Pause All"
-msgstr ""
-
-#: src/trg-main-window.c:2396
-msgid "Quit"
-msgstr ""
-
-#: src/trg-main-window.c:2510 src/trg-menu-bar.c:550
-msgid "Graph"
-msgstr ""
-
-#: src/trg-main-window.c:2699
-msgid "Transmission Remote"
-msgstr ""
-
-#: src/trg-menu-bar.c:478
-msgid "_View"
-msgstr ""
-
-#: src/trg-menu-bar.c:487
-msgid "Transmission Style"
-msgstr ""
-
-#: src/trg-menu-bar.c:497
-msgid "Transmission Compact Style"
-msgstr ""
-
-#: src/trg-menu-bar.c:507
-msgid "Classic Style"
-msgstr ""
-
-#: src/trg-menu-bar.c:513
-msgid "Sort"
-msgstr ""
-
-#: src/trg-menu-bar.c:518 src/trg-preferences-dialog.c:709
-msgid "State selector"
-msgstr ""
-
-#: src/trg-menu-bar.c:524 src/trg-preferences-dialog.c:716
-msgid "Directory filters"
-msgstr ""
-
-#: src/trg-menu-bar.c:533 src/trg-preferences-dialog.c:723
-msgid "Tracker filters"
-msgstr ""
-
-#: src/trg-menu-bar.c:542 src/trg-preferences-dialog.c:730
-msgid "Torrent Details"
-msgstr ""
-
-#: src/trg-menu-bar.c:556
-msgid "_Statistics"
-msgstr ""
-
-#: src/trg-menu-bar.c:563
-msgid "_RSS"
-msgstr ""
-
-#: src/trg-menu-bar.c:576
-msgid "_Options"
-msgstr ""
-
-#: src/trg-menu-bar.c:582
-msgid "_Local Preferences"
-msgstr ""
-
-#: src/trg-menu-bar.c:589
-msgid "_Remote Preferences"
-msgstr ""
-
-#: src/trg-menu-bar.c:649
-msgid "_File"
-msgstr ""
-
-#: src/trg-menu-bar.c:662
-msgid "_Disconnect"
-msgstr ""
-
-#: src/trg-menu-bar.c:668
-msgid "_Add"
-msgstr ""
-
-#: src/trg-menu-bar.c:673
-msgid "Add from _URL"
-msgstr ""
-
-#: src/trg-menu-bar.c:679
-msgid "_Quit"
-msgstr ""
-
-#: src/trg-menu-bar.c:690
-msgid "_Torrent"
-msgstr ""
-
-#: src/trg-menu-bar.c:702
-msgid "_Resume"
-msgstr ""
-
-#: src/trg-menu-bar.c:707
-msgid "_Pause"
-msgstr ""
-
-#: src/trg-menu-bar.c:712
-msgid "_Verify"
-msgstr ""
-
-#: src/trg-menu-bar.c:718
-msgid "Re-_announce"
-msgstr ""
-
-#: src/trg-menu-bar.c:723
-msgid "_Move"
-msgstr ""
-
-#: src/trg-menu-bar.c:734
-msgid "Remove and Delete"
-msgstr ""
-
-#: src/trg-menu-bar.c:775
-msgid "_Resume All"
-msgstr ""
-
-#: src/trg-menu-bar.c:781
-msgid "_Pause All"
-msgstr ""
-
-#: src/trg-menu-bar.c:793
-msgid "_Help"
-msgstr ""
-
-#: src/trg-menu-bar.c:799
-msgid "_About"
-msgstr ""
-
-#: src/trg-peers-tree-view.c:54
-msgid "IP"
-msgstr ""
-
-#: src/trg-peers-tree-view.c:58 src/trg-trackers-tree-view.c:209
-msgid "Host"
-msgstr ""
-
-#: src/trg-peers-tree-view.c:63
-msgid "Country"
-msgstr ""
-
-#: src/trg-peers-tree-view.c:67
-msgid "City"
-msgstr ""
-
-#: src/trg-peers-tree-view.c:70 src/trg-torrent-tree-view.c:117
-msgid "Down Speed"
-msgstr ""
-
-#: src/trg-peers-tree-view.c:72 src/trg-torrent-tree-view.c:120
-msgid "Up Speed"
-msgstr ""
-
-#: src/trg-peers-tree-view.c:76
-msgid "Flags"
-msgstr ""
-
-#: src/trg-peers-tree-view.c:78
-msgid "Client"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:400
-msgid "Updates"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:402
-msgid "Update active torrents only"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:409
-msgid "Full update every (?) updates"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:423
-msgid "Update interval:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:427
-msgid "Minimised update interval:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:432
-msgid "Session update interval:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:434
-msgid "Torrents"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:436
-msgid "Start paused"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:440
-msgid "Options dialog on add"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:445 src/trg-torrent-add-dialog.c:734
-msgid "Delete local .torrent file after adding"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:598
-msgid "Commands"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:608 src/trg-preferences-dialog.c:682
-msgid "Label"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:611
-msgid "Command"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:634 src/trg-preferences-dialog.c:952
-#: src/trg-rss-window.c:272
-msgid "RSS Feeds"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:647
-msgid "URL"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:672
-msgid "Remote Download Directories"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:685
-msgid "Directory"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:707 src/trg-preferences-dialog.c:936
-msgid "View"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:738
-msgid "Show graph"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:745
-msgid "System Tray"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:748
-msgid "Show in system tray (needs whitelisting in unity)"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:750
-msgid "Show in system tray"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:760
-msgid "Minimise to system tray"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:770
-msgid "Notifications"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:772
-msgid "Torrent added notifications"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:776
-msgid "Torrent complete notifications"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:803
-msgid "Profile: "
-msgstr ""
-
-#: src/trg-preferences-dialog.c:829
-msgid "Name:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:834 src/trg-preferences-dialog.c:926
-msgid "Connection"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:837
-msgid "Host:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:841
-msgid "Port:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:843
-msgid "RPC URL Path:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:846
-msgid "Username:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:850
-msgid "Password:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:852
-msgid "Automatically connect"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:858
-msgid "SSL"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:861
-msgid "Validate SSL Certificate"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:869
-msgid "Timeout:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:873
-msgid "Retries:"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:915 src/trg-toolbar.c:239
-msgid "Local Preferences"
-msgstr ""
-
-#: src/trg-preferences-dialog.c:946
-msgid "Directories"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:305
-msgid "Bandwidth limits"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:309
-msgid "Down Limit (KiB/s)"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:316
-msgid "Up Limit (KiB/s)"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:321
-msgid "Alternate limits"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:326
-msgid "Alternate speed limits active"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:333
-msgid "Alternate time range"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:340
-msgid "Alternate down limit (KiB/s)"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:345
-msgid "Alternate up limit (KiB/s)"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:364
-msgid "Seed ratio limit"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:371
-msgid "Queues"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:375
-msgid "Download queue size"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:383
-msgid "Seed queue size"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:391
-msgid "Ignore stalled (minutes)"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:404
-msgid "Global peer limit"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:409
-msgid "Per torrent peer limit"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:422
-msgid "Retest"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:433
-msgid "Port is <span font_weight=\"bold\" fgcolor=\"darkgreen\">open</span>"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:437
-msgid "Port is <span font_weight=\"bold\" fgcolor=\"red\">closed</span>"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:453 src/trg-remote-prefs-dialog.c:522
-msgid "Port test"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:454
-msgid "Testing..."
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:469 src/trg-remote-prefs-dialog.c:577
-msgid "Update"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:474 src/trg-remote-prefs-dialog.c:568
-#, c-format
-msgid "Blocklist (%ld entries)"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:516 src/trg-remote-prefs-dialog.c:698
-msgid "Connections"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:520
-msgid "Peer port"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:523
-msgid "Test"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:527
-msgid "Required"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:528
-msgid "Preferred"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:529
-msgid "Tolerated"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:540
-msgid "Encryption"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:544
-msgid "Random peer port on start"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:549
-msgid "Peer port forwarding"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:552
-msgid "Protocol"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:555
-msgid "Peer exchange (PEX)"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:559
-msgid "Distributed Hash Table (DHT)"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:563
-msgid "Local peer discovery"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:566
-msgid "Blocklist"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:586
-msgid "Blocklist URL:"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:604
-msgid "Environment"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:608
-msgid "Download directory"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:612
-msgid "Incomplete download dir"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:619
-msgid "Torrent done script"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:628
-msgid "Cache size (MiB)"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:631
-msgid "Behavior"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:635
-msgid "Rename partial files"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:640
-msgid "Trash original torrent files"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:645
-msgid "Start added torrents"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:671 src/trg-toolbar.c:243
-msgid "Remote Preferences"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:703 src/trg-torrent-props-dialog.c:400
-msgid "Bandwidth"
-msgstr ""
-
-#: src/trg-remote-prefs-dialog.c:708 src/trg-torrent-props-dialog.c:627
-msgid "Limits"
-msgstr ""
-
-#: src/trg-rss-window.c:195 src/util.c:351
-#, c-format
-msgid "Request failed with HTTP code %d"
-msgstr ""
-
-#: src/trg-rss-window.c:212
-#, c-format
-msgid "Error parsing RSS feed \"%s\": %s"
-msgstr ""
-
-#: src/trg-state-selector.c:656
-msgid "All"
-msgstr ""
-
-#: src/trg-state-selector.c:661 src/trg-state-selector.c:731
-msgid "Queue Down"
-msgstr ""
-
-#: src/trg-state-selector.c:668 src/trg-state-selector.c:735
-msgid "Queue Up"
-msgstr ""
-
-#: src/trg-state-selector.c:675
-msgid "Complete"
-msgstr ""
-
-#: src/trg-state-selector.c:678
-msgid "Incomplete"
-msgstr ""
-
-#: src/trg-state-selector.c:681
-msgid "Active"
-msgstr ""
-
-#: src/trg-stats-dialog.c:275
-msgid "Statistics"
-msgstr ""
-
-#: src/trg-stats-dialog.c:294
-msgid "Version"
-msgstr ""
-
-#: src/trg-stats-dialog.c:296
-msgid "Download Total"
-msgstr ""
-
-#: src/trg-stats-dialog.c:298
-msgid "Upload Total"
-msgstr ""
-
-#: src/trg-stats-dialog.c:300
-msgid "Files Added"
-msgstr ""
-
-#: src/trg-stats-dialog.c:302
-msgid "Session Count"
-msgstr ""
-
-#: src/trg-stats-dialog.c:304
-msgid "Time Active"
-msgstr ""
-
-#: src/trg-stats-dialog.c:309
-msgid "Statistic"
-msgstr ""
-
-#: src/trg-stats-dialog.c:311
-msgid "Session"
-msgstr ""
-
-#: src/trg-stats-dialog.c:314
-msgid "Cumulative"
-msgstr ""
-
-#: src/trg-status-bar.c:141
-#, c-format
-msgid "Connected: %s :: Transmission %s"
-msgstr ""
-
-#: src/trg-status-bar.c:159
-msgid "Updating torrents..."
-msgstr ""
-
-#: src/trg-status-bar.c:172
-#, c-format
-msgid "Free space: %s"
-msgstr ""
-
-#: src/trg-status-bar.c:184
-msgid "Disable alternate speed limits"
-msgstr ""
-
-#: src/trg-status-bar.c:185
-msgid "Enable alternate speed limits"
-msgstr ""
-
-#: src/trg-status-bar.c:222 src/trg-status-bar.c:229
-#, c-format
-msgid " (Limit: %s)"
-msgstr ""
-
-#: src/trg-status-bar.c:234
-#, c-format
-msgid "Down: %s%s, Up: %s%s"
-msgstr ""
-
-#: src/trg-toolbar.c:232
-msgid "Remove with data"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:389
-msgid "Torrent files"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:394
-msgid "All files"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:429
-msgid ""
-"Unable to parse torrent file. File preferences unavailable, but you can "
-"still try uploading it."
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:442
-#, c-format
-msgid "Unable to open torrent file: %s"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:535
-msgid "(None)"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:537
-msgid "(Multiple)"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:560
-msgid "Add a Torrent"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:704
-msgid "Add Torrent"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:727
-msgid "Start _paused"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:744
-msgid "_Torrent file:"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:763
-msgid "_Destination folder:"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:772
-msgid "Apply to all:"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:774
-msgid "Torrent _priority:"
-msgstr ""
-
-#: src/trg-torrent-add-dialog.c:890
-msgid "Show _options dialog"
-msgstr ""
-
-#: src/trg-torrent-add-url-dialog.c:61
-msgid ""
-"You are trying to add a magnet torrent, but DHT is disabled. Distributed "
-"Hash Table (DHT) should be enabled in remote settings."
-msgstr ""
-
-#: src/trg-torrent-add-url-dialog.c:120
-msgid "URL:"
-msgstr ""
-
-#: src/trg-torrent-add-url-dialog.c:123
-msgid "Start Paused"
-msgstr ""
-
-#: src/trg-torrent-add-url-dialog.c:126
-msgid "Add torrent from URL"
-msgstr ""
-
-#: src/trg-torrent-graph.c:410
-msgid "Total Uploading"
-msgstr ""
-
-#: src/trg-torrent-graph.c:418
-msgid "Total Downloading"
-msgstr ""
-
-#: src/trg-torrent-model.c:407
-msgid "Default"
-msgstr ""
-
-#: src/trg-torrent-move-dialog.c:116 src/trg-torrent-props-dialog.c:251
-msgid "Location:"
-msgstr ""
-
-#: src/trg-torrent-move-dialog.c:163
-#, c-format
-msgid "Move %s"
-msgstr ""
-
-#: src/trg-torrent-move-dialog.c:165
-#, c-format
-msgid "Move %d torrents"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:197
-msgid "Activity"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:202
-msgid "Torrent size:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:207
-msgid "Have:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:212
-msgid "Downloaded:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:217
-msgid "Uploaded:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:222
-msgid "State:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:227
-msgid "Running time:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:232
-msgid "Remaining time:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:237
-msgid "Last activity:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:242
-msgid "Error:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:246
-msgid "Details"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:257
-msgid "Hash:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:263
-msgid "Privacy:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:269
-msgid "Origin:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:286
-msgid "Comment:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:321
-msgid "Private to this tracker -- DHT and PEX disabled"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:323
-msgid "Public torrent"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:333
-#, c-format
-msgid "Created on %1$s"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:335
-#, c-format
-msgid "Created by %1$s on %2$s"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:367
-msgid "No errors"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:371
-msgid "Active now"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:404
-msgid "Honor global limits"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:414
-msgid "Torrent priority:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:420
-msgid "Queue Position:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:425
-msgid "Limit download speed (KiB/s)"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:433
-msgid "Limit upload speed (KiB/s)"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:441
-msgid "Use global settings"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:442
-msgid "Stop seeding at ratio"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:443
-msgid "Seed regardless of ratio"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:446
-msgid "Seed ratio mode:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:454
-msgid "Seed ratio limit:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:460
-msgid "Peer limit:"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:533
-#, c-format
-msgid "Multiple (%d) torrent properties"
-msgstr ""
-
-#: src/trg-torrent-props-dialog.c:565
-msgid "Information"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:60
-msgid "Done"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:65
-msgid "Seeds"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:67
-msgid "Sending"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:73
-msgid "Downloads"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:76
-msgid "Receiving"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:80
-msgid "Connected"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:82
-msgid "PEX Peers"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:87
-msgid "DHT Peers"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:93
-msgid "Tracker Peers"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:97
-msgid "LTEP Peers"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:102
-msgid "Resumed Peers"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:108
-msgid "Incoming Peers"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:113
-msgid "Peers T/I/E/H/X/L/R"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:133
-msgid "Added"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:136
-msgid "First Tracker"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:142
-msgid "ID"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:148
-msgid "Queue Position"
-msgstr ""
-
-#: src/trg-torrent-tree-view.c:154
-msgid "Last Active"
-msgstr ""
-
-#: src/trg-trackers-tree-view.c:168
-msgid "Tier"
-msgstr ""
-
-#: src/trg-trackers-tree-view.c:174
-msgid "Announce URL"
-msgstr ""
-
-#: src/trg-trackers-tree-view.c:192
-msgid "Seeder Count"
-msgstr ""
-
-#: src/trg-trackers-tree-view.c:195
-msgid "Leecher Count"
-msgstr ""
-
-#: src/trg-trackers-tree-view.c:199
-msgid "Last Announce"
-msgstr ""
-
-#: src/trg-trackers-tree-view.c:202
-msgid "Last Result"
-msgstr ""
-
-#: src/trg-trackers-tree-view.c:204
-msgid "Scrape URL"
-msgstr ""
-
-#: src/trg-trackers-tree-view.c:206
-msgid "Last Scrape"
-msgstr ""
-
-#: src/trg-trackers-tree-view.c:305
-msgid "Delete"
-msgstr ""
-
-#: src/trg-tree-view.c:277
-msgid "Ascending"
-msgstr ""
-
-#: src/trg-tree-view.c:287
-msgid "Descending"
-msgstr ""
-
-#: src/util.c:342
-msgid "JSON decoding error."
-msgstr ""
-
-#: src/util.c:347
-msgid "Server responded, but with no result."
-msgstr ""
-
-#: src/util.c:385
-msgid "None"
-msgstr ""
-
-#: src/util.c:431
-#, c-format
-msgid "%d day"
-msgid_plural "%d days"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/util.c:432
-#, c-format
-msgid "%d hour"
-msgid_plural "%d hours"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/util.c:434
-#, c-format
-msgid "%d minute"
-msgid_plural "%d minutes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/util.c:437
-#, c-format
-msgid "%ld second"
-msgid_plural "%ld seconds"
-msgstr[0] ""
-msgstr[1] ""