Don't add the location to the list if it is marked deleted
2001-08-27 Bradford Hovinen <hovinen@ximian.com> * archive.c (foreach_build_list_cb): Don't add the location to the list if it is marked deleted (impl_ConfigArchiver_Archive_createLocation): Do CORBA_Object_duplicate rather than bonobo_object_dup_ref * location.c (location_is_deleted): Implement * background-properties-capplet.c (setup_dialog): Initialize/free the CORBA environment structure (real_realize_cb): Put into an idle handler, called by realize_2_cb, the new timeout handler * preferences.c (preferences_load_from_bonobo_pbag): (preferences_load_from_bonobo_db): Extract from preferences_new_* * background-properties-capplet.c (property_change_cb): (realize_cb): Accept prefs structure in lieu of Bonobo_PropertyBag; don't reload the preferences structure from the property bag (property_change_cb): Call preferences_apply_event to modify the preferences structure appropriately (property_change_cb): (realize_cb): If the preferences structure is marked destroyed, just return (setup_dialog): Create a preferences structure from the property bag given and use that as the extra data passed to callbacks (realize_cb): Put into an idle handler real_realize_cb * preferences.c (preferences_apply_event): Implement * applier.c (output_compat_prefs): Make prefs const * applier.[ch]: Have applier_apply_prefs take a const Preferences structure * preferences.[ch]: Make preferences_clone take a const Preferences structure
This commit is contained in:
parent
8b63aee560
commit
a82ec1573c
33 changed files with 27435 additions and 4619 deletions
|
@ -1,3 +1,12 @@
|
|||
2001-08-27 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* archive.c (foreach_build_list_cb): Don't add the location to the
|
||||
list if it is marked deleted
|
||||
(impl_ConfigArchiver_Archive_createLocation): Do
|
||||
CORBA_Object_duplicate rather than bonobo_object_dup_ref
|
||||
|
||||
* location.c (location_is_deleted): Implement
|
||||
|
||||
2001-08-23 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* config-log.c (do_unload): Make sure we don't try to do this if
|
||||
|
|
|
@ -91,7 +91,7 @@ impl_ConfigArchiver_Archive_createLocation (PortableServer_Servant serva
|
|||
loc = archive_create_location (ARCHIVE_FROM_SERVANT (servant), locid, label,
|
||||
LOCATION (bonobo_object_from_servant (parent_ref->servant)));
|
||||
|
||||
return bonobo_object_dup_ref (BONOBO_OBJREF (loc), ev);
|
||||
return CORBA_Object_duplicate (BONOBO_OBJREF (loc), ev);
|
||||
}
|
||||
|
||||
static ConfigArchiver_LocationSeq *
|
||||
|
@ -699,7 +699,9 @@ archive_get_backend_list (Archive *archive)
|
|||
static gint
|
||||
foreach_build_list_cb (gchar *key, Location *value, GList **node)
|
||||
{
|
||||
*node = g_list_prepend (*node, value);
|
||||
if (!location_is_deleted (value))
|
||||
*node = g_list_prepend (*node, value);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -466,7 +466,7 @@ location_set_arg (GtkObject *object, GtkArg *arg, guint arg_id)
|
|||
(GTK_VALUE_POINTER (*arg)));
|
||||
location->p->parent =
|
||||
GTK_VALUE_POINTER (*arg);
|
||||
bonobo_object_ref (GTK_VALUE_POINTER (*arg));
|
||||
bonobo_object_ref (BONOBO_OBJECT (location->p->parent));
|
||||
}
|
||||
|
||||
default:
|
||||
|
@ -1355,12 +1355,13 @@ location_store_full_snapshot (Location *location)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* location_garbage_collect:
|
||||
/**
|
||||
* location_garbage_collect:
|
||||
* @location:
|
||||
*
|
||||
* Iterates through backends and eliminates excess archived data from the
|
||||
* configuration log and the XML archive
|
||||
*/
|
||||
**/
|
||||
|
||||
static void
|
||||
garbage_collect_cb (ConfigLog *config_log, gchar *backend_id, gint id, Location *location)
|
||||
|
@ -1391,6 +1392,19 @@ location_garbage_collect (Location *location)
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* location_is_deleted:
|
||||
* @location:
|
||||
*
|
||||
* Returns TRUE iff the location is marked deleted
|
||||
**/
|
||||
|
||||
gboolean
|
||||
location_is_deleted (const Location *location)
|
||||
{
|
||||
return location->p->deleted;
|
||||
}
|
||||
|
||||
static gint
|
||||
get_backends_cb (BackendList *backend_list, gchar *backend_id,
|
||||
Location *location)
|
||||
|
|
|
@ -136,4 +136,6 @@ ConfigLog *location_get_config_log (Location *location
|
|||
|
||||
void location_garbage_collect (Location *location);
|
||||
|
||||
gboolean location_is_deleted (const Location *location);
|
||||
|
||||
#endif /* __LOCATION */
|
||||
|
|
|
@ -1,3 +1,41 @@
|
|||
2001-08-27 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* background-properties-capplet.c (setup_dialog): Initialize/free
|
||||
the CORBA environment structure
|
||||
(real_realize_cb): Put into an idle handler, called by
|
||||
realize_2_cb, the new timeout handler
|
||||
|
||||
* preferences.c (preferences_load_from_bonobo_pbag):
|
||||
(preferences_load_from_bonobo_db): Extract from preferences_new_*
|
||||
|
||||
* background-properties-capplet.c (property_change_cb):
|
||||
(realize_cb): Accept prefs structure in lieu of
|
||||
Bonobo_PropertyBag; don't reload the preferences structure from
|
||||
the property bag
|
||||
(property_change_cb): Call preferences_apply_event to modify the
|
||||
preferences structure appropriately
|
||||
(property_change_cb):
|
||||
(realize_cb): If the preferences structure is marked destroyed,
|
||||
just return
|
||||
(setup_dialog): Create a preferences structure from the property
|
||||
bag given and use that as the extra data passed to callbacks
|
||||
(realize_cb): Put into an idle handler real_realize_cb
|
||||
|
||||
* preferences.c (preferences_apply_event): Implement
|
||||
|
||||
* applier.c (output_compat_prefs): Make prefs const
|
||||
|
||||
* applier.[ch]: Have applier_apply_prefs take a const Preferences
|
||||
structure
|
||||
|
||||
* preferences.[ch]: Make preferences_clone take a const
|
||||
Preferences structure
|
||||
|
||||
2001-08-26 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* applier.c (renderer_render_background): Remove debugging message
|
||||
(renderer_render_wallpaper): Ditto
|
||||
|
||||
2001-08-17 Bradford Hovinen <hovinen@ximian.com>
|
||||
|
||||
* applier.c (renderer_render_wallpaper): Adjust opacity value to
|
||||
|
|
|
@ -45,8 +45,6 @@
|
|||
#define MONITOR_CONTENTS_WIDTH 157
|
||||
#define MONITOR_CONTENTS_HEIGHT 111
|
||||
|
||||
#define PDEBUG(pix) (g_print ("file %s: line %d (%s): Setting pixbuf to %i %i\n", __FILE__, __LINE__, __PRETTY_FUNCTION__, gdk_pixbuf_get_width (pix), gdk_pixbuf_get_height (pix)))
|
||||
|
||||
static gboolean gdk_pixbuf_xlib_inited = FALSE;
|
||||
|
||||
typedef struct _Renderer Renderer;
|
||||
|
@ -165,7 +163,7 @@ static void set_root_pixmap (Pixmap pixmap);
|
|||
|
||||
static gboolean is_nautilus_running (void);
|
||||
|
||||
static void output_compat_prefs (Preferences *prefs);
|
||||
static void output_compat_prefs (const Preferences *prefs);
|
||||
|
||||
guint
|
||||
applier_get_type (void)
|
||||
|
@ -302,8 +300,10 @@ applier_destroy (GtkObject *object)
|
|||
}
|
||||
|
||||
void
|
||||
applier_apply_prefs (Applier *applier, Preferences *prefs,
|
||||
gboolean do_root, gboolean do_preview)
|
||||
applier_apply_prefs (Applier *applier,
|
||||
const Preferences *prefs,
|
||||
gboolean do_root,
|
||||
gboolean do_preview)
|
||||
{
|
||||
Preferences *new_prefs;
|
||||
|
||||
|
@ -719,7 +719,6 @@ renderer_render_background (Renderer *renderer)
|
|||
(GdkPixbufDestroyNotify)
|
||||
g_free,
|
||||
NULL);
|
||||
PDEBUG (renderer->pixbuf);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -828,7 +827,6 @@ renderer_render_wallpaper (Renderer *renderer)
|
|||
GDK_INTERP_BILINEAR,
|
||||
alpha_value, 65536,
|
||||
colorv, colorv);
|
||||
PDEBUG (renderer->pixbuf);
|
||||
}
|
||||
}
|
||||
else if (renderer->wwidth != renderer->pwidth ||
|
||||
|
@ -882,7 +880,6 @@ renderer_render_wallpaper (Renderer *renderer)
|
|||
gdk_pixbuf_unref (renderer->pixbuf);
|
||||
|
||||
renderer->pixbuf = renderer->wallpaper_pixbuf;
|
||||
PDEBUG (renderer->pixbuf);
|
||||
|
||||
gdk_pixbuf_ref (renderer->pixbuf);
|
||||
}
|
||||
|
@ -1382,7 +1379,7 @@ is_nautilus_running (void)
|
|||
|
||||
|
||||
static void
|
||||
output_compat_prefs (Preferences *prefs)
|
||||
output_compat_prefs (const Preferences *prefs)
|
||||
{
|
||||
gchar *color;
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ guint applier_get_type (void);
|
|||
GtkObject *applier_new (void);
|
||||
void applier_destroy (GtkObject *object);
|
||||
|
||||
void applier_apply_prefs (Applier *applier, Preferences *prefs,
|
||||
void applier_apply_prefs (Applier *applier, const Preferences *prefs,
|
||||
gboolean do_root, gboolean do_preview);
|
||||
|
||||
GtkWidget *applier_get_preview_widget (Applier *applier);
|
||||
|
|
|
@ -57,12 +57,11 @@ apply_settings (Bonobo_ConfigDatabase db)
|
|||
CORBA_Environment ev;
|
||||
|
||||
CORBA_exception_init (&ev);
|
||||
if (!applier)
|
||||
if (applier == NULL)
|
||||
applier = APPLIER (applier_new ());
|
||||
|
||||
/* HAckity hackty */
|
||||
if (background_image)
|
||||
{
|
||||
/* Hackity hackty */
|
||||
if (background_image != NULL) {
|
||||
bonobo_config_set_filename (db, "/main/wallpaper_filename", background_image, NULL);
|
||||
Bonobo_ConfigDatabase_sync (db, &ev);
|
||||
}
|
||||
|
@ -130,10 +129,10 @@ copy_color_from_legacy (Bonobo_ConfigDatabase db,
|
|||
}
|
||||
|
||||
static void
|
||||
bonobo_config_set_filename (Bonobo_ConfigDatabase db,
|
||||
const char *key,
|
||||
const char *value,
|
||||
CORBA_Environment *opt_ev)
|
||||
bonobo_config_set_filename (Bonobo_ConfigDatabase db,
|
||||
const char *key,
|
||||
const char *value,
|
||||
CORBA_Environment *opt_ev)
|
||||
{
|
||||
CORBA_any *any;
|
||||
|
||||
|
@ -148,7 +147,7 @@ get_legacy_settings (Bonobo_ConfigDatabase db)
|
|||
{
|
||||
gboolean val_boolean, def;
|
||||
gchar *val_string, *val_filename;
|
||||
int val_ulong, val_long;
|
||||
int val_ulong = -1, val_long = -1;
|
||||
|
||||
COPY_FROM_LEGACY (boolean, "/main/enabled", bool, "/Background/Default/Enabled=true");
|
||||
COPY_FROM_LEGACY (filename, "/main/wallpaper_filename", string, "/Background/Default/wallpaper=none");
|
||||
|
@ -177,51 +176,70 @@ get_legacy_settings (Bonobo_ConfigDatabase db)
|
|||
|
||||
val_boolean = gnome_config_get_bool_with_default ("/Background/Default/adjustOpacity=true", &def);
|
||||
|
||||
if (!def && val_boolean) {
|
||||
if (!def && val_boolean)
|
||||
COPY_FROM_LEGACY (long, "/main/opacity", int, "/Background/Default/opacity=100");
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
property_change_cb (BonoboListener *listener,
|
||||
char *event_name,
|
||||
CORBA_any *any,
|
||||
CORBA_Environment *ev,
|
||||
Bonobo_PropertyBag pb)
|
||||
property_change_cb (BonoboListener *listener,
|
||||
char *event_name,
|
||||
CORBA_any *any,
|
||||
CORBA_Environment *ev,
|
||||
Preferences *prefs)
|
||||
{
|
||||
Preferences *prefs;
|
||||
g_return_if_fail (prefs != NULL);
|
||||
g_return_if_fail (IS_PREFERENCES (prefs));
|
||||
|
||||
prefs = PREFERENCES (preferences_new_from_bonobo_pbag (pb, ev));
|
||||
if (GTK_OBJECT_DESTROYED (prefs))
|
||||
return;
|
||||
|
||||
preferences_apply_event (prefs, event_name, any);
|
||||
applier_apply_prefs (applier, prefs, FALSE, TRUE);
|
||||
gtk_object_destroy (GTK_OBJECT (prefs));
|
||||
}
|
||||
|
||||
static gboolean
|
||||
real_realize_cb (Preferences *prefs)
|
||||
{
|
||||
g_return_val_if_fail (prefs != NULL, TRUE);
|
||||
g_return_val_if_fail (IS_PREFERENCES (prefs), TRUE);
|
||||
|
||||
if (GTK_OBJECT_DESTROYED (prefs))
|
||||
return FALSE;
|
||||
|
||||
applier_apply_prefs (applier, prefs, FALSE, TRUE);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
realize_2_cb (Preferences *prefs)
|
||||
{
|
||||
gtk_idle_add ((GtkFunction) real_realize_cb, prefs);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
realize_cb (GtkWidget *widget, Bonobo_PropertyBag bag)
|
||||
realize_cb (GtkWidget *widget, Preferences *prefs)
|
||||
{
|
||||
CORBA_Environment ev;
|
||||
Preferences *prefs;
|
||||
|
||||
CORBA_exception_init (&ev);
|
||||
prefs = PREFERENCES (preferences_new_from_bonobo_pbag (bag, &ev));
|
||||
applier_apply_prefs (applier, prefs, FALSE, TRUE);
|
||||
gtk_object_destroy (GTK_OBJECT (prefs));
|
||||
CORBA_exception_free (&ev);
|
||||
gtk_timeout_add (100, (GtkFunction) realize_2_cb, prefs);
|
||||
}
|
||||
|
||||
#define CUSTOM_CREATE_PEDITOR(type, corba_type, key, widget) \
|
||||
#define CUSTOM_CREATE_PEDITOR(type, corba_type, key, widget) \
|
||||
{ \
|
||||
BonoboPEditor *ed = BONOBO_PEDITOR \
|
||||
(bonobo_peditor_##type##_construct (WID (widget))); \
|
||||
bonobo_peditor_set_property (ed, bag, key, TC_##corba_type, NULL); \
|
||||
bonobo_peditor_set_property (ed, bag, key, TC_##corba_type, NULL); \
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
setup_dialog (GtkWidget *widget, Bonobo_PropertyBag bag)
|
||||
{
|
||||
GladeXML *dialog;
|
||||
Applier *applier;
|
||||
GladeXML *dialog;
|
||||
Applier *applier;
|
||||
GtkObject *prefs;
|
||||
CORBA_Environment ev;
|
||||
|
||||
CORBA_exception_init (&ev);
|
||||
|
||||
dialog = gtk_object_get_data (GTK_OBJECT (widget), "glade-data");
|
||||
CUSTOM_CREATE_PEDITOR (option_menu, ulong, "orientation", "color_option");
|
||||
|
@ -233,15 +251,23 @@ setup_dialog (GtkWidget *widget, Bonobo_PropertyBag bag)
|
|||
CUSTOM_CREATE_PEDITOR (option_menu, ulong, "wallpaper_type", "image_option");
|
||||
CUSTOM_CREATE_PEDITOR (int_range, long, "opacity", "opacity_spin");
|
||||
|
||||
/* Disable opacity controls */
|
||||
gtk_widget_hide (WID ("opacity_spin"));
|
||||
gtk_widget_hide (WID ("opacity_label"));
|
||||
|
||||
bonobo_property_bag_client_set_value_gboolean (bag, "enabled", TRUE, NULL);
|
||||
|
||||
prefs = preferences_new_from_bonobo_pbag (bag, &ev);
|
||||
bonobo_event_source_client_add_listener (bag, (BonoboListenerCallbackFn) property_change_cb,
|
||||
NULL, NULL, bag);
|
||||
NULL, NULL, prefs);
|
||||
|
||||
applier = gtk_object_get_data (GTK_OBJECT (widget), "applier");
|
||||
gtk_signal_connect_after (GTK_OBJECT (applier_get_preview_widget (applier)), "realize", realize_cb, bag);
|
||||
gtk_signal_connect_after (GTK_OBJECT (applier_get_preview_widget (applier)), "realize", realize_cb, prefs);
|
||||
|
||||
gtk_signal_connect_object (GTK_OBJECT (widget), "destroy",
|
||||
GTK_SIGNAL_FUNC (gtk_object_destroy), prefs);
|
||||
|
||||
CORBA_exception_free (&ev);
|
||||
}
|
||||
|
||||
static GtkWidget*
|
||||
|
|
|
@ -127,7 +127,7 @@ preferences_new (void)
|
|||
}
|
||||
|
||||
GtkObject *
|
||||
preferences_clone (Preferences *prefs)
|
||||
preferences_clone (const Preferences *prefs)
|
||||
{
|
||||
GtkObject *object;
|
||||
Preferences *new_prefs;
|
||||
|
@ -139,11 +139,11 @@ preferences_clone (Preferences *prefs)
|
|||
|
||||
new_prefs = PREFERENCES (object);
|
||||
|
||||
new_prefs->enabled = prefs->enabled;
|
||||
new_prefs->gradient_enabled = prefs->gradient_enabled;
|
||||
new_prefs->wallpaper_enabled = prefs->wallpaper_enabled;
|
||||
new_prefs->orientation = prefs->orientation;
|
||||
new_prefs->wallpaper_type = prefs->wallpaper_type;
|
||||
new_prefs->enabled = prefs->enabled;
|
||||
new_prefs->gradient_enabled = prefs->gradient_enabled;
|
||||
new_prefs->wallpaper_enabled = prefs->wallpaper_enabled;
|
||||
new_prefs->orientation = prefs->orientation;
|
||||
new_prefs->wallpaper_type = prefs->wallpaper_type;
|
||||
|
||||
if (prefs->color1)
|
||||
new_prefs->color1 = gdk_color_copy (prefs->color1);
|
||||
|
@ -153,9 +153,9 @@ preferences_clone (Preferences *prefs)
|
|||
new_prefs->wallpaper_filename = g_strdup (prefs->wallpaper_filename);
|
||||
new_prefs->wallpaper_sel_path = g_strdup (prefs->wallpaper_sel_path);;
|
||||
|
||||
new_prefs->auto_apply = prefs->auto_apply;
|
||||
new_prefs->adjust_opacity = prefs->adjust_opacity;
|
||||
new_prefs->opacity = prefs->opacity;
|
||||
new_prefs->auto_apply = prefs->auto_apply;
|
||||
new_prefs->adjust_opacity = prefs->adjust_opacity;
|
||||
new_prefs->opacity = prefs->opacity;
|
||||
|
||||
return object;
|
||||
}
|
||||
|
@ -177,6 +177,7 @@ preferences_destroy (GtkObject *object)
|
|||
}
|
||||
|
||||
#ifdef BONOBO_CONF_ENABLE
|
||||
|
||||
static GdkColor*
|
||||
bonobo_color_to_gdk (Bonobo_Config_Color *color)
|
||||
{
|
||||
|
@ -208,7 +209,7 @@ bonobo_property_bag_client_get_value_gulong (Bonobo_PropertyBag pb, gchar *propn
|
|||
|
||||
#define PB_GET_VALUE(v) (bonobo_property_bag_client_get_value_any (pb, (v), NULL))
|
||||
|
||||
GtkObject*
|
||||
GtkObject *
|
||||
preferences_new_from_bonobo_pbag (Bonobo_PropertyBag pb, CORBA_Environment *ev)
|
||||
{
|
||||
Preferences *prefs;
|
||||
|
@ -217,6 +218,20 @@ preferences_new_from_bonobo_pbag (Bonobo_PropertyBag pb, CORBA_Environment *ev)
|
|||
g_return_val_if_fail (ev != NULL, NULL);
|
||||
|
||||
prefs = PREFERENCES (preferences_new ());
|
||||
preferences_load_from_bonobo_pbag (prefs, pb, ev);
|
||||
|
||||
return GTK_OBJECT (prefs);
|
||||
}
|
||||
|
||||
void
|
||||
preferences_load_from_bonobo_pbag (Preferences *prefs,
|
||||
Bonobo_PropertyBag pb,
|
||||
CORBA_Environment *ev)
|
||||
{
|
||||
g_return_if_fail (prefs != NULL);
|
||||
g_return_if_fail (IS_PREFERENCES (prefs));
|
||||
g_return_if_fail (pb != CORBA_OBJECT_NIL);
|
||||
g_return_if_fail (ev != NULL);
|
||||
|
||||
prefs->wallpaper_type = bonobo_property_bag_client_get_value_gulong (pb, "wallpaper_type", ev);
|
||||
prefs->wallpaper_filename = g_strdup (*((CORBA_char **)(PB_GET_VALUE ("wallpaper_filename"))->_value));
|
||||
|
@ -241,13 +256,11 @@ preferences_new_from_bonobo_pbag (Bonobo_PropertyBag pb, CORBA_Environment *ev)
|
|||
prefs->gradient_enabled = FALSE;
|
||||
else
|
||||
prefs->gradient_enabled = TRUE;
|
||||
|
||||
return GTK_OBJECT (prefs);
|
||||
}
|
||||
|
||||
#define DB_GET_VALUE(v) (bonobo_config_get_value (db, (v), NULL, NULL))
|
||||
|
||||
GtkObject*
|
||||
GtkObject *
|
||||
preferences_new_from_bonobo_db (Bonobo_ConfigDatabase db, CORBA_Environment *ev)
|
||||
{
|
||||
Preferences *prefs;
|
||||
|
@ -256,6 +269,20 @@ preferences_new_from_bonobo_db (Bonobo_ConfigDatabase db, CORBA_Environment *ev)
|
|||
g_return_val_if_fail (ev != NULL, NULL);
|
||||
|
||||
prefs = PREFERENCES (preferences_new ());
|
||||
preferences_load_from_bonobo_db (prefs, db, ev);
|
||||
|
||||
return GTK_OBJECT (prefs);
|
||||
}
|
||||
|
||||
void
|
||||
preferences_load_from_bonobo_db (Preferences *prefs,
|
||||
Bonobo_ConfigDatabase db,
|
||||
CORBA_Environment *ev)
|
||||
{
|
||||
g_return_if_fail (prefs != NULL);
|
||||
g_return_if_fail (IS_PREFERENCES (prefs));
|
||||
g_return_if_fail (db != CORBA_OBJECT_NIL);
|
||||
g_return_if_fail (ev != NULL);
|
||||
|
||||
prefs->enabled = bonobo_config_get_boolean (db, "/main/enabled", NULL);
|
||||
prefs->orientation = bonobo_config_get_ulong (db, "/main/orientation", NULL);
|
||||
|
@ -280,10 +307,68 @@ preferences_new_from_bonobo_db (Bonobo_ConfigDatabase db, CORBA_Environment *ev)
|
|||
prefs->opacity = BONOBO_ARG_GET_LONG (DB_GET_VALUE ("/main/opacity"));
|
||||
if (prefs->opacity >= 100)
|
||||
prefs->adjust_opacity = FALSE;
|
||||
|
||||
return GTK_OBJECT (prefs);
|
||||
}
|
||||
#else
|
||||
|
||||
void
|
||||
preferences_apply_event (Preferences *prefs,
|
||||
const gchar *event_name,
|
||||
const CORBA_any *value)
|
||||
{
|
||||
const gchar *name;
|
||||
|
||||
g_return_if_fail (prefs != NULL);
|
||||
g_return_if_fail (IS_PREFERENCES (prefs));
|
||||
g_return_if_fail (event_name != NULL);
|
||||
|
||||
if (strncmp (event_name, "Bonobo/Property:change:", strlen ("Bonobo/Property:change:")))
|
||||
return;
|
||||
|
||||
name = event_name + strlen ("Bonobo/Property:change:");
|
||||
|
||||
if (!strcmp (name, "wallpaper_type")) {
|
||||
prefs->wallpaper_type = BONOBO_ARG_GET_GENERAL (value, TC_ulong, CORBA_long, NULL);
|
||||
}
|
||||
else if (!strcmp (name, "wallpaper_filename")) {
|
||||
if (!bonobo_arg_type_is_equal (value->_type, TC_Bonobo_Config_FileName, NULL)) {
|
||||
g_warning ("Filename property not of filename type");
|
||||
return;
|
||||
}
|
||||
|
||||
prefs->wallpaper_filename = g_strdup (*((char **)value->_value));
|
||||
|
||||
if (prefs->wallpaper_filename != NULL &&
|
||||
strcmp (prefs->wallpaper_filename, "") != 0 &&
|
||||
strcmp (prefs->wallpaper_filename, "(none)") != 0)
|
||||
prefs->wallpaper_enabled = TRUE;
|
||||
else
|
||||
prefs->wallpaper_enabled = FALSE;
|
||||
}
|
||||
else if (!strcmp (name, "color1")) {
|
||||
prefs->color1 = bonobo_color_to_gdk ((Bonobo_Config_Color *)value->_value);
|
||||
}
|
||||
else if (!strcmp (name, "color2")) {
|
||||
prefs->color2 = bonobo_color_to_gdk ((Bonobo_Config_Color *)value->_value);
|
||||
}
|
||||
else if (!strcmp (name, "opacity")) {
|
||||
prefs->opacity = BONOBO_ARG_GET_LONG (value);
|
||||
|
||||
if (prefs->opacity >= 100)
|
||||
prefs->adjust_opacity = FALSE;
|
||||
}
|
||||
else if (!strcmp (name, "orientation")) {
|
||||
prefs->orientation = BONOBO_ARG_GET_GENERAL (value, TC_ulong, CORBA_long, NULL);
|
||||
|
||||
if (prefs->orientation == ORIENTATION_SOLID)
|
||||
prefs->gradient_enabled = FALSE;
|
||||
else
|
||||
prefs->gradient_enabled = TRUE;
|
||||
} else {
|
||||
g_warning ("%s: Unknown property: %s", __FUNCTION__, name);
|
||||
}
|
||||
}
|
||||
|
||||
#else /* !BONOBO_CONF_ENABLE */
|
||||
|
||||
void
|
||||
preferences_load (Preferences *prefs)
|
||||
{
|
||||
|
@ -681,7 +766,8 @@ apply_timeout_cb (Preferences *prefs)
|
|||
|
||||
return TRUE;
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* BONOBO_CONF_ENABLE */
|
||||
|
||||
static GdkColor *
|
||||
read_color_from_string (gchar *string)
|
||||
|
|
|
@ -79,30 +79,44 @@ struct _PreferencesClass
|
|||
GtkObjectClass klass;
|
||||
};
|
||||
|
||||
guint preferences_get_type (void);
|
||||
guint preferences_get_type (void);
|
||||
|
||||
GtkObject *preferences_new (void);
|
||||
GtkObject *preferences_clone (Preferences *prefs);
|
||||
GtkObject *preferences_new (void);
|
||||
GtkObject *preferences_clone (const Preferences *prefs);
|
||||
|
||||
void preferences_destroy (GtkObject *object);
|
||||
void preferences_destroy (GtkObject *object);
|
||||
|
||||
#ifdef BONOBO_CONF_ENABLE
|
||||
GtkObject *preferences_new_from_bonobo_pbag (Bonobo_PropertyBag pb,
|
||||
CORBA_Environment *ev);
|
||||
GtkObject *preferences_new_from_bonobo_db (Bonobo_ConfigDatabase db,
|
||||
CORBA_Environment *ev);
|
||||
#else
|
||||
void preferences_load (Preferences *prefs);
|
||||
void preferences_save (Preferences *prefs);
|
||||
void preferences_changed (Preferences *prefs);
|
||||
void preferences_apply_now (Preferences *prefs);
|
||||
void preferences_apply_preview (Preferences *prefs);
|
||||
|
||||
void preferences_freeze (Preferences *prefs);
|
||||
void preferences_thaw (Preferences *prefs);
|
||||
GtkObject *preferences_new_from_bonobo_pbag (Bonobo_PropertyBag pb,
|
||||
CORBA_Environment *ev);
|
||||
GtkObject *preferences_new_from_bonobo_db (Bonobo_ConfigDatabase db,
|
||||
CORBA_Environment *ev);
|
||||
void preferences_load_from_bonobo_pbag (Preferences *prefs,
|
||||
Bonobo_ConfigDatabase db,
|
||||
CORBA_Environment *ev);
|
||||
void preferences_load_from_bonobo_db (Preferences *prefs,
|
||||
Bonobo_ConfigDatabase db,
|
||||
CORBA_Environment *ev);
|
||||
|
||||
void preferences_apply_event (Preferences *prefs,
|
||||
const gchar *event_name,
|
||||
const CORBA_any *value);
|
||||
|
||||
#else /* !BONOBO_CONF_ENABLE */
|
||||
|
||||
void preferences_load (Preferences *prefs);
|
||||
void preferences_save (Preferences *prefs);
|
||||
void preferences_changed (Preferences *prefs);
|
||||
void preferences_apply_now (Preferences *prefs);
|
||||
void preferences_apply_preview (Preferences *prefs);
|
||||
|
||||
void preferences_freeze (Preferences *prefs);
|
||||
void preferences_thaw (Preferences *prefs);
|
||||
|
||||
Preferences *preferences_read_xml (xmlDocPtr xml_doc);
|
||||
xmlDocPtr preferences_write_xml (Preferences *prefs);
|
||||
|
||||
Preferences *preferences_read_xml (xmlDocPtr xml_doc);
|
||||
xmlDocPtr preferences_write_xml (Preferences *prefs);
|
||||
#endif /* BONOBO_CONF_ENABLE */
|
||||
|
||||
#endif /* __PREFERENCES_H */
|
||||
|
|
93
po/az.po
93
po/az.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-control-center 1.5.5\n"
|
||||
"POT-Creation-Date: 2001-08-18 16:24+0200\n"
|
||||
"POT-Creation-Date: 2001-08-23 16:09-0400\n"
|
||||
"PO-Revision-Date: 2001-08-18 16:29GMT +0200\n"
|
||||
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
|
||||
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
|
||||
|
@ -16,163 +16,163 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: KBabel 0.8\n"
|
||||
|
||||
#: archiver/location.c:228
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:445
|
||||
msgid "Default Location"
|
||||
msgstr "Əsas Yer"
|
||||
|
||||
#: archiver/main.c:78
|
||||
#: archiver/config-archiver.c:81
|
||||
msgid "Store XML data in the archive"
|
||||
msgstr "XML veriləni arxivdə qeyd edilir"
|
||||
|
||||
#: archiver/main.c:80
|
||||
#: archiver/config-archiver.c:83
|
||||
msgid "Roll back the configuration to a given point"
|
||||
msgstr "Quğuları verilən nöqtəyə qaytar"
|
||||
|
||||
#: archiver/main.c:82
|
||||
#: archiver/config-archiver.c:85
|
||||
msgid "Change the location profile to the given one"
|
||||
msgstr "Verilənin yer profilini dəyişdir"
|
||||
|
||||
#: archiver/main.c:84
|
||||
#: archiver/config-archiver.c:87
|
||||
msgid "Push configuration data out to client machines (UNIMPLEMENTED)"
|
||||
msgstr "Quraşdırma verilənlərini alıcı kompüterlərdən at (DƏSTƏKLƏNMİR)"
|
||||
|
||||
#: archiver/main.c:86
|
||||
#: archiver/config-archiver.c:89
|
||||
msgid "Rename a location to a new name"
|
||||
msgstr "Yeri yenı adla adlandır"
|
||||
|
||||
#: archiver/main.c:88
|
||||
#: archiver/config-archiver.c:91
|
||||
msgid "Add a new location to the archive"
|
||||
msgstr "Arxivə yeni yer əlavə et"
|
||||
|
||||
#: archiver/main.c:90
|
||||
#: archiver/config-archiver.c:93
|
||||
msgid "Remove a location from the archive"
|
||||
msgstr "Yeri arxivdən çıxart"
|
||||
|
||||
#: archiver/main.c:92
|
||||
#: archiver/config-archiver.c:95
|
||||
msgid "Add a given backend to the given location"
|
||||
msgstr "Verilən yerə verilən bəkendi əlavə et"
|
||||
|
||||
#: archiver/main.c:94
|
||||
#: archiver/config-archiver.c:97
|
||||
msgid "Remove the given backend from the given location"
|
||||
msgstr "Verilən yerdən verilən bəkendi çıxart"
|
||||
|
||||
#: archiver/main.c:96
|
||||
#: archiver/config-archiver.c:99
|
||||
msgid "Perform garbage collection on the given location"
|
||||
msgstr "Verilən yerdən zıbıl topla"
|
||||
|
||||
#: archiver/main.c:102
|
||||
#: archiver/config-archiver.c:105
|
||||
msgid "Use the global repository"
|
||||
msgstr "Qlobal nüzxə işlət"
|
||||
|
||||
#: archiver/main.c:104
|
||||
#: archiver/config-archiver.c:107
|
||||
msgid "Identifier of location profile on which to operate"
|
||||
msgstr "Üstündə işlənəcək yer profilinin vəsfləndiricisi"
|
||||
|
||||
#: archiver/main.c:105
|
||||
#: archiver/config-archiver.c:108
|
||||
msgid "LOCATION"
|
||||
msgstr "YER"
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "Backend being used for this operation"
|
||||
msgstr "Bu əməliyyat üçün işlədiləcək bəkend"
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "BACKEND_ID"
|
||||
msgstr "BACKEND_ID"
|
||||
|
||||
#: archiver/main.c:113
|
||||
#: archiver/config-archiver.c:116
|
||||
msgid "Store only the differences with the parent location's config"
|
||||
msgstr "Təkcə qohum yerlər arasındakı fərqləri saxla"
|
||||
|
||||
#: archiver/main.c:115
|
||||
#: archiver/config-archiver.c:118
|
||||
msgid "Store only those settings set in the previous config"
|
||||
msgstr "Təkcə əvvəlki quraşdırmadaı seçənəkləri saxla"
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "Date to which to roll back"
|
||||
msgstr "Qaytarılacaq tarix"
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "DATE"
|
||||
msgstr "TARİX"
|
||||
|
||||
#: archiver/main.c:123
|
||||
#: archiver/config-archiver.c:126
|
||||
msgid "Roll back all configuration items"
|
||||
msgstr "Bütün quraşdırma üzvlərini qaytar"
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "Roll back to the revision REVISION_ID"
|
||||
msgstr "Əvvəlki REVISION_İDyə qaytar"
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "REVISION_ID"
|
||||
msgstr "REVISION_ID"
|
||||
|
||||
#: archiver/main.c:127
|
||||
#: archiver/config-archiver.c:130
|
||||
msgid "Roll back to the last known revision"
|
||||
msgstr "Ən axırıncı təftişə qaytar"
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "Roll back by STEPS revisions"
|
||||
msgstr "PİLLƏ təftişlərinı qaytar"
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "STEPS"
|
||||
msgstr "PİLLƏLƏR"
|
||||
|
||||
#: archiver/main.c:131
|
||||
#: archiver/config-archiver.c:134
|
||||
msgid "Don't run the backend, just dump the output"
|
||||
msgstr "Bəkendi icra etmə, təkcə yekunu ver"
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "Parent location for the new location"
|
||||
msgstr "Yeni yerə qohum olan yerlər"
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "PARENT"
|
||||
msgstr "QOHUM"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "New name to assign to the location"
|
||||
msgstr "Yerə yeni ləqəb verilməyib"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "NEW_NAME"
|
||||
msgstr "YENİ_AD"
|
||||
|
||||
#: archiver/main.c:145
|
||||
#: archiver/config-archiver.c:148
|
||||
msgid "Add/remove this backend to/from the master backend list"
|
||||
msgstr "Usta bəkend başlığına/dan bu bəkendi əlavə et/çıxart"
|
||||
|
||||
#: archiver/main.c:147
|
||||
#: archiver/config-archiver.c:150
|
||||
msgid "Full containment"
|
||||
msgstr "Tam məzmun"
|
||||
|
||||
#: archiver/main.c:149
|
||||
#: archiver/config-archiver.c:152
|
||||
msgid "Partial containment"
|
||||
msgstr "Qismi məzmun"
|
||||
|
||||
#: archiver/main.c:322
|
||||
#: archiver/config-archiver.c:368
|
||||
msgid "Global archiver options"
|
||||
msgstr "Qlobal arxivşi seçənəkləri"
|
||||
|
||||
#: archiver/main.c:324
|
||||
#: archiver/config-archiver.c:370
|
||||
msgid "Archiver commands"
|
||||
msgstr "Arxivçi əmrləri"
|
||||
|
||||
#: archiver/main.c:326
|
||||
#: archiver/config-archiver.c:372
|
||||
msgid "Options for storing data"
|
||||
msgstr "Verilən saxlama seçənəkləri"
|
||||
|
||||
#: archiver/main.c:328
|
||||
#: archiver/config-archiver.c:374
|
||||
msgid "Options for rolling back"
|
||||
msgstr "Qaytarma seçənəkləri"
|
||||
|
||||
#: archiver/main.c:330
|
||||
#: archiver/config-archiver.c:376
|
||||
msgid "Options for adding or renaming locations"
|
||||
msgstr "Yer adı əlavə etmə, adını dəyişdirmə seçənəkləri"
|
||||
|
||||
#: archiver/main.c:333
|
||||
#: archiver/config-archiver.c:379
|
||||
msgid "Options for adding and removing backends"
|
||||
msgstr "Bəkend əlavə etmə, adını dəyişdirmə seçənəkləri"
|
||||
|
||||
|
@ -950,12 +950,13 @@ msgid "Length of Trail"
|
|||
msgstr "İz buraxma müddəti"
|
||||
|
||||
#: capplets/screensaver/screensavers/attraction.xml.h:6
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Like qix, this uses a simple simple motion model to generate many different "
|
||||
"display modes. The control points attract each other up to a certain "
|
||||
"distance, and then begin to repel each other. The attraction/repulsion is "
|
||||
"proportional to the distance between any two particles, similar to the "
|
||||
"strong and weak nuclear forces. \n"
|
||||
"Like qix, this uses a simple motion model to generate many different display "
|
||||
"modes. The control points attract each other up to a certain distance, and "
|
||||
"then begin to repel each other. The attraction/repulsion is proportional to "
|
||||
"the distance between any two particles, similar to the strong and weak "
|
||||
"nuclear forces. \n"
|
||||
"\n"
|
||||
"One of the most interesting ways to watch this hack is simply as bouncing "
|
||||
"balls, because their motions and interactions with each other are so odd. "
|
||||
|
|
102
po/ca.po
102
po/ca.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-control-center 1.5.5\n"
|
||||
"POT-Creation-Date: 2001-08-12 21:17+0200\n"
|
||||
"POT-Creation-Date: 2001-08-23 16:09-0400\n"
|
||||
"PO-Revision-Date: 2001-08-10 21:50+0200\n"
|
||||
"Last-Translator: Softcatalà <tradgnome@softcatala.org>\n"
|
||||
"Language-Team: Catalan <linux@softcatala.org>\n"
|
||||
|
@ -15,180 +15,180 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=iso-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: archiver/location.c:228
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:445
|
||||
msgid "Default Location"
|
||||
msgstr "Ubicació per defecte"
|
||||
|
||||
#: archiver/main.c:78
|
||||
#: archiver/config-archiver.c:81
|
||||
msgid "Store XML data in the archive"
|
||||
msgstr "Emmagatzema dades XML a l'arxiu"
|
||||
|
||||
#: archiver/main.c:80
|
||||
#: archiver/config-archiver.c:83
|
||||
msgid "Roll back the configuration to a given point"
|
||||
msgstr "Treure la configuració d'un punt donat"
|
||||
|
||||
#: archiver/main.c:82
|
||||
#: archiver/config-archiver.c:85
|
||||
msgid "Change the location profile to the given one"
|
||||
msgstr "Canvia la ubicació del perfil en donar-ne un"
|
||||
|
||||
#: archiver/main.c:84
|
||||
#: archiver/config-archiver.c:87
|
||||
msgid "Push configuration data out to client machines (UNIMPLEMENTED)"
|
||||
msgstr ""
|
||||
"Canvia les dades de configuració a les màquines client (DESIMPLEMENTAR)"
|
||||
|
||||
#: archiver/main.c:86
|
||||
#: archiver/config-archiver.c:89
|
||||
msgid "Rename a location to a new name"
|
||||
msgstr "Reanomena una ubicació a un nom nou"
|
||||
|
||||
#: archiver/main.c:88
|
||||
#: archiver/config-archiver.c:91
|
||||
msgid "Add a new location to the archive"
|
||||
msgstr "Afegeix una nova ubicació a l'arxiu"
|
||||
|
||||
#: archiver/main.c:90
|
||||
#: archiver/config-archiver.c:93
|
||||
msgid "Remove a location from the archive"
|
||||
msgstr "Suprimeix una localització des de l'arxiu"
|
||||
|
||||
#: archiver/main.c:92
|
||||
#: archiver/config-archiver.c:95
|
||||
msgid "Add a given backend to the given location"
|
||||
msgstr "Afegeix una ubicació en segon plà a una ubicació donada"
|
||||
|
||||
#: archiver/main.c:94
|
||||
#: archiver/config-archiver.c:97
|
||||
msgid "Remove the given backend from the given location"
|
||||
msgstr "Suprimeix una ubicació en segon plà per una ubicació donada"
|
||||
|
||||
#: archiver/main.c:96
|
||||
#: archiver/config-archiver.c:99
|
||||
#, fuzzy
|
||||
msgid "Perform garbage collection on the given location"
|
||||
msgstr "Ubicació pare per a una nova ubicació"
|
||||
|
||||
#: archiver/main.c:102
|
||||
#: archiver/config-archiver.c:105
|
||||
msgid "Use the global repository"
|
||||
msgstr "Utilitza la central de dipòsit global"
|
||||
|
||||
#: archiver/main.c:104
|
||||
#: archiver/config-archiver.c:107
|
||||
msgid "Identifier of location profile on which to operate"
|
||||
msgstr "Identificador del perfil d'ubicació amb que funciona"
|
||||
|
||||
#: archiver/main.c:105
|
||||
#: archiver/config-archiver.c:108
|
||||
msgid "LOCATION"
|
||||
msgstr "UBICACIÓ"
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "Backend being used for this operation"
|
||||
msgstr "Segón plà usat per aquesta operació"
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "BACKEND_ID"
|
||||
msgstr "IDENTIFICADOR DE SEGON PLÀ"
|
||||
|
||||
#: archiver/main.c:113
|
||||
#: archiver/config-archiver.c:116
|
||||
msgid "Store only the differences with the parent location's config"
|
||||
msgstr ""
|
||||
"Emmagatzema tant sols les diferències amb la configuració de la ubicació pare"
|
||||
|
||||
#: archiver/main.c:115
|
||||
#: archiver/config-archiver.c:118
|
||||
msgid "Store only those settings set in the previous config"
|
||||
msgstr ""
|
||||
"Emmagatzema tant sols aquells conjunts de paràmetres de la configuració "
|
||||
"prèvia"
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "Date to which to roll back"
|
||||
msgstr "Dades les quals s'han de treure"
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "DATE"
|
||||
msgstr "DATA"
|
||||
|
||||
#: archiver/main.c:123
|
||||
#: archiver/config-archiver.c:126
|
||||
msgid "Roll back all configuration items"
|
||||
msgstr "Treure tots els ítems de configuració"
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "Roll back to the revision REVISION_ID"
|
||||
msgstr "Treure totes les revisions de l'IDENTIFICADOR DE REVISIÓ"
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "REVISION_ID"
|
||||
msgstr "IDENTIFICADOR DE REVISIÓ"
|
||||
|
||||
#: archiver/main.c:127
|
||||
#: archiver/config-archiver.c:130
|
||||
msgid "Roll back to the last known revision"
|
||||
msgstr "Treure la darrera revisió coneguda"
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "Roll back by STEPS revisions"
|
||||
msgstr "Treure les revisions per pasos"
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "STEPS"
|
||||
msgstr "PASOS"
|
||||
|
||||
#: archiver/main.c:131
|
||||
#: archiver/config-archiver.c:134
|
||||
msgid "Don't run the backend, just dump the output"
|
||||
msgstr "No executis en segon plà, tant sols salta a la sortida"
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "Parent location for the new location"
|
||||
msgstr "Ubicació pare per a una nova ubicació"
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "PARENT"
|
||||
msgstr "PARE"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "New name to assign to the location"
|
||||
msgstr "Nom nou a assignar a la ubicació"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "NEW_NAME"
|
||||
msgstr "NOM NOU"
|
||||
|
||||
#: archiver/main.c:145
|
||||
#: archiver/config-archiver.c:148
|
||||
msgid "Add/remove this backend to/from the master backend list"
|
||||
msgstr ""
|
||||
"Afegeix/suprimeix aquest segon plà al/des de la llista de segon plà mestre"
|
||||
|
||||
#: archiver/main.c:147
|
||||
#: archiver/config-archiver.c:150
|
||||
msgid "Full containment"
|
||||
msgstr "Contingut sencer"
|
||||
|
||||
#: archiver/main.c:149
|
||||
#: archiver/config-archiver.c:152
|
||||
msgid "Partial containment"
|
||||
msgstr "Contenció parcial"
|
||||
|
||||
#: archiver/main.c:322
|
||||
#: archiver/config-archiver.c:368
|
||||
msgid "Global archiver options"
|
||||
msgstr "Opcions d'arxivador globals"
|
||||
|
||||
#: archiver/main.c:324
|
||||
#: archiver/config-archiver.c:370
|
||||
msgid "Archiver commands"
|
||||
msgstr "Ordres d'arxivador"
|
||||
|
||||
#: archiver/main.c:326
|
||||
#: archiver/config-archiver.c:372
|
||||
msgid "Options for storing data"
|
||||
msgstr "Opcions per l'emmmagatzematge de dades"
|
||||
|
||||
#: archiver/main.c:328
|
||||
#: archiver/config-archiver.c:374
|
||||
msgid "Options for rolling back"
|
||||
msgstr "Opcions per treure"
|
||||
|
||||
#: archiver/main.c:330
|
||||
#: archiver/config-archiver.c:376
|
||||
msgid "Options for adding or renaming locations"
|
||||
msgstr "Opcions per afegir o reanomenar ubicacions"
|
||||
|
||||
#: archiver/main.c:333
|
||||
#: archiver/config-archiver.c:379
|
||||
msgid "Options for adding and removing backends"
|
||||
msgstr "Opcions per afegir i suprimir segons plans"
|
||||
|
||||
#: capplets/background/applier.c:354
|
||||
#: capplets/background/applier.c:355
|
||||
#, c-format
|
||||
msgid "Could not load pixbuf \"%s\"; disabling wallpaper."
|
||||
msgstr ""
|
||||
"No s'ha pogut carregar el pixbuf \"%s\"; s'està inhabilitant el paper de "
|
||||
"fons."
|
||||
|
||||
#: capplets/background/applier.c:500
|
||||
#: capplets/background/applier.c:501
|
||||
msgid "Disabled"
|
||||
msgstr "Inhabilitat"
|
||||
|
||||
|
@ -401,7 +401,6 @@ msgid "Web Browser"
|
|||
msgstr "Visor d'ajuda"
|
||||
|
||||
#: capplets/default-applications/interface.c:370
|
||||
#: capplets/default-applications/interface.c:501
|
||||
msgid "Default Help Viewer"
|
||||
msgstr "Visor d'ajuda per defecte"
|
||||
|
||||
|
@ -442,6 +441,11 @@ msgstr "Si us plau, introdu
|
|||
msgid "Help Viewer"
|
||||
msgstr "Visor d'ajuda"
|
||||
|
||||
#: capplets/default-applications/interface.c:501
|
||||
#, fuzzy
|
||||
msgid "Default Terminal"
|
||||
msgstr "Seleccioneu un tema a instal·lar"
|
||||
|
||||
#: capplets/default-applications/interface.c:518
|
||||
#, fuzzy
|
||||
msgid "Select a Terminal"
|
||||
|
@ -962,11 +966,11 @@ msgstr "Longitud de l'estela"
|
|||
|
||||
#: capplets/screensaver/screensavers/attraction.xml.h:6
|
||||
msgid ""
|
||||
"Like qix, this uses a simple simple motion model to generate many different "
|
||||
"display modes. The control points attract each other up to a certain "
|
||||
"distance, and then begin to repel each other. The attraction/repulsion is "
|
||||
"proportional to the distance between any two particles, similar to the "
|
||||
"strong and weak nuclear forces. \n"
|
||||
"Like qix, this uses a simple motion model to generate many different display "
|
||||
"modes. The control points attract each other up to a certain distance, and "
|
||||
"then begin to repel each other. The attraction/repulsion is proportional to "
|
||||
"the distance between any two particles, similar to the strong and weak "
|
||||
"nuclear forces. \n"
|
||||
"\n"
|
||||
"One of the most interesting ways to watch this hack is simply as bouncing "
|
||||
"balls, because their motions and interactions with each other are so odd. "
|
||||
|
|
102
po/el.po
102
po/el.po
|
@ -17,7 +17,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-control-center 1.5.5\n"
|
||||
"POT-Creation-Date: 2001-08-12 21:17+0200\n"
|
||||
"POT-Creation-Date: 2001-08-23 16:09-0400\n"
|
||||
"PO-Revision-Date: 2001-02-18 23:12:25+0900\n"
|
||||
"Last-Translator: Simos Xenitellis <simos@hellug.gr>\n"
|
||||
"Language-Team: Greek <nls@tux.hellug.gr>\n"
|
||||
|
@ -25,175 +25,175 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=iso-8859-7\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: archiver/location.c:228
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:445
|
||||
#, fuzzy
|
||||
msgid "Default Location"
|
||||
msgstr "Åî' ïñéóìïý ôéìÞ"
|
||||
|
||||
#: archiver/main.c:78
|
||||
#: archiver/config-archiver.c:81
|
||||
msgid "Store XML data in the archive"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:80
|
||||
#: archiver/config-archiver.c:83
|
||||
msgid "Roll back the configuration to a given point"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:82
|
||||
#: archiver/config-archiver.c:85
|
||||
msgid "Change the location profile to the given one"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:84
|
||||
#: archiver/config-archiver.c:87
|
||||
msgid "Push configuration data out to client machines (UNIMPLEMENTED)"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:86
|
||||
#: archiver/config-archiver.c:89
|
||||
msgid "Rename a location to a new name"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:88
|
||||
#: archiver/config-archiver.c:91
|
||||
msgid "Add a new location to the archive"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:90
|
||||
#: archiver/config-archiver.c:93
|
||||
msgid "Remove a location from the archive"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:92
|
||||
#: archiver/config-archiver.c:95
|
||||
msgid "Add a given backend to the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:94
|
||||
#: archiver/config-archiver.c:97
|
||||
msgid "Remove the given backend from the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:96
|
||||
#: archiver/config-archiver.c:99
|
||||
msgid "Perform garbage collection on the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:102
|
||||
#: archiver/config-archiver.c:105
|
||||
msgid "Use the global repository"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:104
|
||||
#: archiver/config-archiver.c:107
|
||||
msgid "Identifier of location profile on which to operate"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:105
|
||||
#: archiver/config-archiver.c:108
|
||||
msgid "LOCATION"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "Backend being used for this operation"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "BACKEND_ID"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:113
|
||||
#: archiver/config-archiver.c:116
|
||||
msgid "Store only the differences with the parent location's config"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:115
|
||||
#: archiver/config-archiver.c:118
|
||||
msgid "Store only those settings set in the previous config"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "Date to which to roll back"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "DATE"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:123
|
||||
#: archiver/config-archiver.c:126
|
||||
msgid "Roll back all configuration items"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "Roll back to the revision REVISION_ID"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "REVISION_ID"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:127
|
||||
#: archiver/config-archiver.c:130
|
||||
msgid "Roll back to the last known revision"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "Roll back by STEPS revisions"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "STEPS"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:131
|
||||
#: archiver/config-archiver.c:134
|
||||
msgid "Don't run the backend, just dump the output"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "Parent location for the new location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
#, fuzzy
|
||||
msgid "PARENT"
|
||||
msgstr "ÐÑÏÓÁÍÁÔÏËÉÓÌÏÓ"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "New name to assign to the location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "NEW_NAME"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:145
|
||||
#: archiver/config-archiver.c:148
|
||||
msgid "Add/remove this backend to/from the master backend list"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:147
|
||||
#: archiver/config-archiver.c:150
|
||||
msgid "Full containment"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:149
|
||||
#: archiver/config-archiver.c:152
|
||||
#, fuzzy
|
||||
msgid "Partial containment"
|
||||
msgstr "ÄéáâÜèìéóç"
|
||||
|
||||
#: archiver/main.c:322
|
||||
#: archiver/config-archiver.c:368
|
||||
msgid "Global archiver options"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:324
|
||||
#: archiver/config-archiver.c:370
|
||||
msgid "Archiver commands"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:326
|
||||
#: archiver/config-archiver.c:372
|
||||
msgid "Options for storing data"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:328
|
||||
#: archiver/config-archiver.c:374
|
||||
msgid "Options for rolling back"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:330
|
||||
#: archiver/config-archiver.c:376
|
||||
msgid "Options for adding or renaming locations"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:333
|
||||
#: archiver/config-archiver.c:379
|
||||
msgid "Options for adding and removing backends"
|
||||
msgstr ""
|
||||
|
||||
#: capplets/background/applier.c:354
|
||||
#: capplets/background/applier.c:355
|
||||
#, c-format
|
||||
msgid "Could not load pixbuf \"%s\"; disabling wallpaper."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/background/applier.c:500
|
||||
#: capplets/background/applier.c:501
|
||||
msgid "Disabled"
|
||||
msgstr "Áíåíåñãü"
|
||||
|
||||
|
@ -415,7 +415,6 @@ msgid "Web Browser"
|
|||
msgstr "Ðñüãñáììá âïÞèåéáò"
|
||||
|
||||
#: capplets/default-applications/interface.c:370
|
||||
#: capplets/default-applications/interface.c:501
|
||||
msgid "Default Help Viewer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -458,6 +457,11 @@ msgstr "
|
|||
msgid "Help Viewer"
|
||||
msgstr "Ðñüãñáììá âïÞèåéáò"
|
||||
|
||||
#: capplets/default-applications/interface.c:501
|
||||
#, fuzzy
|
||||
msgid "Default Terminal"
|
||||
msgstr "ÅðéëïãÞ èÝìáôïò ðñïò åãêáôÜóôáóç"
|
||||
|
||||
#: capplets/default-applications/interface.c:518
|
||||
#, fuzzy
|
||||
msgid "Select a Terminal"
|
||||
|
@ -987,11 +991,11 @@ msgstr "
|
|||
|
||||
#: capplets/screensaver/screensavers/attraction.xml.h:6
|
||||
msgid ""
|
||||
"Like qix, this uses a simple simple motion model to generate many different "
|
||||
"display modes. The control points attract each other up to a certain "
|
||||
"distance, and then begin to repel each other. The attraction/repulsion is "
|
||||
"proportional to the distance between any two particles, similar to the "
|
||||
"strong and weak nuclear forces. \n"
|
||||
"Like qix, this uses a simple motion model to generate many different display "
|
||||
"modes. The control points attract each other up to a certain distance, and "
|
||||
"then begin to repel each other. The attraction/repulsion is proportional to "
|
||||
"the distance between any two particles, similar to the strong and weak "
|
||||
"nuclear forces. \n"
|
||||
"\n"
|
||||
"One of the most interesting ways to watch this hack is simply as bouncing "
|
||||
"balls, because their motions and interactions with each other are so odd. "
|
||||
|
|
148
po/es.po
148
po/es.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: control-center 1.3.10\n"
|
||||
"POT-Creation-Date: 2001-08-10 12:03+0200\n"
|
||||
"POT-Creation-Date: 2001-08-23 16:09-0400\n"
|
||||
"PO-Revision-Date: 2001-07-28 13:20+0200\n"
|
||||
"Last-Translator: Carlos Perelló Marín <carlos@gnome-db.org>\n"
|
||||
"Language-Team: Spanish\n"
|
||||
|
@ -14,173 +14,173 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=iso-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: archiver/location.c:228
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:445
|
||||
msgid "Default Location"
|
||||
msgstr "Localización predeterminada"
|
||||
|
||||
#: archiver/main.c:78
|
||||
#: archiver/config-archiver.c:81
|
||||
msgid "Store XML data in the archive"
|
||||
msgstr "Almacenar datos XML en el archivo"
|
||||
|
||||
#: archiver/main.c:80
|
||||
#: archiver/config-archiver.c:83
|
||||
msgid "Roll back the configuration to a given point"
|
||||
msgstr "Deshacer la configuración hasta un punto determinado"
|
||||
|
||||
#: archiver/main.c:82
|
||||
#: archiver/config-archiver.c:85
|
||||
msgid "Change the location profile to the given one"
|
||||
msgstr "Cambia el perfil de localización a uno determinado"
|
||||
|
||||
#: archiver/main.c:84
|
||||
#: archiver/config-archiver.c:87
|
||||
msgid "Push configuration data out to client machines (UNIMPLEMENTED)"
|
||||
msgstr "Enviar datos de configuración a máquinas cliente (NO IMPLEMENTADO)"
|
||||
|
||||
#: archiver/main.c:86
|
||||
#: archiver/config-archiver.c:89
|
||||
msgid "Rename a location to a new name"
|
||||
msgstr "Renombrar una localización a un nuevo nombre"
|
||||
|
||||
#: archiver/main.c:88
|
||||
#: archiver/config-archiver.c:91
|
||||
msgid "Add a new location to the archive"
|
||||
msgstr "Añadir una nueva localización al archivo"
|
||||
|
||||
#: archiver/main.c:90
|
||||
#: archiver/config-archiver.c:93
|
||||
msgid "Remove a location from the archive"
|
||||
msgstr "Eliminar una localización del archivo"
|
||||
|
||||
#: archiver/main.c:92
|
||||
#: archiver/config-archiver.c:95
|
||||
msgid "Add a given backend to the given location"
|
||||
msgstr "Añadir un backend a la localización dada"
|
||||
|
||||
#: archiver/main.c:94
|
||||
#: archiver/config-archiver.c:97
|
||||
msgid "Remove the given backend from the given location"
|
||||
msgstr "Eliminar el backend dado de la localización dada"
|
||||
|
||||
#: archiver/main.c:96
|
||||
#: archiver/config-archiver.c:99
|
||||
msgid "Perform garbage collection on the given location"
|
||||
msgstr "Realiza recolección de basura en la localización dada"
|
||||
|
||||
#: archiver/main.c:102
|
||||
#: archiver/config-archiver.c:105
|
||||
msgid "Use the global repository"
|
||||
msgstr "Emplear el repositorio global"
|
||||
|
||||
#: archiver/main.c:104
|
||||
#: archiver/config-archiver.c:107
|
||||
msgid "Identifier of location profile on which to operate"
|
||||
msgstr "Identifica el perfil de localización con el cual operar"
|
||||
|
||||
#: archiver/main.c:105
|
||||
#: archiver/config-archiver.c:108
|
||||
msgid "LOCATION"
|
||||
msgstr "LOCALIZACIÓN"
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "Backend being used for this operation"
|
||||
msgstr "Backend empleado para esta operación"
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "BACKEND_ID"
|
||||
msgstr "BACKEND_ID"
|
||||
|
||||
#: archiver/main.c:113
|
||||
#: archiver/config-archiver.c:116
|
||||
msgid "Store only the differences with the parent location's config"
|
||||
msgstr ""
|
||||
"Almacenar solo las diferencias con la configuración de localización del padre"
|
||||
|
||||
#: archiver/main.c:115
|
||||
#: archiver/config-archiver.c:118
|
||||
msgid "Store only those settings set in the previous config"
|
||||
msgstr "Almacenar solo las opciones empleadas en la configuración anterior"
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "Date to which to roll back"
|
||||
msgstr "Fecha a la cual volver"
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "DATE"
|
||||
msgstr "FECHA"
|
||||
|
||||
#: archiver/main.c:123
|
||||
#: archiver/config-archiver.c:126
|
||||
msgid "Roll back all configuration items"
|
||||
msgstr "Deshacer todos los elementos de la configuración"
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "Roll back to the revision REVISION_ID"
|
||||
msgstr "Deshacer hasta la revisión REVISION_ID"
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "REVISION_ID"
|
||||
msgstr "REVISION_ID"
|
||||
|
||||
#: archiver/main.c:127
|
||||
#: archiver/config-archiver.c:130
|
||||
msgid "Roll back to the last known revision"
|
||||
msgstr "Deshacer hasta la última revisión conocida"
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "Roll back by STEPS revisions"
|
||||
msgstr "Deshacer hasta PASOS revisiones"
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "STEPS"
|
||||
msgstr "PASOS"
|
||||
|
||||
#: archiver/main.c:131
|
||||
#: archiver/config-archiver.c:134
|
||||
msgid "Don't run the backend, just dump the output"
|
||||
msgstr "No ejecutar el backend, solo volcar la salida"
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "Parent location for the new location"
|
||||
msgstr "Localización del padre para la nueva localización"
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "PARENT"
|
||||
msgstr "PADRE"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "New name to assign to the location"
|
||||
msgstr "Nombre nuevo a asignar a la localización"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "NEW_NAME"
|
||||
msgstr "NOMBRE_NUEVO"
|
||||
|
||||
#: archiver/main.c:145
|
||||
#: archiver/config-archiver.c:148
|
||||
msgid "Add/remove this backend to/from the master backend list"
|
||||
msgstr "Añadir/eliminar este backend a/de la lista maestra de backend"
|
||||
|
||||
#: archiver/main.c:147
|
||||
#: archiver/config-archiver.c:150
|
||||
msgid "Full containment"
|
||||
msgstr "Almacenamiento completo"
|
||||
|
||||
#: archiver/main.c:149
|
||||
#: archiver/config-archiver.c:152
|
||||
msgid "Partial containment"
|
||||
msgstr "Almacenamiento parcial"
|
||||
|
||||
#: archiver/main.c:322
|
||||
#: archiver/config-archiver.c:368
|
||||
msgid "Global archiver options"
|
||||
msgstr "Opciones globales del archivo"
|
||||
|
||||
#: archiver/main.c:324
|
||||
#: archiver/config-archiver.c:370
|
||||
msgid "Archiver commands"
|
||||
msgstr "Comandos del archivo"
|
||||
|
||||
#: archiver/main.c:326
|
||||
#: archiver/config-archiver.c:372
|
||||
msgid "Options for storing data"
|
||||
msgstr "Opciones para almacenar datos"
|
||||
|
||||
#: archiver/main.c:328
|
||||
#: archiver/config-archiver.c:374
|
||||
msgid "Options for rolling back"
|
||||
msgstr "Opciones para deshacer"
|
||||
|
||||
#: archiver/main.c:330
|
||||
#: archiver/config-archiver.c:376
|
||||
msgid "Options for adding or renaming locations"
|
||||
msgstr "Opciones para añadir o renombrar localizaciones"
|
||||
|
||||
#: archiver/main.c:333
|
||||
#: archiver/config-archiver.c:379
|
||||
msgid "Options for adding and removing backends"
|
||||
msgstr "Opciones para añadir y eliminar backends"
|
||||
|
||||
#: capplets/background/applier.c:354
|
||||
#: capplets/background/applier.c:355
|
||||
#, c-format
|
||||
msgid "Could not load pixbuf \"%s\"; disabling wallpaper."
|
||||
msgstr "No pude cargar la imágen «%s»; desactivando imágen de fondo."
|
||||
|
||||
#: capplets/background/applier.c:500
|
||||
#: capplets/background/applier.c:501
|
||||
msgid "Disabled"
|
||||
msgstr "Desactivado"
|
||||
|
||||
|
@ -389,7 +389,6 @@ msgid "Web Browser"
|
|||
msgstr "Navegador de web"
|
||||
|
||||
#: capplets/default-applications/interface.c:370
|
||||
#: capplets/default-applications/interface.c:501
|
||||
msgid "Default Help Viewer"
|
||||
msgstr "Visualizador de ayuda predeterminado"
|
||||
|
||||
|
@ -432,6 +431,11 @@ msgstr ""
|
|||
msgid "Help Viewer"
|
||||
msgstr "Visualizador de ayuda"
|
||||
|
||||
#: capplets/default-applications/interface.c:501
|
||||
#, fuzzy
|
||||
msgid "Default Terminal"
|
||||
msgstr "Seleccione una terminal"
|
||||
|
||||
#: capplets/default-applications/interface.c:518
|
||||
msgid "Select a Terminal"
|
||||
msgstr "Seleccione una terminal"
|
||||
|
@ -606,19 +610,24 @@ msgstr "Diestro"
|
|||
msgid "Sensitivity:"
|
||||
msgstr "Sensibilidad"
|
||||
|
||||
#: capplets/screensaver/preferences.c:717
|
||||
#: capplets/screensaver/preferences.c:786
|
||||
msgid "Custom screensaver. No description available"
|
||||
msgstr "Salvapantalla personalizado. No tiene descripción"
|
||||
|
||||
#: capplets/screensaver/prefs-widget.c:188
|
||||
#: capplets/screensaver/prefs-widget.c:202
|
||||
msgid "Use"
|
||||
msgstr "Usar"
|
||||
|
||||
#: capplets/screensaver/prefs-widget.c:188
|
||||
#: capplets/screensaver/prefs-widget.c:202
|
||||
#: capplets/screensaver/screensaver.desktop.in.in.h:2
|
||||
msgid "Screensaver"
|
||||
msgstr "Salvapantalla"
|
||||
|
||||
#: capplets/screensaver/prefs-widget.c:920
|
||||
#, c-format
|
||||
msgid "About %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensaver.desktop.in.in.h:1
|
||||
msgid "Configure the settings of the screensaver"
|
||||
msgstr "Configurar el salvapantalla"
|
||||
|
@ -643,6 +652,11 @@ msgstr "etiqueta1"
|
|||
msgid "Demo"
|
||||
msgstr "Demo"
|
||||
|
||||
#: capplets/screensaver/screensaver-prefs-dialog.c:274
|
||||
#, fuzzy, c-format
|
||||
msgid "%s properties"
|
||||
msgstr "Propiedades del ratón"
|
||||
|
||||
#: capplets/screensaver/screensaver-prefs-dialog.c:1366
|
||||
msgid "There are no configurable settings for this screensaver."
|
||||
msgstr ""
|
||||
|
@ -927,11 +941,11 @@ msgstr "Longitud del rastro"
|
|||
|
||||
#: capplets/screensaver/screensavers/attraction.xml.h:6
|
||||
msgid ""
|
||||
"Like qix, this uses a simple simple motion model to generate many different "
|
||||
"display modes. The control points attract each other up to a certain "
|
||||
"distance, and then begin to repel each other. The attraction/repulsion is "
|
||||
"proportional to the distance between any two particles, similar to the "
|
||||
"strong and weak nuclear forces. \n"
|
||||
"Like qix, this uses a simple motion model to generate many different display "
|
||||
"modes. The control points attract each other up to a certain distance, and "
|
||||
"then begin to repel each other. The attraction/repulsion is proportional to "
|
||||
"the distance between any two particles, similar to the strong and weak "
|
||||
"nuclear forces. \n"
|
||||
"\n"
|
||||
"One of the most interesting ways to watch this hack is simply as bouncing "
|
||||
"balls, because their motions and interactions with each other are so odd. "
|
||||
|
@ -1239,9 +1253,7 @@ msgstr "Cosmos"
|
|||
#: capplets/screensaver/screensavers/cosmos.xml.h:2
|
||||
msgid ""
|
||||
"Draws fireworks and zooming, fading flares. By Tom Campbell. You can find "
|
||||
"it at <http://www.mindspring.com/~campbell/cosmos/>.\n"
|
||||
"\n"
|
||||
"! (xrdb prevention kludge: whole file) */"
|
||||
"it at <http://www.mindspring.com/~campbell/cosmos/>."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/critical.xml.h:1
|
||||
|
@ -1312,11 +1324,17 @@ msgstr ""
|
|||
|
||||
#: capplets/screensaver/screensavers/decayscreen.xml.h:4
|
||||
msgid ""
|
||||
"This takes an image and makes it melt. You've no doubt seen this effect "
|
||||
"before, but no screensaver would really be complete without it. It works "
|
||||
"best if there's something colorful visible. Warning, if the effect "
|
||||
"continues after the screen saver is off, seek medical attention. Written by "
|
||||
"David Wald and Vivek Khera."
|
||||
"This grabs an image of whatever is on your screen, and makes it melt. "
|
||||
"You've no doubt seen this effect before, but no screensaver would really be "
|
||||
"complete without it. It works best if there's something colorful visible. "
|
||||
"Warning, if the effect continues after the screen saver is off, seek medical "
|
||||
"attention. Written by David Wald and Vivek Khera. \n"
|
||||
"\n"
|
||||
"A number of these screenhacks have the ability to take an image of your "
|
||||
"desktop and manipulate it in some way. On SGI systems, these programs are "
|
||||
"able to (at random) pull their source image from the system's video input "
|
||||
"instead! This works nicely if you leave some some random television station "
|
||||
"plugged in."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/deco.xml.h:1
|
||||
|
@ -2413,11 +2431,11 @@ msgstr ""
|
|||
|
||||
#: capplets/screensaver/screensavers/slidescreen.xml.h:2
|
||||
msgid ""
|
||||
"This takes an image, divides it into a grid, and then randomly shuffles the "
|
||||
"squares around as if it was one of those annoying ``16-puzzle'' games, where "
|
||||
"there is a grid of squares, one of which is missing. I hate trying to solve "
|
||||
"those puzzles, but watching one permute itself is more amusing. Written by "
|
||||
"Jamie Zawinski."
|
||||
"This grabs an image of whatever is on your screen, divides it into a grid, "
|
||||
"and then randomly shuffles the squares around as if it was one of those "
|
||||
"annoying ``16-puzzle'' games, where there is a grid of squares, one of which "
|
||||
"is missing. I hate trying to solve those puzzles, but watching one permute "
|
||||
"itself is more amusing. Written by Jamie Zawinski."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/slip.xml.h:1
|
||||
|
|
102
po/hr.po
102
po/hr.po
|
@ -5,7 +5,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-control-center 1.5.5\n"
|
||||
"POT-Creation-Date: 2001-08-12 21:17+0200\n"
|
||||
"POT-Creation-Date: 2001-08-23 16:09-0400\n"
|
||||
"PO-Revision-Date: Mon Dec 20 1999 21:34:11+0200\n"
|
||||
"Last-Translator: Vladimir Vuksan <vuksan@veus.hr>\n"
|
||||
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
|
||||
|
@ -14,174 +14,174 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: KTranslator v 0.5.0\n"
|
||||
|
||||
#: archiver/location.c:228
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:445
|
||||
msgid "Default Location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:78
|
||||
#: archiver/config-archiver.c:81
|
||||
msgid "Store XML data in the archive"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:80
|
||||
#: archiver/config-archiver.c:83
|
||||
msgid "Roll back the configuration to a given point"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:82
|
||||
#: archiver/config-archiver.c:85
|
||||
msgid "Change the location profile to the given one"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:84
|
||||
#: archiver/config-archiver.c:87
|
||||
msgid "Push configuration data out to client machines (UNIMPLEMENTED)"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:86
|
||||
#: archiver/config-archiver.c:89
|
||||
msgid "Rename a location to a new name"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:88
|
||||
#: archiver/config-archiver.c:91
|
||||
msgid "Add a new location to the archive"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:90
|
||||
#: archiver/config-archiver.c:93
|
||||
msgid "Remove a location from the archive"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:92
|
||||
#: archiver/config-archiver.c:95
|
||||
msgid "Add a given backend to the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:94
|
||||
#: archiver/config-archiver.c:97
|
||||
msgid "Remove the given backend from the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:96
|
||||
#: archiver/config-archiver.c:99
|
||||
msgid "Perform garbage collection on the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:102
|
||||
#: archiver/config-archiver.c:105
|
||||
msgid "Use the global repository"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:104
|
||||
#: archiver/config-archiver.c:107
|
||||
msgid "Identifier of location profile on which to operate"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:105
|
||||
#: archiver/config-archiver.c:108
|
||||
msgid "LOCATION"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "Backend being used for this operation"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "BACKEND_ID"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:113
|
||||
#: archiver/config-archiver.c:116
|
||||
msgid "Store only the differences with the parent location's config"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:115
|
||||
#: archiver/config-archiver.c:118
|
||||
msgid "Store only those settings set in the previous config"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "Date to which to roll back"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "DATE"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:123
|
||||
#: archiver/config-archiver.c:126
|
||||
msgid "Roll back all configuration items"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "Roll back to the revision REVISION_ID"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "REVISION_ID"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:127
|
||||
#: archiver/config-archiver.c:130
|
||||
msgid "Roll back to the last known revision"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "Roll back by STEPS revisions"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "STEPS"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:131
|
||||
#: archiver/config-archiver.c:134
|
||||
msgid "Don't run the backend, just dump the output"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "Parent location for the new location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
#, fuzzy
|
||||
msgid "PARENT"
|
||||
msgstr "USMJERI"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "New name to assign to the location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "NEW_NAME"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:145
|
||||
#: archiver/config-archiver.c:148
|
||||
msgid "Add/remove this backend to/from the master backend list"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:147
|
||||
#: archiver/config-archiver.c:150
|
||||
msgid "Full containment"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:149
|
||||
#: archiver/config-archiver.c:152
|
||||
#, fuzzy
|
||||
msgid "Partial containment"
|
||||
msgstr "S prijelazom"
|
||||
|
||||
#: archiver/main.c:322
|
||||
#: archiver/config-archiver.c:368
|
||||
msgid "Global archiver options"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:324
|
||||
#: archiver/config-archiver.c:370
|
||||
msgid "Archiver commands"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:326
|
||||
#: archiver/config-archiver.c:372
|
||||
msgid "Options for storing data"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:328
|
||||
#: archiver/config-archiver.c:374
|
||||
msgid "Options for rolling back"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:330
|
||||
#: archiver/config-archiver.c:376
|
||||
msgid "Options for adding or renaming locations"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:333
|
||||
#: archiver/config-archiver.c:379
|
||||
msgid "Options for adding and removing backends"
|
||||
msgstr ""
|
||||
|
||||
#: capplets/background/applier.c:354
|
||||
#: capplets/background/applier.c:355
|
||||
#, c-format
|
||||
msgid "Could not load pixbuf \"%s\"; disabling wallpaper."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/background/applier.c:500
|
||||
#: capplets/background/applier.c:501
|
||||
msgid "Disabled"
|
||||
msgstr "Onemoguæen"
|
||||
|
||||
|
@ -398,7 +398,6 @@ msgid "Web Browser"
|
|||
msgstr " Potra¾i..."
|
||||
|
||||
#: capplets/default-applications/interface.c:370
|
||||
#: capplets/default-applications/interface.c:501
|
||||
msgid "Default Help Viewer"
|
||||
msgstr ""
|
||||
|
||||
|
@ -439,6 +438,11 @@ msgstr ""
|
|||
msgid "Help Viewer"
|
||||
msgstr ""
|
||||
|
||||
#: capplets/default-applications/interface.c:501
|
||||
#, fuzzy
|
||||
msgid "Default Terminal"
|
||||
msgstr "Izaberite temu koju ¾elite instalirati"
|
||||
|
||||
#: capplets/default-applications/interface.c:518
|
||||
#, fuzzy
|
||||
msgid "Select a Terminal"
|
||||
|
@ -968,11 +972,11 @@ msgstr ""
|
|||
|
||||
#: capplets/screensaver/screensavers/attraction.xml.h:6
|
||||
msgid ""
|
||||
"Like qix, this uses a simple simple motion model to generate many different "
|
||||
"display modes. The control points attract each other up to a certain "
|
||||
"distance, and then begin to repel each other. The attraction/repulsion is "
|
||||
"proportional to the distance between any two particles, similar to the "
|
||||
"strong and weak nuclear forces. \n"
|
||||
"Like qix, this uses a simple motion model to generate many different display "
|
||||
"modes. The control points attract each other up to a certain distance, and "
|
||||
"then begin to repel each other. The attraction/repulsion is proportional to "
|
||||
"the distance between any two particles, similar to the strong and weak "
|
||||
"nuclear forces. \n"
|
||||
"\n"
|
||||
"One of the most interesting ways to watch this hack is simply as bouncing "
|
||||
"balls, because their motions and interactions with each other are so odd. "
|
||||
|
|
78
po/pt_BR.po
78
po/pt_BR.po
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: control-center 1.5.6\n"
|
||||
"POT-Creation-Date: 2001-08-22 17:56-0300\n"
|
||||
"POT-Creation-Date: 2001-08-23 16:09-0400\n"
|
||||
"PO-Revision-Date: 2001-08-22 18:01-03:00\n"
|
||||
"Last-Translator: Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br>\n"
|
||||
"Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
|
||||
|
@ -15,7 +15,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=iso-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:444
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:445
|
||||
msgid "Default Location"
|
||||
msgstr ""
|
||||
|
||||
|
@ -728,11 +728,10 @@ msgid ""
|
|||
"Draws quasiperiodic tilings; think of the implications on modern formica "
|
||||
"technology. Written by Time Korlove. In April 1997, Sir Roger Penrose, a "
|
||||
"British math professor who has worked with Stephen Hawking on such topics as "
|
||||
"relatvity, black holes, and whether time has a beginning, files a "
|
||||
"copyright-infringement lawsuit against Kimberly-Clark Corporation, wchih "
|
||||
"Penrose said copied a pattern he created ( apattern demonstrating that \"a "
|
||||
"nonrepeating pattern could exist in nature\") for its Kleenex quilted toilet "
|
||||
"paper. "
|
||||
"relatvity, black holes, and whether time has a beginning, files a copyright-"
|
||||
"infringement lawsuit against Kimberly-Clark Corporation, wchih Penrose said "
|
||||
"copied a pattern he created ( apattern demonstrating that \"a nonrepeating "
|
||||
"pattern could exist in nature\") for its Kleenex quilted toilet paper. "
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensaver-properties.glade.h:7
|
||||
|
@ -844,8 +843,8 @@ msgstr "Pulsa
|
|||
msgid ""
|
||||
"A cellular automaton that is really a two-dimensional Turing machine: as the "
|
||||
"heads (``ants'') walk along the screen, they change pixel values in their "
|
||||
"path. Then, as they pass over changed pixels, their behavior is influenced. "
|
||||
" Written by David Bagley."
|
||||
"path. Then, as they pass over changed pixels, their behavior is "
|
||||
"influenced. Written by David Bagley."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/ant.xml.h:2
|
||||
|
@ -1207,10 +1206,9 @@ msgstr "Desenhar c
|
|||
|
||||
#: capplets/screensaver/screensavers/bubbles.xml.h:7
|
||||
msgid ""
|
||||
"This simulates the kind of bubble formation that happens when water "
|
||||
"boils:small bubbles appear, and as they get closer to each other, they "
|
||||
"combine to form larger bubbles, which eventually pop. Written by James "
|
||||
"Macnicol."
|
||||
"This simulates the kind of bubble formation that happens when water boils:"
|
||||
"small bubbles appear, and as they get closer to each other, they combine to "
|
||||
"form larger bubbles, which eventually pop. Written by James Macnicol."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/bumps.xml.h:1
|
||||
|
@ -1841,8 +1839,8 @@ msgid ""
|
|||
"monochrome and color. The basic idea is to take four points on the edge of "
|
||||
"the image, and assign each a random ``elevation''. Then find the point "
|
||||
"between them, and give it a value which is the average of the other four, "
|
||||
"plus some small random offset. Then coloration is done based on elevation. "
|
||||
"\n"
|
||||
"plus some small random offset. Then coloration is done based on "
|
||||
"elevation. \n"
|
||||
"\n"
|
||||
"The color selection is done by binding the elevation to either hue, "
|
||||
"saturation, or brightness, and assigning random values to the others. The "
|
||||
|
@ -1854,8 +1852,8 @@ msgstr ""
|
|||
#: capplets/screensaver/screensavers/interference.xml.h:1
|
||||
msgid ""
|
||||
"Another color-field hack, this one works by computing decaying sinusoidal "
|
||||
"waves, and allowing them to interfere with each other as their origins move. "
|
||||
" Written by Hannu Mallat."
|
||||
"waves, and allowing them to interfere with each other as their origins "
|
||||
"move. Written by Hannu Mallat."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/interference.xml.h:2
|
||||
|
@ -2107,8 +2105,8 @@ msgstr ""
|
|||
|
||||
#: capplets/screensaver/screensavers/morph3d.xml.h:1
|
||||
msgid ""
|
||||
"Another 3d shape-changing GL hack, by Marcelo Vianna. It has the same "
|
||||
"shiny-plastic feel as Superquadrics, as many computer-generated objects do..."
|
||||
"Another 3d shape-changing GL hack, by Marcelo Vianna. It has the same shiny-"
|
||||
"plastic feel as Superquadrics, as many computer-generated objects do..."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/morph3d.xml.h:2
|
||||
|
@ -2186,8 +2184,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"This is sort of a combination spirograph/string-art. It generates a large, "
|
||||
"complex polygon, and lets the X server do the bulk of the work by giving it "
|
||||
"an even/odd winding rule. Written by Dale Moore, based on some ancient "
|
||||
"PDP-11 code."
|
||||
"an even/odd winding rule. Written by Dale Moore, based on some ancient PDP-"
|
||||
"11 code."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/pedal.xml.h:5
|
||||
|
@ -2222,8 +2220,8 @@ msgid ""
|
|||
"nature'') for its Kleenex quilted toilet paper. Penrose said he doesn't "
|
||||
"like litigation but, ``When it comes to the population of Great Britain "
|
||||
"being invited by a multinational to wipe their bottoms on what appears to be "
|
||||
"the work of a Knight of the Realm, then a last stand must be taken.'' "
|
||||
"\t\t\t\t\t\t\t\t \n"
|
||||
"the work of a Knight of the Realm, then a last stand must be taken.'' \t\t\t"
|
||||
"\t\t\t\t\t \n"
|
||||
"\n"
|
||||
"As reported by News of the Weird #491, 4-jul-1997."
|
||||
msgstr ""
|
||||
|
@ -2372,8 +2370,8 @@ msgstr ""
|
|||
|
||||
#: capplets/screensaver/screensavers/ripples.xml.h:2
|
||||
msgid ""
|
||||
"This draws rippling interference patterns like splashing water. With the "
|
||||
"-water option, it manipulates your desktop image to look like something is "
|
||||
"This draws rippling interference patterns like splashing water. With the -"
|
||||
"water option, it manipulates your desktop image to look like something is "
|
||||
"dripping into it. Written by Tom Hammersley."
|
||||
msgstr ""
|
||||
|
||||
|
@ -2536,13 +2534,13 @@ msgid ""
|
|||
"by Conrad Parker.\n"
|
||||
"\n"
|
||||
"\n"
|
||||
"!============================================================================"
|
||||
"=\n"
|
||||
"!"
|
||||
"=============================================================================\n"
|
||||
"!\n"
|
||||
"! Documentation for some programs that are not bundled with XScreenSaver\n"
|
||||
"!\n"
|
||||
"!============================================================================"
|
||||
"="
|
||||
"!"
|
||||
"============================================================================="
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/speedmine.xml.h:9
|
||||
|
@ -2611,8 +2609,8 @@ msgid ""
|
|||
"SSystem is a GL Solar System simulator. It simulates flybys of Sun, the "
|
||||
"nine planets and a few major satellites, with four camera modes. Written by "
|
||||
"Raul Alonso. This is not included with the XScreenSaver package, but if you "
|
||||
"don't have it already, you can find it at "
|
||||
"<http://www1.las.es/~amil/ssystem/>."
|
||||
"don't have it already, you can find it at <http://www1.las.es/~amil/ssystem/"
|
||||
">."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/stairs.xml.h:1
|
||||
|
@ -2771,9 +2769,9 @@ msgstr ""
|
|||
|
||||
#: capplets/screensaver/screensavers/vines.xml.h:3
|
||||
msgid ""
|
||||
"This one generates a continuous sequence of small, curvy geometric patterns. "
|
||||
" It scatters them around your screen until it fills up, then it clears the "
|
||||
"screen and starts over. Written by Tracy Camp and David Hansen."
|
||||
"This one generates a continuous sequence of small, curvy geometric "
|
||||
"patterns. It scatters them around your screen until it fills up, then it "
|
||||
"clears the screen and starts over. Written by Tracy Camp and David Hansen."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/vines.xml.h:4
|
||||
|
@ -2869,8 +2867,8 @@ msgid ""
|
|||
"XEarth draws an image of the Earth, as seen from your favorite vantage point "
|
||||
"in space, correctly shaded for the current position of the Sun. Written by "
|
||||
"Kirk Johnson. This is not included with the XScreenSaver package, but if "
|
||||
"you don't have it already, you can find it at "
|
||||
"<http://www.cs.colorado.edu/~tuna/xearth/>."
|
||||
"you don't have it already, you can find it at <http://www.cs.colorado.edu/"
|
||||
"~tuna/xearth/>."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/xearth.xml.h:2
|
||||
|
@ -2881,8 +2879,8 @@ msgstr "Distante"
|
|||
#: capplets/screensaver/screensavers/xfishtank.xml.h:1
|
||||
msgid ""
|
||||
"Fish! This is not included with the XScreenSaver package, but if you don't "
|
||||
"have it already, you can find it at "
|
||||
"<http://metalab.unc.edu/pub/Linux/X11/demos/>."
|
||||
"have it already, you can find it at <http://metalab.unc.edu/pub/Linux/X11/"
|
||||
"demos/>."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/screensaver/screensavers/xfishtank.xml.h:2
|
||||
|
@ -2937,8 +2935,8 @@ msgid ""
|
|||
"XMountains generates realistic-looking fractal terrains of snow-capped "
|
||||
"mountains near water, with either a top view or a side view. Written by "
|
||||
"Stephen Booth. This is not included with the XScreenSaver package, but if "
|
||||
"you don't have it already, you can find it at "
|
||||
"<http://www.epcc.ed.ac.uk/~spb/xmountains/>. \n"
|
||||
"you don't have it already, you can find it at <http://www.epcc.ed.ac.uk/~spb/"
|
||||
"xmountains/>. \n"
|
||||
"\n"
|
||||
"Be sure to compile it with -DVROOT or it won't work right when launched by "
|
||||
"the xscreensaver daemon."
|
||||
|
|
122
po/sl.po
122
po/sl.po
|
@ -5,7 +5,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: control-center 1.2.0\n"
|
||||
"POT-Creation-Date: 2001-08-18 18:37+0200\n"
|
||||
"POT-Creation-Date: 2001-08-23 16:09-0400\n"
|
||||
"PO-Revision-Date: 2000-06-13 05:46+0200\n"
|
||||
"Last-Translator: Andraz Tori <andraz.tori1@guest.arnes.si>\n"
|
||||
"Language-Team: Slovenian <sl@li.org>\n"
|
||||
|
@ -13,164 +13,164 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=iso-8859-2\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: archiver/location.c:228
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:445
|
||||
msgid "Default Location"
|
||||
msgstr "Privzeta lokacija"
|
||||
|
||||
#: archiver/main.c:78
|
||||
#: archiver/config-archiver.c:81
|
||||
msgid "Store XML data in the archive"
|
||||
msgstr "V arhiv shrani podatke XML"
|
||||
|
||||
#: archiver/main.c:80
|
||||
#: archiver/config-archiver.c:83
|
||||
msgid "Roll back the configuration to a given point"
|
||||
msgstr "Prevrti nastavitve nazaj do doloèene toèke"
|
||||
|
||||
#: archiver/main.c:82
|
||||
#: archiver/config-archiver.c:85
|
||||
msgid "Change the location profile to the given one"
|
||||
msgstr "Spremeni profil lokacije na podanega"
|
||||
|
||||
#: archiver/main.c:84
|
||||
#: archiver/config-archiver.c:87
|
||||
msgid "Push configuration data out to client machines (UNIMPLEMENTED)"
|
||||
msgstr ""
|
||||
"Potisni podatke o nastavitvah v raèunalnike odjemalce (NEIMPLEMENTIRANO)"
|
||||
|
||||
#: archiver/main.c:86
|
||||
#: archiver/config-archiver.c:89
|
||||
msgid "Rename a location to a new name"
|
||||
msgstr "Preimenuj lokacijo"
|
||||
|
||||
#: archiver/main.c:88
|
||||
#: archiver/config-archiver.c:91
|
||||
msgid "Add a new location to the archive"
|
||||
msgstr "Dodaj novo lokacijo v arhiv"
|
||||
|
||||
#: archiver/main.c:90
|
||||
#: archiver/config-archiver.c:93
|
||||
msgid "Remove a location from the archive"
|
||||
msgstr "Odstrani lokacijo iz arhiva"
|
||||
|
||||
#: archiver/main.c:92
|
||||
#: archiver/config-archiver.c:95
|
||||
msgid "Add a given backend to the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:94
|
||||
#: archiver/config-archiver.c:97
|
||||
msgid "Remove the given backend from the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:96
|
||||
#: archiver/config-archiver.c:99
|
||||
msgid "Perform garbage collection on the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:102
|
||||
#: archiver/config-archiver.c:105
|
||||
msgid "Use the global repository"
|
||||
msgstr "Uporabi globalno shrambo"
|
||||
|
||||
#: archiver/main.c:104
|
||||
#: archiver/config-archiver.c:107
|
||||
msgid "Identifier of location profile on which to operate"
|
||||
msgstr "Identifikator lokacijskega profila za uporabo"
|
||||
|
||||
#: archiver/main.c:105
|
||||
#: archiver/config-archiver.c:108
|
||||
msgid "LOCATION"
|
||||
msgstr "LOKACIJA"
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "Backend being used for this operation"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "BACKEND_ID"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:113
|
||||
#: archiver/config-archiver.c:116
|
||||
msgid "Store only the differences with the parent location's config"
|
||||
msgstr "Shrani le razlike v primerjavi z nastavitvami star¹evske lokacije"
|
||||
|
||||
#: archiver/main.c:115
|
||||
#: archiver/config-archiver.c:118
|
||||
msgid "Store only those settings set in the previous config"
|
||||
msgstr "Shrani le nastavitve spremenjene v prej¹njem nastavljanju"
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "Date to which to roll back"
|
||||
msgstr "Datum do katerega naj prevrtim"
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "DATE"
|
||||
msgstr "DATUM"
|
||||
|
||||
#: archiver/main.c:123
|
||||
#: archiver/config-archiver.c:126
|
||||
msgid "Roll back all configuration items"
|
||||
msgstr "Prevrti vse predmete nastavitev"
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "Roll back to the revision REVISION_ID"
|
||||
msgstr "Prevrti do razlièice RAZLIÈICA"
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "REVISION_ID"
|
||||
msgstr "RAZLIÈICA"
|
||||
|
||||
#: archiver/main.c:127
|
||||
#: archiver/config-archiver.c:130
|
||||
msgid "Roll back to the last known revision"
|
||||
msgstr "Prevrti do zadnje znane razlièice"
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "Roll back by STEPS revisions"
|
||||
msgstr "Prevrti za KORAKOV razlièic"
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "STEPS"
|
||||
msgstr "KORAKOV"
|
||||
|
||||
#: archiver/main.c:131
|
||||
#: archiver/config-archiver.c:134
|
||||
msgid "Don't run the backend, just dump the output"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "Parent location for the new location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "PARENT"
|
||||
msgstr "STAR©"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "New name to assign to the location"
|
||||
msgstr "Novo ime, ki naj se dodeli lokaciji"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "NEW_NAME"
|
||||
msgstr "NOVO_IME"
|
||||
|
||||
#: archiver/main.c:145
|
||||
#: archiver/config-archiver.c:148
|
||||
msgid "Add/remove this backend to/from the master backend list"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:147
|
||||
#: archiver/config-archiver.c:150
|
||||
msgid "Full containment"
|
||||
msgstr "Popolno vsebovanje"
|
||||
|
||||
#: archiver/main.c:149
|
||||
#: archiver/config-archiver.c:152
|
||||
msgid "Partial containment"
|
||||
msgstr "Delno vsebovanje"
|
||||
|
||||
#: archiver/main.c:322
|
||||
#: archiver/config-archiver.c:368
|
||||
msgid "Global archiver options"
|
||||
msgstr "Mo¾nosti globalnega arhivarja"
|
||||
|
||||
#: archiver/main.c:324
|
||||
#: archiver/config-archiver.c:370
|
||||
msgid "Archiver commands"
|
||||
msgstr "Ukazi arhivarja"
|
||||
|
||||
#: archiver/main.c:326
|
||||
#: archiver/config-archiver.c:372
|
||||
msgid "Options for storing data"
|
||||
msgstr "Mo¾nosti za shranjevanje podatkov"
|
||||
|
||||
#: archiver/main.c:328
|
||||
#: archiver/config-archiver.c:374
|
||||
msgid "Options for rolling back"
|
||||
msgstr "Mo¾nosti za prevrtenje"
|
||||
|
||||
#: archiver/main.c:330
|
||||
#: archiver/config-archiver.c:376
|
||||
msgid "Options for adding or renaming locations"
|
||||
msgstr "Mo¾nosti za dodajanje ali preimenovanje lokacij"
|
||||
|
||||
#: archiver/main.c:333
|
||||
#: archiver/config-archiver.c:379
|
||||
msgid "Options for adding and removing backends"
|
||||
msgstr ""
|
||||
|
||||
|
@ -384,7 +384,6 @@ msgid "Web Browser"
|
|||
msgstr "Spletni brskalnik"
|
||||
|
||||
#: capplets/default-applications/interface.c:370
|
||||
#: capplets/default-applications/interface.c:501
|
||||
msgid "Default Help Viewer"
|
||||
msgstr "Privzet pregledovalnik pomoèi"
|
||||
|
||||
|
@ -424,6 +423,11 @@ msgstr "Prosim, vpi
|
|||
msgid "Help Viewer"
|
||||
msgstr "Pregledovalnik pomoèi"
|
||||
|
||||
#: capplets/default-applications/interface.c:501
|
||||
#, fuzzy
|
||||
msgid "Default Terminal"
|
||||
msgstr "Izberite terminal"
|
||||
|
||||
#: capplets/default-applications/interface.c:518
|
||||
msgid "Select a Terminal"
|
||||
msgstr "Izberite terminal"
|
||||
|
@ -612,6 +616,7 @@ msgid "Screensaver"
|
|||
msgstr "Ohranjevalnik zaslona"
|
||||
|
||||
#: capplets/screensaver/prefs-widget.c:920
|
||||
#, c-format
|
||||
msgid "About %s\n"
|
||||
msgstr "O %s\n"
|
||||
|
||||
|
@ -640,6 +645,7 @@ msgid "Demo"
|
|||
msgstr "Demonstracija"
|
||||
|
||||
#: capplets/screensaver/screensaver-prefs-dialog.c:274
|
||||
#, c-format
|
||||
msgid "%s properties"
|
||||
msgstr "Lastnosti %s"
|
||||
|
||||
|
@ -930,11 +936,11 @@ msgstr "Dol
|
|||
|
||||
#: capplets/screensaver/screensavers/attraction.xml.h:6
|
||||
msgid ""
|
||||
"Like qix, this uses a simple simple motion model to generate many different "
|
||||
"display modes. The control points attract each other up to a certain "
|
||||
"distance, and then begin to repel each other. The attraction/repulsion is "
|
||||
"proportional to the distance between any two particles, similar to the "
|
||||
"strong and weak nuclear forces. \n"
|
||||
"Like qix, this uses a simple motion model to generate many different display "
|
||||
"modes. The control points attract each other up to a certain distance, and "
|
||||
"then begin to repel each other. The attraction/repulsion is proportional to "
|
||||
"the distance between any two particles, similar to the strong and weak "
|
||||
"nuclear forces. \n"
|
||||
"\n"
|
||||
"One of the most interesting ways to watch this hack is simply as bouncing "
|
||||
"balls, because their motions and interactions with each other are so odd. "
|
||||
|
@ -987,7 +993,9 @@ msgid ""
|
|||
"colored circles) doing battle in front of a moving star field. Written by "
|
||||
"Jonathan Lin."
|
||||
msgstr ""
|
||||
"Ri¹e simulacijo leteèih vojskujoèih se robotov (skrbno zakamufliranih v barvne krogce), ki se bojujejo pred premikajoèim se ozvezjdem. Napisal Jonathan Lin."
|
||||
"Ri¹e simulacijo leteèih vojskujoèih se robotov (skrbno zakamufliranih v "
|
||||
"barvne krogce), ki se bojujejo pred premikajoèim se ozvezjdem. Napisal "
|
||||
"Jonathan Lin."
|
||||
|
||||
#: capplets/screensaver/screensavers/blitspin.xml.h:1
|
||||
msgid "BlitSpin"
|
||||
|
@ -1145,7 +1153,8 @@ msgid ""
|
|||
"Draws a stream of rising, undulating 3D bubbles, rising toward the top of "
|
||||
"the screen, with nice specular reflections. Written by Richard Jones."
|
||||
msgstr ""
|
||||
"Ri¹e tok poveèujoèih se 3D mehurèkov, ki se z lepimi odboji svetlobe dvigajo proti vrhu zaslona. Napisal Richard Jones."
|
||||
"Ri¹e tok poveèujoèih se 3D mehurèkov, ki se z lepimi odboji svetlobe dvigajo "
|
||||
"proti vrhu zaslona. Napisal Richard Jones."
|
||||
|
||||
#: capplets/screensaver/screensavers/bubbles.xml.h:1
|
||||
msgid "Bubbles"
|
||||
|
@ -1190,7 +1199,8 @@ msgid ""
|
|||
"This draws Escher's ``Impossible Cage,'' a 3d analog of a moebius strip, and "
|
||||
"rotates it in three dimensions. Written by Marcelo Vianna."
|
||||
msgstr ""
|
||||
"To ri¹e Escherjevo ``Nemogoèo kletko'', 3d analogijo Mobiusovem traku, ki se vrti v treh dimenzijah. Napisal Marcelo Vianna."
|
||||
"To ri¹e Escherjevo ``Nemogoèo kletko'', 3d analogijo Mobiusovem traku, ki se "
|
||||
"vrti v treh dimenzijah. Napisal Marcelo Vianna."
|
||||
|
||||
#: capplets/screensaver/screensavers/ccurve.xml.h:1
|
||||
msgid "C Curve"
|
||||
|
@ -1201,7 +1211,8 @@ msgid ""
|
|||
"Generates self-similar linear fractals, including the classic ``C Curve.'' "
|
||||
"Written by Rick Campbell."
|
||||
msgstr ""
|
||||
"Generira samopodobne linearne fraktale, vkljuèujoè klasièno ``C krivuljo''. Napisal Rick Campbell."
|
||||
"Generira samopodobne linearne fraktale, vkljuèujoè klasièno ``C krivuljo''. "
|
||||
"Napisal Rick Campbell."
|
||||
|
||||
#: capplets/screensaver/screensavers/compass.xml.h:1
|
||||
msgid "Compass"
|
||||
|
@ -1216,7 +1227,8 @@ msgid ""
|
|||
"This draws a compass, with all elements spinning about randomly, for that "
|
||||
"``lost and nauseous'' feeling. Written by Jamie Zawinski."
|
||||
msgstr ""
|
||||
"Ri¹e kompas, kjer se vsi elementi nakljuèno vrtijo, kar daje obèutek izgubljenosti. Napisal Jamie Zawinski."
|
||||
"Ri¹e kompas, kjer se vsi elementi nakljuèno vrtijo, kar daje obèutek "
|
||||
"izgubljenosti. Napisal Jamie Zawinski."
|
||||
|
||||
#: capplets/screensaver/screensavers/compass.xml.h:7
|
||||
msgid "Use double buffering"
|
||||
|
@ -1239,7 +1251,8 @@ msgid ""
|
|||
"Simulates coral growth, albeit somewhat slowly. This image doesn't really "
|
||||
"do it justice. Written by Frederick Roeber."
|
||||
msgstr ""
|
||||
"Simulira rast koral, èeprav nekoliko poèasi. Slika ni èisto avtentièna. Napisal Frederick Roeber."
|
||||
"Simulira rast koral, èeprav nekoliko poèasi. Slika ni èisto avtentièna. "
|
||||
"Napisal Frederick Roeber."
|
||||
|
||||
#: capplets/screensaver/screensavers/cosmos.xml.h:1
|
||||
msgid "Cosmos"
|
||||
|
@ -1250,7 +1263,8 @@ msgid ""
|
|||
"Draws fireworks and zooming, fading flares. By Tom Campbell. You can find "
|
||||
"it at <http://www.mindspring.com/~campbell/cosmos/>."
|
||||
msgstr ""
|
||||
"Ri¹e ognjemet in rakete. Napisal Tom Campbell. Veè najdete na <http://www.mindspring.com/~campbell/cosmos/>."
|
||||
"Ri¹e ognjemet in rakete. Napisal Tom Campbell. Veè najdete na <http://www."
|
||||
"mindspring.com/~campbell/cosmos/>."
|
||||
|
||||
#: capplets/screensaver/screensavers/critical.xml.h:1
|
||||
msgid "Critical"
|
||||
|
|
102
po/wa.po
102
po/wa.po
|
@ -11,7 +11,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gnome-control-center 1.5.5\n"
|
||||
"POT-Creation-Date: 2001-08-12 21:17+0200\n"
|
||||
"POT-Creation-Date: 2001-08-23 16:09-0400\n"
|
||||
"PO-Revision-Date: 1999-03-18 23:11+0100\n"
|
||||
"Last-Translator: Pablo Saratxaga <srtxg@chanae.alphanet.ch>\n"
|
||||
"Language-Team: walon <linux-wa@chanae.alphanet.ch>\n"
|
||||
|
@ -19,181 +19,181 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=iso-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: archiver/location.c:228
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:445
|
||||
msgid "Default Location"
|
||||
msgstr "Prémetou eplaeçmint"
|
||||
|
||||
#: archiver/main.c:78
|
||||
#: archiver/config-archiver.c:81
|
||||
msgid "Store XML data in the archive"
|
||||
msgstr "Wårder les dnéyes XML èl årtchive"
|
||||
|
||||
#: archiver/main.c:80
|
||||
#: archiver/config-archiver.c:83
|
||||
#, fuzzy
|
||||
msgid "Roll back the configuration to a given point"
|
||||
msgstr "Sicrire l' apontiaedje, pôy moussî foû."
|
||||
|
||||
#: archiver/main.c:82
|
||||
#: archiver/config-archiver.c:85
|
||||
#, fuzzy
|
||||
msgid "Change the location profile to the given one"
|
||||
msgstr "Eplaeçmint do parint pol novea eplaeçmint"
|
||||
|
||||
#: archiver/main.c:84
|
||||
#: archiver/config-archiver.c:87
|
||||
msgid "Push configuration data out to client machines (UNIMPLEMENTED)"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:86
|
||||
#: archiver/config-archiver.c:89
|
||||
msgid "Rename a location to a new name"
|
||||
msgstr "Candjî l' no d' on eplaeçmint"
|
||||
|
||||
#: archiver/main.c:88
|
||||
#: archiver/config-archiver.c:91
|
||||
msgid "Add a new location to the archive"
|
||||
msgstr "Radjouter on novea eplaeçmint èl årtchive"
|
||||
|
||||
#: archiver/main.c:90
|
||||
#: archiver/config-archiver.c:93
|
||||
msgid "Remove a location from the archive"
|
||||
msgstr "Bodjî on eplaeçmint foû del årtchive"
|
||||
|
||||
#: archiver/main.c:92
|
||||
#: archiver/config-archiver.c:95
|
||||
msgid "Add a given backend to the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:94
|
||||
#: archiver/config-archiver.c:97
|
||||
msgid "Remove the given backend from the given location"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:96
|
||||
#: archiver/config-archiver.c:99
|
||||
#, fuzzy
|
||||
msgid "Perform garbage collection on the given location"
|
||||
msgstr "Eplaeçmint do parint pol novea eplaeçmint"
|
||||
|
||||
#: archiver/main.c:102
|
||||
#: archiver/config-archiver.c:105
|
||||
msgid "Use the global repository"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:104
|
||||
#: archiver/config-archiver.c:107
|
||||
msgid "Identifier of location profile on which to operate"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:105
|
||||
#: archiver/config-archiver.c:108
|
||||
msgid "LOCATION"
|
||||
msgstr "EPLAEÇMINT"
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
#, fuzzy
|
||||
msgid "Backend being used for this operation"
|
||||
msgstr "Nos nos siervrans di mc.ext pol moumint."
|
||||
|
||||
#: archiver/main.c:107
|
||||
#: archiver/config-archiver.c:110
|
||||
msgid "BACKEND_ID"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:113
|
||||
#: archiver/config-archiver.c:116
|
||||
msgid "Store only the differences with the parent location's config"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:115
|
||||
#: archiver/config-archiver.c:118
|
||||
msgid "Store only those settings set in the previous config"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "Date to which to roll back"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:121
|
||||
#: archiver/config-archiver.c:124
|
||||
msgid "DATE"
|
||||
msgstr "DATE"
|
||||
|
||||
#: archiver/main.c:123
|
||||
#: archiver/config-archiver.c:126
|
||||
#, fuzzy
|
||||
msgid "Roll back all configuration items"
|
||||
msgstr "Ritcherdjî li fitchî d' apontiaedje"
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
msgid "Roll back to the revision REVISION_ID"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:125
|
||||
#: archiver/config-archiver.c:128
|
||||
#, fuzzy
|
||||
msgid "REVISION_ID"
|
||||
msgstr "REPO_ID"
|
||||
|
||||
#: archiver/main.c:127
|
||||
#: archiver/config-archiver.c:130
|
||||
msgid "Roll back to the last known revision"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
msgid "Roll back by STEPS revisions"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:129
|
||||
#: archiver/config-archiver.c:132
|
||||
#, fuzzy
|
||||
msgid "STEPS"
|
||||
msgstr "SEG"
|
||||
|
||||
#: archiver/main.c:131
|
||||
#: archiver/config-archiver.c:134
|
||||
msgid "Don't run the backend, just dump the output"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "Parent location for the new location"
|
||||
msgstr "Eplaeçmint do parint pol novea eplaeçmint"
|
||||
|
||||
#: archiver/main.c:137
|
||||
#: archiver/config-archiver.c:140
|
||||
msgid "PARENT"
|
||||
msgstr "PARINT"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "New name to assign to the location"
|
||||
msgstr "Novea no a dner a l' eplaeçmint"
|
||||
|
||||
#: archiver/main.c:139
|
||||
#: archiver/config-archiver.c:142
|
||||
msgid "NEW_NAME"
|
||||
msgstr "NOVEA_NO"
|
||||
|
||||
#: archiver/main.c:145
|
||||
#: archiver/config-archiver.c:148
|
||||
msgid "Add/remove this backend to/from the master backend list"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:147
|
||||
#: archiver/config-archiver.c:150
|
||||
#, fuzzy
|
||||
msgid "Full containment"
|
||||
msgstr "No etir: "
|
||||
|
||||
#: archiver/main.c:149
|
||||
#: archiver/config-archiver.c:152
|
||||
#, fuzzy
|
||||
msgid "Partial containment"
|
||||
msgstr "Fitchî nén etîr\n"
|
||||
|
||||
#: archiver/main.c:322
|
||||
#: archiver/config-archiver.c:368
|
||||
msgid "Global archiver options"
|
||||
msgstr "Globålès tchûzes del årtchiveu"
|
||||
|
||||
#: archiver/main.c:324
|
||||
#: archiver/config-archiver.c:370
|
||||
msgid "Archiver commands"
|
||||
msgstr "Comndaes pol årtchiveu"
|
||||
|
||||
#: archiver/main.c:326
|
||||
#: archiver/config-archiver.c:372
|
||||
msgid "Options for storing data"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:328
|
||||
#: archiver/config-archiver.c:374
|
||||
msgid "Options for rolling back"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:330
|
||||
#: archiver/config-archiver.c:376
|
||||
msgid "Options for adding or renaming locations"
|
||||
msgstr ""
|
||||
|
||||
#: archiver/main.c:333
|
||||
#: archiver/config-archiver.c:379
|
||||
msgid "Options for adding and removing backends"
|
||||
msgstr ""
|
||||
|
||||
#: capplets/background/applier.c:354
|
||||
#: capplets/background/applier.c:355
|
||||
#, c-format
|
||||
msgid "Could not load pixbuf \"%s\"; disabling wallpaper."
|
||||
msgstr ""
|
||||
|
||||
#: capplets/background/applier.c:500
|
||||
#: capplets/background/applier.c:501
|
||||
msgid "Disabled"
|
||||
msgstr "Dismetou"
|
||||
|
||||
|
@ -403,7 +403,6 @@ msgid "Web Browser"
|
|||
msgstr "Betchteu waibe"
|
||||
|
||||
#: capplets/default-applications/interface.c:370
|
||||
#: capplets/default-applications/interface.c:501
|
||||
msgid "Default Help Viewer"
|
||||
msgstr "Prémetowe håyneu di l' aidance"
|
||||
|
||||
|
@ -443,6 +442,11 @@ msgstr ""
|
|||
msgid "Help Viewer"
|
||||
msgstr "Håyneu di l' aidance"
|
||||
|
||||
#: capplets/default-applications/interface.c:501
|
||||
#, fuzzy
|
||||
msgid "Default Terminal"
|
||||
msgstr "Tchwezixhoz on terminå"
|
||||
|
||||
#: capplets/default-applications/interface.c:518
|
||||
msgid "Select a Terminal"
|
||||
msgstr "Tchwezixhoz on terminå"
|
||||
|
@ -970,11 +974,11 @@ msgstr ""
|
|||
|
||||
#: capplets/screensaver/screensavers/attraction.xml.h:6
|
||||
msgid ""
|
||||
"Like qix, this uses a simple simple motion model to generate many different "
|
||||
"display modes. The control points attract each other up to a certain "
|
||||
"distance, and then begin to repel each other. The attraction/repulsion is "
|
||||
"proportional to the distance between any two particles, similar to the "
|
||||
"strong and weak nuclear forces. \n"
|
||||
"Like qix, this uses a simple motion model to generate many different display "
|
||||
"modes. The control points attract each other up to a certain distance, and "
|
||||
"then begin to repel each other. The attraction/repulsion is proportional to "
|
||||
"the distance between any two particles, similar to the strong and weak "
|
||||
"nuclear forces. \n"
|
||||
"\n"
|
||||
"One of the most interesting ways to watch this hack is simply as bouncing "
|
||||
"balls, because their motions and interactions with each other are so odd. "
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: control-center 1.5.5\n"
|
||||
"POT-Creation-Date: 2001-08-22 21:01+0800\n"
|
||||
"POT-Creation-Date: 2001-08-23 16:09-0400\n"
|
||||
"PO-Revision-Date: 2001-08-22 21:05+0800\n"
|
||||
"Last-Translator: Abel Cheung <maddog@linux.org.hk>\n"
|
||||
"Language-Team: Chinese\n"
|
||||
|
@ -14,7 +14,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:438
|
||||
#: archiver/config-archiver.c:307 archiver/location.c:445
|
||||
msgid "Default Location"
|
||||
msgstr "預設位置"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue