2005-02-18 Dan Williams <dcbw@redhat.com>

* panel-applet/essid.glade
	  panel-applet/NMWirelessAppletOtherNetworksDialog.c
		- Correct spelling of "adaptor"->"adapter"

2005-02-18  William Jon McCann  <mccann@jhu.edu>

	* panel-applet/NMWirelessApplet.c: Use GTK_CHECK_VERSION() macro.
	(nmwa_about_cb): Use standard copyright string.  Update comment
	text to reflect that it is a notification area applet.  Remove
	leading newline in authors list.
	(nmwa_menu_show_cb, nmwa_setup_widgets): Populate menu on show
	instead of on parent menu item activation.  Fixes #167550.

2005-02-18  William Jon McCann  <mccann@jhu.edu>

	* panel-applet/essid.glade: Capitalize items as per HIG.
	  Fixes #167632


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@458 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2005-02-18 18:15:54 +00:00
parent 261f7c5a0a
commit 6411cc5ade
36 changed files with 145 additions and 111 deletions

View file

@ -1,3 +1,23 @@
2005-02-18 Dan Williams <dcbw@redhat.com>
* panel-applet/essid.glade
panel-applet/NMWirelessAppletOtherNetworksDialog.c
- Correct spelling of "adaptor"->"adapter"
2005-02-18 William Jon McCann <mccann@jhu.edu>
* panel-applet/NMWirelessApplet.c: Use GTK_CHECK_VERSION() macro.
(nmwa_about_cb): Use standard copyright string. Update comment
text to reflect that it is a notification area applet. Remove
leading newline in authors list.
(nmwa_menu_show_cb, nmwa_setup_widgets): Populate menu on show
instead of on parent menu item activation. Fixes #167550.
2005-02-18 William Jon McCann <mccann@jhu.edu>
* panel-applet/essid.glade: Capitalize items as per HIG.
Fixes #167632
2005-02-16 William Jon McCann <mccann@jhu.edu>
* panel-applet/gtkcellrendererprogress.[ch]: Only compile these

View file

@ -7,20 +7,24 @@ INCLUDES = -I${top_srcdir}
noinst_LTLIBRARIES = libnm_notification_applet.la
libnm_notification_applet_la_CPPFLAGS = \
$(DBUS_CFLAGS) \
$(GTHREAD_CFLAGS) \
$(HAL_CFLAGS) \
$(DBUS_GLIB_CFLAGS) \
gladedir = $(datadir)/NetworkManagerNotification
glade_DATA = essid.glade
libnm_notification_applet_la_CPPFLAGS = \
$(DBUS_CFLAGS) \
$(GTHREAD_CFLAGS) \
$(HAL_CFLAGS) \
$(DBUS_GLIB_CFLAGS) \
$(GLADE_CFLAGS) \
$(GTK_CFLAGS) \
$(GTK_CFLAGS) \
$(GCONF_CFLAGS) \
$(LIBGNOMEUI_CFLAGS) \
$(PANEL_APPLET_CFLAGS) \
-DICONDIR=\""$(datadir)/pixmaps"\" \
-DGLADEDIR=\""$(gladedir)"\" \
-DDBUS_API_SUBJECT_TO_CHANGE \
-DG_DISABLE_DEPRECATED \
-DGDK_DISABLE_DEPRECATED \
-DGDK_DISABLE_DEPRECATED \
-DGNOME_DISABLE_DEPRECATED \
-DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
-DVERSION=\"$(VERSION)\" \
@ -48,10 +52,10 @@ libnm_notification_applet_la_SOURCES += \
libnm_notification_applet_la_LIBADD = \
$(DBUS_LIBS) \
$(HAL_LIBS) \
$(GTHREAD_LIBS) \
$(GTHREAD_LIBS) \
$(GLADE_LIBS) \
$(DBUS_GLIB_LIBS) \
$(PANEL_APPLET_LIBS) \
$(PANEL_APPLET_LIBS) \
$(GTK_LIBS) \
$(GCONF_LIBS) \
$(LIBGNOMEUI_LIBS) \
@ -63,9 +67,6 @@ NetworkManagerNotification_CFLAGS = $(libnm_notification_applet_la_CPPFLAGS)
NetworkManagerNotification_SOURCES = main.c
NetworkManagerNotification_LDADD = ./libnm_notification_applet.la
gladedir = $(datadir)/NetworkManagerNotification
glade_DATA = essid.glade
CLEANFILES = $(server_DATA) *.bak *.gladep
EXTRA_DIST = \

View file

@ -1,3 +1,4 @@
/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */
/* NetworkManager Wireless Applet -- Display wireless access points and allow user control
*
* Dan Williams <dcbw@redhat.com>
@ -39,10 +40,15 @@
#include <errno.h>
#include <math.h>
#include <dirent.h>
#include <gnome.h>
#include <time.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#if !GTK_CHECK_VERSION(2,6,0)
#include <gnome.h>
#endif
#include <glade/glade.h>
#include <gconf/gconf-client.h>
@ -76,36 +82,36 @@ G_DEFINE_TYPE(NMWirelessApplet, nmwa, EGG_TYPE_TRAY_ICON)
static void
nmwa_init (NMWirelessApplet *applet)
{
applet->animation_id = 0;
applet->animation_step = 0;
applet->animation_id = 0;
applet->animation_step = 0;
setup_stock ();
nmwa_icons_init (applet);
nmwa_fill (applet);
setup_stock ();
nmwa_icons_init (applet);
nmwa_fill (applet);
}
static void nmwa_class_init (NMWirelessAppletClass *klass)
{
GObjectClass *gobject_class;
GObjectClass *gobject_class;
gobject_class = G_OBJECT_CLASS (klass);
gobject_class = G_OBJECT_CLASS (klass);
gobject_class->constructor = nmwa_constructor;
gobject_class->constructor = nmwa_constructor;
}
static GObject *nmwa_constructor (GType type,
guint n_props,
GObjectConstructParam *construct_props)
guint n_props,
GObjectConstructParam *construct_props)
{
GObject *obj;
NMWirelessApplet *applet;
NMWirelessAppletClass *klass;
GObject *obj;
NMWirelessApplet *applet;
NMWirelessAppletClass *klass;
klass = NM_WIRELESS_APPLET_CLASS (g_type_class_peek (type));
obj = G_OBJECT_CLASS (nmwa_parent_class)->constructor (type, n_props, construct_props);
applet = NM_WIRELESS_APPLET (obj);
klass = NM_WIRELESS_APPLET_CLASS (g_type_class_peek (type));
obj = G_OBJECT_CLASS (nmwa_parent_class)->constructor (type, n_props, construct_props);
applet = NM_WIRELESS_APPLET (obj);
return obj;
return obj;
}
@ -117,7 +123,7 @@ void nmwa_about_cb (NMWirelessApplet *applet)
static const gchar *authors[] =
{
"\nThe Red Hat Desktop Team, including:\n",
"The Red Hat Desktop Team, including:\n",
"Dan Williams <dcbw@redhat.com>",
"Jonathan Blandford <jrb@redhat.com>",
"John Palmieri <johnp@redhat.com>",
@ -130,21 +136,20 @@ void nmwa_about_cb (NMWirelessApplet *applet)
NULL
};
#if (GTK_MAJOR_VERSION <= 2 && GTK_MINOR_VERSION < 6)
#if !GTK_CHECK_VERSION(2,6,0)
/* GTK 2.4 and earlier, have to use libgnome for about dialog */
file = gnome_program_locate_file (NULL, GNOME_FILE_DOMAIN_PIXMAP, "gnome-networktool.png", FALSE, NULL);
pixbuf = gdk_pixbuf_new_from_file (file, NULL);
g_free (file);
about_dialog = gnome_about_new (
_("NetworkManager Applet"),
VERSION,
_("(C) 2004-2005 Red Hat, Inc."),
_("A panel application for managing your network devices & connections."),
authors,
documenters,
NULL,
pixbuf);
about_dialog = gnome_about_new (_("NetworkManager Applet"),
VERSION,
_("Copyright \xc2\xa9 2004-2005 Red Hat, Inc."),
_("Notification area applet for managing your network devices and connections."),
authors,
documenters,
NULL,
pixbuf);
g_object_unref (pixbuf);
gtk_window_set_screen (GTK_WINDOW (about_dialog), gtk_widget_get_screen (GTK_WIDGET (applet)));
@ -155,15 +160,15 @@ void nmwa_about_cb (NMWirelessApplet *applet)
/* GTK 2.6 and later code */
gtk_show_about_dialog (NULL,
"name", _("NetworkManager Applet"),
"version", VERSION,
"copyright", _("(C) 2004-2005 by Red Hat, Inc."),
"comments", _("A panel application for managing your network devices & connections."),
"authors", authors,
"documenters", documenters,
"translator-credits", NULL,
"logo-icon-name", GTK_STOCK_NETWORK,
NULL);
"name", _("NetworkManager Applet"),
"version", VERSION,
"copyright", _("Copyright \xc2\xa9 2004-2005 Red Hat, Inc."),
"comments", _("Notification area applet for managing your network devices and connections."),
"authors", authors,
"documenters", documenters,
"translator-credits", NULL,
"logo-icon-name", GTK_STOCK_NETWORK,
NULL);
#endif
}
@ -341,8 +346,8 @@ nmwa_update_state (NMWirelessApplet *applet)
WirelessNetwork *active_network = NULL;
g_mutex_lock (applet->data_mutex);
if ( applet->active_device
&& (applet->active_device->type == DEVICE_TYPE_WIRELESS_ETHERNET))
if (applet->active_device
&& (applet->active_device->type == DEVICE_TYPE_WIRELESS_ETHERNET))
{
GSList *list;
@ -655,12 +660,12 @@ static void nmwa_menu_item_activate (GtkMenuItem *item, gpointer user_data)
/*
* nmwa_toplevel_menu_activate
* nmwa_menu_show_cb
*
* Pop up the wireless networks menu in response to a click on the applet
*
*/
static void nmwa_toplevel_menu_activate (GtkWidget *menu, NMWirelessApplet *applet)
static void nmwa_menu_show_cb (GtkWidget *menu, NMWirelessApplet *applet)
{
if (!applet->tooltips)
applet->tooltips = gtk_tooltips_new ();
@ -1153,13 +1158,13 @@ static void nmwa_setup_widgets (NMWirelessApplet *applet)
gtk_container_set_border_width (GTK_CONTAINER (applet->toplevel_menu), 0);
gtk_container_add (GTK_CONTAINER(applet->toplevel_menu), applet->pixmap);
gtk_menu_shell_append (GTK_MENU_SHELL(menu_bar), applet->toplevel_menu);
g_signal_connect (applet->toplevel_menu, "activate", G_CALLBACK (nmwa_toplevel_menu_activate), applet);
applet->context_menu = nmwa_context_menu_create (applet);
g_signal_connect (applet->toplevel_menu, "button_press_event", G_CALLBACK (nmwa_toplevel_menu_button_press), applet);
applet->menu = gtk_menu_new();
gtk_menu_item_set_submenu (GTK_MENU_ITEM(applet->toplevel_menu), applet->menu);
applet->menu = gtk_menu_new ();
gtk_menu_item_set_submenu (GTK_MENU_ITEM (applet->toplevel_menu), applet->menu);
g_signal_connect (applet->menu, "show", G_CALLBACK (nmwa_menu_show_cb), applet);
applet->encryption_size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);

View file

@ -21,7 +21,7 @@
#ifndef NM_WIRELESS_APPLET_H
#define NM_WIRELESS_APPLET_H
#include <gnome.h>
#include <gtk/gtk.h>
#include <gconf/gconf-client.h>
#include <glade/glade.h>
#include <dbus/dbus.h>

View file

@ -33,8 +33,8 @@
#include <string.h>
#include <stdlib.h>
#include <gnome.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <glade/glade.h>
#include "NetworkManager.h"
@ -98,7 +98,7 @@ static void update_button_cb (GtkWidget *widget, GladeXML *xml)
gtk_widget_set_sensitive (GTK_WIDGET (button), enable);
}
static GtkTreeModel *create_wireless_adaptor_model (NMWirelessApplet *applet)
static GtkTreeModel *create_wireless_adapter_model (NMWirelessApplet *applet)
{
GtkListStore *retval;
GSList *element;
@ -214,6 +214,7 @@ static GtkDialog *nmwa_other_network_dialog_init (GladeXML *xml, NMWirelessApple
/* Set up the dialog */
dialog = GTK_DIALOG (glade_xml_get_widget (xml, "custom_essid_dialog"));
gtk_window_set_default_size (GTK_WINDOW (dialog), 488, -1);
essid_entry = glade_xml_get_widget (xml, "essid_entry");
button = glade_xml_get_widget (xml, "ok_button");
@ -262,16 +263,16 @@ static GtkDialog *nmwa_other_network_dialog_init (GladeXML *xml, NMWirelessApple
}
else if (n_wireless_interfaces == 1)
{
gtk_widget_hide (glade_xml_get_widget (xml, "wireless_adaptor_label"));
gtk_widget_hide (glade_xml_get_widget (xml, "wireless_adaptor_combo"));
gtk_widget_hide (glade_xml_get_widget (xml, "wireless_adapter_label"));
gtk_widget_hide (glade_xml_get_widget (xml, "wireless_adapter_combo"));
}
else
{
GtkWidget *combo;
GtkTreeModel *model;
combo = glade_xml_get_widget (xml, "wireless_adaptor_combo");
model = create_wireless_adaptor_model (applet);
combo = glade_xml_get_widget (xml, "wireless_adapter_combo");
model = create_wireless_adapter_model (applet);
gtk_combo_box_set_model (GTK_COMBO_BOX (combo), model);
/* Select the first one randomly */
@ -301,15 +302,14 @@ static GtkDialog *nmwa_other_network_dialog_init (GladeXML *xml, NMWirelessApple
void nmwa_other_network_dialog_run (NMWirelessApplet *applet, gboolean create_network)
{
gchar *glade_file;
GtkDialog *dialog;
GladeXML *xml;
gint response;
GtkDialog *dialog;
GladeXML *xml;
gint response;
NetworkDevice *def_dev = NULL;
g_return_if_fail (applet != NULL);
glade_file = gnome_program_locate_file (NULL, GNOME_FILE_DOMAIN_DATADIR,
"NetworkManagerNotification/essid.glade", FALSE, NULL);
glade_file = g_build_filename (GLADEDIR, "essid.glade", NULL);
if (!glade_file || !g_file_test (glade_file, G_FILE_TEST_IS_REGULAR))
{

View file

@ -126,9 +126,9 @@
<property name="column_spacing">6</property>
<child>
<widget class="GtkLabel" id="wireless_adaptor_label">
<widget class="GtkLabel" id="wireless_adapter_label">
<property name="visible">True</property>
<property name="label" translatable="yes">Wireless _Adaptor:</property>
<property name="label" translatable="yes">Wireless _adapter:</property>
<property name="use_underline">True</property>
<property name="use_markup">False</property>
<property name="justify">GTK_JUSTIFY_LEFT</property>
@ -138,7 +138,7 @@
<property name="yalign">0.5</property>
<property name="xpad">0</property>
<property name="ypad">0</property>
<property name="mnemonic_widget">wireless_adaptor_combo</property>
<property name="mnemonic_widget">wireless_adapter_combo</property>
</widget>
<packing>
<property name="left_attach">0</property>
@ -151,7 +151,7 @@
</child>
<child>
<widget class="GtkComboBox" id="wireless_adaptor_combo">
<widget class="GtkComboBox" id="wireless_adapter_combo">
<property name="visible">True</property>
<property name="items" translatable="yes"></property>
</widget>
@ -168,7 +168,7 @@
<child>
<widget class="GtkLabel" id="label2">
<property name="visible">True</property>
<property name="label" translatable="yes">Wireless _Network:</property>
<property name="label" translatable="yes">Wireless _network:</property>
<property name="use_underline">True</property>
<property name="use_markup">False</property>
<property name="justify">GTK_JUSTIFY_LEFT</property>
@ -242,7 +242,7 @@
<child>
<widget class="GtkLabel" id="key_type_combo_label">
<property name="visible">True</property>
<property name="label" translatable="yes">Key Type:</property>
<property name="label" translatable="yes">Key type:</property>
<property name="use_underline">False</property>
<property name="use_markup">False</property>
<property name="justify">GTK_JUSTIFY_LEFT</property>
@ -311,9 +311,9 @@
<child>
<widget class="GtkComboBox" id="key_type_combo">
<property name="visible">True</property>
<property name="items" translatable="yes">128-bit Passphrase (WEP)
Ascii Key (WEP)
Hex Key (WEP)</property>
<property name="items" translatable="yes">128-bit passphrase (WEP)
Ascii key (WEP)
Hex key (WEP)</property>
</widget>
<packing>
<property name="left_attach">1</property>

View file

@ -36,9 +36,9 @@
#if (GTK_MAJOR_VERSION <= 2 && GTK_MINOR_VERSION < 6)
#include "gtkcellview.h"
#include "gtkcellrendererprogress.h"
#endif
#include "gtkcellrendererprogress.h"
#include "NMWirelessAppletDbus.h"
static gboolean nm_menu_wired_expose_event (GtkWidget *widget, GdkEventExpose *event);
@ -208,6 +208,7 @@ nm_menu_wireless_init (NMMenuWireless *menu_info)
menu_info->progress_bar = g_object_new (GTK_TYPE_CELL_RENDERER_PROGRESS,
"text", "",
NULL);
gtk_cell_renderer_set_fixed_size (GTK_CELL_RENDERER (menu_info->progress_bar), 150, -1);
gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (menu_info->cell_view),
GTK_CELL_RENDERER (menu_info->progress_bar),
TRUE);

View file

@ -1,3 +1,7 @@
2005-02-18 Dan Williams <dcbw@redhat.com>
* Correct spelling of "adaptor"->"adapter"
2005-02-18 Kjartan Maraas <kmaraas@gnome.org>
* nb.po: Update

View file

@ -112,7 +112,7 @@ msgstr "Wireless Mreže"
#: panel-applet/essid.glade:177
#, fuzzy
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Wireless Mreže"
#: panel-applet/menu-info.c:101

View file

@ -220,7 +220,7 @@ msgid "Connect with encryption enabled"
msgstr "Připojit se s povoleným šifrováním"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Bezdrátový _adaptér:"
#: panel-applet/essid.glade.h:10

View file

@ -111,7 +111,7 @@ msgid "Wireless _Network:"
msgstr "Ændre trådløse netværk"
#: panel-applet/essid.glade:177
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr ""
#: panel-applet/menu-info.c:101

View file

@ -232,7 +232,7 @@ msgid "Connect with encryption enabled"
msgstr "Verschlüsselte Verbindung ist aktiv"
#: ../panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Funknetzwerk_adapter:"
#: ../panel-applet/essid.glade.h:10

View file

@ -258,7 +258,7 @@ msgid "Connect with encryption enabled"
msgstr "Σύνδεση με κρυπτογράφηση"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Ασύρματος _Προσαρμογέας"
#: panel-applet/essid.glade.h:10

View file

@ -221,8 +221,8 @@ msgid "Connect with encryption enabled"
msgstr "Connect with encryption enabled"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgstr "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Wireless _adapter:"
#: panel-applet/essid.glade.h:10
msgid "Wireless _Network:"

View file

@ -221,8 +221,8 @@ msgstr "Connect with encryption enabled"
#
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgstr "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Wireless _adapter:"
#
#: panel-applet/essid.glade.h:10

View file

@ -182,7 +182,7 @@ msgid "Connect with encryption enabled"
msgstr "Conexión con encriptado activada"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "_Adaptador inalámbrico:"
#: panel-applet/essid.glade.h:10

View file

@ -224,7 +224,7 @@ msgid "Connect with encryption enabled"
msgstr "Se connecter avec le chiffrement activé"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "_Adaptateur sans fil :"
#: panel-applet/essid.glade.h:10

View file

@ -111,7 +111,7 @@ msgstr "વાયરલેસ નેટવર્કો"
#: panel-applet/essid.glade:177
#, fuzzy
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "વાયરલેસ નેટવર્કો"
#: panel-applet/menu-info.c:101

View file

@ -174,7 +174,7 @@ msgid "C_onnect"
msgstr "_Spoji se"
#: panel-applet/essid.glade:132
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Bežični _uređaj:"
#: panel-applet/essid.glade:172

View file

@ -177,7 +177,7 @@ msgid "Connect with encryption enabled"
msgstr "暗号化を有効にして接続"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "無線アダプタ(_A):"
#: panel-applet/essid.glade.h:10

View file

@ -180,7 +180,7 @@ msgid "Connect with encryption enabled"
msgstr "Врзување со овозможено кодирање"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Безжичен _адаптер:"
#: panel-applet/essid.glade.h:10

View file

@ -219,7 +219,7 @@ msgid "Connect with encryption enabled"
msgstr "Koble til med kryptering"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Trådløst _kort:"
#: panel-applet/essid.glade.h:10

View file

@ -241,7 +241,7 @@ msgid "Connect with encryption enabled"
msgstr "Verbinden met versleuteling aangezet"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Draadloze adapter:"
#: panel-applet/essid.glade.h:10

View file

@ -219,7 +219,7 @@ msgid "Connect with encryption enabled"
msgstr "Koble til med kryptering"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Trådløst _kort:"
#: panel-applet/essid.glade.h:10

View file

@ -106,7 +106,7 @@ msgid "Wireless _Network:"
msgstr "ਬੇਤਾਰ ਨੈੱਟਵਰਕ ਸੋਧ"
#: panel-applet/essid.glade:177
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr ""
#: panel-applet/menu-info.c:101

View file

@ -109,7 +109,7 @@ msgid "Wireless _Network:"
msgstr "_Rede Sem Fio:"
#: panel-applet/essid.glade:177
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "_Adaptador Sem Fio:"
#: panel-applet/menu-info.c:101

View file

@ -3,7 +3,7 @@
# This file is distributed under the same license as the NetworkManager package.
# Marcel Telka <marcel@telka.sk>, 2004, 2005.
#
# $Id: sk.po,v 1.11 2005/02/11 18:54:32 marcel Exp $
# $Id: sk.po,v 1.12 2005/02/18 18:15:53 dcbw Exp $
#
msgid ""
msgstr ""
@ -221,7 +221,7 @@ msgid "Connect with encryption enabled"
msgstr "Povolené pripojenie so šifrovaním"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Bezdrôtový _adaptér:"
#: panel-applet/essid.glade.h:10

View file

@ -109,7 +109,7 @@ msgid "Wireless _Network:"
msgstr "Ndrysho Rrjetet Wireless"
#: panel-applet/essid.glade:177
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr ""
#: panel-applet/menu-info.c:101

View file

@ -2,7 +2,7 @@
# Copyright (C) 2004 Free Software Foundation, Inc.
# Christian Rose <menthos@menthos.com>, 2004.
#
# $Id: sv.po,v 1.3 2004/10/19 18:20:04 jrb Exp $
# $Id: sv.po,v 1.4 2005/02/18 18:15:53 dcbw Exp $
#
msgid ""
msgstr ""
@ -113,7 +113,7 @@ msgstr "Trådlösa nätverk:"
#: panel-applet/essid.glade:177
#, fuzzy
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Trådlösa nätverk:"
#: panel-applet/menu-info.c:101

View file

@ -112,7 +112,7 @@ msgstr "Rantoeles sins fyis"
#: panel-applet/essid.glade:177
#, fuzzy
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "Rantoeles sins fyis"
#: panel-applet/menu-info.c:101

View file

@ -150,7 +150,7 @@ msgid "Connect with encryption enabled"
msgstr "启用加密连接"
#: panel-applet/essid.glade.h:9
msgid "Wireless _Adaptor:"
msgid "Wireless _adapter:"
msgstr "无线适配器(_A)"
#: panel-applet/essid.glade.h:10

View file

@ -52,6 +52,9 @@ NetworkManager_CPPFLAGS = \
-DBINDIR=\"$(bindir)\" \
-DDATADIR=\"$(datadir)\" \
-DARP_DEBUG
if WITH_GCRYPT
NetworkManager_CPPFLAGS += $(LIBGCRYPT_CFLAGS)
endif
if !WITH_GCRYPT

View file

@ -23,7 +23,7 @@
#include <dbus/dbus.h>
#include <dbus/dbus-glib-lowlevel.h>
#include <dbus/dbus-glib.h>
#include <hal/libhal.h>
#include <libhal.h>
#include <getopt.h>
#include <errno.h>
#include <stdlib.h>

View file

@ -22,7 +22,7 @@
#include <errno.h>
#include <glib.h>
#include <dbus/dbus-glib.h>
#include <hal/libhal.h>
#include <libhal.h>
#include <iwlib.h>
#include <signal.h>
#include <string.h>

View file

@ -22,7 +22,7 @@
#include <errno.h>
#include <glib.h>
#include <dbus/dbus-glib.h>
#include <hal/libhal.h>
#include <libhal.h>
#include <iwlib.h>
#include <signal.h>
#include <string.h>

View file

@ -25,7 +25,7 @@
#include <glib.h>
#include <glib/gthread.h>
#include <dbus/dbus.h>
#include <hal/libhal.h>
#include <libhal.h>
#include "NetworkManager.h"
#include "NetworkManagerAP.h"
#include "nm-named-manager.h"