Compare commits
63 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 586ac41c68 | |||
| 988e4f1134 | |||
| f03c304a25 | |||
| 87bb81887a | |||
| 5a80b1fb2d | |||
| f38a3c0d74 | |||
| 1a8c032dde | |||
| c6cb5eebdc | |||
| b2cc6279b2 | |||
| 525bd57c67 | |||
| e462f7957d | |||
| b525a47ad0 | |||
| ff2660ed80 | |||
| 2216cbd9a3 | |||
| 25509380c4 | |||
| fdafb0ec30 | |||
| 49268a750f | |||
| 616ad664f4 | |||
| eb70ceb551 | |||
| 64319ec227 | |||
| f9939a13f8 | |||
| 8e3cea214e | |||
| ba79bbcc65 | |||
| c79c73161c | |||
| 66d7626930 | |||
| 79101f3588 | |||
| ec4ce57e87 | |||
| c68c0e5a1c | |||
| 8a013f6c3e | |||
| 299a997aea | |||
| 2c9989c5d1 | |||
| 28ae6fd0be | |||
| 85346c0d99 | |||
| 3fc06dd8bb | |||
| 1e865a99c1 | |||
| 8792f8092e | |||
| 3352e4b955 | |||
| e5f16d59fc | |||
| 627ce4c77d | |||
| 7d9460fc57 | |||
| 7eedd893f0 | |||
| cae66dbe90 | |||
| 99ae34dbb4 | |||
| 6bd907a60a | |||
| bfe2935455 | |||
| 5f16b8c044 | |||
| 34c0a31975 | |||
| fdeaab7124 | |||
| 0703eeab08 | |||
| f73596a9b2 | |||
| 0b6393d572 | |||
| 6e715f77ef | |||
| 08f5202516 | |||
| 04b7b41b75 | |||
| e6dcb53237 | |||
| 0725e54524 | |||
| 6c20020be6 | |||
| 56f5382343 | |||
| 585772c32e | |||
| 05c629ffe9 | |||
| 69ff1d8a93 | |||
| 27ab4f7937 | |||
| 278d1063c7 |
@@ -1,21 +1,3 @@
|
||||
Overview of Changes from GTK+ 2.18.1 to 2.18.2
|
||||
==============================================
|
||||
|
||||
* GTK+ now ignores SIGPIPE in gtk_init(). Previously
|
||||
this was done deep in the lpr printbackend.
|
||||
|
||||
* Fix compilation of the DirectFB backend.
|
||||
|
||||
* Bugs fixed:
|
||||
597386 Cannot click buttons more than once...
|
||||
588059 sometimes notification icons are not visible with csw
|
||||
|
||||
* Updated translations:
|
||||
Italian
|
||||
Japanese
|
||||
Serbian
|
||||
|
||||
|
||||
Overview of Changes from GTK+ 2.18.0 to 2.18.1
|
||||
==============================================
|
||||
|
||||
|
||||
@@ -2077,8 +2077,7 @@ GdkWindow *
|
||||
_gdk_windowing_window_at_pointer (GdkDisplay *display,
|
||||
gint *win_x,
|
||||
gint *win_y,
|
||||
GdkModifierType *mask,
|
||||
gboolean get_toplevel)
|
||||
GdkModifierType *mask)
|
||||
{
|
||||
GdkWindow *retval;
|
||||
gint wx, wy;
|
||||
@@ -2138,8 +2137,7 @@ _gdk_windowing_get_pointer (GdkDisplay *display,
|
||||
gdk_directfb_window_get_pointer (_gdk_windowing_window_at_pointer (display,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
FALSE),
|
||||
NULL),
|
||||
x, y, mask);
|
||||
}
|
||||
|
||||
|
||||
@@ -2624,8 +2624,6 @@ gdk_window_end_implicit_paint (GdkWindow *window)
|
||||
/* Reset clip region of the cached GdkGC */
|
||||
gdk_gc_set_clip_region (tmp_gc, NULL);
|
||||
}
|
||||
else
|
||||
gdk_region_destroy (paint->region);
|
||||
|
||||
g_object_unref (paint->pixmap);
|
||||
g_free (paint);
|
||||
|
||||
+8
-11
@@ -3252,15 +3252,12 @@ _gdk_windowing_window_at_pointer (GdkDisplay *display,
|
||||
while (xwindow)
|
||||
{
|
||||
xwindow_last = xwindow;
|
||||
if (get_toplevel &&
|
||||
(window = gdk_window_lookup_for_display (display, xwindow)) != NULL &&
|
||||
GDK_WINDOW_TYPE (window) != GDK_WINDOW_FOREIGN)
|
||||
break;
|
||||
XQueryPointer (xdisplay, xwindow,
|
||||
&root, &xwindow, &rootx, &rooty, &winx, &winy, &xmask);
|
||||
if (get_toplevel &&
|
||||
(window = gdk_window_lookup_for_display (display, xwindow_last)) != NULL &&
|
||||
GDK_WINDOW_TYPE (window) != GDK_WINDOW_FOREIGN)
|
||||
{
|
||||
xwindow = xwindow_last;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
@@ -3318,16 +3315,16 @@ _gdk_windowing_window_at_pointer (GdkDisplay *display,
|
||||
while (xwindow)
|
||||
{
|
||||
xwindow_last = xwindow;
|
||||
if (get_toplevel &&
|
||||
(window = gdk_window_lookup_for_display (display, xwindow)) != NULL &&
|
||||
GDK_WINDOW_TYPE (window) != GDK_WINDOW_FOREIGN)
|
||||
break;
|
||||
gdk_error_trap_push ();
|
||||
XQueryPointer (xdisplay, xwindow,
|
||||
&root, &xwindow, &rootx, &rooty, &winx, &winy, &xmask);
|
||||
gdk_flush ();
|
||||
if (gdk_error_trap_pop ())
|
||||
break;
|
||||
if (get_toplevel &&
|
||||
(window = gdk_window_lookup_for_display (display, xwindow_last)) != NULL &&
|
||||
GDK_WINDOW_TYPE (window) != GDK_WINDOW_FOREIGN)
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+659
-2300
File diff suppressed because it is too large
Load Diff
@@ -194,17 +194,13 @@ struct _GtkFileChooserDefault
|
||||
GtkWidget *search_entry;
|
||||
GtkSearchEngine *search_engine;
|
||||
GtkQuery *search_query;
|
||||
GtkListStore *search_model;
|
||||
GtkTreeModelFilter *search_model_filter;
|
||||
GtkTreeModelSort *search_model_sort;
|
||||
GtkFileSystemModel *search_model;
|
||||
|
||||
/* OPERATION_MODE_RECENT */
|
||||
GtkWidget *recent_hbox;
|
||||
GtkRecentManager *recent_manager;
|
||||
GtkListStore *recent_model;
|
||||
GtkFileSystemModel *recent_model;
|
||||
guint load_recent_id;
|
||||
GtkTreeModelFilter *recent_model_filter;
|
||||
GtkTreeModelSort *recent_model_sort;
|
||||
|
||||
GtkWidget *filter_combo_hbox;
|
||||
GtkWidget *filter_combo;
|
||||
@@ -232,14 +228,11 @@ struct _GtkFileChooserDefault
|
||||
*/
|
||||
GtkTreeModel *shortcuts_combo_filter_model;
|
||||
|
||||
GtkTreeModelSort *sort_model;
|
||||
|
||||
/* Handles */
|
||||
GSList *loading_shortcuts;
|
||||
GSList *reload_icon_cancellables;
|
||||
GCancellable *file_list_drag_data_received_cancellable;
|
||||
GCancellable *update_current_folder_cancellable;
|
||||
GCancellable *show_and_select_files_cancellable;
|
||||
GCancellable *should_respond_get_info_cancellable;
|
||||
GCancellable *file_exists_get_info_cancellable;
|
||||
GCancellable *update_from_entry_cancellable;
|
||||
@@ -316,63 +309,6 @@ struct _GtkFileChooserDefault
|
||||
};
|
||||
|
||||
|
||||
/* GtkFileSystemModel private */
|
||||
|
||||
typedef struct _FileModelNode FileModelNode;
|
||||
|
||||
struct _GtkFileSystemModel
|
||||
{
|
||||
GObject parent_instance;
|
||||
|
||||
GtkFileSystem *file_system;
|
||||
gchar *attributes;
|
||||
FileModelNode *roots;
|
||||
GtkFolder *root_folder;
|
||||
GFile *root_file;
|
||||
|
||||
GtkFileSystemModelFilter filter_func;
|
||||
gpointer filter_data;
|
||||
|
||||
GSList *idle_clears;
|
||||
GSource *idle_clear_source;
|
||||
|
||||
gushort max_depth;
|
||||
|
||||
GSList *pending_cancellables;
|
||||
|
||||
guint show_hidden : 1;
|
||||
guint show_folders : 1;
|
||||
guint show_files : 1;
|
||||
guint folders_only : 1;
|
||||
guint has_editable : 1;
|
||||
};
|
||||
|
||||
struct _FileModelNode
|
||||
{
|
||||
GFile *file;
|
||||
FileModelNode *next;
|
||||
|
||||
GFileInfo *info;
|
||||
GtkFolder *folder;
|
||||
|
||||
FileModelNode *children;
|
||||
FileModelNode *parent;
|
||||
GtkFileSystemModel *model;
|
||||
|
||||
guint ref_count;
|
||||
guint n_referenced_children;
|
||||
|
||||
gushort depth;
|
||||
|
||||
guint has_dummy : 1;
|
||||
guint is_dummy : 1;
|
||||
guint is_visible : 1;
|
||||
guint loaded : 1;
|
||||
guint idle_clear : 1;
|
||||
guint load_pending : 1;
|
||||
};
|
||||
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_FILE_CHOOSER_PRIVATE_H__ */
|
||||
|
||||
+1636
-1610
File diff suppressed because it is too large
Load Diff
+42
-29
@@ -21,7 +21,8 @@
|
||||
#ifndef __GTK_FILE_SYSTEM_MODEL_H__
|
||||
#define __GTK_FILE_SYSTEM_MODEL_H__
|
||||
|
||||
#include "gtkfilesystem.h"
|
||||
#include <gio/gio.h>
|
||||
#include <gtk/gtkfilefilter.h>
|
||||
#include <gtk/gtktreemodel.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
@@ -34,46 +35,58 @@ typedef struct _GtkFileSystemModel GtkFileSystemModel;
|
||||
|
||||
GType _gtk_file_system_model_get_type (void) G_GNUC_CONST;
|
||||
|
||||
typedef enum {
|
||||
GTK_FILE_SYSTEM_MODEL_INFO,
|
||||
GTK_FILE_SYSTEM_MODEL_DISPLAY_NAME,
|
||||
GTK_FILE_SYSTEM_MODEL_N_COLUMNS
|
||||
} GtkFileSystemModelColumns;
|
||||
typedef gboolean (*GtkFileSystemModelGetValue) (GtkFileSystemModel *model,
|
||||
GFile *file,
|
||||
GFileInfo *info,
|
||||
int column,
|
||||
GValue *value,
|
||||
gpointer user_data);
|
||||
|
||||
GtkFileSystemModel *_gtk_file_system_model_new (GtkFileSystem *file_system,
|
||||
GFile *root_file,
|
||||
gint max_depth,
|
||||
const gchar *attributes,
|
||||
GError **error);
|
||||
GtkFileSystemModel *_gtk_file_system_model_new (GtkFileSystemModelGetValue get_func,
|
||||
gpointer get_data,
|
||||
guint n_columns,
|
||||
...);
|
||||
GtkFileSystemModel *_gtk_file_system_model_new_for_directory(GFile * dir,
|
||||
const gchar * attributes,
|
||||
GtkFileSystemModelGetValue get_func,
|
||||
gpointer get_data,
|
||||
guint n_columns,
|
||||
...);
|
||||
GCancellable * _gtk_file_system_model_get_cancellable (GtkFileSystemModel *model);
|
||||
gboolean _gtk_file_system_model_iter_is_visible (GtkFileSystemModel *model,
|
||||
GtkTreeIter *iter);
|
||||
GFileInfo * _gtk_file_system_model_get_info (GtkFileSystemModel *model,
|
||||
GtkTreeIter *iter);
|
||||
gboolean _gtk_file_system_model_get_iter_for_file(GtkFileSystemModel *model,
|
||||
GtkTreeIter *iter,
|
||||
GFile *file);
|
||||
GFile * _gtk_file_system_model_get_file (GtkFileSystemModel *model,
|
||||
GtkTreeIter *iter);
|
||||
const GValue * _gtk_file_system_model_get_value (GtkFileSystemModel *model,
|
||||
GtkTreeIter * iter,
|
||||
int column);
|
||||
|
||||
void _gtk_file_system_model_add_and_query_file (GtkFileSystemModel *model,
|
||||
GFile *file,
|
||||
const char *attributes);
|
||||
void _gtk_file_system_model_update_file (GtkFileSystemModel *model,
|
||||
GFile *file,
|
||||
GFileInfo *info,
|
||||
gboolean requires_resort);
|
||||
|
||||
void _gtk_file_system_model_set_show_hidden (GtkFileSystemModel *model,
|
||||
gboolean show_hidden);
|
||||
void _gtk_file_system_model_set_show_folders (GtkFileSystemModel *model,
|
||||
gboolean show_folders);
|
||||
void _gtk_file_system_model_set_show_files (GtkFileSystemModel *model,
|
||||
gboolean show_files);
|
||||
void _gtk_file_system_model_freeze_updates (GtkFileSystemModel *model);
|
||||
void _gtk_file_system_model_thaw_updates (GtkFileSystemModel *model);
|
||||
void _gtk_file_system_model_clear_cache (GtkFileSystemModel *model,
|
||||
int column);
|
||||
|
||||
typedef gboolean (*GtkFileSystemModelFilter) (GtkFileSystemModel *model,
|
||||
GFile *file,
|
||||
GFileInfo *info,
|
||||
gpointer user_data);
|
||||
|
||||
void _gtk_file_system_model_set_filter (GtkFileSystemModel *model,
|
||||
GtkFileSystemModelFilter filter,
|
||||
gpointer user_data);
|
||||
|
||||
typedef void (*GtkFileSystemModelPathFunc) (GtkFileSystemModel *model,
|
||||
GtkTreePath *path,
|
||||
GtkTreeIter *iter,
|
||||
gpointer user_data);
|
||||
|
||||
void _gtk_file_system_model_path_do (GtkFileSystemModel *model,
|
||||
GFile *file,
|
||||
GtkFileSystemModelPathFunc func,
|
||||
gpointer user_data);
|
||||
void _gtk_file_system_model_set_filter (GtkFileSystemModel *model,
|
||||
GtkFileFilter *filter);
|
||||
|
||||
void _gtk_file_system_model_add_editable (GtkFileSystemModel *model,
|
||||
GtkTreeIter *iter);
|
||||
|
||||
@@ -5648,13 +5648,6 @@ gtk_window_compute_configure_request_size (GtkWindow *window,
|
||||
if (info->resize_height > 0)
|
||||
*height = info->resize_height;
|
||||
}
|
||||
|
||||
/* Don't ever request zero width or height, its not supported by
|
||||
gdk. The size allocation code will round it to 1 anyway but if
|
||||
we do it then the value returned from this function will is
|
||||
not comparable to the size allocation read from the GtkWindow. */
|
||||
*width = MAX (*width, 1);
|
||||
*height = MAX (*height, 1);
|
||||
}
|
||||
|
||||
static GtkWindowPosition
|
||||
|
||||
+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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties OE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2004-08-26 16:32-0600\n"
|
||||
"Last-Translator: James Johnson <modean52@comcast.net>\n"
|
||||
"Language-Team: Old English <modean52@comcast.net>\n"
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD.ar\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2008-09-18 02:19+0300\n"
|
||||
"Last-Translator: Anas Afif Emad <anas.e87@gmail.com>\n"
|
||||
"Language-Team: Arabic <doc@arabeyes.org>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: as\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-16 11:40+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: American English <>\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ast\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-01-25 13:10+0200\n"
|
||||
"Last-Translator: Esbardu <esguil@terra.es>\n"
|
||||
"Language-Team: Asturian <xspuente@gmail.com>\n"
|
||||
|
||||
+1
-1
@@ -32,7 +32,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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"
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2007-12-09 14:44+0200\n"
|
||||
"Last-Translator: Alaksandar Navicki <zolak@lacinka.org>\n"
|
||||
"Language-Team: i18n@mova.org <i18n@mova.org>\n"
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-22 19:04+0300\n"
|
||||
"Last-Translator: Alexander Shopov <ash@contact.bg>\n"
|
||||
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2006-09-03 15:50+0600\n"
|
||||
"Last-Translator: Khandakar Mujahidul Islam <suzan@bengalinux.org>\n"
|
||||
"Language-Team: Bangla <gnome-translation@BengaLinux.Org>\n"
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: bn_IN\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-16 16:05+0530\n"
|
||||
"Last-Translator: Runa Bhattacharjee <runab@redhat.com>\n"
|
||||
"Language-Team: Bengali INDIA <anubad@lists.ankur.org.in>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.3.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-01 01:16+0100\n"
|
||||
"Last-Translator: Denis\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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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"
|
||||
|
||||
+1
-1
@@ -26,7 +26,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.3.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-24 20:09+0200\n"
|
||||
"Last-Translator: David Planella <david.planella@gmail.com>\n"
|
||||
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
|
||||
|
||||
@@ -28,7 +28,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.gtk-2-16\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-10 08:39+0200\n"
|
||||
"Last-Translator: Carles Ferrando Garcia <carles.ferrando@gmail.com>\n"
|
||||
"Language-Team: catalan <tradgnome@softcatala.org>\n"
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-04-09 04:32-0500\n"
|
||||
"Last-Translator: Reşat SABIQ <tilde.birlik@gmail.com>\n"
|
||||
"Language-Team: Qırımtatarca (Qırım Türkçesi) <tilde-birlik-tercime@lists."
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-30 18:26+0200\n"
|
||||
"Last-Translator: Petr Kovar <pknbe@volny.cz>\n"
|
||||
"Language-Team: Czech <gnome-cs-list@gnome.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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2007-05-14 22:44-0000\n"
|
||||
"Last-Translator: Rhys Jones <rhys@sucs.org>\n"
|
||||
"Language-Team: Cymraeg <gnome-cy@pengwyn.linux.org.uk>\n"
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-13 02:50+0200\n"
|
||||
"Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n"
|
||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||
|
||||
+1
-1
@@ -16,7 +16,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GTK+ HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-16 12:11+0200\n"
|
||||
"Last-Translator: Christian Kirbach <Christian.Kirbach@googlemail.com>\n"
|
||||
"Language-Team: German <gnome-de@gnome.org>\n"
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD.dz\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2006-07-18 17:40+0530\n"
|
||||
"Last-Translator: Mindu Dorji\n"
|
||||
"Language-Team: DZONGKHA <pgeyleg@dit.gov.bt>\n"
|
||||
|
||||
+1
-1
@@ -26,7 +26,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-03-27 09:21+0200\n"
|
||||
"Last-Translator: Jennie Petoumenou <epetoumenou@gmail.com>\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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-08 20:06+0100\n"
|
||||
"Last-Translator: Philip Withnall <philip@tecnocode.co.uk>\n"
|
||||
"Language-Team: British English <en@li.org>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties 2.10\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2007-03-11 18:09+0100\n"
|
||||
"Last-Translator: Guillaume Savaton <llumeao@gmail.com>\n"
|
||||
"Language-Team: Eo-Tradukado <http://eo-tradukado.tuxfamily.org>\n"
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-22 12:10+0200\n"
|
||||
"Last-Translator: Jorge González <jorgegonz@svn.gnome.org>\n"
|
||||
"Language-Team: Español <gnome-es-list@gnome.org>\n"
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-22 21:37+0300\n"
|
||||
"Last-Translator: Ivar Smolin <okul@linux.ee>\n"
|
||||
"Language-Team: Estonian <gnome-et@linux.ee>\n"
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-26 10:14+0200\n"
|
||||
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
|
||||
"Language-Team: Basque <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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-27 22:12+0300\n"
|
||||
"Last-Translator: Tommi Vainikainen <thv@iki.fi>\n"
|
||||
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -18,7 +18,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+_properties HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-01 09:38+0200\n"
|
||||
"Last-Translator: Bruno Brouard <annoa.b@gmail.com>\n"
|
||||
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-08 02:22-0600\n"
|
||||
"Last-Translator: Seán de Búrca <leftmostcat@gmail.com>\n"
|
||||
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-19 14:04+0200\n"
|
||||
"Last-Translator: Antón Méixome <meixome@mancomun.org>\n"
|
||||
"Language-Team: Galician <gnome@mancomun.org>\n"
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.master.gu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-16 10:49+0530\n"
|
||||
"Last-Translator: Sweta Kothari <swkothar@redhat.com>\n"
|
||||
"Language-Team: Gujarati\n"
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.HEAD.he\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-01 13:48+0200\n"
|
||||
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
|
||||
"Language-Team: Hebrew <he@li.org>\n"
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-26 11:47+0530\n"
|
||||
"Last-Translator: Rajesh Ranjan <rajesh672@gmail.com>\n"
|
||||
"Language-Team: Hindi <hindi.sf.net>\n"
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties 0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2008-05-08 00:47+0000\n"
|
||||
"Last-Translator: Robert Sedak <Unknown>\n"
|
||||
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-03 02:47+0200\n"
|
||||
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
|
||||
"Language-Team: Hungarian <gnome at fsf dot hu>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+.HEAD.hy\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2005-07-19 17:50+0500\n"
|
||||
"Last-Translator: Norayr Chilingaryan\n"
|
||||
"Language-Team: <norik@freenet.am>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 1.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2006-03-24 15:19+0700\n"
|
||||
"Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"
|
||||
"Language-Team: Indonesia <kontak@id.gnome.org>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.12.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2007-09-18 19:25-0500\n"
|
||||
"Last-Translator: Michael Terry <mike@mterry.name>\n"
|
||||
"Language-Team: Ido <gnome-ido@lists.mterry.name>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk 2.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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
@@ -34,7 +34,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-21 22:41+0200\n"
|
||||
"Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-06 18:05+0900\n"
|
||||
"Last-Translator: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>\n"
|
||||
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ka\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2008-03-19 16:31+0100\n"
|
||||
"Last-Translator: Vladimer Sichinava ვლადიმერ სიჭინავა <vsichi@gnome.org>\n"
|
||||
"Language-Team: Georgian <http://mail.gnome.org/mailman/listinfo/gnome-ge-"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.master.kn\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-30 21:46+0530\n"
|
||||
"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
|
||||
"Language-Team: Kannada <en@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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-23 01:32+0900\n"
|
||||
"Last-Translator: Eunju Kim <eukim@redhat.com>\n"
|
||||
"Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ku\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2006-01-16 19:14+0100\n"
|
||||
"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
|
||||
"Language-Team: Kurdish <ku@li.org>\n"
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: lt\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-10 13:45+0300\n"
|
||||
"Last-Translator: Gintautas Miliauskas <gintautas@miliauskas.lt>\n"
|
||||
"Language-Team: Lithuanian <gnome-lt@lists.akl.lt>\n"
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-02-19 09:32+0200\n"
|
||||
"Last-Translator: Raivis Dejus <orvils@gmail.com>\n"
|
||||
"Language-Team: Latvian <locale@laka.lv>\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.master.mai\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-20 12:21+0530\n"
|
||||
"Last-Translator: Rajesh Ranjan <rajesh672@gmail.com>\n"
|
||||
"Language-Team: Hindi <hindi.sf.net>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2007-09-11 09:40+0200\n"
|
||||
"Last-Translator: Arangel Angov <arangel@linux.net.mk>\n"
|
||||
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.master.ml\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-24 14:19+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: <en@li.org>\n"
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mr\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-16 10:31+0530\n"
|
||||
"Last-Translator: Sandeep Shedmake <sshedmak@redhat.com>\n"
|
||||
"Language-Team: Marathi <fedora-trans-mr@redhat.com>\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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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: gtk+ properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-21 11:58+0200\n"
|
||||
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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
@@ -32,7 +32,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-04-19 23:12+0800\n"
|
||||
"Last-Translator: Tino Meinen <tino.meinen@gmail.com>\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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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"
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties 2.8-branch\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: oc\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2008-07-03 09:06+0200\n"
|
||||
"Last-Translator: Yannig Marchegay (Kokoyaya) <yannig@marchegay.org>\n"
|
||||
"Language-Team: Occitan <ubuntu-l10n-oci@lists.ubuntu.com>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.master.or\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-17 22:14+0530\n"
|
||||
"Last-Translator: Manoj Kumar Giri <mgiri@redhat.com>\n"
|
||||
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-22 07:33+0530\n"
|
||||
"Last-Translator: A S Alam <aalam@users.sf.net>\n"
|
||||
"Language-Team: Punjabi/Panjabi <punjabi-users@lists.sf.net>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-31 14:33+0200\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Polish <gnomepl@aviary.pl>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNOME\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-04-12 14:54-0800\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Pashto <pakhtosoft@gmail.com>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.28\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-23 23:30+0000\n"
|
||||
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
|
||||
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
|
||||
|
||||
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-03-05 00:55-0300\n"
|
||||
"Last-Translator: Leonardo Ferreira Fontenelle <leonardof@gnome.org>\n"
|
||||
"Language-Team: Brazilian Portuguese <gnome-pt_br-list@gnome.org\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-18 22:33+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.gtk-2-8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2006-08-15 19:52+0200\n"
|
||||
"Last-Translator: Nickolay V. Shmyrev <nshmyrev@yandex.ru>\n"
|
||||
"Language-Team: Russian <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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: si\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2008-02-12 15:03+0530\n"
|
||||
"Last-Translator: Danishka Navin <danishka@gmail.com>\n"
|
||||
"Language-Team: Sinhala <en@li.org>\n"
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2008-09-19 15:04+0200\n"
|
||||
"Last-Translator: Pavol Šimo <palo.simo@gmail.com>\n"
|
||||
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GTK+ 1.4.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-09-14 12:01+0100\n"
|
||||
"Last-Translator: Matej Urbančič <mateju@svn.gnome.org>\n"
|
||||
"Language-Team: slovenian <sl@li.org>\n"
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2008-08-19 10:51+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: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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"
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.6\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-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"
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-23 20:08+0100\n"
|
||||
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
|
||||
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.master.ta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-25 13:16+0530\n"
|
||||
"Last-Translator: I. Felix <ifelix@redhat.com>\n"
|
||||
"Language-Team: Tamil <fedora-trans-ta@redhat.com>\n"
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties.master.te\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-08-31 19:24+0530\n"
|
||||
"Last-Translator: Krishna Babu K <kkrothap@redhat.com>\n"
|
||||
"Language-Team: Telugu <en@li.org>\n"
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2008-09-09 00:25+0700\n"
|
||||
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
|
||||
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2004-05-25 17:46+0330\n"
|
||||
"Last-Translator: Gurban Mühemmet Tewekgeli <gmtavakkoli@yahoo.com>\n"
|
||||
"Language-Team: Turkmen <kakilikgroup@yahoo.com>\n"
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+-properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-02-16 19:01+0200\n"
|
||||
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
|
||||
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ properties\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2005-11-09 14:22+0300\n"
|
||||
"Last-Translator: Albert Fazlí <tatarish.l10n@gmail.com>\n"
|
||||
"Language-Team: Tatarish <tatarish.l10n@gmail.com>\n"
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: gtk+ 2.4.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-10-05 17:17-0400\n"
|
||||
"POT-Creation-Date: 2009-09-30 17:31-0400\n"
|
||||
"PO-Revision-Date: 2009-07-09 15:39+0300\n"
|
||||
"Last-Translator: Wanderlust <wanderlust@ukr.net>\n"
|
||||
"Language-Team: ukrainian <Ukrainian <uk@li.org>>\n"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user