Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ed761f3ba | |||
| 20816d91eb | |||
| 47daaa2e88 | |||
| bd60a8f839 | |||
| 767cd6abd9 | |||
| 045b188be0 | |||
| 84db15f503 | |||
| 2feb926544 | |||
| a915d5b34d | |||
| 017eceaad2 | |||
| 15a7fbbb12 | |||
| b9e87239a8 | |||
| a37a5febe8 | |||
| 50221cc0ea | |||
| c8c087e2fe | |||
| 4586870479 | |||
| 1dd674cfbb | |||
| 86c3f0ed56 | |||
| b33b49d6fb | |||
| 3c0ca31948 | |||
| 70bce53b8e | |||
| ebc47dba8d | |||
| 1cfd18662b |
@@ -1,3 +1,81 @@
|
||||
2005-08-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.3 ===
|
||||
|
||||
* configure.in: Bump version
|
||||
|
||||
* NEWS: Updates
|
||||
|
||||
* gtk/gtkmenu.c (gtk_menu_grab_notify): Only cancel if the menu
|
||||
was active. (#314298, Christian Persch, analysis by Mark McLoughlin)
|
||||
|
||||
2005-08-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconcache.c (_gtk_icon_cache_get_icon): Remove an
|
||||
accidentally leftover duplicate pixbuf creation. (#314700,
|
||||
Kjartan Maraas)
|
||||
|
||||
* gtk/gtksettings.c (settings_update_cursor_theme): Don't
|
||||
leak the cursor theme name. (#314693, Kjartan Maraas)
|
||||
|
||||
* gdk/x11/gdkasync.c (_gdk_x11_get_window_child_info): Free
|
||||
state.children in all cases. (#313862, Kjartan Maraas)
|
||||
|
||||
2005-08-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkuimanager.c (gtk_ui_manager_class_init): Fix the default
|
||||
value of the ui property. (#314532, Yong Wang)
|
||||
|
||||
* gdk/x11/gdkproperty-x11.c (gdk_property_get): Don't warn
|
||||
when G_MAXLONG is passed as length.
|
||||
|
||||
2005-08-26 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/updateiconcache.c: Add a separate --ignore-theme-index option
|
||||
to avoid overloading --force. (JP Rosevaar)
|
||||
|
||||
* gtk/gtkicontheme.c (theme_lookup_icon): Avoid an uninitialized
|
||||
variable warning, pointed out by Colin Walters. (#314585)
|
||||
|
||||
2005-08-26 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* gtk/gtkfilesystemwin32.c: Remove some ifdeffed out debugging
|
||||
printouts.
|
||||
(gtk_file_system_win32_parse): Don't mishandle UNC paths. (#314519)
|
||||
|
||||
2005-08-26 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcalendar.c (gtk_calendar_init): Fix the calculation
|
||||
of week_start. (#314473, JP Rosevaar)
|
||||
|
||||
2005-08-25 Thomas Fitzsimmons <fitzsim@redhat.com>
|
||||
|
||||
* gtk/gtkfilesystemmodel.c (idle_finished_loading_cb): Acquire GDK
|
||||
lock. (#314533, Thomas Fitzsimmons)
|
||||
|
||||
2005-08-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): Handle
|
||||
NULL gracefully. (#314523, Ed Catmur)
|
||||
|
||||
2005-08-25 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme):
|
||||
Handle theme == NULL.
|
||||
|
||||
2005-08-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkmenutoolbutton.c (menu_position_func): Take widget
|
||||
y offset into account when positioning the popup. (#314470,
|
||||
Christian Persch)
|
||||
|
||||
2005-08-25 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/gdkscreen.c (gdk_screen_get_type): Use gdk_screen_init
|
||||
as instance_init, not base_init! (#314452, Fix from Frederic
|
||||
Crozat, reported by Joe Marcus Clarke). Trivial cleanup: use -1.
|
||||
rather than 1 for a negative flag value.
|
||||
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
@@ -1,3 +1,81 @@
|
||||
2005-08-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.3 ===
|
||||
|
||||
* configure.in: Bump version
|
||||
|
||||
* NEWS: Updates
|
||||
|
||||
* gtk/gtkmenu.c (gtk_menu_grab_notify): Only cancel if the menu
|
||||
was active. (#314298, Christian Persch, analysis by Mark McLoughlin)
|
||||
|
||||
2005-08-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconcache.c (_gtk_icon_cache_get_icon): Remove an
|
||||
accidentally leftover duplicate pixbuf creation. (#314700,
|
||||
Kjartan Maraas)
|
||||
|
||||
* gtk/gtksettings.c (settings_update_cursor_theme): Don't
|
||||
leak the cursor theme name. (#314693, Kjartan Maraas)
|
||||
|
||||
* gdk/x11/gdkasync.c (_gdk_x11_get_window_child_info): Free
|
||||
state.children in all cases. (#313862, Kjartan Maraas)
|
||||
|
||||
2005-08-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkuimanager.c (gtk_ui_manager_class_init): Fix the default
|
||||
value of the ui property. (#314532, Yong Wang)
|
||||
|
||||
* gdk/x11/gdkproperty-x11.c (gdk_property_get): Don't warn
|
||||
when G_MAXLONG is passed as length.
|
||||
|
||||
2005-08-26 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/updateiconcache.c: Add a separate --ignore-theme-index option
|
||||
to avoid overloading --force. (JP Rosevaar)
|
||||
|
||||
* gtk/gtkicontheme.c (theme_lookup_icon): Avoid an uninitialized
|
||||
variable warning, pointed out by Colin Walters. (#314585)
|
||||
|
||||
2005-08-26 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* gtk/gtkfilesystemwin32.c: Remove some ifdeffed out debugging
|
||||
printouts.
|
||||
(gtk_file_system_win32_parse): Don't mishandle UNC paths. (#314519)
|
||||
|
||||
2005-08-26 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkcalendar.c (gtk_calendar_init): Fix the calculation
|
||||
of week_start. (#314473, JP Rosevaar)
|
||||
|
||||
2005-08-25 Thomas Fitzsimmons <fitzsim@redhat.com>
|
||||
|
||||
* gtk/gtkfilesystemmodel.c (idle_finished_loading_cb): Acquire GDK
|
||||
lock. (#314533, Thomas Fitzsimmons)
|
||||
|
||||
2005-08-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtktoolbar.c (_gtk_toolbar_elide_underscores): Handle
|
||||
NULL gracefully. (#314523, Ed Catmur)
|
||||
|
||||
2005-08-25 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/x11/gdkcursor-x11.c (gdk_x11_display_set_cursor_theme):
|
||||
Handle theme == NULL.
|
||||
|
||||
2005-08-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkmenutoolbutton.c (menu_position_func): Take widget
|
||||
y offset into account when positioning the popup. (#314470,
|
||||
Christian Persch)
|
||||
|
||||
2005-08-25 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gdk/gdkscreen.c (gdk_screen_get_type): Use gdk_screen_init
|
||||
as instance_init, not base_init! (#314452, Fix from Frederic
|
||||
Crozat, reported by Joe Marcus Clarke). Trivial cleanup: use -1.
|
||||
rather than 1 for a negative flag value.
|
||||
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
@@ -18,8 +18,8 @@ GTK+ requires the following packages:
|
||||
Simple install procedure
|
||||
========================
|
||||
|
||||
% gzip -cd gtk+-2.8.2.tar.gz | tar xvf - # unpack the sources
|
||||
% cd gtk+-2.8.2 # change to the toplevel directory
|
||||
% gzip -cd gtk+-2.8.3.tar.gz | tar xvf - # unpack the sources
|
||||
% cd gtk+-2.8.3 # change to the toplevel directory
|
||||
% ./configure # run the `configure' script
|
||||
% make # build GTK
|
||||
[ Become root if necessary ]
|
||||
|
||||
@@ -1,3 +1,16 @@
|
||||
Overview of Changes from GTK+ 2.8.2 to GTK+ 2.8.3
|
||||
=================================================
|
||||
* Fix problems with the handling of initial settings
|
||||
for font options and cursor themes [Frederic Crozat,
|
||||
Joe Markus Clarke, Owen Taylor, Kjartan Maraas]
|
||||
* Add a --ignore-theme-index option to
|
||||
gtk-update-icon-cache [JP Rosevaar]
|
||||
* Other bug fixes [Christian Persch, Owen Taylor,
|
||||
Ed Catmur, Thomas Fitzsimmons, JP Rosevaar, Tor
|
||||
Lillqvist, Colin Walters, Yong Wang, Matthias,
|
||||
Kjartan Maraas, Christian Persch, Mark McLoughlin]
|
||||
* Updated translations (ca,es,fr,pt_BR)
|
||||
|
||||
Overview of Changes from GTK+ 2.8.1 to GTK+ 2.8.2
|
||||
=================================================
|
||||
* Fix a crash with custom icon themes, which affected
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
General Information
|
||||
===================
|
||||
|
||||
This is GTK+ version 2.8.2. GTK+ is a multi-platform toolkit for
|
||||
This is GTK+ version 2.8.3. GTK+ is a multi-platform toolkit for
|
||||
creating graphical user interfaces. Offering a complete set of widgets,
|
||||
GTK+ is suitable for projects ranging from small one-off projects to
|
||||
complete application suites.
|
||||
|
||||
+2
-2
@@ -12,10 +12,10 @@ AC_PREREQ(2.54)
|
||||
|
||||
m4_define([gtk_major_version], [2])
|
||||
m4_define([gtk_minor_version], [8])
|
||||
m4_define([gtk_micro_version], [2])
|
||||
m4_define([gtk_micro_version], [3])
|
||||
m4_define([gtk_version],
|
||||
[gtk_major_version.gtk_minor_version.gtk_micro_version])
|
||||
m4_define([gtk_interface_age], [2])
|
||||
m4_define([gtk_interface_age], [3])
|
||||
m4_define([gtk_binary_age],
|
||||
[m4_eval(100 * gtk_minor_version + gtk_micro_version)])
|
||||
# This is the X.Y used in -lgtk-FOO-X.Y
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
2005-08-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.3 ===
|
||||
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
@@ -1,392 +0,0 @@
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include <demos.h>
|
||||
|
||||
static GtkTextBuffer *info_buffer;
|
||||
static GtkTextBuffer *source_buffer;
|
||||
|
||||
static gchar *current_file = NULL;
|
||||
|
||||
enum {
|
||||
TITLE_COLUMN,
|
||||
FILENAME_COLUMN,
|
||||
FUNC_COLUMN,
|
||||
ITALIC_COLUMN,
|
||||
NUM_COLUMNS
|
||||
};
|
||||
|
||||
gboolean
|
||||
read_line (FILE *stream, GString *str)
|
||||
{
|
||||
int n_read = 0;
|
||||
|
||||
flockfile (stream);
|
||||
|
||||
g_string_truncate (str, 0);
|
||||
|
||||
while (1)
|
||||
{
|
||||
int c;
|
||||
|
||||
c = getc_unlocked (stream);
|
||||
|
||||
if (c == EOF)
|
||||
goto done;
|
||||
else
|
||||
n_read++;
|
||||
|
||||
switch (c)
|
||||
{
|
||||
case '\r':
|
||||
case '\n':
|
||||
{
|
||||
int next_c = getc_unlocked (stream);
|
||||
|
||||
if (!(next_c == EOF ||
|
||||
(c == '\r' && next_c == '\n') ||
|
||||
(c == '\n' && next_c == '\r')))
|
||||
ungetc (next_c, stream);
|
||||
|
||||
goto done;
|
||||
}
|
||||
default:
|
||||
g_string_append_c (str, c);
|
||||
}
|
||||
}
|
||||
|
||||
done:
|
||||
|
||||
funlockfile (stream);
|
||||
|
||||
return n_read > 0;
|
||||
}
|
||||
|
||||
void
|
||||
load_file (const gchar *filename)
|
||||
{
|
||||
FILE *file;
|
||||
GtkTextIter start, end;
|
||||
GString *buffer = g_string_new (NULL);
|
||||
int state = 0;
|
||||
gboolean in_para = 0;
|
||||
|
||||
if (current_file && !strcmp (current_file, filename))
|
||||
return;
|
||||
|
||||
g_free (current_file);
|
||||
current_file = g_strdup (filename);
|
||||
|
||||
gtk_text_buffer_get_bounds (info_buffer, &start, &end);
|
||||
gtk_text_buffer_delete (info_buffer, &start, &end);
|
||||
|
||||
gtk_text_buffer_get_bounds (source_buffer, &start, &end);
|
||||
gtk_text_buffer_delete (source_buffer, &start, &end);
|
||||
|
||||
file = fopen (filename, "r");
|
||||
if (!file)
|
||||
{
|
||||
g_warning ("Cannot open %s: %s\n", filename, g_strerror (errno));
|
||||
return;
|
||||
}
|
||||
|
||||
gtk_text_buffer_get_iter_at_offset (info_buffer, &start, 0);
|
||||
while (read_line (file, buffer))
|
||||
{
|
||||
gchar *p = buffer->str;
|
||||
gchar *q;
|
||||
|
||||
switch (state)
|
||||
{
|
||||
case 0:
|
||||
/* Reading title */
|
||||
while (*p == '/' || *p == '*' || isspace (*p))
|
||||
p++;
|
||||
q = p + strlen (p);
|
||||
while (q > p && isspace (*(q - 1)))
|
||||
q--;
|
||||
|
||||
if (q > p)
|
||||
{
|
||||
int len_chars = g_utf8_pointer_to_offset (p, q);
|
||||
|
||||
end = start;
|
||||
|
||||
g_assert (strlen (p) >= q - p);
|
||||
gtk_text_buffer_insert (info_buffer, &end, p, q - p);
|
||||
start = end;
|
||||
|
||||
gtk_text_iter_backward_chars (&start, len_chars);
|
||||
gtk_text_buffer_apply_tag_by_name (info_buffer, "title", &start, &end);
|
||||
|
||||
start = end;
|
||||
|
||||
state++;
|
||||
}
|
||||
break;
|
||||
|
||||
case 1:
|
||||
/* Reading body of info section */
|
||||
while (isspace (*p))
|
||||
p++;
|
||||
if (*p == '*' && *(p + 1) == '/')
|
||||
{
|
||||
gtk_text_buffer_get_iter_at_offset (source_buffer, &start, 0);
|
||||
state++;
|
||||
}
|
||||
else
|
||||
{
|
||||
int len;
|
||||
|
||||
while (*p == '*' || isspace (*p))
|
||||
p++;
|
||||
|
||||
len = strlen (p);
|
||||
while (isspace (*(p + len - 1)))
|
||||
len--;
|
||||
|
||||
if (len > 0)
|
||||
{
|
||||
if (in_para)
|
||||
gtk_text_buffer_insert (info_buffer, &start, " ", 1);
|
||||
|
||||
g_assert (strlen (p) >= len);
|
||||
gtk_text_buffer_insert (info_buffer, &start, p, len);
|
||||
in_para = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
gtk_text_buffer_insert (info_buffer, &start, "\n", 1);
|
||||
in_para = 0;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case 2:
|
||||
/* Skipping blank lines */
|
||||
while (isspace (*p))
|
||||
p++;
|
||||
if (*p)
|
||||
{
|
||||
p = buffer->str;
|
||||
state++;
|
||||
/* Fall through */
|
||||
}
|
||||
else
|
||||
break;
|
||||
|
||||
case 3:
|
||||
/* Reading program body */
|
||||
gtk_text_buffer_insert (source_buffer, &start, p, -1);
|
||||
gtk_text_buffer_insert (info_buffer, &start, "\n", 1);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
gtk_text_buffer_get_bounds (source_buffer, &start, &end);
|
||||
gtk_text_buffer_apply_tag_by_name (info_buffer, "source", &start, &end);
|
||||
}
|
||||
|
||||
gboolean
|
||||
button_press_event_cb (GtkTreeView *tree_view,
|
||||
GdkEventButton *event,
|
||||
GtkTreeModel *model)
|
||||
{
|
||||
if (event->type == GDK_2BUTTON_PRESS)
|
||||
{
|
||||
GtkTreePath *path = NULL;
|
||||
|
||||
gtk_tree_view_get_path_at_pos (tree_view,
|
||||
event->window,
|
||||
event->x,
|
||||
event->y,
|
||||
&path,
|
||||
NULL);
|
||||
|
||||
if (path)
|
||||
{
|
||||
GtkTreeIter iter;
|
||||
gboolean italic;
|
||||
GVoidFunc func;
|
||||
|
||||
gtk_tree_model_get_iter (model, &iter, path);
|
||||
gtk_tree_store_get (GTK_TREE_STORE (model),
|
||||
&iter,
|
||||
FUNC_COLUMN, &func,
|
||||
ITALIC_COLUMN, &italic,
|
||||
-1);
|
||||
(func) ();
|
||||
gtk_tree_store_set (GTK_TREE_STORE (model),
|
||||
&iter,
|
||||
ITALIC_COLUMN, !italic,
|
||||
-1);
|
||||
gtk_tree_path_free (path);
|
||||
}
|
||||
|
||||
gtk_signal_emit_stop_by_name (GTK_OBJECT (tree_view),
|
||||
"button_press_event");
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static void
|
||||
selection_cb (GtkTreeSelection *selection,
|
||||
GtkTreeModel *model)
|
||||
{
|
||||
GtkTreeIter iter;
|
||||
GValue value = {0, };
|
||||
|
||||
if (! gtk_tree_selection_get_selected (selection, NULL, &iter))
|
||||
return;
|
||||
|
||||
gtk_tree_model_get_value (model, &iter,
|
||||
FILENAME_COLUMN,
|
||||
&value);
|
||||
load_file (g_value_get_string (&value));
|
||||
g_value_unset (&value);
|
||||
}
|
||||
|
||||
static GtkWidget *
|
||||
create_text (GtkTextBuffer **buffer,
|
||||
gboolean is_source)
|
||||
{
|
||||
GtkWidget *scrolled_window;
|
||||
GtkWidget *text_view;
|
||||
PangoFontDescription *font_desc;
|
||||
|
||||
scrolled_window = gtk_scrolled_window_new (NULL, NULL);
|
||||
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
|
||||
GTK_POLICY_AUTOMATIC,
|
||||
GTK_POLICY_AUTOMATIC);
|
||||
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolled_window),
|
||||
GTK_SHADOW_IN);
|
||||
|
||||
text_view = gtk_text_view_new ();
|
||||
gtk_container_add (GTK_CONTAINER (scrolled_window), text_view);
|
||||
|
||||
*buffer = gtk_text_buffer_new (NULL);
|
||||
gtk_text_view_set_buffer (GTK_TEXT_VIEW (text_view), *buffer);
|
||||
gtk_text_view_set_editable (GTK_TEXT_VIEW (text_view), FALSE);
|
||||
gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (text_view), FALSE);
|
||||
|
||||
if (is_source)
|
||||
{
|
||||
font_desc = pango_font_description_from_string ("Courier 10");
|
||||
gtk_widget_modify_font (text_view, font_desc);
|
||||
pango_font_description_free (font_desc);
|
||||
}
|
||||
|
||||
gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (text_view), !is_source);
|
||||
|
||||
return scrolled_window;
|
||||
}
|
||||
|
||||
/* Technically a list, but if we do go to 80 demos, we may want to move to a tree */
|
||||
static GtkWidget *
|
||||
create_tree (void)
|
||||
{
|
||||
GtkTreeSelection *selection;
|
||||
GtkCellRenderer *cell;
|
||||
GtkWidget *tree_view;
|
||||
GtkTreeViewColumn *column;
|
||||
GtkTreeStore *model;
|
||||
GtkTreeIter iter;
|
||||
gint i;
|
||||
|
||||
model = gtk_tree_store_new_with_types (NUM_COLUMNS, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_POINTER, G_TYPE_BOOLEAN);
|
||||
tree_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL (model));
|
||||
selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_view));
|
||||
|
||||
gtk_tree_selection_set_type (GTK_TREE_SELECTION (selection),
|
||||
GTK_TREE_SELECTION_SINGLE);
|
||||
gtk_widget_set_usize (tree_view, 200, -1);
|
||||
|
||||
for (i=0; i < G_N_ELEMENTS (testgtk_demos); i++)
|
||||
{
|
||||
gtk_tree_store_append (GTK_TREE_STORE (model), &iter, NULL);
|
||||
|
||||
gtk_tree_store_set (GTK_TREE_STORE (model),
|
||||
&iter,
|
||||
TITLE_COLUMN, testgtk_demos[i].title,
|
||||
FILENAME_COLUMN, testgtk_demos[i].filename,
|
||||
FUNC_COLUMN, testgtk_demos[i].func,
|
||||
ITALIC_COLUMN, FALSE,
|
||||
-1);
|
||||
}
|
||||
|
||||
cell = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes ("Widget",
|
||||
cell,
|
||||
"text", TITLE_COLUMN,
|
||||
"italic", ITALIC_COLUMN,
|
||||
NULL);
|
||||
gtk_tree_view_append_column (GTK_TREE_VIEW (tree_view),
|
||||
GTK_TREE_VIEW_COLUMN (column));
|
||||
|
||||
gtk_signal_connect (GTK_OBJECT (selection), "selection_changed", selection_cb, model);
|
||||
gtk_signal_connect (GTK_OBJECT (tree_view), "button_press_event", GTK_SIGNAL_FUNC (button_press_event_cb), model);
|
||||
|
||||
return tree_view;
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, char **argv)
|
||||
{
|
||||
GtkWidget *window;
|
||||
GtkWidget *notebook;
|
||||
GtkWidget *hbox;
|
||||
GtkWidget *tree;
|
||||
GtkTextTag *tag;
|
||||
|
||||
gtk_init (&argc, &argv);
|
||||
|
||||
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||
gtk_signal_connect (GTK_OBJECT (window), "destroy",
|
||||
GTK_SIGNAL_FUNC (gtk_main_quit), NULL);
|
||||
|
||||
hbox = gtk_hbox_new (FALSE, 0);
|
||||
gtk_container_add (GTK_CONTAINER (window), hbox);
|
||||
|
||||
tree = create_tree ();
|
||||
gtk_box_pack_start (GTK_BOX (hbox), tree, FALSE, FALSE, 0);
|
||||
|
||||
notebook = gtk_notebook_new ();
|
||||
gtk_box_pack_start (GTK_BOX (hbox), notebook, TRUE, TRUE, 0);
|
||||
|
||||
gtk_notebook_append_page (GTK_NOTEBOOK (notebook),
|
||||
create_text (&info_buffer, FALSE),
|
||||
gtk_label_new ("Info"));
|
||||
|
||||
|
||||
gtk_notebook_append_page (GTK_NOTEBOOK (notebook),
|
||||
create_text (&source_buffer, TRUE),
|
||||
gtk_label_new ("Source"));
|
||||
|
||||
tag = gtk_text_buffer_create_tag (info_buffer, "title");
|
||||
gtk_object_set (GTK_OBJECT (tag),
|
||||
"font", "Sans 18",
|
||||
NULL);
|
||||
|
||||
tag = gtk_text_buffer_create_tag (info_buffer, "source");
|
||||
gtk_object_set (GTK_OBJECT (tag),
|
||||
"font", "Courier 10",
|
||||
"pixels_above_lines", 0,
|
||||
"pixels_below_lines", 0,
|
||||
NULL);
|
||||
|
||||
gtk_window_set_default_size (GTK_WINDOW (window), 600, 400);
|
||||
gtk_widget_show_all (window);
|
||||
|
||||
|
||||
load_file (testgtk_demos[0].filename);
|
||||
|
||||
gtk_main ();
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -1,3 +1,12 @@
|
||||
2005-08-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.3 ===
|
||||
|
||||
2005-08-26 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtk-update-icon-cache.xml:
|
||||
* gtk/gtk-update-icon-cache.1: Updates.
|
||||
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
.\" It was generated using the DocBook XSL Stylesheets (version 1.69.1).
|
||||
.\" Instead of manually editing it, you probably should edit the DocBook XML
|
||||
.\" source for it and then use the DocBook XSL Stylesheets to regenerate it.
|
||||
.TH "GTK\-UPDATE\-ICON\-CACH" "1" "08/23/2005" "" ""
|
||||
.TH "GTK\-UPDATE\-ICON\-CACH" "1" "08/26/2005" "" ""
|
||||
.\" disable hyphenation
|
||||
.nh
|
||||
.\" disable justification (adjust text to left margin only)
|
||||
@@ -11,7 +11,7 @@
|
||||
gtk\-update\-icon\-cache \- Icon theme caching utility
|
||||
.SH "SYNOPSIS"
|
||||
.HP 22
|
||||
\fBgtk\-update\-icon\-cache\fR [\-\-force] [\-\-index\-only] [\-\-quiet] {iconpath}
|
||||
\fBgtk\-update\-icon\-cache\fR [\-\-force] [\-\-index\-only] [\-\-ignore\-theme\-index] [\-\-quiet] {iconpath}
|
||||
.SH "DESCRIPTION"
|
||||
.PP
|
||||
\fBgtk\-update\-icon\-cache\fR
|
||||
@@ -31,6 +31,11 @@ to avoid a lot of system call and disk seek overhead when the application starts
|
||||
\-\-force, \-f
|
||||
Overwrite an existing cache file even if it appears to be uptodate.
|
||||
.TP
|
||||
\-\-ignore\-theme\-index, \-t
|
||||
Don't check for the existence of 'index.theme' in the icon theme directory. Without this option,
|
||||
\fBgtk\-update\-icon\-cache\fR
|
||||
refuses to create an icon cache in a directory which does not appear to be the toplevel directory of an icon theme.
|
||||
.TP
|
||||
\-\-index\-only, \-i
|
||||
Don't include image data in the cache.
|
||||
.TP
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
<command>gtk-update-icon-cache</command>
|
||||
<arg choice="opt">--force</arg>
|
||||
<arg choice="opt">--index-only</arg>
|
||||
<arg choice="opt">--ignore-theme-index</arg>
|
||||
<arg choice="opt">--quiet</arg>
|
||||
<arg choice="req">iconpath</arg>
|
||||
</cmdsynopsis>
|
||||
@@ -47,6 +48,16 @@ multiple applications, the overall memory consumption is reduced as well.
|
||||
</para></listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>--ignore-theme-index</term>
|
||||
<term>-t</term>
|
||||
<listitem><para>Don't check for the existence of 'index.theme' in the icon theme
|
||||
directory. Without this option, <command>gtk-update-icon-cache</command> refuses
|
||||
to create an icon cache in a directory which does not appear to be the toplevel
|
||||
directory of an icon theme.
|
||||
</para></listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>--index-only</term>
|
||||
<term>-i</term>
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
2005-08-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.3 ===
|
||||
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
+5
-5
@@ -53,14 +53,14 @@ gdk_screen_get_type (void)
|
||||
static const GTypeInfo object_info =
|
||||
{
|
||||
sizeof (GdkScreenClass),
|
||||
(GBaseInitFunc) gdk_screen_init,
|
||||
(GBaseInitFunc) NULL,
|
||||
(GBaseFinalizeFunc) NULL,
|
||||
(GClassInitFunc) gdk_screen_class_init,
|
||||
NULL, /* class_finalize */
|
||||
NULL, /* class_data */
|
||||
sizeof (GdkScreen),
|
||||
0, /* n_preallocs */
|
||||
(GInstanceInitFunc) NULL,
|
||||
(GInstanceInitFunc) gdk_screen_init,
|
||||
};
|
||||
|
||||
object_type = g_type_register_static (G_TYPE_OBJECT,
|
||||
@@ -103,7 +103,7 @@ gdk_screen_class_init (GdkScreenClass *klass)
|
||||
static void
|
||||
gdk_screen_init (GdkScreen *screen)
|
||||
{
|
||||
screen->resolution = -1;
|
||||
screen->resolution = -1.;
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -407,7 +407,7 @@ gdk_screen_set_resolution_libgtk_only (GdkScreen *screen,
|
||||
if (dpi >= 0)
|
||||
screen->resolution = dpi;
|
||||
else
|
||||
screen->resolution = -1;
|
||||
screen->resolution = -1.;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -423,7 +423,7 @@ gdk_screen_set_resolution_libgtk_only (GdkScreen *screen,
|
||||
gdouble
|
||||
gdk_screen_get_resolution_libgtk_only (GdkScreen *screen)
|
||||
{
|
||||
g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
|
||||
g_return_val_if_fail (GDK_IS_SCREEN (screen), -1.);
|
||||
|
||||
return screen->resolution;
|
||||
}
|
||||
|
||||
+8
-1
@@ -626,6 +626,9 @@ _gdk_x11_get_window_child_info (GdkDisplay *display,
|
||||
else
|
||||
wm_state_atom = None;
|
||||
|
||||
state.children = NULL;
|
||||
state.nchildren = 0;
|
||||
|
||||
gdk_error_trap_push ();
|
||||
result = list_children_and_wm_state (dpy, window,
|
||||
win_has_wm_state ? wm_state_atom : None,
|
||||
@@ -633,12 +636,16 @@ _gdk_x11_get_window_child_info (GdkDisplay *display,
|
||||
&state.children, &state.nchildren);
|
||||
gdk_error_trap_pop ();
|
||||
if (!result)
|
||||
return FALSE;
|
||||
{
|
||||
g_free (state.children);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (has_wm_state)
|
||||
{
|
||||
if (win_has_wm_state)
|
||||
*win_has_wm_state = TRUE;
|
||||
g_free (state.children);
|
||||
return TRUE;
|
||||
}
|
||||
else
|
||||
|
||||
@@ -446,7 +446,8 @@ update_cursor (gpointer key,
|
||||
/**
|
||||
* gdk_x11_display_set_cursor_theme:
|
||||
* @display: a #GdkDisplay
|
||||
* @theme: the name of the cursor theme to use
|
||||
* @theme: the name of the cursor theme to use, or %NULL to unset
|
||||
* a previously set value
|
||||
* @size: the cursor size to use
|
||||
*
|
||||
* Sets the cursor theme from which the images for cursor
|
||||
@@ -481,8 +482,9 @@ gdk_x11_display_set_cursor_theme (GdkDisplay *display,
|
||||
old_theme = XcursorGetTheme (xdisplay);
|
||||
old_size = XcursorGetDefaultSize (xdisplay);
|
||||
|
||||
if (old_size == size &&
|
||||
old_theme && strcmp (old_theme, theme) == 0)
|
||||
if (old_size == size &&
|
||||
(old_theme == theme ||
|
||||
(old_theme && theme && strcmp (old_theme, theme) == 0)))
|
||||
return;
|
||||
|
||||
theme_serial++;
|
||||
|
||||
@@ -530,11 +530,8 @@ gdk_property_get (GdkWindow *window,
|
||||
*/
|
||||
get_length = length + 3;
|
||||
if (get_length > G_MAXLONG)
|
||||
{
|
||||
g_warning ("gdk_property_get(): length value has wrapped in calculation "
|
||||
"(did you pass G_MAXLONG?)");
|
||||
get_length = G_MAXLONG;
|
||||
}
|
||||
get_length = G_MAXLONG;
|
||||
|
||||
/* To fail, either the user passed 0 or G_MAXULONG */
|
||||
get_length = get_length / 4;
|
||||
if (get_length == 0)
|
||||
|
||||
+1
-1
@@ -652,7 +652,7 @@ gtk_calendar_init (GtkCalendar *calendar)
|
||||
|
||||
#ifdef HAVE__NL_TIME_FIRST_WEEKDAY
|
||||
week_start = nl_langinfo (_NL_TIME_FIRST_WEEKDAY);
|
||||
priv->week_start = *((unsigned char *) week_start) % 7 - 1;
|
||||
priv->week_start = (*((unsigned char *) week_start) - 1) % 7;
|
||||
#else
|
||||
/* Translate to calendar:week_start:0 if you want Sunday to be the
|
||||
* first day of the week to calendar:week_start:1 if you want Monday
|
||||
|
||||
@@ -685,11 +685,15 @@ root_folder_finished_loading_cb (GtkFileFolder *folder,
|
||||
static gboolean
|
||||
idle_finished_loading_cb (GtkFileSystemModel *model)
|
||||
{
|
||||
GDK_THREADS_ENTER ();
|
||||
|
||||
g_signal_emit (model, file_system_model_signals[FINISHED_LOADING], 0);
|
||||
|
||||
g_source_destroy (model->idle_finished_loading_source);
|
||||
model->idle_finished_loading_source = NULL;
|
||||
|
||||
GDK_THREADS_LEAVE ();
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
+34
-31
@@ -291,9 +291,6 @@ check_volumes (gpointer data)
|
||||
|
||||
g_return_val_if_fail (system_win32, FALSE);
|
||||
|
||||
#if 0
|
||||
printf("check_volumes: system_win32=%p\n", system_win32);
|
||||
#endif
|
||||
if (system_win32->drives != GetLogicalDrives())
|
||||
g_signal_emit_by_name (system_win32, "volumes-changed", 0);
|
||||
|
||||
@@ -303,10 +300,6 @@ check_volumes (gpointer data)
|
||||
static void
|
||||
gtk_file_system_win32_init (GtkFileSystemWin32 *system_win32)
|
||||
{
|
||||
#if 0
|
||||
printf("gtk_file_system_win32_init: %p\n", system_win32);
|
||||
#endif
|
||||
|
||||
/* set up an idle handler for volume changes, every second should be enough */
|
||||
system_win32->timeout = g_timeout_add_full (0, 1000, check_volumes, system_win32, NULL);
|
||||
|
||||
@@ -320,10 +313,6 @@ gtk_file_system_win32_finalize (GObject *object)
|
||||
|
||||
system_win32 = GTK_FILE_SYSTEM_WIN32 (object);
|
||||
|
||||
#if 0
|
||||
printf("gtk_file_system_win32_finalize: %p\n", system_win32);
|
||||
#endif
|
||||
|
||||
g_source_remove (system_win32->timeout);
|
||||
|
||||
/* FIXME: assert that the hash is empty? */
|
||||
@@ -726,7 +715,9 @@ gtk_file_system_win32_get_parent (GtkFileSystem *file_system,
|
||||
*parent = filename_to_path (parent_filename);
|
||||
g_free (parent_filename);
|
||||
}
|
||||
|
||||
#if DEBUGGING_OUTPUT
|
||||
printf ("%s: %s => %s\n", __FUNCTION__, (char*)path, (*parent)?(char*)*parent:"NULL"), fflush(stdout);
|
||||
#endif
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -762,8 +753,8 @@ canonicalize_filename (gchar *filename)
|
||||
gchar *past_root;
|
||||
gboolean last_was_slash = FALSE;
|
||||
|
||||
#if 0
|
||||
printf("canonicalize_filename: %s ", filename);
|
||||
#if DEBUGGING_OUTPUT
|
||||
printf("%s: %s ", __FUNCTION__, filename), fflush (stdout);
|
||||
#endif
|
||||
|
||||
past_root = (gchar *) g_path_skip_root (filename);
|
||||
@@ -775,7 +766,7 @@ canonicalize_filename (gchar *filename)
|
||||
if (G_IS_DIR_SEPARATOR (*p))
|
||||
{
|
||||
if (!last_was_slash)
|
||||
*q++ = G_DIR_SEPARATOR;
|
||||
*q++ = '\\';
|
||||
|
||||
last_was_slash = TRUE;
|
||||
}
|
||||
@@ -828,8 +819,9 @@ canonicalize_filename (gchar *filename)
|
||||
q--;
|
||||
|
||||
*q = '\0';
|
||||
#if 0
|
||||
printf(" => %s\n", filename);
|
||||
|
||||
#if DEBUGGING_OUTPUT
|
||||
printf(" => %s\n", filename), fflush (stdout);
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -845,15 +837,15 @@ gtk_file_system_win32_parse (GtkFileSystem *file_system,
|
||||
gchar *last_backslash, *last_slash;
|
||||
gboolean result = FALSE;
|
||||
|
||||
#if 0
|
||||
printf("gtk_file_system_win32_parse: base_path=%s str=%s\n",(char*)base_path,str);
|
||||
#if DEBUGGING_OUTPUT
|
||||
printf("%s: base_path=%s str=%s\n",__FUNCTION__,(char*)base_path,str),fflush(stdout);
|
||||
#endif
|
||||
|
||||
base_filename = gtk_file_path_get_string (base_path);
|
||||
g_return_val_if_fail (base_filename != NULL, FALSE);
|
||||
g_return_val_if_fail (g_path_is_absolute (base_filename), FALSE);
|
||||
|
||||
last_backslash = strrchr (str, G_DIR_SEPARATOR);
|
||||
last_backslash = strrchr (str, '\\');
|
||||
last_slash = strrchr (str, '/');
|
||||
if (last_slash == NULL ||
|
||||
(last_backslash != NULL && last_backslash > last_slash))
|
||||
@@ -874,18 +866,25 @@ gtk_file_system_win32_parse (GtkFileSystem *file_system,
|
||||
{
|
||||
if (g_ascii_isalpha (base_filename[0]) &&
|
||||
base_filename[1] == ':')
|
||||
folder_part = g_strdup_printf ("%c:" G_DIR_SEPARATOR_S, base_filename[0]);
|
||||
folder_part = g_strdup_printf ("%c:\\", base_filename[0]);
|
||||
else
|
||||
folder_part = g_strdup (G_DIR_SEPARATOR_S);
|
||||
folder_part = g_strdup ("\\");
|
||||
}
|
||||
else if (g_ascii_isalpha (str[0]) &&
|
||||
str[1] == ':' &&
|
||||
G_IS_DIR_SEPARATOR (str[2]))
|
||||
last_slash == str + 2)
|
||||
folder_part = g_strndup (str, last_slash - str + 1);
|
||||
#if 0
|
||||
/* Hmm, what the heck was this case supposed to do? It splits up
|
||||
* \\server\share\foo\bar into folder_part
|
||||
* \\server\share\foo\bar and file_path bar. Not good. As far as
|
||||
* I can see, this isn't needed.
|
||||
*/
|
||||
else if (G_IS_DIR_SEPARATOR (str[0]) &&
|
||||
G_IS_DIR_SEPARATOR (str[1]) &&
|
||||
(!str[2] || !G_IS_DIR_SEPARATOR (str[2])))
|
||||
folder_part = g_strdup (str);
|
||||
#endif
|
||||
else
|
||||
folder_part = g_strndup (str, last_slash - str);
|
||||
|
||||
@@ -909,8 +908,8 @@ gtk_file_system_win32_parse (GtkFileSystem *file_system,
|
||||
result = TRUE;
|
||||
}
|
||||
|
||||
#if 0
|
||||
printf("gtk_file_system_win32_parse:returning folder=%s file_part=%s\n",(*folder?(char*)*folder:"NULL"),*file_part);
|
||||
#if DEBUGGING_OUTPUT
|
||||
printf ("%s:returning folder=%s file_part=%s\n", __FUNCTION__, (*folder?(char*)*folder:"NULL"), *file_part), fflush(stdout);
|
||||
#endif
|
||||
|
||||
return result;
|
||||
@@ -936,6 +935,11 @@ gtk_file_system_win32_uri_to_path (GtkFileSystem *file_system,
|
||||
{
|
||||
GtkFilePath *path = NULL;
|
||||
gchar *filename = g_filename_from_uri (uri, NULL, NULL);
|
||||
|
||||
#if DEBUGGING_OUTPUT
|
||||
printf ("%s: %s -> %s\n", __FUNCTION__, uri, filename?filename:"NULL"), fflush (stdout);
|
||||
#endif
|
||||
|
||||
if (filename)
|
||||
{
|
||||
path = filename_to_path (filename);
|
||||
@@ -1422,6 +1426,11 @@ gtk_file_folder_win32_list_children (GtkFileFolder *folder,
|
||||
*children = NULL;
|
||||
|
||||
dir = g_dir_open (folder_win32->filename, 0, error);
|
||||
|
||||
#if DEBUGGING_OUTPUT
|
||||
printf ("%s: %s: %s\n", __FUNCTION__, folder_win32->filename, dir?"OK":"FAIL"), fflush (stdout);
|
||||
#endif
|
||||
|
||||
if (!dir)
|
||||
return FALSE;
|
||||
|
||||
@@ -1654,14 +1663,8 @@ filename_is_server_share (const char *filename)
|
||||
static gboolean
|
||||
filename_is_some_root (const char *filename)
|
||||
{
|
||||
#if 0
|
||||
return ((G_IS_DIR_SEPARATOR (filename[0]) && filename[1] == '\0') ||
|
||||
filename_is_server_share (filename) ||
|
||||
filename_is_drive_root (filename));
|
||||
#else
|
||||
return (g_path_is_absolute (filename) &&
|
||||
*(g_path_skip_root (filename)) == '\0');
|
||||
#endif
|
||||
}
|
||||
|
||||
int
|
||||
|
||||
@@ -378,8 +378,6 @@ _gtk_icon_cache_get_icon (GtkIconCache *cache,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
pixbuf = gdk_pixbuf_from_pixdata (&pixdata, FALSE, &error);
|
||||
|
||||
pixbuf = gdk_pixbuf_new_from_data (pixdata.pixel_data, GDK_COLORSPACE_RGB,
|
||||
(pixdata.pixdata_type & GDK_PIXDATA_COLOR_TYPE_MASK) == GDK_PIXDATA_COLOR_TYPE_RGBA,
|
||||
8, pixdata.width, pixdata.height, pixdata.rowstride,
|
||||
|
||||
+1
-1
@@ -1893,7 +1893,7 @@ theme_lookup_icon (IconTheme *theme,
|
||||
if (min_dir)
|
||||
{
|
||||
GtkIconInfo *icon_info = icon_info_new ();
|
||||
gboolean has_icon_file;
|
||||
gboolean has_icon_file = FALSE;
|
||||
|
||||
suffix = theme_dir_get_icon_suffix (min_dir, icon_name, &has_icon_file);
|
||||
suffix = best_suffix (suffix, allow_svg);
|
||||
|
||||
+1
-1
@@ -4419,7 +4419,7 @@ gtk_menu_grab_notify (GtkWidget *widget,
|
||||
|
||||
if (!was_grabbed)
|
||||
{
|
||||
if (!GTK_IS_MENU_SHELL (grab))
|
||||
if (GTK_MENU_SHELL (widget)->active && !GTK_IS_MENU_SHELL (grab))
|
||||
gtk_menu_shell_cancel (GTK_MENU_SHELL (widget));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -307,6 +307,7 @@ menu_position_func (GtkMenu *menu,
|
||||
{
|
||||
gdk_window_get_origin (widget->window, x, y);
|
||||
*x += widget->allocation.x;
|
||||
*y += widget->allocation.y;
|
||||
|
||||
if (direction == GTK_TEXT_DIR_LTR)
|
||||
*x += MAX (widget->allocation.width - menu_req.width, 0);
|
||||
|
||||
+1
-1
@@ -259,7 +259,7 @@ _gtk_plug_add_to_socket (GtkPlug *plug,
|
||||
|
||||
/**
|
||||
* _gtk_plug_send_delete_event:
|
||||
* widget: a #GtkWidget
|
||||
* @widget: a #GtkWidget
|
||||
*
|
||||
* Send a GDK_DELETE event to the @widget and destroy it if
|
||||
* necessary. Internal GTK function, called from this file or the
|
||||
|
||||
@@ -1371,6 +1371,8 @@ settings_update_cursor_theme (GtkSettings *settings)
|
||||
NULL);
|
||||
|
||||
gdk_x11_display_set_cursor_theme (display, theme, size);
|
||||
|
||||
g_free (theme);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
@@ -4784,6 +4784,9 @@ _gtk_toolbar_elide_underscores (const gchar *original)
|
||||
const gchar *p;
|
||||
gboolean last_underscore;
|
||||
|
||||
if (!original)
|
||||
return NULL;
|
||||
|
||||
q = result = g_malloc (strlen (original) + 1);
|
||||
last_underscore = FALSE;
|
||||
|
||||
|
||||
+1
-1
@@ -239,7 +239,7 @@ gtk_ui_manager_class_init (GtkUIManagerClass *klass)
|
||||
g_param_spec_string ("ui",
|
||||
P_("Merged UI definition"),
|
||||
P_("An XML string describing the merged UI"),
|
||||
NULL,
|
||||
"<ui>\n</ui>",
|
||||
GTK_PARAM_READABLE));
|
||||
|
||||
|
||||
|
||||
@@ -39,6 +39,7 @@
|
||||
#include <gdk-pixbuf/gdk-pixdata.h>
|
||||
|
||||
static gboolean force_update = FALSE;
|
||||
static gboolean ignore_theme_index = FALSE;
|
||||
static gboolean quiet = FALSE;
|
||||
static gboolean index_only = FALSE;
|
||||
|
||||
@@ -1208,6 +1209,7 @@ build_cache (const gchar *path)
|
||||
|
||||
static GOptionEntry args[] = {
|
||||
{ "force", 'f', 0, G_OPTION_ARG_NONE, &force_update, "Overwrite an existing cache, even if uptodate", NULL },
|
||||
{ "ignore-theme-index", 't', 0, G_OPTION_ARG_NONE, &ignore_theme_index, "Don't check for the existence of index.theme", NULL },
|
||||
{ "index-only", 'i', 0, G_OPTION_ARG_NONE, &index_only, "Don't include image data in the cache", NULL },
|
||||
{ "quiet", 'q', 0, G_OPTION_ARG_NONE, &quiet, "Turn off verbose output", NULL },
|
||||
{ NULL }
|
||||
@@ -1232,10 +1234,10 @@ main (int argc, char **argv)
|
||||
path = g_locale_to_utf8 (path, -1, NULL, NULL, NULL);
|
||||
#endif
|
||||
|
||||
if (!force_update && !has_theme_index (path))
|
||||
if (!ignore_theme_index && !has_theme_index (path))
|
||||
{
|
||||
g_printerr ("No theme index file in '%s'.\n"
|
||||
"If you really want to create an icon cache here, use --force.\n", path);
|
||||
"If you really want to create an icon cache here, use --ignore-theme-index.\n", path);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
2005-08-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.3 ===
|
||||
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
2005-08-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.3 ===
|
||||
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
2005-08-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.3 ===
|
||||
|
||||
2005-08-27 Jordi Mallach <jordi@sindominio.net>
|
||||
|
||||
* ca.po: Updated Catalan translation by
|
||||
Xavier Conde <xavi.conde@gmail.com>.
|
||||
|
||||
2005-08-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.8.2 ===
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties 2.6-branch\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-03-30 17:02+0200\n"
|
||||
"Last-Translator: Zuza Software Foundation <info@translate.org.za>\n"
|
||||
"Language-Team: Afrikaans <translate-discuss-af@lists.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2003-01-14 11:02+EDT\n"
|
||||
"Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n"
|
||||
"Language-Team: Amharic <locales@geez.org>\n"
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-03-17 08:30+0100\n"
|
||||
"Last-Translator: Arafat Medini <lumina@silverpen.de>\n"
|
||||
"Language-Team: Arabic <doc@arabeyes.org>\n"
|
||||
|
||||
+1
-1
@@ -32,7 +32,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-03-07 18:05+0200\n"
|
||||
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
|
||||
"Language-Team: Azerbaijani Turkish <translation-team-az@lists.sourceforge."
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties gtk-2-4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-09-27 15:41+0330\n"
|
||||
"Last-Translator: Amir Hedayaty <amir@bamdad.org>\n"
|
||||
"Language-Team: Iranian Azerbaijani <az-ir@lists.sharif.edu>\n"
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2003-03-31 07:40+0300\n"
|
||||
"Last-Translator: Ales Nyakhaychyk <nab@mail.by>\n"
|
||||
"Language-Team: Belarusian <i18n@mova.org>\n"
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gtk+-properties 2.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-25 09:43+0300\n"
|
||||
"Last-Translator: Vladimir Petkov <vpetkov@i-space.org>\n"
|
||||
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.gtk-2-2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-03-18 10:45+0600\n"
|
||||
"Last-Translator: Progga <progga@BengaLinux.Org>\n"
|
||||
"Language-Team: Bangla <gnome-translation@BengaLinux.Org>\n"
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.3.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-01-15 16:03+0100\n"
|
||||
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
|
||||
"Language-Team: br <LL@li.org>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.gtk-2-4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-07-19 00:47+0200\n"
|
||||
"Last-Translator: Kenan Hadžiavdić <kenan@bgnett.no>\n"
|
||||
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
|
||||
|
||||
+122
-137
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.3.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-04-11 02:41+0200\n"
|
||||
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
||||
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
|
||||
@@ -209,14 +209,12 @@ msgid "A named icon to use as the logo for the about box."
|
||||
msgstr "Una icona amb nom per a usar com a logotipus a la caixa d'informació"
|
||||
|
||||
#: gtk/gtkaboutdialog.c:421
|
||||
#, fuzzy
|
||||
msgid "Wrap license"
|
||||
msgstr "Conjunt mode ajust"
|
||||
msgstr "Ajusta la llicència"
|
||||
|
||||
#: gtk/gtkaboutdialog.c:422
|
||||
#, fuzzy
|
||||
msgid "Whether to wrap the license text."
|
||||
msgstr "Si s'ha de ratllar el text"
|
||||
msgstr "Si s'han d'ajustar els finals de línia del text de la llicència"
|
||||
|
||||
#: gtk/gtkaboutdialog.c:429
|
||||
msgid "Link Color"
|
||||
@@ -306,6 +304,8 @@ msgid ""
|
||||
"When TRUE, toolitem proxies for this action are represented in the toolbar "
|
||||
"overflow menu."
|
||||
msgstr ""
|
||||
"Quan valgui CERT, els apoderats d'elements d'eina per a aquesta acció es "
|
||||
"representen en el menú sobreeixit de la barra d'eines."
|
||||
|
||||
#: gtk/gtkaction.c:259 gtk/gtktoolitem.c:167
|
||||
msgid "Visible when vertical"
|
||||
@@ -328,6 +328,9 @@ msgid ""
|
||||
"Whether the action is considered important. When TRUE, toolitem proxies for "
|
||||
"this action show text in GTK_TOOLBAR_BOTH_HORIZ mode."
|
||||
msgstr ""
|
||||
"Si aquesta acció es considera important. Quan valgui CERT, els apoderats del "
|
||||
"elements d'eina per a aquesta acció mostren el text en mode "
|
||||
"GTK_TOOLBAR_BOTH_HORIZ."
|
||||
|
||||
#: gtk/gtkaction.c:276
|
||||
msgid "Hide if empty"
|
||||
@@ -336,6 +339,7 @@ msgstr "Amaga si és buit"
|
||||
#: gtk/gtkaction.c:277
|
||||
msgid "When TRUE, empty menu proxies for this action are hidden."
|
||||
msgstr ""
|
||||
"Quan sigui CERT, els apoderats de menú per a aquesta acció estan amagats."
|
||||
|
||||
#: gtk/gtkaction.c:283 gtk/gtkactiongroup.c:142 gtk/gtkcellrenderer.c:222
|
||||
#: gtk/gtkwidget.c:455
|
||||
@@ -1053,12 +1057,12 @@ msgstr "El nom de la icona del tema d'icones"
|
||||
|
||||
#: gtk/gtkcellrendererpixbuf.c:221
|
||||
msgid "Follow State"
|
||||
msgstr ""
|
||||
msgstr "Segueix l'estat"
|
||||
|
||||
#: gtk/gtkcellrendererpixbuf.c:222
|
||||
#, fuzzy
|
||||
msgid "Whether the rendered pixbuf should be colorized according to the state"
|
||||
msgstr "Si el contorn hauria de ser mostrat o no"
|
||||
msgstr ""
|
||||
"Si la memòria de pixels representada s'hauria d'acolorir segons l'estat"
|
||||
|
||||
#: gtk/gtkcellrendererprogress.c:117
|
||||
msgid "Value of the progress bar"
|
||||
@@ -1273,22 +1277,20 @@ msgid "Wrap mode"
|
||||
msgstr "Mode d'ajust"
|
||||
|
||||
#: gtk/gtkcellrenderertext.c:475
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"How to break the string into multiple lines, if the cell renderer does not "
|
||||
"have enough room to display the entire string"
|
||||
msgstr ""
|
||||
"El lloc preferit de la cadena per inserir els punts suspensius, si el "
|
||||
"representador de cadenes no conté espai suficient per mostrar tota la cadena"
|
||||
"Com separar les cadenes en múltiples línies, si el representador de cadenes "
|
||||
"no conté espai suficient per mostrar tota la cadena"
|
||||
|
||||
#: gtk/gtkcellrenderertext.c:494 gtk/gtkcombobox.c:573
|
||||
msgid "Wrap width"
|
||||
msgstr "Ajusta l'amplada"
|
||||
|
||||
#: gtk/gtkcellrenderertext.c:495
|
||||
#, fuzzy
|
||||
msgid "The width at which the text is wrapped"
|
||||
msgstr "L'angle que es gira l'etiqueta"
|
||||
msgstr "A quina amplada s'ajusta el text"
|
||||
|
||||
#: gtk/gtkcellrenderertext.c:507 gtk/gtkcellview.c:198 gtk/gtktexttag.c:556
|
||||
msgid "Background set"
|
||||
@@ -1603,7 +1605,6 @@ msgid "Wrap width for layouting the items in a grid"
|
||||
msgstr "Ajusta l'amplada per formatar els elements d'una graella"
|
||||
|
||||
#: gtk/gtkcombobox.c:596
|
||||
#, fuzzy
|
||||
msgid "Row span column"
|
||||
msgstr "Columna de l'abast de les files"
|
||||
|
||||
@@ -1612,7 +1613,6 @@ msgid "TreeModel column containing the row span values"
|
||||
msgstr "La columna del TreeModel que conté els valors de l'abast de les files"
|
||||
|
||||
#: gtk/gtkcombobox.c:618
|
||||
#, fuzzy
|
||||
msgid "Column span column"
|
||||
msgstr "Columna de l'abast de les columnes"
|
||||
|
||||
@@ -1631,12 +1631,11 @@ msgstr "L'element que actualment està seleccionat"
|
||||
|
||||
#: gtk/gtkcombobox.c:659 gtk/gtkuimanager.c:232
|
||||
msgid "Add tearoffs to menus"
|
||||
msgstr "Afegeix tearoffs als menús"
|
||||
msgstr "Afegeix separadors als menús"
|
||||
|
||||
#: gtk/gtkcombobox.c:660
|
||||
#, fuzzy
|
||||
msgid "Whether dropdowns should have a tearoff menu item"
|
||||
msgstr "Si els menus desplegables han de tenir tearoff"
|
||||
msgstr "Si els menus desplegables han de tenir un element per desprendre'ls"
|
||||
|
||||
#: gtk/gtkcombobox.c:675 gtk/gtkentry.c:534
|
||||
msgid "Has Frame"
|
||||
@@ -1655,7 +1654,6 @@ msgid "Appears as list"
|
||||
msgstr "Apareix com una llista"
|
||||
|
||||
#: gtk/gtkcombobox.c:691
|
||||
#, fuzzy
|
||||
msgid "Whether dropdowns should look like lists rather than menus"
|
||||
msgstr ""
|
||||
"Si els menús desplegables han d'assemblar-se a llistes en lloc de menús"
|
||||
@@ -1794,7 +1792,7 @@ msgid ""
|
||||
"FALSE displays the \"invisible char\" instead of the actual text (password "
|
||||
"mode)"
|
||||
msgstr ""
|
||||
"FALS mostra el \"invisible char\" en lloc del text actual (mode de "
|
||||
"FALS mostra el \"caràcter d'invisibilitat\" en lloc del text actual (mode de "
|
||||
"contrasenya)"
|
||||
|
||||
#: gtk/gtkentry.c:535
|
||||
@@ -1807,7 +1805,9 @@ msgstr "Caràcter invisible"
|
||||
|
||||
#: gtk/gtkentry.c:543
|
||||
msgid "The character to use when masking entry contents (in \"password mode\")"
|
||||
msgstr "El caràcter a utilitzar quan l'entrada conté (en «password mode»)"
|
||||
msgstr ""
|
||||
"El caràcter a usar quen s'emmascara el contingut de l'entrada (en «mode "
|
||||
"contrasenya»)"
|
||||
|
||||
#: gtk/gtkentry.c:550
|
||||
msgid "Activates default"
|
||||
@@ -1844,7 +1844,7 @@ msgstr "Els continguts de l'entrada"
|
||||
|
||||
#: gtk/gtkentry.c:593 gtk/gtkmisc.c:101
|
||||
msgid "X align"
|
||||
msgstr "alineació X"
|
||||
msgstr "Alineació X"
|
||||
|
||||
#: gtk/gtkentry.c:594 gtk/gtkmisc.c:102
|
||||
msgid ""
|
||||
@@ -1903,23 +1903,21 @@ msgid "Whether the completions should be shown in a popup window"
|
||||
msgstr "Si les complecions s'haurien de mostrar en una finestra emergent"
|
||||
|
||||
#: gtk/gtkentrycompletion.c:350
|
||||
#, fuzzy
|
||||
msgid "Popup set width"
|
||||
msgstr "Amplada de línia del focus"
|
||||
msgstr "Amplada del menú emergent"
|
||||
|
||||
#: gtk/gtkentrycompletion.c:351
|
||||
msgid "If TRUE, the popup window will have the same size as the entry"
|
||||
msgstr "Si és CERT, la finestra emergent tindrà la mateixa mida que l'entrada"
|
||||
|
||||
#: gtk/gtkentrycompletion.c:369
|
||||
#, fuzzy
|
||||
msgid "Popup single match"
|
||||
msgstr "Amplada de línia del focus"
|
||||
msgstr "Amplada d'una coincidència"
|
||||
|
||||
#: gtk/gtkentrycompletion.c:370
|
||||
#, fuzzy
|
||||
msgid "If TRUE, the popup window will appear for a single match."
|
||||
msgstr "Si és CERT, la finestra emergent tindrà la mateixa mida que l'entrada"
|
||||
msgstr ""
|
||||
"Si és CERT, la finestra emergent apareixerà amb només una coincidència."
|
||||
|
||||
#: gtk/gtkeventbox.c:122
|
||||
msgid "Visible Window"
|
||||
@@ -2079,7 +2077,7 @@ msgstr "Si s'han de mostrar els fitxers i directoris ocults"
|
||||
|
||||
#: gtk/gtkfilechooser.c:266
|
||||
msgid "Do overwrite confirmation"
|
||||
msgstr ""
|
||||
msgstr "Confirma la sobreescriptura"
|
||||
|
||||
#: gtk/gtkfilechooser.c:267
|
||||
msgid ""
|
||||
@@ -2087,6 +2085,9 @@ msgid ""
|
||||
"overwrite confirmation dialog if the user selects a file name that already "
|
||||
"exists."
|
||||
msgstr ""
|
||||
"Si un seleccionador de fitxers en GTK_FILE_CHOOSER_ACTION_SAVE mostrarà una "
|
||||
"confirmació de sobreescriptura quan l'usuari seleccioni un nom de fitxer que "
|
||||
"ja existeix."
|
||||
|
||||
#: gtk/gtkfilechooserbutton.c:338
|
||||
msgid "Dialog"
|
||||
@@ -2625,7 +2626,7 @@ msgstr "L'alçària de la disposició"
|
||||
|
||||
#: gtk/gtkmenu.c:532
|
||||
msgid "Tearoff Title"
|
||||
msgstr "Títol de Tearoff"
|
||||
msgstr "Títol del menú separat"
|
||||
|
||||
#: gtk/gtkmenu.c:533
|
||||
msgid ""
|
||||
@@ -2637,7 +2638,7 @@ msgstr ""
|
||||
|
||||
#: gtk/gtkmenu.c:547
|
||||
msgid "Tearoff State"
|
||||
msgstr "Estat del tearoff"
|
||||
msgstr "Estat del menú separat"
|
||||
|
||||
#: gtk/gtkmenu.c:548
|
||||
msgid "A boolean that indicates whether the menu is torn-off"
|
||||
@@ -2740,21 +2741,18 @@ msgstr ""
|
||||
"El temps abans d'ocultar un submenú quan el punter es mou cap al submenú"
|
||||
|
||||
#: gtk/gtkmenubar.c:201
|
||||
#, fuzzy
|
||||
msgid "Pack direction"
|
||||
msgstr "Direcció del text"
|
||||
msgstr "Direcció de l'empaquetament"
|
||||
|
||||
#: gtk/gtkmenubar.c:202
|
||||
#, fuzzy
|
||||
msgid "The pack direction of the menubar"
|
||||
msgstr "L'orientació de la barra d'eines"
|
||||
msgstr "La direcció de l'empaquetament de la barra d'eines"
|
||||
|
||||
#: gtk/gtkmenubar.c:218
|
||||
msgid "Child Pack direction"
|
||||
msgstr ""
|
||||
msgstr "Direcció de l'empaquetament fill"
|
||||
|
||||
#: gtk/gtkmenubar.c:219
|
||||
#, fuzzy
|
||||
msgid "The child pack direction of the menubar"
|
||||
msgstr "L'orientació de la barra d'eines"
|
||||
|
||||
@@ -2781,14 +2779,12 @@ msgid "Delay before the submenus of a menu bar appear"
|
||||
msgstr "Retard abans que apareguin els submenús d'una barra de menú"
|
||||
|
||||
#: gtk/gtkmenushell.c:377
|
||||
#, fuzzy
|
||||
msgid "Take Focus"
|
||||
msgstr "Té focus"
|
||||
msgstr "Agafa el focus"
|
||||
|
||||
#: gtk/gtkmenushell.c:378
|
||||
#, fuzzy
|
||||
msgid "A boolean that determines whether the menu grabs the keyboard focus"
|
||||
msgstr "Un booleà que indica si el menú està arrencat"
|
||||
msgstr "Un booleà que indica si el menú agafa el focus del teclat"
|
||||
|
||||
#: gtk/gtkmenutoolbutton.c:270 gtk/gtkoptionmenu.c:196
|
||||
msgid "Menu"
|
||||
@@ -2835,7 +2831,7 @@ msgstr "Els botons mostrats en el diàleg del missatge"
|
||||
|
||||
#: gtk/gtkmisc.c:111
|
||||
msgid "Y align"
|
||||
msgstr "alineació X"
|
||||
msgstr "Alineació X"
|
||||
|
||||
#: gtk/gtkmisc.c:112
|
||||
msgid "The vertical alignment, from 0 (top) to 1 (bottom)"
|
||||
@@ -2843,7 +2839,7 @@ msgstr "L'alineació vertical, des de 0 (a dalt) fins 1 (a baix)"
|
||||
|
||||
#: gtk/gtkmisc.c:121
|
||||
msgid "X pad"
|
||||
msgstr "X pad"
|
||||
msgstr "Farciment X"
|
||||
|
||||
#: gtk/gtkmisc.c:122
|
||||
msgid ""
|
||||
@@ -2852,7 +2848,7 @@ msgstr "L'alineació d'espai a afegir a esquerra i dreta del giny, en píxels"
|
||||
|
||||
#: gtk/gtkmisc.c:131
|
||||
msgid "Y pad"
|
||||
msgstr "Y pad"
|
||||
msgstr "Farciment Y"
|
||||
|
||||
#: gtk/gtkmisc.c:132
|
||||
msgid ""
|
||||
@@ -2869,15 +2865,15 @@ msgstr "L'índex de la pàgina actual"
|
||||
|
||||
#: gtk/gtknotebook.c:414
|
||||
msgid "Tab Position"
|
||||
msgstr "Posició tabuladora"
|
||||
msgstr "Posició de les pestanyes"
|
||||
|
||||
#: gtk/gtknotebook.c:415
|
||||
msgid "Which side of the notebook holds the tabs"
|
||||
msgstr "Quin costat del bloc de notes conté els tabuladors"
|
||||
msgstr "Quin costat del bloc de notes conté les pestanyes"
|
||||
|
||||
#: gtk/gtknotebook.c:422
|
||||
msgid "Tab Border"
|
||||
msgstr "Límit de la Pestanya"
|
||||
msgstr "Límit de la pestanya"
|
||||
|
||||
#: gtk/gtknotebook.c:423
|
||||
msgid "Width of the border around the tab labels"
|
||||
@@ -2939,7 +2935,7 @@ msgstr ""
|
||||
|
||||
#: gtk/gtknotebook.c:478
|
||||
msgid "Whether tabs should have homogeneous sizes"
|
||||
msgstr "Si les pestanyes haurien de tenir mides homogènies"
|
||||
msgstr "Si les pestanyes hauríen de tenir mides homogènies"
|
||||
|
||||
#: gtk/gtknotebook.c:485
|
||||
msgid "Tab label"
|
||||
@@ -2967,7 +2963,7 @@ msgstr "Si s'ha expandir la pestanya dels fills o no"
|
||||
|
||||
#: gtk/gtknotebook.c:513
|
||||
msgid "Tab fill"
|
||||
msgstr "Ompliment de pestanya"
|
||||
msgstr "Farciment de pestanya"
|
||||
|
||||
#: gtk/gtknotebook.c:514
|
||||
msgid "Whether the child's tab should fill the allocated area or not"
|
||||
@@ -2993,7 +2989,6 @@ msgid "Secondary forward stepper"
|
||||
msgstr "Caminador davanter secundari"
|
||||
|
||||
#: gtk/gtknotebook.c:554
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Display a second forward arrow button on the opposite end of the tab area"
|
||||
msgstr ""
|
||||
@@ -3235,12 +3230,11 @@ msgstr "Grup"
|
||||
|
||||
#: gtk/gtkradioaction.c:158
|
||||
msgid "The radio action whose group this action belongs to."
|
||||
msgstr ""
|
||||
msgstr "L'acció de radi al grup de la qual pertany aquesta acció."
|
||||
|
||||
#: gtk/gtkradiobutton.c:115
|
||||
#, fuzzy
|
||||
msgid "The radio button whose group this widget belongs to."
|
||||
msgstr "El botó de grup el grup del qual pertany a aquest giny."
|
||||
msgstr "El botó de grup al grup del qual pertany aquest giny."
|
||||
|
||||
#: gtk/gtkrange.c:329
|
||||
msgid "Update policy"
|
||||
@@ -3269,19 +3263,17 @@ msgstr "Amplada del lliscador"
|
||||
|
||||
# FIXME: thumb??? Mmm... no deu pas voler dir algun tipus de previsualització?
|
||||
#: gtk/gtkrange.c:354
|
||||
#, fuzzy
|
||||
msgid "Width of scrollbar or scale thumb"
|
||||
msgstr "Amplada de la barra de desplaçament o del polze de l'escala"
|
||||
msgstr "Amplada de la barra de desplaçament"
|
||||
|
||||
# FIXME: no seria "Através del contorn"??? (josep)
|
||||
#: gtk/gtkrange.c:361
|
||||
#, fuzzy
|
||||
msgid "Trough Border"
|
||||
msgstr "Cantó del canal"
|
||||
msgstr "Separació de la vora"
|
||||
|
||||
#: gtk/gtkrange.c:362
|
||||
msgid "Spacing between thumb/steppers and outer trough bevel"
|
||||
msgstr "Espaiament entre el polze/caminador i el bisell exterior"
|
||||
msgstr "Espaiat entre el lliscador i la separació de la vora exterior"
|
||||
|
||||
#: gtk/gtkrange.c:369
|
||||
msgid "Stepper Size"
|
||||
@@ -3346,17 +3338,15 @@ msgstr "Mida màxima"
|
||||
|
||||
#: gtk/gtkruler.c:153
|
||||
msgid "Maximum size of the ruler"
|
||||
msgstr "Mida màxima de la regla"
|
||||
msgstr "Mida màxima del regle"
|
||||
|
||||
#: gtk/gtkruler.c:168
|
||||
#, fuzzy
|
||||
msgid "Metric"
|
||||
msgstr "Numèric"
|
||||
msgstr "Mètrica"
|
||||
|
||||
#: gtk/gtkruler.c:169
|
||||
#, fuzzy
|
||||
msgid "The metric used for the ruler"
|
||||
msgstr "L'amplada utilitzada per cada element"
|
||||
msgstr "La mètrica utilitzada per al regle"
|
||||
|
||||
#: gtk/gtkscale.c:173 gtk/gtkspinbutton.c:261
|
||||
msgid "Digits"
|
||||
@@ -3594,9 +3584,8 @@ msgid "Icon Sizes"
|
||||
msgstr "Mides d'icona"
|
||||
|
||||
#: gtk/gtksettings.c:294
|
||||
#, fuzzy
|
||||
msgid "List of icon sizes (gtk-menu=16,16:gtk-button=20,20..."
|
||||
msgstr "Llista de mides d'icona (gtk-menu=16,16;gtk-button=20,20..."
|
||||
msgstr "Llista de mides d'icona (gtk-menu=16,16:gtk-button=20,20..."
|
||||
|
||||
#: gtk/gtksettings.c:302
|
||||
msgid "GTK Modules"
|
||||
@@ -3608,30 +3597,50 @@ msgstr "Llista de mòduls GTK actius"
|
||||
|
||||
#: gtk/gtksettings.c:312
|
||||
msgid "Xft Antialias"
|
||||
msgstr "Antidentat Xft"
|
||||
msgstr "Suavitzat de vores Xft"
|
||||
|
||||
#: gtk/gtksettings.c:313
|
||||
msgid "Whether to antialias Xft fonts; 0=no, 1=yes, -1=default"
|
||||
msgstr ""
|
||||
"Si s'ha de treure el dentat dels tipus de lletra Xft; 0=n0, 1=si, -"
|
||||
"Si s'ha de suavitzar les vores dels tipus de lletra Xft; 0=no, 1=sí, -"
|
||||
"1=predeterminat"
|
||||
|
||||
# Una mica d'ajuda per a "hint font":
|
||||
# http://www.cairographics.org/manual/cairo-Font-Options.html
|
||||
#
|
||||
# Specifies the type of hinting to do on font outlines. Hinting is the process
|
||||
# of fitting outlines to the pixel grid in order to improve the appearance of
|
||||
# the result. Since hinting outlines involves distorting them, it also
|
||||
# reduces the faithfulness to the original outline shapes. Not all of the
|
||||
# outline hinting styles are supported by all font backends.
|
||||
# CAIRO_HINT_STYLE_DEFAULT Use the default hint style for for font backend
|
||||
# and target device
|
||||
# CAIRO_HINT_STYLE_NONE Do not hint outlines
|
||||
# CAIRO_HINT_STYLE_SLIGHT Hint outlines slightly to improve contrast while
|
||||
# retaining good fidelity to the original shapes.
|
||||
# CAIRO_HINT_STYLE_MEDIUM Hint outlines with medium strength giving a
|
||||
# compromise between fidelity to the original shapes and contrast
|
||||
# CAIRO_HINT_STYLE_FULL Hint outlines to maximize contrast
|
||||
#: gtk/gtksettings.c:322
|
||||
msgid "Xft Hinting"
|
||||
msgstr ""
|
||||
msgstr "Transforma el contorn Xft"
|
||||
|
||||
#: gtk/gtksettings.c:323
|
||||
msgid "Whether to hint Xft fonts; 0=no, 1=yes, -1=default"
|
||||
msgstr ""
|
||||
"Si s'ha de transformar el contorn dels tipus de lletra Xft; 0=no, 1=sí, -"
|
||||
"1=predeterminat"
|
||||
|
||||
#: gtk/gtksettings.c:332
|
||||
msgid "Xft Hint Style"
|
||||
msgstr ""
|
||||
msgstr "Estil de transformació Xft"
|
||||
|
||||
#: gtk/gtksettings.c:333
|
||||
msgid ""
|
||||
"What degree of hinting to use; hintnone, hintslight, hintmedium, or hintfull"
|
||||
msgstr ""
|
||||
"Quin grau de transformació a usar; hintnone, hintslight, hintmedium, o "
|
||||
"hintfull"
|
||||
|
||||
#: gtk/gtksettings.c:342
|
||||
msgid "Xft RGBA"
|
||||
@@ -3652,24 +3661,20 @@ msgstr ""
|
||||
"Resolució per a Xft, en 1024 * punts/polzada. -1 per al valor per defecte"
|
||||
|
||||
#: gtk/gtksettings.c:362
|
||||
#, fuzzy
|
||||
msgid "Cursor theme name"
|
||||
msgstr "Nom del tema d'icones"
|
||||
msgstr "Nom del tema de cursor"
|
||||
|
||||
#: gtk/gtksettings.c:363
|
||||
#, fuzzy
|
||||
msgid "Name of the cursor theme to use"
|
||||
msgstr "Nom del tema d'icones a utilitzar"
|
||||
msgstr "Nom del tema de cursors a utilitzar"
|
||||
|
||||
#: gtk/gtksettings.c:371
|
||||
#, fuzzy
|
||||
msgid "Cursor theme size"
|
||||
msgstr "Cursor visible"
|
||||
msgstr "Mida del tema de cursor"
|
||||
|
||||
#: gtk/gtksettings.c:372
|
||||
#, fuzzy
|
||||
msgid "Size to use for cursors"
|
||||
msgstr "Color a utilitzar a les files imparells"
|
||||
msgstr "Mida per als cursors"
|
||||
|
||||
#: gtk/gtksettings.c:382
|
||||
msgid "Alternative button order"
|
||||
@@ -3684,26 +3689,26 @@ msgid "Mode"
|
||||
msgstr "Mode"
|
||||
|
||||
#: gtk/gtksizegroup.c:268
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"The directions in which the size group affects the requested sizes of its "
|
||||
"component widgets"
|
||||
msgstr ""
|
||||
"Les direccions en les quals el grup d'ocupació afecta les ocupacions "
|
||||
"sol·licitades dels seus ginys d'elements"
|
||||
"Les direccions en les quals el grup de mides afecta les mides sol·licitades "
|
||||
"dels seus ginys d'elements"
|
||||
|
||||
#: gtk/gtksizegroup.c:285
|
||||
msgid "Ignore hidden"
|
||||
msgstr ""
|
||||
msgstr "Ignora els amagats"
|
||||
|
||||
#: gtk/gtksizegroup.c:286
|
||||
msgid ""
|
||||
"If TRUE, hidden widgets are ignored when determining the size of the group"
|
||||
msgstr ""
|
||||
"Si és CERT, els ginys amagats s'ignoren quan es determina la mida del grup"
|
||||
|
||||
#: gtk/gtkspinbutton.c:244
|
||||
msgid "The adjustment that holds the value of the spinbutton"
|
||||
msgstr "L'ajustament que reté el valor del spinbutton"
|
||||
msgstr "L'ajustament que reté el valor del botó de gir"
|
||||
|
||||
#: gtk/gtkspinbutton.c:251
|
||||
msgid "Climb Rate"
|
||||
@@ -3916,9 +3921,8 @@ msgid "Text Tag Table"
|
||||
msgstr "Taula de marcadors de text"
|
||||
|
||||
#: gtk/gtktextbuffer.c:207
|
||||
#, fuzzy
|
||||
msgid "Current text of the buffer"
|
||||
msgstr "El text de l'etiqueta"
|
||||
msgstr "El text actual de la memòria"
|
||||
|
||||
#: gtk/gtktexttag.c:201
|
||||
msgid "Tag name"
|
||||
@@ -4053,13 +4057,12 @@ msgid "Amount to indent the paragraph, in pixels"
|
||||
msgstr "Quantitat a sagnar el paràgraf, en píxels"
|
||||
|
||||
#: gtk/gtktexttag.c:430
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Offset of text above the baseline (below the baseline if rise is negative) "
|
||||
"in Pango units"
|
||||
msgstr ""
|
||||
"Desplaçament del text per sobre de la línia de base (per sota de la línia de "
|
||||
"base si l'elevació és negativa) en píxels"
|
||||
"base si l'elevació és negativa) en unitats del Pango"
|
||||
|
||||
#: gtk/gtktexttag.c:439
|
||||
msgid "Pixels above lines"
|
||||
@@ -4089,7 +4092,8 @@ msgstr "Píxels d'espais en blanc entre línies ajustades a un paràgraf"
|
||||
msgid ""
|
||||
"Whether to wrap lines never, at word boundaries, or at character boundaries"
|
||||
msgstr ""
|
||||
"Si mai ajustar les línies, o fer-ho en els límits de les paraules o caràcters"
|
||||
"Si no s'ha d'ajustar mai les línies, o fer-ho en els límits de les paraules "
|
||||
"o caràcters"
|
||||
|
||||
#: gtk/gtktexttag.c:496 gtk/gtktextview.c:634
|
||||
msgid "Tabs"
|
||||
@@ -4104,29 +4108,24 @@ msgid "Invisible"
|
||||
msgstr "Invisible"
|
||||
|
||||
#: gtk/gtktexttag.c:516
|
||||
#, fuzzy
|
||||
msgid "Whether this text is hidden."
|
||||
msgstr "Si aquesta etiqueta afecta l'elevació"
|
||||
msgstr "Si aquest text està amagat."
|
||||
|
||||
#: gtk/gtktexttag.c:530
|
||||
#, fuzzy
|
||||
msgid "Paragraph background color name"
|
||||
msgstr "Nom del color de fons de la cel·la"
|
||||
msgstr "Nom del color de fons del paràgraf"
|
||||
|
||||
#: gtk/gtktexttag.c:531
|
||||
#, fuzzy
|
||||
msgid "Paragraph background color as a string"
|
||||
msgstr "Color de fons com a cadena"
|
||||
msgstr "Color de fons del paràgraf com a cadena"
|
||||
|
||||
#: gtk/gtktexttag.c:546
|
||||
#, fuzzy
|
||||
msgid "Paragraph background color"
|
||||
msgstr "Color de fons de la cel·la"
|
||||
msgstr "Color de fons del paràgraf"
|
||||
|
||||
#: gtk/gtktexttag.c:547
|
||||
#, fuzzy
|
||||
msgid "Paragraph background color as a (possibly unallocated) GdkColor"
|
||||
msgstr "Color de fons com a (possiblement no assignat) GdkColor"
|
||||
msgstr "Color de fons del paràgraf com a (possiblement no assignat) GdkColor"
|
||||
|
||||
#: gtk/gtktexttag.c:560
|
||||
msgid "Background full height set"
|
||||
@@ -4231,14 +4230,12 @@ msgid "Whether this tag affects text visibility"
|
||||
msgstr "Si aquesta etiqueta afecta la visibilitat del text"
|
||||
|
||||
#: gtk/gtktexttag.c:664
|
||||
#, fuzzy
|
||||
msgid "Paragraph background set"
|
||||
msgstr "Conjunt de fons de la cel·la"
|
||||
msgstr "Estableix el fons del paràgraf"
|
||||
|
||||
#: gtk/gtktexttag.c:665
|
||||
#, fuzzy
|
||||
msgid "Whether this tag affects the paragraph background color"
|
||||
msgstr "Si aquest marcador afecta el color de fons"
|
||||
msgstr "Si aquest marcador afecta el color de fons del paràgraf"
|
||||
|
||||
#: gtk/gtktextview.c:548
|
||||
msgid "Pixels Above Lines"
|
||||
@@ -4272,16 +4269,13 @@ msgstr "Cursor visible"
|
||||
msgid "If the insertion cursor is shown"
|
||||
msgstr "Si es mostra el cursor d'inserció"
|
||||
|
||||
# FIXME: això és el "buffer" que conté el text a mostrar, potser no és
|
||||
# bo traduir-ho per "memòria intermèdia (josep)
|
||||
#: gtk/gtktextview.c:650
|
||||
msgid "Buffer"
|
||||
msgstr "Memòria intermèdia"
|
||||
msgstr "Text a memòria intermèdia"
|
||||
|
||||
# FIXME: ídem anterior (josep)
|
||||
#: gtk/gtktextview.c:651
|
||||
msgid "The buffer which is displayed"
|
||||
msgstr "La memòria intermèdia que es mostrarà"
|
||||
msgstr "El text a la memòria intermèdia que es mostrarà"
|
||||
|
||||
#: gtk/gtktextview.c:658
|
||||
msgid "Overwrite mode"
|
||||
@@ -4308,13 +4302,13 @@ msgid "Color with which to draw error-indication underlines"
|
||||
msgstr "El color amb el que es dibuixa la línia inferior que indica un error"
|
||||
|
||||
#: gtk/gtktoggleaction.c:131
|
||||
#, fuzzy
|
||||
msgid "Create the same proxies as a radio action"
|
||||
msgstr "Dibuixa el botó de commutació com un botó de ràdio"
|
||||
msgstr "Crea el mateixos apoderats com a acció de ràdio"
|
||||
|
||||
#: gtk/gtktoggleaction.c:132
|
||||
msgid "Whether the proxies for this action look like radio action proxies"
|
||||
msgstr ""
|
||||
"Si els apoderats per a aquesta acció semblen apoderats d'acció de ràdio"
|
||||
|
||||
#: gtk/gtktogglebutton.c:136
|
||||
msgid "If the toggle button should be pressed in or not"
|
||||
@@ -4322,7 +4316,7 @@ msgstr "Si el botó de commutació ha d'estar premut"
|
||||
|
||||
#: gtk/gtktogglebutton.c:144
|
||||
msgid "If the toggle button is in an \"in between\" state"
|
||||
msgstr "Si el botó de commutació és en un estat \"entremig\""
|
||||
msgstr "Si el botó de commutació és en un estat \"intermig\""
|
||||
|
||||
#: gtk/gtktogglebutton.c:151
|
||||
msgid "Draw Indicator"
|
||||
@@ -4354,14 +4348,12 @@ msgstr ""
|
||||
"Si s'ha de dibuixar una fletxa en cas que la barra d'eines no hi càpiga"
|
||||
|
||||
#: gtk/gtktoolbar.c:541
|
||||
#, fuzzy
|
||||
msgid "Tooltips"
|
||||
msgstr "Consell flotant"
|
||||
msgstr "Consells flotant"
|
||||
|
||||
#: gtk/gtktoolbar.c:542
|
||||
#, fuzzy
|
||||
msgid "If the tooltips of the toolbar should be active or not"
|
||||
msgstr "Si el botó de commutació ha d'estar premut"
|
||||
msgstr "Si s'han d'activar els consells flotants de la barra d'eines"
|
||||
|
||||
#: gtk/gtktoolbar.c:551
|
||||
msgid "Whether the item should receive extra space when the toolbar grows"
|
||||
@@ -4427,36 +4419,33 @@ msgid "Text to show in the item."
|
||||
msgstr "Text a mostrar en l'element."
|
||||
|
||||
#: gtk/gtktoolbutton.c:195
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"If set, an underline in the label property indicates that the next character "
|
||||
"should be used for the mnemonic accelerator key in the overflow menu"
|
||||
msgstr ""
|
||||
"Si es fixa, un subratllat en el text indica que el caràcter següent s'hauria "
|
||||
"d'utilitzar per a la tecla de drecera mnemotècnica"
|
||||
"Si es fixa, un subratllat en la propietat de l'etiqueta indica que el "
|
||||
"caràcter següent s'hauria d'utilitzar per a la tecla de drecera mnemotècnica "
|
||||
"en el menú"
|
||||
|
||||
#: gtk/gtktoolbutton.c:202
|
||||
msgid "Widget to use as the item label"
|
||||
msgstr "El giny que s'utilitzarà com a etiqueta de l'element"
|
||||
|
||||
#: gtk/gtktoolbutton.c:208
|
||||
#, fuzzy
|
||||
msgid "Stock Id"
|
||||
msgstr "Identificació de l'acció"
|
||||
msgstr "Id d'estoc"
|
||||
|
||||
#: gtk/gtktoolbutton.c:209
|
||||
msgid "The stock icon displayed on the item"
|
||||
msgstr "La icona d'estoc que es visualitzarà en l'element"
|
||||
|
||||
#: gtk/gtktoolbutton.c:225
|
||||
#, fuzzy
|
||||
msgid "Icon name"
|
||||
msgstr "Nom de la icona"
|
||||
|
||||
#: gtk/gtktoolbutton.c:226
|
||||
#, fuzzy
|
||||
msgid "The name of the themed icon displayed on the item"
|
||||
msgstr "La icona d'estoc que es visualitzarà en l'element"
|
||||
msgstr "El nom de la icona de tema que es visualitzarà en l'element"
|
||||
|
||||
#: gtk/gtktoolbutton.c:232
|
||||
msgid "Icon widget"
|
||||
@@ -4471,6 +4460,8 @@ msgid ""
|
||||
"Whether the toolbar item is considered important. When TRUE, toolbar buttons "
|
||||
"show text in GTK_TOOLBAR_BOTH_HORIZ mode"
|
||||
msgstr ""
|
||||
"Si l'element de la barra d'eines es considera important. Si és CERT, els "
|
||||
"botons de la barra d'eines mostren el text en mode GTK_TOOLBAR_BOTH_HORIZ"
|
||||
|
||||
#: gtk/gtktreemodelsort.c:331
|
||||
msgid "TreeModelSort Model"
|
||||
@@ -4497,9 +4488,8 @@ msgid "Vertical Adjustment for the widget"
|
||||
msgstr "Ajustament vertical pel giny"
|
||||
|
||||
#: gtk/gtktreeview.c:594
|
||||
#, fuzzy
|
||||
msgid "Headers Visible"
|
||||
msgstr "Capçaleres clicables"
|
||||
msgstr "Capçaleres visibles"
|
||||
|
||||
#: gtk/gtktreeview.c:595
|
||||
msgid "Show the column header buttons"
|
||||
@@ -4561,16 +4551,15 @@ msgstr ""
|
||||
|
||||
#: gtk/gtktreeview.c:684
|
||||
msgid "Hover Selection"
|
||||
msgstr ""
|
||||
msgstr "Segueix el punter"
|
||||
|
||||
#: gtk/gtktreeview.c:685
|
||||
msgid "Whether the selection should follow the pointer"
|
||||
msgstr "Si la selecció ha de seguir el punter"
|
||||
|
||||
#: gtk/gtktreeview.c:704
|
||||
#, fuzzy
|
||||
msgid "Hover Expand"
|
||||
msgstr "Expandeix"
|
||||
msgstr "Expandeix amb el punter"
|
||||
|
||||
#: gtk/gtktreeview.c:705
|
||||
msgid ""
|
||||
@@ -4739,11 +4728,11 @@ msgstr "Si s'han d'afegir elements de menú tearoffs als menús"
|
||||
|
||||
#: gtk/gtkuimanager.c:240
|
||||
msgid "Merged UI definition"
|
||||
msgstr ""
|
||||
msgstr "Definició d'IU mesclada"
|
||||
|
||||
#: gtk/gtkuimanager.c:241
|
||||
msgid "An XML string describing the merged UI"
|
||||
msgstr ""
|
||||
msgstr "Una cadena XML que descriu la IU mesclada"
|
||||
|
||||
#: gtk/gtkviewport.c:138
|
||||
msgid ""
|
||||
@@ -4979,13 +4968,12 @@ msgid "Aspect ratio with which to draw insertion cursor"
|
||||
msgstr "Ràtio d'aspecte amb el que dibuixar el cursor d'inserció"
|
||||
|
||||
#: gtk/gtkwidget.c:1492
|
||||
#, fuzzy
|
||||
msgid "Draw Border"
|
||||
msgstr "Límit de la Pestanya"
|
||||
msgstr "Dibuixa la vora"
|
||||
|
||||
#: gtk/gtkwidget.c:1493
|
||||
msgid "Size of areas outside the widget's allocation to draw"
|
||||
msgstr ""
|
||||
msgstr "Mida de les àrees a dibuixar fora de la ubicació del giny"
|
||||
|
||||
#: gtk/gtkwindow.c:419
|
||||
msgid "Window Type"
|
||||
@@ -5145,12 +5133,11 @@ msgstr "És CERT si la finestra no hauria d'estar en el paginador."
|
||||
|
||||
#: gtk/gtkwindow.c:587
|
||||
msgid "Urgent"
|
||||
msgstr ""
|
||||
msgstr "Urgent"
|
||||
|
||||
#: gtk/gtkwindow.c:588
|
||||
#, fuzzy
|
||||
msgid "TRUE if the window should be brought to the user's attention."
|
||||
msgstr "És CERT si la finestra no hauria d'estar en el paginador."
|
||||
msgstr "És CERT si la finestra no s'hauria de presentar davant de l'usuari."
|
||||
|
||||
#: gtk/gtkwindow.c:602
|
||||
msgid "Accept focus"
|
||||
@@ -5161,12 +5148,10 @@ msgid "TRUE if the window should receive the input focus."
|
||||
msgstr "És CERT si la finestra hauria de rebre el focus d'entrada."
|
||||
|
||||
#: gtk/gtkwindow.c:617
|
||||
#, fuzzy
|
||||
msgid "Focus on map"
|
||||
msgstr "Focus al nivell superior"
|
||||
msgstr "Focus en mapar"
|
||||
|
||||
#: gtk/gtkwindow.c:618
|
||||
#, fuzzy
|
||||
msgid "TRUE if the window should receive the input focus when mapped."
|
||||
msgstr ""
|
||||
"És CERT si la finestra hauria de rebre el focus d'entrada quan es mapi."
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-23 18:29+0200\n"
|
||||
"Last-Translator: Miloslav Trmac <bukm@centrum.cz>\n"
|
||||
"Language-Team: Czech <cs@li.org>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-09 22:45+0100\n"
|
||||
"Last-Translator: Rhys Jones <rhys@sucs.org>\n"
|
||||
"Language-Team: Cymraeg <gnome-cy@pengwyn.linux.org.uk>\n"
|
||||
|
||||
+1
-1
@@ -35,7 +35,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-06-20 21:32+0200\n"
|
||||
"Last-Translator: Martin Willemoes Hansen <mwh@sysrq.dk>\n"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GTK+ HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-26 22:19+0200\n"
|
||||
"Last-Translator: Hendrik Brandt <heb@gnome-de.org>\n"
|
||||
"Language-Team: German <gnome-de@gnome.org>\n"
|
||||
|
||||
+1
-1
@@ -26,7 +26,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: el\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-12 18:14+0300\n"
|
||||
"Last-Translator: Kostas Papadimas <pkst@gnome.org>\n"
|
||||
"Language-Team: Greek <team@gnome.gr>\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-22 22:53-0400\n"
|
||||
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
|
||||
"Language-Team: Canadian English <adamw@gnome.org>\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-04-07 21:34-0400\n"
|
||||
"Last-Translator: David Lodge <dave@cirt.net>\n"
|
||||
"Language-Team: \n"
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GTK-2.7\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-24 18:47+0200\n"
|
||||
"Last-Translator: Francisco Javier F. Serrador <serrador@gnome.org>\n"
|
||||
"Language-Team: <traductores@es.gnome.org>\n"
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-27 10:12+0300\n"
|
||||
"Last-Translator: Ivar Smolin <okul@linux.ee> \n"
|
||||
"Language-Team: Estonian <gnome-et@linux.ee>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-04-13 20:22+0200\n"
|
||||
"Last-Translator: Hizkuntza Politikarako Sailburuordetza <hizkpol@ej-gv.es>\n"
|
||||
"Language-Team: <itzulpena@euskalgnu.org>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.3.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-01-03 17:49+0330\n"
|
||||
"Last-Translator: Roozbeh Pournader <roozbeh@sharif.edu>\n"
|
||||
"Language-Team: Persian <farsi@lists.sharif.edu>\n"
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-28 19:34+0300\n"
|
||||
"Last-Translator: Ilkka Tuohela <hile@iki.fi>\n"
|
||||
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+_properties 2.3.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-02-24 19:01+0100\n"
|
||||
"Last-Translator: Christophe Merlet (RedFox) <redfox@redfoxcenter.org>\n"
|
||||
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-01-14 07:18+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <mckinstry@computer.org\n"
|
||||
"Language-Team: Gaeilge <gaeilge-gnulinux@lists.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.3.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2000-08-10 23:10+0200\n"
|
||||
"Last-Translator: Jesus Bravo Alvarez <jba@pobox.com>\n"
|
||||
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
|
||||
|
||||
+1
-1
@@ -92,7 +92,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD.gu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-27 12:16+0530\n"
|
||||
"Last-Translator: Ankit Patel <ankit644@yahoo.com>\n"
|
||||
"Language-Team: Gujarati <indianoss-gujarati@lists.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -19,7 +19,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.HEAD.he\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2002-12-07 10:05+0200\n"
|
||||
"Last-Translator: Gil 'Dolfin' Osher <dolfin@rpg.org.il>\n"
|
||||
"Language-Team: Hebrew <he@li.org>\n"
|
||||
|
||||
+1
-1
@@ -523,7 +523,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD.hi\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-07 15:07+0530\n"
|
||||
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
|
||||
"Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties 0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-03-24 05:39+CET\n"
|
||||
"Last-Translator: Robert Sedak <robert.sedak@sk.tel.hr>\n"
|
||||
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD.hu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-14 10:09+0200\n"
|
||||
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
|
||||
"Language-Team: Hungarian <gnome@gnome.hu>\n"
|
||||
|
||||
+1
-1
@@ -49,7 +49,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.HEAD.hy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-19 17:50+0500\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: <en@li.org>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2000-10-27 02:02+0100\n"
|
||||
"Last-Translator: Robert Brady <rwb197@zepler.org>\n"
|
||||
"Language-Team: Interlingua\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-07 23:38+0300\n"
|
||||
"Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"
|
||||
"Language-Team: Indonesia <sukarelawan@gnome.linux.or.id>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk 2.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2003-07-22 16:05+0000\n"
|
||||
"Last-Translator: Richard Allen <ra@ra.is>\n"
|
||||
"Language-Team: is <is@li.org>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-03-02 22:17+0100\n"
|
||||
"Last-Translator: Alessio Dessi <alessiodessi@tiscali.it>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-31 22:04+0900\n"
|
||||
"Last-Translator: Takeshi AIHANA <aihana@gnome.gr.jp>\n"
|
||||
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properrties 2.3.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-03-04 01:54+0900\n"
|
||||
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
|
||||
"Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n"
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2003-05-28 17:57+0000\n"
|
||||
"Last-Translator: Mathieu van Woerkom <mathieu.brabants.org>\n"
|
||||
"Language-Team: Limburgish <li.org>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-01-06 19:45+0200\n"
|
||||
"Last-Translator: Žygimantas Beručka <uid0@akl.lt>\n"
|
||||
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2002-12-19 16:10+0200\n"
|
||||
"Last-Translator: Artis Trops <hornet@navigator.lv>\n"
|
||||
"Language-Team: Latvian <ll10nt@os.lv>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-02-06 21:52+1300\n"
|
||||
"Last-Translator: John C Barstow <jbowtie@amathaine.com>\n"
|
||||
"Language-Team: Maori <maori@nzlinux.org.nz>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mk\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-11 21:07+0200\n"
|
||||
"Last-Translator: Арангел Ангов <ufo@linux.net.mk>\n"
|
||||
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version:gtk+.gtk-2-2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2003-07-05 10:29+0530\n"
|
||||
"Last-Translator: FSF-India <locale@gnu.org.in>\n"
|
||||
"Language-Team: Malayalam <locale@gnu.org.in>\n"
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-03-09 12:13+0100\n"
|
||||
"Last-Translator: Sanlig Badral <badral@openmn.org>\n"
|
||||
"Language-Team: Mongolian <openmn-core@lists.sf.net>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.mr\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-03-13 14:59+0530\n"
|
||||
"Last-Translator: Jitendra Shah <jitendras@vsnl.com>\n"
|
||||
"Language-Team: Marathi <www.indictrans.org>\n"
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Gtk+ 1.3.x\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-01-20 00:57+0730\n"
|
||||
"Last-Translator: Hasbullah Bin Pit <sebol@ikhlas.com>\n"
|
||||
"Language-Team: Projek Gabai <gabai-penyumbang@list.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nb\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-12 13:40+0200\n"
|
||||
"Last-Translator: Terance Edward Sola <terance@lyse.net>\n"
|
||||
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-05-15 15:47+0545\n"
|
||||
"Last-Translator: Ganesh Ghimire <gghimire@gmail.com>\n"
|
||||
"Language-Team: Nepali <info@mpp.org.np>\n"
|
||||
|
||||
+1
-1
@@ -19,7 +19,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-22 01:23+0200\n"
|
||||
"Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nn\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-01-03 23:53+0100\n"
|
||||
"Last-Translator: Åsmund Skjæveland <aasmunds@fys.uio.no>\n"
|
||||
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nb\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-12 13:40+0200\n"
|
||||
"Last-Translator: Terance Edward Sola <terance@lyse.net>\n"
|
||||
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties 2.8-branch\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-11-30 15:02+0200\n"
|
||||
"Last-Translator: Zuza Software Foundation <info@translate.org.za>\n"
|
||||
"Language-Team: Northern Sotho <translate-discuss-nso@lists.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -126,7 +126,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-22 18:18+0530\n"
|
||||
"Last-Translator: Amanpreet Singh Brar <amanpreetalam@yahoo.com>\n"
|
||||
"Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2003-11-14 17:38+0100\n"
|
||||
"Last-Translator: Gnome PL Team <translators@gnomepl.org>\n"
|
||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.12\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-23 15:25+0000\n"
|
||||
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
|
||||
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
|
||||
|
||||
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.gtk-2-6.pt_BR\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-03-30 19:32-0300\n"
|
||||
"Last-Translator: Afonso Celso Medina <medina@maua.br>\n"
|
||||
"Language-Team: Português/Brasil <gnome-l10n-br@listas.cipsga.org.br>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-14 22:12+0300\n"
|
||||
"Last-Translator: Mişu Moldovan <dumol@gnome.ro>\n"
|
||||
"Language-Team: Română <gnomero-list@lists.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-12-17 19:22+0200\n"
|
||||
"Last-Translator: Leonid Kanter <leon@asplinux.ru>\n"
|
||||
"Language-Team: <gnome-cyr@gnome.org>\n"
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 317\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-11-17 21:21-0700\n"
|
||||
"Last-Translator: Steve Murphy <murf@e-tools.com>\n"
|
||||
"Language-Team: Kinyarwanda <en@li.org>\n"
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-05 22:54+0200\n"
|
||||
"Last-Translator: Marcel Telka <marcel@telka.sk>\n"
|
||||
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GTK+ 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2002-02-26 00:23+0100\n"
|
||||
"Last-Translator: Andraž Tori <andraz.tori1@guest.arnes.si>\n"
|
||||
"Language-Team: slovenian <sl@li.org>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD.sq\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-28 11:09+0200\n"
|
||||
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
|
||||
"Language-Team: Albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-09 12:08+0200\n"
|
||||
"Last-Translator: Данило Шеган <danilo@gnome.org>\n"
|
||||
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-07-09 12:08+0200\n"
|
||||
"Last-Translator: Danilo Šegan <danilo@gnome.org>\n"
|
||||
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-03-09 05:28+0100\n"
|
||||
"Last-Translator: Bojan Suzic <bojans@teol.net>\n"
|
||||
"Language-Team: Serbian (sr) <serbiangnome-lista@nongnu.org>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-12-18 15:10+0100\n"
|
||||
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\n"
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Tamil Gtk 2.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2004-02-21 18:21-0600\n"
|
||||
"Last-Translator: Dinesh Nadarajah <dinesh_list@sbcglobal.net>\n"
|
||||
"Language-Team: Tamil <tamilinix@yahoogroups.com>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2005-08-24 13:34-0400\n"
|
||||
"POT-Creation-Date: 2005-08-29 13:42-0400\n"
|
||||
"PO-Revision-Date: 2005-08-04 22:50+0530\n"
|
||||
"Last-Translator: Sunil Mohan Adapa <sunil@atc.tcs.co.in>\n"
|
||||
"Language-Team: Swecha <indlinux-telugu@lists.sourceforge.net>\n"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user