Thu Aug 26 15:12:36 2004 Jonathan Blandford <jrb@redhat.com>
* Makefile.am: add po as a supdir * autogen.sh: use gnome-autogen.sh * initscript/Gentoo/.cvsignore: * initscript/RedHat/.cvsignore: Shut up cvs * panel-applet/Makefile.am: Define GNOMELOCALEDIR for bonobo. * panel-applet/NMWirelessApplet.c: (nmwa_populate_menu), (nmwa_fill): Use gettext. * configure.in: add gettext support * po/.cvsignore: * po/NetworkManager.pot: * po/POTFILES.in: git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@80 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
19
ChangeLog
19
ChangeLog
@@ -1,3 +1,22 @@
|
|||||||
|
Thu Aug 26 15:12:36 2004 Jonathan Blandford <jrb@redhat.com>
|
||||||
|
|
||||||
|
* Makefile.am: add po as a supdir
|
||||||
|
|
||||||
|
* autogen.sh: use gnome-autogen.sh
|
||||||
|
|
||||||
|
* initscript/Gentoo/.cvsignore:
|
||||||
|
* initscript/RedHat/.cvsignore: Shut up cvs
|
||||||
|
|
||||||
|
* panel-applet/Makefile.am: Define GNOMELOCALEDIR for bonobo.
|
||||||
|
|
||||||
|
* panel-applet/NMWirelessApplet.c: (nmwa_populate_menu),
|
||||||
|
(nmwa_fill): Use gettext.
|
||||||
|
|
||||||
|
* configure.in: add gettext support
|
||||||
|
* po/.cvsignore:
|
||||||
|
* po/NetworkManager.pot:
|
||||||
|
* po/POTFILES.in:
|
||||||
|
|
||||||
2004-08-26 Seth Nickell <seth@gnome.org>
|
2004-08-26 Seth Nickell <seth@gnome.org>
|
||||||
|
|
||||||
* panel-applet/NMWirelessApplet.c: (nmwa_destroy),
|
* panel-applet/NMWirelessApplet.c: (nmwa_destroy),
|
||||||
|
@@ -1,3 +1,3 @@
|
|||||||
SUBDIRS = src dispatcher-daemon info-daemon panel-applet initscript test
|
SUBDIRS = src dispatcher-daemon info-daemon panel-applet initscript test po
|
||||||
|
|
||||||
EXTRA_DIST = CONTRIBUTING
|
EXTRA_DIST = CONTRIBUTING
|
||||||
|
67
autogen.sh
67
autogen.sh
@@ -3,66 +3,21 @@
|
|||||||
|
|
||||||
srcdir=`dirname $0`
|
srcdir=`dirname $0`
|
||||||
test -z "$srcdir" && srcdir=.
|
test -z "$srcdir" && srcdir=.
|
||||||
|
REQUIRED_AUTOMAKE_VERSION=1.7
|
||||||
|
PKG_NAME=NetworkManager
|
||||||
|
|
||||||
ORIGDIR=`pwd`
|
(test -f $srcdir/configure.in \
|
||||||
cd $srcdir
|
&& test -f $srcdir/src/NetworkManager.h) || {
|
||||||
PROJECT=NetworkManager
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
||||||
TEST_TYPE=-d
|
echo " top-level $PKG_NAME directory"
|
||||||
FILE=src
|
exit 1
|
||||||
|
|
||||||
DIE=0
|
|
||||||
|
|
||||||
if $have_libtool ; then : ; else
|
|
||||||
echo
|
|
||||||
echo "You must have libtool 1.4 installed to compile $PROJECT."
|
|
||||||
echo "Install the appropriate package for your distribution,"
|
|
||||||
echo "or get the source tarball at http://ftp.gnu.org/gnu/libtool/"
|
|
||||||
DIE=1
|
|
||||||
fi
|
|
||||||
|
|
||||||
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
|
|
||||||
echo
|
|
||||||
echo "You must have autoconf installed to compile $PROJECT."
|
|
||||||
echo "Install the appropriate package for your distribution,"
|
|
||||||
echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"
|
|
||||||
DIE=1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if automake --version < /dev/null > /dev/null 2>&1 ; then
|
|
||||||
AUTOMAKE=automake
|
|
||||||
ACLOCAL=aclocal
|
|
||||||
else
|
|
||||||
echo
|
|
||||||
echo "You must have automake 1.7.x installed to compile $PROJECT."
|
|
||||||
echo "Install the appropriate package for your distribution,"
|
|
||||||
echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
|
|
||||||
DIE=1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if test "$DIE" -eq 1; then
|
which gnome-autogen.sh || {
|
||||||
exit 1
|
echo "You need to install gnome-common from the GNOME CVS"
|
||||||
fi
|
exit 1
|
||||||
|
|
||||||
test $TEST_TYPE $FILE || {
|
|
||||||
echo "You must run this script in the top-level $PROJECT directory"
|
|
||||||
exit 1
|
|
||||||
}
|
}
|
||||||
|
USE_GNOME2_MACROS=1 . gnome-autogen.sh
|
||||||
|
|
||||||
if test -z "$AUTOGEN_SUBDIR_MODE"; then
|
|
||||||
if test -z "$*"; then
|
|
||||||
echo "I am going to run ./configure with no arguments - if you wish "
|
|
||||||
echo "to pass any to it, please specify them on the $0 command line."
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
$ACLOCAL -I . $ACLOCALFLAGS || exit $?
|
|
||||||
$AUTOMAKE --add-missing || exit $?
|
|
||||||
autoconf || exit $?
|
|
||||||
cd $ORIGDIR || exit $?
|
|
||||||
|
|
||||||
if test -z "$AUTOGEN_SUBDIR_MODE"; then
|
|
||||||
$srcdir/configure --enable-maintainer-mode $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo "Now type 'make' to compile $PROJECT."
|
|
||||||
fi
|
|
||||||
|
@@ -6,6 +6,12 @@ AM_INIT_AUTOMAKE([subdir-objects])
|
|||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
AM_PROG_CC_C_O
|
AM_PROG_CC_C_O
|
||||||
|
|
||||||
|
GETTEXT_PACKAGE=NetworkManager
|
||||||
|
AC_SUBST(GETTEXT_PACKAGE)
|
||||||
|
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package])
|
||||||
|
ALL_LINGUAS=""
|
||||||
|
AM_GLIB_GNU_GETTEXT
|
||||||
|
|
||||||
AC_ARG_WITH(distro,
|
AC_ARG_WITH(distro,
|
||||||
[
|
[
|
||||||
--with-distro: Specify the Linux distribution to target with distro-specific
|
--with-distro: Specify the Linux distribution to target with distro-specific
|
||||||
@@ -108,6 +114,7 @@ test/Makefile
|
|||||||
initscript/Makefile
|
initscript/Makefile
|
||||||
initscript/RedHat/Makefile
|
initscript/RedHat/Makefile
|
||||||
initscript/Gentoo/Makefile
|
initscript/Gentoo/Makefile
|
||||||
|
po/Makefile.in
|
||||||
])
|
])
|
||||||
|
|
||||||
echo
|
echo
|
||||||
|
2
initscript/Gentoo/.cvsignore
Normal file
2
initscript/Gentoo/.cvsignore
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
Makefile
|
||||||
|
Makefile.in
|
2
initscript/RedHat/.cvsignore
Normal file
2
initscript/RedHat/.cvsignore
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
Makefile
|
||||||
|
Makefile.in
|
@@ -2,14 +2,15 @@ NULL=
|
|||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
$(NM_CFLAGS) \
|
$(NM_CFLAGS) \
|
||||||
$(GLADE_CFLAGS) \
|
$(GLADE_CFLAGS) \
|
||||||
$(DBUS_CFLAGS) \
|
$(DBUS_CFLAGS) \
|
||||||
$(DBUS_GLIB_CFLAGS) \
|
$(DBUS_GLIB_CFLAGS) \
|
||||||
$(PANEL_APPLET_CFLAGS) \
|
$(PANEL_APPLET_CFLAGS) \
|
||||||
-DICONDIR=\""$(datadir)/pixmaps"\" \
|
-DICONDIR=\""$(datadir)/pixmaps"\" \
|
||||||
-DG_DISABLE_DEPRECATED \
|
-DG_DISABLE_DEPRECATED \
|
||||||
-DGDK_DISABLE_DEPRECATED \
|
-DGDK_DISABLE_DEPRECATED \
|
||||||
-DGNOME_DISABLE_DEPRECATED \
|
-DGNOME_DISABLE_DEPRECATED \
|
||||||
|
-DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
libexec_PROGRAMS = NMWirelessApplet
|
libexec_PROGRAMS = NMWirelessApplet
|
||||||
|
@@ -560,19 +560,19 @@ fprintf( stderr, "populate_menu() state (%d)\n", applet->applet_state);
|
|||||||
switch (applet->applet_state)
|
switch (applet->applet_state)
|
||||||
{
|
{
|
||||||
case (APPLET_STATE_NO_NM):
|
case (APPLET_STATE_NO_NM):
|
||||||
nmwa_add_menu_item (applet, menu, "NetworkManager is not running...",
|
nmwa_add_menu_item (applet, menu, _("NetworkManager is not running..."),
|
||||||
NULL, FALSE, FALSE);
|
NULL, FALSE, FALSE);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (APPLET_STATE_NO_CONNECTION):
|
case (APPLET_STATE_NO_CONNECTION):
|
||||||
nmwa_add_menu_item (applet, menu, "No network connection is currently active...",
|
nmwa_add_menu_item (applet, menu, _("No network connection is currently active..."),
|
||||||
NULL, FALSE, FALSE);
|
NULL, FALSE, FALSE);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (APPLET_STATE_WIRED):
|
case (APPLET_STATE_WIRED):
|
||||||
case (APPLET_STATE_WIRED_CONNECTING):
|
case (APPLET_STATE_WIRED_CONNECTING):
|
||||||
nmwa_add_menu_item (applet, menu, "A wired network connection is currently active...",
|
nmwa_add_menu_item (applet, menu, _("A wired network connection is currently active..."),
|
||||||
NULL, FALSE, FALSE);
|
NULL, FALSE, FALSE);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (APPLET_STATE_WIRELESS):
|
case (APPLET_STATE_WIRELESS):
|
||||||
@@ -581,8 +581,8 @@ fprintf( stderr, "populate_menu() state (%d)\n", applet->applet_state);
|
|||||||
GSList *element = applet->networks;
|
GSList *element = applet->networks;
|
||||||
g_mutex_lock (applet->networks_mutex);
|
g_mutex_lock (applet->networks_mutex);
|
||||||
if (!element)
|
if (!element)
|
||||||
nmwa_add_menu_item (applet, menu, "There are no wireless networks...",
|
nmwa_add_menu_item (applet, menu, _("There are no wireless networks..."),
|
||||||
NULL, FALSE, FALSE);
|
NULL, FALSE, FALSE);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Add all networks in our network list to the menu */
|
/* Add all networks in our network list to the menu */
|
||||||
@@ -797,8 +797,7 @@ static gboolean nmwa_fill (NMWirelessApplet *applet)
|
|||||||
"NMWirelessApplet/wireless-applet.glade", FALSE, NULL);
|
"NMWirelessApplet/wireless-applet.glade", FALSE, NULL);
|
||||||
if (!glade_file)
|
if (!glade_file)
|
||||||
{
|
{
|
||||||
show_warning_dialog (TRUE, "The NetworkManager Applet could not find some required"
|
show_warning_dialog (TRUE, _("The NetworkManager Applet could not find some required resources (the glade file was not found)."));
|
||||||
"resources (the glade file was not found).");
|
|
||||||
return (FALSE);
|
return (FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
14
po/.cvsignore
Normal file
14
po/.cvsignore
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
*.gmo
|
||||||
|
*.mo
|
||||||
|
Makefile
|
||||||
|
Makefile.in
|
||||||
|
Makefile.in.in
|
||||||
|
POTFILES
|
||||||
|
cat-id-tbl.c
|
||||||
|
*.pot
|
||||||
|
stamp-cat-id
|
||||||
|
messages
|
||||||
|
missing
|
||||||
|
po2tbl.sed
|
||||||
|
po2tbl.sed.in
|
||||||
|
notexist
|
61
po/NetworkManager.pot
Normal file
61
po/NetworkManager.pot
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2004-08-26 15:11-0400\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: panel-applet/NMWirelessApplet.c:563
|
||||||
|
msgid "NetworkManager is not running..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: panel-applet/NMWirelessApplet.c:568
|
||||||
|
msgid "No network connection is currently active..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: panel-applet/NMWirelessApplet.c:574
|
||||||
|
msgid "A wired network connection is currently active..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: panel-applet/NMWirelessApplet.c:584
|
||||||
|
msgid "There are no wireless networks..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: panel-applet/NMWirelessApplet.c:800
|
||||||
|
msgid ""
|
||||||
|
"The NetworkManager Applet could not find some required resources (the glade "
|
||||||
|
"file was not found)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: panel-applet/wireless-applet.glade:8
|
||||||
|
msgid " "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: panel-applet/wireless-applet.glade:51
|
||||||
|
msgid "_Login to Network"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: panel-applet/wireless-applet.glade:100
|
||||||
|
msgid ""
|
||||||
|
"<span weight=\"bold\" size=\"larger\">Wireless Network Login Confirmation</"
|
||||||
|
"span>\n"
|
||||||
|
"\n"
|
||||||
|
"You have chosen log in to the wireless network '%s'. If you are sure this "
|
||||||
|
"wireless network is secure, click the checkbox below and NetworkManager will "
|
||||||
|
"no longer pester you with stupid questions when you connect to it."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: panel-applet/wireless-applet.glade:124
|
||||||
|
msgid "Always Trust this Wireless Network"
|
||||||
|
msgstr ""
|
2
po/POTFILES.in
Normal file
2
po/POTFILES.in
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
panel-applet/NMWirelessApplet.c
|
||||||
|
panel-applet/wireless-applet.glade
|
Reference in New Issue
Block a user