Added AtkMisc class, uprev for gnome-2.17.5, and release. ATK_1_13_0
authorBill Haneman <billh@src.gnome.org>
Mon, 8 Jan 2007 14:47:50 +0000 (14:47 +0000)
committerBill Haneman <billh@src.gnome.org>
Mon, 8 Jan 2007 14:47:50 +0000 (14:47 +0000)
svn path=/trunk/; revision=1130

89 files changed:
ChangeLog
atk/Makefile.am
atk/atkmisc.c [new file with mode: 0755]
atk/atkmisc.h [new file with mode: 0755]
docs/atk-sections.txt
docs/tmpl/atkhyperlinkimpl.sgml
po/af.po
po/am.po
po/ar.po
po/as.po
po/az.po
po/be.po
po/bg.po
po/bn.po
po/bn_IN.po
po/bs.po
po/ca.po
po/cs.po
po/cy.po
po/da.po
po/de.po
po/dz.po
po/el.po
po/en_CA.po
po/en_GB.po
po/eo.po
po/es.po
po/et.po
po/eu.po
po/fa.po
po/fi.po
po/fr.po
po/ga.po
po/gl.po
po/gu.po
po/he.po
po/hi.po
po/hr.po
po/hu.po
po/id.po
po/is.po
po/it.po
po/ja.po
po/ka.po
po/kn.po
po/ko.po
po/ku.po
po/li.po
po/lt.po
po/lv.po
po/mk.po
po/ml.po
po/mn.po
po/mr.po
po/ms.po
po/nb.po
po/ne.po
po/nl.po
po/nn.po
po/or.po
po/pa.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/ru.po
po/rw.po
po/sk.po
po/sl.po
po/sq.po
po/sr.po
po/sr@Latn.po
po/sr@ije.po
po/sv.po
po/ta.po
po/te.po
po/th.po
po/tk.po
po/tr.po
po/tt.po
po/ug.po
po/uk.po
po/vi.po
po/wa.po
po/xh.po
po/yi.po
po/zh_CN.po
po/zh_HK.po
po/zh_TW.po

index e437b83..b0a0f9f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2006-01-08  Bill Haneman <bill.haneman@sun.com>
+
+       * configure.in: Revved to 1.13.0, since new API
+       has been added for gnome 2.17.5.  (ATK is
+       now API frozen for gnome 2.18.)
+
+       * atk/atkmisc.[ch]: New class which provides
+       miscellaneous utilities including
+       (atk_misc_threads_enter, atk_misc_thread_leave): New, 
+       see bug #329454.
+
+       * docs/tmpl/atkmisc.sgml:
+       Docs for AtkMisc.
+       
+       * docs/tmpl/atkhyperlinkimpl.sgml: Added minimal
+       doc for AtkHyperlinkImpl struct.
+       
 2006-12-05  Li Yuan <li.yuan@sun.com>
 
        * configure.in, NEWS:
index 648f3e6..43dbed5 100644 (file)
@@ -44,6 +44,7 @@ libatk_1_0_la_SOURCES =       \
        atktable.c              \
        atktext.c               \
        atkutil.c               \
+       atkmisc.c               \
        atkvalue.c              \
        atk-enum-types.c
 
@@ -75,6 +76,7 @@ atk_headers = \
         atktable.h             \
         atktext.h              \
         atkutil.h              \
+        atkmisc.h              \
         atkvalue.h
 
 libatkinclude_HEADERS =                \
diff --git a/atk/atkmisc.c b/atk/atkmisc.c
new file mode 100755 (executable)
index 0000000..75af04f
--- /dev/null
@@ -0,0 +1,122 @@
+/* ATK -  Accessibility Toolkit
+ * Copyright 2007 Sun Microsystems Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include "atkmisc.h"
+
+static void atk_misc_class_init (AtkMiscClass *klass);
+
+GType
+atk_misc_get_type (void)
+{
+  static GType type = 0;
+
+  if (!type)
+    {
+      static const GTypeInfo typeInfo =
+      {
+        sizeof (AtkMiscClass),
+        (GBaseInitFunc) NULL,
+        (GBaseFinalizeFunc) NULL,
+        (GClassInitFunc) atk_misc_class_init,
+        (GClassFinalizeFunc) NULL,
+        NULL,
+        sizeof (AtkMisc),
+        0,
+        (GInstanceInitFunc) NULL,
+      } ;
+      type = g_type_register_static (G_TYPE_OBJECT, "AtkMisc", &typeInfo, 0) ;
+    }
+  return type;
+}
+
+static void
+atk_misc_class_init (AtkMiscClass *klass)
+{
+  klass->threads_enter = NULL;
+  klass->threads_leave = NULL;
+}
+
+/**
+ * atk_misc_threads_enter:
+ * @misc: an AtkMisc instance for this application. 
+ *
+ * Take the thread mutex for the GUI toolkit, 
+ * if one exists. 
+ * (This method is implemented by the toolkit ATK implementation layer;
+ *  for instance, for GTK+, GAIL implements this via GDK_THREADS_ENTER).
+ *
+ * Since: ATK 1.13
+ *
+ **/
+void
+atk_misc_threads_enter (AtkMisc *misc)
+{
+  AtkMiscClass *klass = g_type_class_ref (ATK_TYPE_MISC);
+  if (klass->threads_enter)
+    {
+      klass->threads_enter (misc);
+    }
+  g_type_class_unref (klass);
+}
+
+/**
+ * atk_misc_threads_leave:
+ * @misc: an AtkMisc instance for this application. 
+ *
+ * Release the thread mutex for the GUI toolkit, 
+ * if one exists. This method, and atk_misc_threads_enter, 
+ * are needed in some situations by threaded application code which 
+ * services ATK requests, since fulfilling ATK requests often
+ * requires calling into the GUI toolkit.  If a long-running or
+ * potentially blocking call takes place inside such a block, it should
+ * be bracketed by atk_misc_threads_leave/atk_misc_threads_enter calls.
+ * (This method is implemented by the toolkit ATK implementation layer;
+ *  for instance, for GTK+, GAIL implements this via GDK_THREADS_LEAVE).
+ *
+ * Since: ATK 1.13
+ *
+ **/
+void
+atk_misc_threads_leave (AtkMisc *misc)
+{
+  AtkMiscClass *klass = g_type_class_ref (ATK_TYPE_MISC);
+  if (klass->threads_leave)
+    {
+      klass->threads_leave (misc);
+    }
+  g_type_class_unref (klass);
+}
+
+AtkMisc *atk_misc_instance = NULL;
+
+/**
+ * atk_misc_get_instance:
+ *
+ * Obtain the singleton instance of AtkMisc for this application.
+ * 
+ * Since: ATK 1.13
+ *
+ * Returns: The singleton instance of AtkMisc for this application.
+ *
+ **/
+const AtkMisc *
+atk_misc_get_instance (void)
+{
+  return atk_misc_instance;
+}
diff --git a/atk/atkmisc.h b/atk/atkmisc.h
new file mode 100755 (executable)
index 0000000..6e22a19
--- /dev/null
@@ -0,0 +1,90 @@
+/* ATK -  Accessibility Toolkit
+ * Copyright 2007 Sun Microsystems Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __ATK_UTIL_H__
+#define __ATK_UTIL_H__
+
+#include <glib-object.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+#define ATK_TYPE_MISC                   (atk_misc_get_type ())
+#define ATK_IS_MISC(obj)                G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_MISC)
+#define ATK_MISC(obj)                   G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_MISC, AtkMisc)
+#define ATK_MISC_CLASS(klass)                   (G_TYPE_CHECK_CLASS_CAST ((klass), ATK_TYPE_MISC, AtkMiscClass))
+#define ATK_IS_MISC_CLASS(klass)                (G_TYPE_CHECK_CLASS_TYPE ((klass), ATK_TYPE_MISC))
+#define ATK_MISC_GET_CLASS(obj)                 (G_TYPE_INSTANCE_GET_CLASS ((obj), ATK_TYPE_MISC, AtkMiscClass))
+
+
+#ifndef _TYPEDEF_ATK_MISC_
+#define _TYPEDEF_ATK_MISC_
+typedef struct _AtkMisc      AtkMisc;
+typedef struct _AtkMiscClass AtkMiscClass;
+#endif
+
+struct _AtkMisc
+{
+  GObject parent;
+};
+
+/*
+ * Singleton instance - only the ATK implementation layer for
+ * a given GUI toolkit/application instance should touch this
+ * symbol directly.
+ */
+extern AtkMisc *atk_misc_instance;
+
+struct _AtkMiscClass
+{
+   GObjectClass parent;
+   void   (* threads_enter)                     (AtkMisc *misc);
+   void   (* threads_leave)                     (AtkMisc *misc);
+   gpointer vfuncs[32]; /* future bincompat */
+};
+GType atk_util_get_type (void);
+
+/*
+ * Wrapper for thread lock, i.e. take the thread mutex for the GUI toolkit, 
+ * if one exists.  
+ * (This method is implemented by the toolkit ATK implementation layer;
+ *  for instance, for GTK+, GAIL implements this via GDK_THREADS_ENTER).
+ */
+void     atk_misc_threads_enter  (AtkMisc *misc);
+
+/*
+ * Wrapper for thread lock, i.e. release the thread mutex for the GUI toolkit, 
+ * if one exists.  
+ * (This method is implemented by the toolkit ATK implementation layer;
+ *  for instance, for GTK+, GAIL implements this via GDK_THREADS_LEAVE).
+ */
+void     atk_misc_threads_leave  (AtkMisc *misc);
+
+/*
+ * Obtain (singleton) instance of AtkMisc.
+ */
+const AtkMisc *atk_misc_get_instance (void);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+
+#endif /* __ATK_MISC_H__ */
index 2c187ff..902458e 100644 (file)
@@ -562,6 +562,23 @@ AtkUtilClass
 </SECTION>
 
 <SECTION>
+<FILE>atkmisc</FILE>
+<TITLE>AtkMisc</TITLE>
+AtkMisc
+atk_misc_threads_enter
+atk_misc_threads_leave
+atk_misc_get_instance
+<SUBSECTION Standard>
+ATK_MISC
+ATK_IS_MISC
+ATK_TYPE_MISC
+ATK_MISC_CLASS
+ATK_IS_MISC_CLASS
+ATK_MISC_GET_CLASS
+AtkMiscClass
+</SECTION>
+
+<SECTION>
 <FILE>atkgobjectaccessible</FILE>
 <TITLE>AtkGObjectAccessible</TITLE>
 AtkGObjectAccessible
index 1709425..c220304 100644 (file)
@@ -33,7 +33,11 @@ followed by AtkHyperlink:getObject.
 
 <!-- ##### STRUCT AtkHyperlinkImpl ##### -->
 <para>
-
+A queryable interface which allows AtkHyperlink instances associated with an 
+AtkObject to be obtained.  AtkHyperlinkImpl corresponds to AT-SPI's 
+Hyperlink interface, and differs from AtkHyperlink in that AtkHyperlink 
+is an object type, rather than an interface, and thus cannot be directly 
+queried.
 </para>
 
 
index 5a78ad4..f14d025 100644 (file)
--- a/po/af.po
+++ b/po/af.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk cvs\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2002-12-05 16:08+0100\n"
 "Last-Translator: Stefan Lubbersen <servine_lauvi@hotmail.com>\n"
 "Language-Team: Afrikaans <servine_lauvi@hotmail.com>\n"
index df5fc08..5d182db 100644 (file)
--- a/po/am.po
+++ b/po/am.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2003-01-08 07:44+EDT\n"
 "Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n"
 "Language-Team: Amharic <locales@geez.org>\n"
index 358823e..18ef0ef 100644 (file)
--- a/po/ar.po
+++ b/po/ar.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.ar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-23 07:06+0200\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-11-12 03:05+0100\n"
 "Last-Translator: Djihed Afifi <djihed@gmail.com>\n"
 "Language-Team: Arabeyes <doc@arabeyes.org>\n"
@@ -21,496 +21,499 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Poedit-Language: Arabic\n"
 
-#: ../atk/atkhyperlink.c:103
+#: atk/atkhyperlink.c:103
 msgid "Selected Link"
 msgstr "الوصلة المنتقات"
 
-#: ../atk/atkhyperlink.c:104
+#: atk/atkhyperlink.c:104
 msgid "Specifies whether the AtkHyperlink object is selected"
 msgstr "يحدد فيما اذا وجب انتقاء جسم AtkHyperlink"
 
-#: ../atk/atkhyperlink.c:110
+#: atk/atkhyperlink.c:110
 msgid "Number of Anchors"
 msgstr "عدد المثبتات"
 
-#: ../atk/atkhyperlink.c:111
+#: atk/atkhyperlink.c:111
 msgid "The number of anchors associated with the AtkHyperlink object"
 msgstr "عدد المثبتات المربوطة بجسم AtkHyperlink"
 
-#: ../atk/atkhyperlink.c:119
+#: atk/atkhyperlink.c:119
 msgid "End index"
 msgstr "الفهرس النهائي"
 
-#: ../atk/atkhyperlink.c:120
+#: atk/atkhyperlink.c:120
 msgid "The end index of the AtkHyperlink object"
 msgstr "مؤشر النهاية لجسم AtkHyperlink"
 
-#: ../atk/atkhyperlink.c:128
+#: atk/atkhyperlink.c:128
 msgid "Start index"
 msgstr "الفهرس البدائي"
 
-#: ../atk/atkhyperlink.c:129
+#: atk/atkhyperlink.c:129
 msgid "The start index of the AtkHyperlink object"
 msgstr "مؤشر البداية لجسم AtkHyperlink"
 
-#: ../atk/atkobject.c:82
+#: atk/atkobject.c:82
 msgid "invalid"
 msgstr "غير صالح"
 
-#: ../atk/atkobject.c:83
+#: atk/atkobject.c:83
 msgid "accelerator label"
 msgstr "شارة الاختصار"
 
-#: ../atk/atkobject.c:84
+#: atk/atkobject.c:84
 msgid "alert"
 msgstr "تنبيه"
 
-#: ../atk/atkobject.c:85
+#: atk/atkobject.c:85
 msgid "animation"
 msgstr "رسوم متحركة"
 
-#: ../atk/atkobject.c:86
+#: atk/atkobject.c:86
 msgid "arrow"
 msgstr "سهم"
 
-#: ../atk/atkobject.c:87
+#: atk/atkobject.c:87
 msgid "calendar"
 msgstr "رزنامة"
 
-#: ../atk/atkobject.c:88
+#: atk/atkobject.c:88
 msgid "canvas"
 msgstr "مساحة رسم"
 
-#: ../atk/atkobject.c:89
+#: atk/atkobject.c:89
 msgid "check box"
 msgstr "صندوق ضبط"
 
-#: ../atk/atkobject.c:90
+#: atk/atkobject.c:90
 msgid "check menu item"
 msgstr "ضبط عنصر القائمة"
 
-#: ../atk/atkobject.c:91
+#: atk/atkobject.c:91
 msgid "color chooser"
 msgstr "مختار الألوان"
 
-#: ../atk/atkobject.c:92
+#: atk/atkobject.c:92
 msgid "column header"
 msgstr "ترويسة العمود"
 
-#: ../atk/atkobject.c:93
+#: atk/atkobject.c:93
 msgid "combo box"
 msgstr "صندوق مجموعة"
 
-#: ../atk/atkobject.c:94
+#: atk/atkobject.c:94
 msgid "dateeditor"
 msgstr "محرر التاريخ"
 
-#: ../atk/atkobject.c:95
+#: atk/atkobject.c:95
 msgid "desktop icon"
 msgstr "أيقونة المكتب"
 
-#: ../atk/atkobject.c:96
+#: atk/atkobject.c:96
 msgid "desktop frame"
 msgstr "إطار المكتب"
 
-#: ../atk/atkobject.c:97
+#: atk/atkobject.c:97
 msgid "dial"
 msgstr "اتصال"
 
-#: ../atk/atkobject.c:98
+#: atk/atkobject.c:98
 msgid "dialog"
 msgstr "حوار"
 
-#: ../atk/atkobject.c:99
+#: atk/atkobject.c:99
 msgid "directory pane"
 msgstr "شباك الدلائل"
 
-#: ../atk/atkobject.c:100
+#: atk/atkobject.c:100
 msgid "drawing area"
 msgstr "مساحة الرسم"
 
-#: ../atk/atkobject.c:101
+#: atk/atkobject.c:101
 msgid "file chooser"
 msgstr "مختار الملفات"
 
-#: ../atk/atkobject.c:102
+#: atk/atkobject.c:102
 msgid "filler"
 msgstr "مملئ"
 
 #. I know it looks wrong but that is what Java returns
-#: ../atk/atkobject.c:104
+#: atk/atkobject.c:104
 msgid "fontchooser"
 msgstr "مختار الخطوط"
 
-#: ../atk/atkobject.c:105
+#: atk/atkobject.c:105
 msgid "frame"
 msgstr "إطار"
 
-#: ../atk/atkobject.c:106
+#: atk/atkobject.c:106
 msgid "glass pane"
 msgstr "شباك بلوري"
 
-#: ../atk/atkobject.c:107
+#: atk/atkobject.c:107
 msgid "html container"
 msgstr "حاوي html"
 
-#: ../atk/atkobject.c:108
+#: atk/atkobject.c:108
 msgid "icon"
 msgstr "أيقونة"
 
-#: ../atk/atkobject.c:109
+#: atk/atkobject.c:109
 msgid "image"
 msgstr "صورة"
 
-#: ../atk/atkobject.c:110
+#: atk/atkobject.c:110
 msgid "internal frame"
 msgstr "إطار داخلي"
 
-#: ../atk/atkobject.c:111
+#: atk/atkobject.c:111
 msgid "label"
 msgstr "شارة"
 
-#: ../atk/atkobject.c:112
+#: atk/atkobject.c:112
 msgid "layered pane"
 msgstr "شباك ذي مستويات"
 
-#: ../atk/atkobject.c:113
+#: atk/atkobject.c:113
 msgid "list"
 msgstr "قائمة"
 
-#: ../atk/atkobject.c:114
+#: atk/atkobject.c:114
 msgid "list item"
 msgstr "عنصر قائمة"
 
-#: ../atk/atkobject.c:115
+#: atk/atkobject.c:115
 msgid "menu"
 msgstr "قائمة"
 
-#: ../atk/atkobject.c:116
+#: atk/atkobject.c:116
 msgid "menu bar"
 msgstr "عمود قائمة"
 
-#: ../atk/atkobject.c:117
+#: atk/atkobject.c:117
 msgid "menu item"
 msgstr "عنصر قائمة"
 
-#: ../atk/atkobject.c:118
+#: atk/atkobject.c:118
 msgid "option pane"
 msgstr "شباك الخيارات"
 
-#: ../atk/atkobject.c:119
+#: atk/atkobject.c:119
 msgid "page tab"
 msgstr "لسان الصفحة"
 
-#: ../atk/atkobject.c:120
+#: atk/atkobject.c:120
 msgid "page tab list"
 msgstr "قائمة ألسنة الصفحات"
 
-#: ../atk/atkobject.c:121
+#: atk/atkobject.c:121
 msgid "panel"
 msgstr "شريط"
 
-#: ../atk/atkobject.c:122
+#: atk/atkobject.c:122
 msgid "password text"
 msgstr "نص كلمة السر"
 
-#: ../atk/atkobject.c:123
+#: atk/atkobject.c:123
 msgid "popup menu"
 msgstr "قائمة بارزة"
 
-#: ../atk/atkobject.c:124
+#: atk/atkobject.c:124
 msgid "progress bar"
 msgstr "عمود التقدم"
 
-#: ../atk/atkobject.c:125
+#: atk/atkobject.c:125
 msgid "push button"
 msgstr "زر الضغط"
 
-#: ../atk/atkobject.c:126
+#: atk/atkobject.c:126
 msgid "radio button"
 msgstr "زر مشع"
 
-#: ../atk/atkobject.c:127
+#: atk/atkobject.c:127
 msgid "radio menu item"
 msgstr "عنصر قائمة مشع"
 
-#: ../atk/atkobject.c:128
+#: atk/atkobject.c:128
 msgid "root pane"
 msgstr "شباك الجذر"
 
-#: ../atk/atkobject.c:129
+#: atk/atkobject.c:129
 msgid "row header"
 msgstr "ترويسة السطر"
 
-#: ../atk/atkobject.c:130
+#: atk/atkobject.c:130
 msgid "scroll bar"
 msgstr "عمود اللف"
 
-#: ../atk/atkobject.c:131
+#: atk/atkobject.c:131
 msgid "scroll pane"
 msgstr "شباك اللف"
 
-#: ../atk/atkobject.c:132
+#: atk/atkobject.c:132
 msgid "separator"
 msgstr "فاصل"
 
-#: ../atk/atkobject.c:133
+#: atk/atkobject.c:133
 msgid "slider"
 msgstr "مزلق"
 
-#: ../atk/atkobject.c:134
+#: atk/atkobject.c:134
 msgid "split pane"
 msgstr "شباك الإنقسام"
 
-#: ../atk/atkobject.c:135
+#: atk/atkobject.c:135
 msgid "spin button"
 msgstr "زر تدوير"
 
-#: ../atk/atkobject.c:136
+#: atk/atkobject.c:136
 msgid "statusbar"
 msgstr "عمود الحالة"
 
-#: ../atk/atkobject.c:137
+#: atk/atkobject.c:137
 msgid "table"
 msgstr "جدول"
 
-#: ../atk/atkobject.c:138
+#: atk/atkobject.c:138
 msgid "table cell"
 msgstr "خلية الجدول"
 
-#: ../atk/atkobject.c:139
+#: atk/atkobject.c:139
 msgid "table column header"
 msgstr "ترويسة عمود الجدول"
 
-#: ../atk/atkobject.c:140
+#: atk/atkobject.c:140
 msgid "table row header"
 msgstr "ترويسة سطر الجدول"
 
-#: ../atk/atkobject.c:141
+#: atk/atkobject.c:141
 msgid "tear off menu item"
 msgstr "قلع عنصر القائمة"
 
-#: ../atk/atkobject.c:142
+#: atk/atkobject.c:142
 msgid "terminal"
 msgstr "شاشة طرفية"
 
-#: ../atk/atkobject.c:143
+#: atk/atkobject.c:143
 msgid "text"
 msgstr "نص"
 
-#: ../atk/atkobject.c:144
+#: atk/atkobject.c:144
 msgid "toggle button"
 msgstr "زر التحول"
 
-#: ../atk/atkobject.c:145
+#: atk/atkobject.c:145
 msgid "tool bar"
 msgstr "عمود الأدوات"
 
-#: ../atk/atkobject.c:146
+#: atk/atkobject.c:146
 msgid "tool tip"
 msgstr "تلميحة عن اﻷدوات"
 
-#: ../atk/atkobject.c:147
+#: atk/atkobject.c:147
 msgid "tree"
 msgstr "شجرة"
 
-#: ../atk/atkobject.c:148
+#: atk/atkobject.c:148
 msgid "tree table"
 msgstr "جدول شجرة"
 
-#: ../atk/atkobject.c:149
+#: atk/atkobject.c:149
 msgid "unknown"
 msgstr "مجهول"
 
-#: ../atk/atkobject.c:150
+#: atk/atkobject.c:150
 msgid "viewport"
 msgstr "منفذ عرض"
 
-#: ../atk/atkobject.c:151
+#: atk/atkobject.c:151
 msgid "window"
 msgstr "نافذة"
 
-#: ../atk/atkobject.c:152
+#: atk/atkobject.c:152
 msgid "header"
 msgstr "ترويسة"
 
-#: ../atk/atkobject.c:153
+#: atk/atkobject.c:153
 msgid "footer"
 msgstr "هامش"
 
-#: ../atk/atkobject.c:154
+#: atk/atkobject.c:154
 msgid "paragraph"
 msgstr "فقرة"
 
-#: ../atk/atkobject.c:155
+#: atk/atkobject.c:155
 msgid "application"
 msgstr "تطبيق"
 
-#: ../atk/atkobject.c:156
+#: atk/atkobject.c:156
 msgid "autocomplete"
 msgstr "إنهاء آلي"
 
-#: ../atk/atkobject.c:157
+#: atk/atkobject.c:157
 msgid "edit bar"
 msgstr "تحرير العمود"
 
-#: ../atk/atkobject.c:158
+#: atk/atkobject.c:158
 msgid "embedded component"
 msgstr "مكوّن مضمّن"
 
-#: ../atk/atkobject.c:159
+#: atk/atkobject.c:159
 msgid "entry"
 msgstr "خانة"
 
-#: ../atk/atkobject.c:160
+#: atk/atkobject.c:160
 msgid "chart"
 msgstr "شكل"
 
-#: ../atk/atkobject.c:161
+#: atk/atkobject.c:161
 msgid "caption"
 msgstr "عنوان"
 
-#: ../atk/atkobject.c:162
+#: atk/atkobject.c:162
 msgid "document frame"
 msgstr "إطار المستند"
 
-#: ../atk/atkobject.c:163
+#: atk/atkobject.c:163
 msgid "heading"
 msgstr "ترويس"
 
-#: ../atk/atkobject.c:164
+#: atk/atkobject.c:164
 msgid "page"
 msgstr "صفحة"
 
-#: ../atk/atkobject.c:165
+#: atk/atkobject.c:165
 msgid "section"
 msgstr "فصل"
 
-#: ../atk/atkobject.c:166
+#: atk/atkobject.c:166
 msgid "redundant object"
 msgstr "جسم فائض"
 
-#: ../atk/atkobject.c:167
+#: atk/atkobject.c:167
 msgid "form"
 msgstr "استمارة"
 
-#: ../atk/atkobject.c:356
+#: atk/atkobject.c:356
 msgid "Accessible Name"
 msgstr "اسم ممكن النفاذ إليه"
 
-#: ../atk/atkobject.c:357
+#: atk/atkobject.c:357
 msgid "Object instance's name formatted for assistive technology access"
 msgstr "اسم نموذج الجسم المهيئ للاستخدام من قبل التكنولوجيا المعينة"
 
-#: ../atk/atkobject.c:363
+#: atk/atkobject.c:363
 msgid "Accessible Description"
 msgstr "وصف ممكن النفاذ إليه"
 
-#: ../atk/atkobject.c:364
+#: atk/atkobject.c:364
 msgid "Description of an object, formatted for assistive technology access"
 msgstr "وصف جسم، مهيئ للنفاذ عبره إلى تكنولوجيا مساعدة المعوقين"
 
-#: ../atk/atkobject.c:370
+#: atk/atkobject.c:370
 msgid "Accessible Parent"
 msgstr "أب يمكن النفاذ إليه"
 
-#: ../atk/atkobject.c:371
+#: atk/atkobject.c:371
 msgid "Is used to notify that the parent has changed"
 msgstr "مستخدم للتبليغ عن تغير الأب"
 
-#: ../atk/atkobject.c:377
+#: atk/atkobject.c:377
 msgid "Accessible Value"
 msgstr "قيمة يمكن النفاذ إليها"
 
-#: ../atk/atkobject.c:378
+#: atk/atkobject.c:378
 msgid "Is used to notify that the value has changed"
 msgstr "مستخدم للتبليغ عن تغير القيمة"
 
-#: ../atk/atkobject.c:386
+#: atk/atkobject.c:386
 msgid "Accessible Role"
 msgstr "دور ميسر"
 
-#: ../atk/atkobject.c:387
+#: atk/atkobject.c:387
 msgid "The accessible role of this object"
 msgstr "الدور الميسر لهذا الجسم"
 
-#: ../atk/atkobject.c:395
+#: atk/atkobject.c:395
 msgid "Accessible Layer"
 msgstr "طبقة ميسرة"
 
-#: ../atk/atkobject.c:396
+#: atk/atkobject.c:396
 msgid "The accessible layer of this object"
 msgstr "الطبقة الميسرة لهذا الجسم"
 
-#: ../atk/atkobject.c:404
+#: atk/atkobject.c:404
 msgid "Accessible MDI Value"
 msgstr "قيمة MDI الميسرة"
 
-#: ../atk/atkobject.c:405
+#: atk/atkobject.c:405
 msgid "The accessible MDI value of this object"
 msgstr "قيمة MDI الميسرة لهذا الجسم"
 
-#: ../atk/atkobject.c:413
+#: atk/atkobject.c:413
 msgid "Accessible Table Caption"
 msgstr "العنوان الفرعي للجدول الداعم للاعانة"
 
-#: ../atk/atkobject.c:414
-msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead"
-msgstr "مستخدم للتبليغ عن تغيير العنوان الفرعي للجدول،من المفروض عدم استخدامهذه الخاصية. من المفروض استخدام accessible-table-caption-object عوضا عنها."
+#: atk/atkobject.c:414
+msgid ""
+"Is used to notify that the table caption has changed; this property should "
+"not be used. accessible-table-caption-object should be used instead"
+msgstr ""
+"مستخدم للتبليغ عن تغيير العنوان الفرعي للجدول،من المفروض عدم استخدامهذه "
+"الخاصية. من المفروض استخدام accessible-table-caption-object عوضا عنها."
 
-#: ../atk/atkobject.c:420
+#: atk/atkobject.c:420
 msgid "Accessible Table Column Header"
 msgstr "ترويسة عمود الجدول الميسرة"
 
-#: ../atk/atkobject.c:421
+#: atk/atkobject.c:421
 msgid "Is used to notify that the table column header has changed"
 msgstr "مستخدم للتبليغ عن تغير ترويسة عمود الجدول"
 
-#: ../atk/atkobject.c:427
+#: atk/atkobject.c:427
 msgid "Accessible Table Column Description"
 msgstr "الوصف الميسر لعمود الجدول"
 
-#: ../atk/atkobject.c:428
+#: atk/atkobject.c:428
 msgid "Is used to notify that the table column description has changed"
 msgstr "مستخدم للتبليغ عن تغير وصف عمود الجدول"
 
-#: ../atk/atkobject.c:434
+#: atk/atkobject.c:434
 msgid "Accessible Table Row Header"
 msgstr "ترويسة صف الجدول الميسرة"
 
-#: ../atk/atkobject.c:435
+#: atk/atkobject.c:435
 msgid "Is used to notify that the table row header has changed"
 msgstr "مستخدم للتبليغ عن تغير ترويسة صف الجدول"
 
-#: ../atk/atkobject.c:441
+#: atk/atkobject.c:441
 msgid "Accessible Table Row Description"
 msgstr "الوصف الميسر لصف الجدول"
 
-#: ../atk/atkobject.c:442
+#: atk/atkobject.c:442
 msgid "Is used to notify that the table row description has changed"
 msgstr "مستخدم للتبليغ عن تغير وصف صف الجدول"
 
-#: ../atk/atkobject.c:448
+#: atk/atkobject.c:448
 msgid "Accessible Table Summary"
 msgstr "خلاصة الجدول الميسرة"
 
-#: ../atk/atkobject.c:449
+#: atk/atkobject.c:449
 msgid "Is used to notify that the table summary has changed"
 msgstr "مستخدم للتبليغ عن تغير خلاصة الجدول"
 
-#: ../atk/atkobject.c:455
+#: atk/atkobject.c:455
 msgid "Accessible Table Caption Object"
 msgstr "جسم العنوان الفرعي للجدول الداعم للإعانة"
 
-#: ../atk/atkobject.c:456
+#: atk/atkobject.c:456
 msgid "Is used to notify that the table caption has changed"
 msgstr "مستخدم للتبليغ عن تغيير العنوان الفرعي للجدول"
 
-#: ../atk/atkobject.c:462
+#: atk/atkobject.c:462
 msgid "Number of Accessible Hypertext Links"
 msgstr "عدد الوصلات النّصّيّة الدّاعمة للإعانة"
 
-#: ../atk/atkobject.c:463
+#: atk/atkobject.c:463
 msgid "The number of links which the current AtkHypertext has"
 msgstr "عدد الوصلات لـ AtkHypertext الحالي"
-
index 2025cd2..cec577b 100644 (file)
--- a/po/as.po
+++ b/po/as.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2004-12-17 05:00+0530\n"
 "Last-Translator: SUNARAM PATIR <lkpatir@yahoo.co.in>\n"
 "Language-Team: ASSAMESE <>\n"
index a0881e0..5f0086c 100644 (file)
--- a/po/az.po
+++ b/po/az.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.az\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2004-08-18 20:10+0300\n"
 "Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
 "Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
index 405abf0..0f1a95d 100644 (file)
--- a/po/be.po
+++ b/po/be.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2005-11-19 12:50+0200\n"
 "Last-Translator: Vital Khilko <vk@altlinux.ru>\n"
 "Language-Team: Belarusian <i18n@mova.org>\n"
index 98e5030..5a73fda 100644 (file)
--- a/po/bg.po
+++ b/po/bg.po
@@ -15,7 +15,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk-HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-07-05 16:18+0300\n"
 "Last-Translator: Alexander Shopov <ash@contact.bg>\n"
 "Language-Team: Bulgarian <dict@linux.zonebg.com>\n"
index 9fc1ff4..1d4010c 100644 (file)
--- a/po/bn.po
+++ b/po/bn.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-23 20:13+0600\n"
 "Last-Translator: Khandakar Mujahidul Islam <suzan@bengalinux.org>\n"
 "Language-Team: Bengali <gnome-translation@bengalinux.org>\n"
index 3a5dd95..2c2feba 100644 (file)
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-07-04 13:08+0530\n"
 "Last-Translator: Runa Bhattacharjee <runabh@gmail.com>\n"
 "Language-Team: Bangla (INDIA) <gnome-translation@bengalinux.org>\n"
index 46eabd8..60c90ce 100644 (file)
--- a/po/bs.po
+++ b/po/bs.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.bs\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2004-07-31 01:24+0200\n"
 "Last-Translator: Kenan Hadžiavdić <kenan@bgnett.no>\n"
 "Language-Team: Bosnian <lokal@linux.org.ba>\n"
index 1e885b0..812f554 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 1.6.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-10 15:47+0200\n"
 "Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
 "Language-Team: Catalan <tradgnome@softcatala.org>\n"
index 6fecc74..e9111ca 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2005-12-02 19:56+0100\n"
 "Last-Translator: Petr Tomeš <ptomes@gmail.com>\n"
 "Language-Team: Czech <cs@li.org>\n"
index 39b21e9..ef2da91 100644 (file)
--- a/po/cy.po
+++ b/po/cy.po
@@ -13,7 +13,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-29 19:15+0100\n"
 "Last-Translator: Rhys Jones <rhys@sucs.org>\n"
 "Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n"
index 1a761d0..5b054f8 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-01-18 16:26+0100\n"
 "Last-Translator: Ole Laursen <olau@hardworking.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
index 67857af..02a3ebd 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 1.5.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-07-11 13:44+0200\n"
 "Last-Translator: Hendrik Richter <hendrikr@gnome.org>\n"
 "Language-Team: German <gnome-de@gnome.org>\n"
index 2dddb2a..9f211e4 100644 (file)
--- a/po/dz.po
+++ b/po/dz.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.dz\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-12 16:08+0530\n"
 "Last-Translator: Mindu Dorji\n"
 "Language-Team: DZONGKHA <pgeyleg@dit.gov.bt>\n"
index ad64058..7c3b185 100644 (file)
--- a/po/el.po
+++ b/po/el.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: el\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-09-04 12:48+0300\n"
 "Last-Translator: Kostas Papadimas <pkst@gnome.org>\n"
 "Language-Team: Greek <team@gnome.gr>\n"
index b6611f8..c0d5236 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-29 03:00-0500\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2004-09-24 18:16-0500\n"
 "Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
 "Language-Team: Canadian English <adamw@gnome.org>\n"
@@ -16,440 +16,440 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../atk/atkhyperlink.c:103
+#: atk/atkhyperlink.c:103
 msgid "Selected Link"
 msgstr "Selected Link"
 
-#: ../atk/atkhyperlink.c:104
+#: atk/atkhyperlink.c:104
 msgid "Specifies whether the AtkHyperlink object is selected"
 msgstr "Specifies whether the AtkHyperlink object is selected"
 
-#: ../atk/atkhyperlink.c:110
+#: atk/atkhyperlink.c:110
 msgid "Number of Anchors"
 msgstr "Number of Anchors"
 
-#: ../atk/atkhyperlink.c:111
+#: atk/atkhyperlink.c:111
 msgid "The number of anchors associated with the AtkHyperlink object"
 msgstr "The number of anchors associated with the AtkHyperlink object"
 
-#: ../atk/atkhyperlink.c:119
+#: atk/atkhyperlink.c:119
 msgid "End index"
 msgstr "End index"
 
-#: ../atk/atkhyperlink.c:120
+#: atk/atkhyperlink.c:120
 msgid "The end index of the AtkHyperlink object"
 msgstr "The end index of the AtkHyperlink object"
 
-#: ../atk/atkhyperlink.c:128
+#: atk/atkhyperlink.c:128
 msgid "Start index"
 msgstr "Start index"
 
-#: ../atk/atkhyperlink.c:129
+#: atk/atkhyperlink.c:129
 msgid "The start index of the AtkHyperlink object"
 msgstr "The start index of the AtkHyperlink object"
 
-#: ../atk/atkobject.c:82
+#: atk/atkobject.c:82
 msgid "invalid"
 msgstr "invalid"
 
-#: ../atk/atkobject.c:83
+#: atk/atkobject.c:83
 msgid "accelerator label"
 msgstr "accelerator label"
 
-#: ../atk/atkobject.c:84
+#: atk/atkobject.c:84
 msgid "alert"
 msgstr "alert"
 
-#: ../atk/atkobject.c:85
+#: atk/atkobject.c:85
 msgid "animation"
 msgstr "animation"
 
-#: ../atk/atkobject.c:86
+#: atk/atkobject.c:86
 msgid "arrow"
 msgstr "arrow"
 
-#: ../atk/atkobject.c:87
+#: atk/atkobject.c:87
 msgid "calendar"
 msgstr "calendar"
 
-#: ../atk/atkobject.c:88
+#: atk/atkobject.c:88
 msgid "canvas"
 msgstr "canvas"
 
-#: ../atk/atkobject.c:89
+#: atk/atkobject.c:89
 msgid "check box"
 msgstr "check box"
 
-#: ../atk/atkobject.c:90
+#: atk/atkobject.c:90
 msgid "check menu item"
 msgstr "check menu item"
 
-#: ../atk/atkobject.c:91
+#: atk/atkobject.c:91
 msgid "color chooser"
 msgstr "colour chooser"
 
-#: ../atk/atkobject.c:92
+#: atk/atkobject.c:92
 msgid "column header"
 msgstr "column header"
 
-#: ../atk/atkobject.c:93
+#: atk/atkobject.c:93
 msgid "combo box"
 msgstr "combo box"
 
-#: ../atk/atkobject.c:94
+#: atk/atkobject.c:94
 msgid "dateeditor"
 msgstr "date editor"
 
-#: ../atk/atkobject.c:95
+#: atk/atkobject.c:95
 msgid "desktop icon"
 msgstr "desktop icon"
 
-#: ../atk/atkobject.c:96
+#: atk/atkobject.c:96
 msgid "desktop frame"
 msgstr "desktop frame"
 
-#: ../atk/atkobject.c:97
+#: atk/atkobject.c:97
 msgid "dial"
 msgstr "dial"
 
-#: ../atk/atkobject.c:98
+#: atk/atkobject.c:98
 msgid "dialog"
 msgstr "dialogue"
 
-#: ../atk/atkobject.c:99
+#: atk/atkobject.c:99
 msgid "directory pane"
 msgstr "directory pane"
 
-#: ../atk/atkobject.c:100
+#: atk/atkobject.c:100
 msgid "drawing area"
 msgstr "drawing area"
 
-#: ../atk/atkobject.c:101
+#: atk/atkobject.c:101
 msgid "file chooser"
 msgstr "file chooser"
 
-#: ../atk/atkobject.c:102
+#: atk/atkobject.c:102
 msgid "filler"
 msgstr "filler"
 
 #. I know it looks wrong but that is what Java returns
-#: ../atk/atkobject.c:104
+#: atk/atkobject.c:104
 msgid "fontchooser"
 msgstr "fontchooser"
 
-#: ../atk/atkobject.c:105
+#: atk/atkobject.c:105
 msgid "frame"
 msgstr "frame"
 
-#: ../atk/atkobject.c:106
+#: atk/atkobject.c:106
 msgid "glass pane"
 msgstr "glass pane"
 
-#: ../atk/atkobject.c:107
+#: atk/atkobject.c:107
 msgid "html container"
 msgstr "html container"
 
-#: ../atk/atkobject.c:108
+#: atk/atkobject.c:108
 msgid "icon"
 msgstr "icon"
 
-#: ../atk/atkobject.c:109
+#: atk/atkobject.c:109
 msgid "image"
 msgstr "image"
 
-#: ../atk/atkobject.c:110
+#: atk/atkobject.c:110
 msgid "internal frame"
 msgstr "internal frame"
 
-#: ../atk/atkobject.c:111
+#: atk/atkobject.c:111
 msgid "label"
 msgstr "label"
 
-#: ../atk/atkobject.c:112
+#: atk/atkobject.c:112
 msgid "layered pane"
 msgstr "layered pane"
 
-#: ../atk/atkobject.c:113
+#: atk/atkobject.c:113
 msgid "list"
 msgstr "list"
 
-#: ../atk/atkobject.c:114
+#: atk/atkobject.c:114
 msgid "list item"
 msgstr "list item"
 
-#: ../atk/atkobject.c:115
+#: atk/atkobject.c:115
 msgid "menu"
 msgstr "menu"
 
-#: ../atk/atkobject.c:116
+#: atk/atkobject.c:116
 msgid "menu bar"
 msgstr "menu bar"
 
-#: ../atk/atkobject.c:117
+#: atk/atkobject.c:117
 msgid "menu item"
 msgstr "menu item"
 
-#: ../atk/atkobject.c:118
+#: atk/atkobject.c:118
 msgid "option pane"
 msgstr "option pane"
 
-#: ../atk/atkobject.c:119
+#: atk/atkobject.c:119
 msgid "page tab"
 msgstr "page tab"
 
-#: ../atk/atkobject.c:120
+#: atk/atkobject.c:120
 msgid "page tab list"
 msgstr "page tab list"
 
-#: ../atk/atkobject.c:121
+#: atk/atkobject.c:121
 msgid "panel"
 msgstr "panel"
 
-#: ../atk/atkobject.c:122
+#: atk/atkobject.c:122
 msgid "password text"
 msgstr "password text"
 
-#: ../atk/atkobject.c:123
+#: atk/atkobject.c:123
 msgid "popup menu"
 msgstr "popup menu"
 
-#: ../atk/atkobject.c:124
+#: atk/atkobject.c:124
 msgid "progress bar"
 msgstr "progress bar"
 
-#: ../atk/atkobject.c:125
+#: atk/atkobject.c:125
 msgid "push button"
 msgstr "push button"
 
-#: ../atk/atkobject.c:126
+#: atk/atkobject.c:126
 msgid "radio button"
 msgstr "radio button"
 
-#: ../atk/atkobject.c:127
+#: atk/atkobject.c:127
 msgid "radio menu item"
 msgstr "radio menu item"
 
-#: ../atk/atkobject.c:128
+#: atk/atkobject.c:128
 msgid "root pane"
 msgstr "root pane"
 
-#: ../atk/atkobject.c:129
+#: atk/atkobject.c:129
 msgid "row header"
 msgstr "row header"
 
-#: ../atk/atkobject.c:130
+#: atk/atkobject.c:130
 msgid "scroll bar"
 msgstr "scroll bar"
 
-#: ../atk/atkobject.c:131
+#: atk/atkobject.c:131
 msgid "scroll pane"
 msgstr "scroll pane"
 
-#: ../atk/atkobject.c:132
+#: atk/atkobject.c:132
 msgid "separator"
 msgstr "separator"
 
-#: ../atk/atkobject.c:133
+#: atk/atkobject.c:133
 msgid "slider"
 msgstr "slider"
 
-#: ../atk/atkobject.c:134
+#: atk/atkobject.c:134
 msgid "split pane"
 msgstr "split pane"
 
-#: ../atk/atkobject.c:135
+#: atk/atkobject.c:135
 msgid "spin button"
 msgstr "spin button"
 
-#: ../atk/atkobject.c:136
+#: atk/atkobject.c:136
 msgid "statusbar"
 msgstr "statusbar"
 
-#: ../atk/atkobject.c:137
+#: atk/atkobject.c:137
 msgid "table"
 msgstr "table"
 
-#: ../atk/atkobject.c:138
+#: atk/atkobject.c:138
 msgid "table cell"
 msgstr "table cell"
 
-#: ../atk/atkobject.c:139
+#: atk/atkobject.c:139
 msgid "table column header"
 msgstr "table column header"
 
-#: ../atk/atkobject.c:140
+#: atk/atkobject.c:140
 msgid "table row header"
 msgstr "table row header"
 
-#: ../atk/atkobject.c:141
+#: atk/atkobject.c:141
 msgid "tear off menu item"
 msgstr "tear-off menu item"
 
-#: ../atk/atkobject.c:142
+#: atk/atkobject.c:142
 msgid "terminal"
 msgstr "terminal"
 
-#: ../atk/atkobject.c:143
+#: atk/atkobject.c:143
 msgid "text"
 msgstr "text"
 
-#: ../atk/atkobject.c:144
+#: atk/atkobject.c:144
 msgid "toggle button"
 msgstr "toggle button"
 
-#: ../atk/atkobject.c:145
+#: atk/atkobject.c:145
 msgid "tool bar"
 msgstr "tool bar"
 
-#: ../atk/atkobject.c:146
+#: atk/atkobject.c:146
 msgid "tool tip"
 msgstr "tool tip"
 
-#: ../atk/atkobject.c:147
+#: atk/atkobject.c:147
 msgid "tree"
 msgstr "tree"
 
-#: ../atk/atkobject.c:148
+#: atk/atkobject.c:148
 msgid "tree table"
 msgstr "tree table"
 
-#: ../atk/atkobject.c:149
+#: atk/atkobject.c:149
 msgid "unknown"
 msgstr "unknown"
 
-#: ../atk/atkobject.c:150
+#: atk/atkobject.c:150
 msgid "viewport"
 msgstr "viewport"
 
-#: ../atk/atkobject.c:151
+#: atk/atkobject.c:151
 msgid "window"
 msgstr "window"
 
-#: ../atk/atkobject.c:152
+#: atk/atkobject.c:152
 msgid "header"
 msgstr "header"
 
-#: ../atk/atkobject.c:153
+#: atk/atkobject.c:153
 msgid "footer"
 msgstr "footer"
 
-#: ../atk/atkobject.c:154
+#: atk/atkobject.c:154
 msgid "paragraph"
 msgstr "paragraph"
 
-#: ../atk/atkobject.c:155
+#: atk/atkobject.c:155
 msgid "application"
 msgstr "application"
 
-#: ../atk/atkobject.c:156
+#: atk/atkobject.c:156
 msgid "autocomplete"
 msgstr "autocomplete"
 
-#: ../atk/atkobject.c:157
+#: atk/atkobject.c:157
 msgid "edit bar"
 msgstr "edit bar"
 
-#: ../atk/atkobject.c:158
+#: atk/atkobject.c:158
 msgid "embedded component"
 msgstr "embedded component"
 
-#: ../atk/atkobject.c:159
+#: atk/atkobject.c:159
 msgid "entry"
 msgstr "entry"
 
-#: ../atk/atkobject.c:160
+#: atk/atkobject.c:160
 msgid "chart"
 msgstr "chart"
 
-#: ../atk/atkobject.c:161
+#: atk/atkobject.c:161
 msgid "caption"
 msgstr "caption"
 
-#: ../atk/atkobject.c:162
+#: atk/atkobject.c:162
 msgid "document frame"
 msgstr "document frame"
 
-#: ../atk/atkobject.c:163
+#: atk/atkobject.c:163
 msgid "heading"
 msgstr "heading"
 
-#: ../atk/atkobject.c:164
+#: atk/atkobject.c:164
 msgid "page"
 msgstr "page"
 
-#: ../atk/atkobject.c:165
+#: atk/atkobject.c:165
 msgid "section"
 msgstr "section"
 
-#: ../atk/atkobject.c:166
+#: atk/atkobject.c:166
 msgid "redundant object"
 msgstr "redundant object"
 
-#: ../atk/atkobject.c:167
+#: atk/atkobject.c:167
 msgid "form"
 msgstr "form"
 
-#: ../atk/atkobject.c:356
+#: atk/atkobject.c:356
 msgid "Accessible Name"
 msgstr "Accessible Name"
 
-#: ../atk/atkobject.c:357
+#: atk/atkobject.c:357
 msgid "Object instance's name formatted for assistive technology access"
 msgstr "Object instance's name, formatted for assistive technology access"
 
-#: ../atk/atkobject.c:363
+#: atk/atkobject.c:363
 msgid "Accessible Description"
 msgstr "Accessible Description"
 
-#: ../atk/atkobject.c:364
+#: atk/atkobject.c:364
 msgid "Description of an object, formatted for assistive technology access"
 msgstr "Description of an object, formatted for assistive technology access"
 
-#: ../atk/atkobject.c:370
+#: atk/atkobject.c:370
 msgid "Accessible Parent"
 msgstr "Accessible Parent"
 
-#: ../atk/atkobject.c:371
+#: atk/atkobject.c:371
 msgid "Is used to notify that the parent has changed"
 msgstr "Used to notify that the parent has changed"
 
-#: ../atk/atkobject.c:377
+#: atk/atkobject.c:377
 msgid "Accessible Value"
 msgstr "Accessible Value"
 
-#: ../atk/atkobject.c:378
+#: atk/atkobject.c:378
 msgid "Is used to notify that the value has changed"
 msgstr "Used to notify that the value has changed"
 
-#: ../atk/atkobject.c:386
+#: atk/atkobject.c:386
 msgid "Accessible Role"
 msgstr "Accessible Role"
 
-#: ../atk/atkobject.c:387
+#: atk/atkobject.c:387
 msgid "The accessible role of this object"
 msgstr "The accessible role of this object"
 
-#: ../atk/atkobject.c:395
+#: atk/atkobject.c:395
 msgid "Accessible Layer"
 msgstr "Accessible Layer"
 
-#: ../atk/atkobject.c:396
+#: atk/atkobject.c:396
 msgid "The accessible layer of this object"
 msgstr "The accessible layer of this object"
 
-#: ../atk/atkobject.c:404
+#: atk/atkobject.c:404
 msgid "Accessible MDI Value"
 msgstr "Accessible MDI Value"
 
-#: ../atk/atkobject.c:405
+#: atk/atkobject.c:405
 msgid "The accessible MDI value of this object"
 msgstr "The accessible MDI value of this object"
 
-#: ../atk/atkobject.c:413
+#: atk/atkobject.c:413
 msgid "Accessible Table Caption"
 msgstr "Accessible Table Caption"
 
-#: ../atk/atkobject.c:414
+#: atk/atkobject.c:414
 msgid ""
 "Is used to notify that the table caption has changed; this property should "
 "not be used. accessible-table-caption-object should be used instead"
@@ -457,58 +457,58 @@ msgstr ""
 "Used to notify that the table caption has changed. This property should not "
 "be used; accessible-table-caption-object should be used instead"
 
-#: ../atk/atkobject.c:420
+#: atk/atkobject.c:420
 msgid "Accessible Table Column Header"
 msgstr "Accessible Table Column Header"
 
-#: ../atk/atkobject.c:421
+#: atk/atkobject.c:421
 msgid "Is used to notify that the table column header has changed"
 msgstr "Used to notify that the table column header has changed"
 
-#: ../atk/atkobject.c:427
+#: atk/atkobject.c:427
 msgid "Accessible Table Column Description"
 msgstr "Accessible Table Column Description"
 
-#: ../atk/atkobject.c:428
+#: atk/atkobject.c:428
 msgid "Is used to notify that the table column description has changed"
 msgstr "Used to notify that the table column description has changed"
 
-#: ../atk/atkobject.c:434
+#: atk/atkobject.c:434
 msgid "Accessible Table Row Header"
 msgstr "Accessible Table Row Header"
 
-#: ../atk/atkobject.c:435
+#: atk/atkobject.c:435
 msgid "Is used to notify that the table row header has changed"
 msgstr "Used to notify that the table row header has changed"
 
-#: ../atk/atkobject.c:441
+#: atk/atkobject.c:441
 msgid "Accessible Table Row Description"
 msgstr "Accessible Table Row Description"
 
-#: ../atk/atkobject.c:442
+#: atk/atkobject.c:442
 msgid "Is used to notify that the table row description has changed"
 msgstr "Used to notify that the table row description has changed"
 
-#: ../atk/atkobject.c:448
+#: atk/atkobject.c:448
 msgid "Accessible Table Summary"
 msgstr "Accessible Table Summary"
 
-#: ../atk/atkobject.c:449
+#: atk/atkobject.c:449
 msgid "Is used to notify that the table summary has changed"
 msgstr "Used to notify that the table summary has changed"
 
-#: ../atk/atkobject.c:455
+#: atk/atkobject.c:455
 msgid "Accessible Table Caption Object"
 msgstr "Accessible Table Caption Object"
 
-#: ../atk/atkobject.c:456
+#: atk/atkobject.c:456
 msgid "Is used to notify that the table caption has changed"
 msgstr "Used to notify that the table caption has changed"
 
-#: ../atk/atkobject.c:462
+#: atk/atkobject.c:462
 msgid "Number of Accessible Hypertext Links"
 msgstr "Number of Accessible Hypertext Links"
 
-#: ../atk/atkobject.c:463
+#: atk/atkobject.c:463
 msgid "The number of links which the current AtkHypertext has"
 msgstr "The number of links which the current AtkHypertext has"
index 0e10ecf..b4f3d11 100644 (file)
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-09-09 15:34-0000\n"
 "Last-Translator: David Lodge <dave@cirt.net>\n"
 "Language-Team: en_GB <en@li.org>\n"
index 9e980da..aac6017 100644 (file)
--- a/po/eo.po
+++ b/po/eo.po
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 1.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2003-03-14 16:16+0500\n"
 "Last-Translator: Charles Voelger <cvoelger@dweasel.com>\n"
 "Language-Team: Esperanto <eo@li.org>\n"
index 94ffe7d..83c9035 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: es\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-11 19:05+0200\n"
 "Last-Translator: Francisco Javier F. Serrador <serrador@cvs.gnome.org>\n"
 "Language-Team: Spanish <traductores@es.gnome.org>\n"
index 21c340a..38b29e1 100644 (file)
--- a/po/et.po
+++ b/po/et.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-01-02 03:25+0000\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2007-01-07 09:51+0200\n"
 "Last-Translator: Priit Laes <amd@store20.com>\n"
 "Language-Team: Estonian <gnome-et@linux.ee>\n"
@@ -21,502 +21,500 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../atk/atkhyperlink.c:103
+#: atk/atkhyperlink.c:103
 msgid "Selected Link"
 msgstr "Valitud viit"
 
-#: ../atk/atkhyperlink.c:104
+#: atk/atkhyperlink.c:104
 msgid "Specifies whether the AtkHyperlink object is selected"
 msgstr "Määrab, milline AtkHyperlink on valitud"
 
-#: ../atk/atkhyperlink.c:110
+#: atk/atkhyperlink.c:110
 msgid "Number of Anchors"
 msgstr "Ankrute arv"
 
-#: ../atk/atkhyperlink.c:111
+#: atk/atkhyperlink.c:111
 msgid "The number of anchors associated with the AtkHyperlink object"
 msgstr "AtkHyperlink objektiga seotud ankrute arv"
 
-#: ../atk/atkhyperlink.c:119
+#: atk/atkhyperlink.c:119
 msgid "End index"
 msgstr "Lõpuindeks"
 
-#: ../atk/atkhyperlink.c:120
+#: atk/atkhyperlink.c:120
 msgid "The end index of the AtkHyperlink object"
 msgstr "AtkHyperlink objekti lõpuindeks"
 
-#: ../atk/atkhyperlink.c:128
+#: atk/atkhyperlink.c:128
 msgid "Start index"
 msgstr "Algusindeks"
 
-#: ../atk/atkhyperlink.c:129
+#: atk/atkhyperlink.c:129
 msgid "The start index of the AtkHyperlink object"
 msgstr "AtkHyperlink objekti algusindeks"
 
-#: ../atk/atkobject.c:82
+#: atk/atkobject.c:82
 msgid "invalid"
 msgstr "vigane"
 
-#: ../atk/atkobject.c:83
+#: atk/atkobject.c:83
 msgid "accelerator label"
 msgstr "kiirendi märk"
 
-#: ../atk/atkobject.c:84
+#: atk/atkobject.c:84
 msgid "alert"
 msgstr "häire"
 
-#: ../atk/atkobject.c:85
+#: atk/atkobject.c:85
 msgid "animation"
 msgstr "animatsioon"
 
-#: ../atk/atkobject.c:86
+#: atk/atkobject.c:86
 msgid "arrow"
 msgstr "nool"
 
-#: ../atk/atkobject.c:87
+#: atk/atkobject.c:87
 msgid "calendar"
 msgstr "kalender"
 
-#: ../atk/atkobject.c:88
+#: atk/atkobject.c:88
 msgid "canvas"
 msgstr "lõuend"
 
-#: ../atk/atkobject.c:89
+#: atk/atkobject.c:89
 msgid "check box"
 msgstr "märkeruut"
 
-#: ../atk/atkobject.c:90
+#: atk/atkobject.c:90
 msgid "check menu item"
 msgstr "märgitav menüükirje"
 
-#: ../atk/atkobject.c:91
+#: atk/atkobject.c:91
 msgid "color chooser"
 msgstr "värvivalija"
 
-#: ../atk/atkobject.c:92
+#: atk/atkobject.c:92
 msgid "column header"
 msgstr "veeru päis"
 
-#: ../atk/atkobject.c:93
+#: atk/atkobject.c:93
 msgid "combo box"
 msgstr "valikukast"
 
-#: ../atk/atkobject.c:94
+#: atk/atkobject.c:94
 msgid "dateeditor"
 msgstr "kuupäevaredaktor"
 
-#: ../atk/atkobject.c:95
+#: atk/atkobject.c:95
 msgid "desktop icon"
 msgstr "töölaua ikoon"
 
-#: ../atk/atkobject.c:96
+#: atk/atkobject.c:96
 msgid "desktop frame"
 msgstr "töölaua raam"
 
-#: ../atk/atkobject.c:97
+#: atk/atkobject.c:97
 msgid "dial"
 msgstr "häälestusnupp"
 
-#: ../atk/atkobject.c:98
+#: atk/atkobject.c:98
 msgid "dialog"
 msgstr "dialoog"
 
-#: ../atk/atkobject.c:99
+#: atk/atkobject.c:99
 msgid "directory pane"
 msgstr "kataloogipaan"
 
-#: ../atk/atkobject.c:100
+#: atk/atkobject.c:100
 msgid "drawing area"
 msgstr "joonistamise ala"
 
-#: ../atk/atkobject.c:101
+#: atk/atkobject.c:101
 msgid "file chooser"
 msgstr "failivalija"
 
-#: ../atk/atkobject.c:102
+#: atk/atkobject.c:102
 msgid "filler"
 msgstr "täitja"
 
 #. I know it looks wrong but that is what Java returns
-#: ../atk/atkobject.c:104
+#: atk/atkobject.c:104
 msgid "fontchooser"
 msgstr "kirjatüübivalija"
 
-#: ../atk/atkobject.c:105
+#: atk/atkobject.c:105
 msgid "frame"
 msgstr "raam"
 
-#: ../atk/atkobject.c:106
+#: atk/atkobject.c:106
 msgid "glass pane"
 msgstr "klaaspaan"
 
-#: ../atk/atkobject.c:107
+#: atk/atkobject.c:107
 msgid "html container"
 msgstr "html konteiner"
 
-#: ../atk/atkobject.c:108
+#: atk/atkobject.c:108
 msgid "icon"
 msgstr "ikoon"
 
-#: ../atk/atkobject.c:109
+#: atk/atkobject.c:109
 msgid "image"
 msgstr "pilt"
 
-#: ../atk/atkobject.c:110
+#: atk/atkobject.c:110
 msgid "internal frame"
 msgstr "sisemine raam"
 
-#: ../atk/atkobject.c:111
+#: atk/atkobject.c:111
 msgid "label"
 msgstr "silt"
 
-#: ../atk/atkobject.c:112
+#: atk/atkobject.c:112
 msgid "layered pane"
 msgstr "kihiline paan"
 
-#: ../atk/atkobject.c:113
+#: atk/atkobject.c:113
 msgid "list"
 msgstr "nimekiri"
 
-#: ../atk/atkobject.c:114
+#: atk/atkobject.c:114
 msgid "list item"
 msgstr "nimekirja element"
 
-#: ../atk/atkobject.c:115
+#: atk/atkobject.c:115
 msgid "menu"
 msgstr "menüü"
 
-#: ../atk/atkobject.c:116
+#: atk/atkobject.c:116
 msgid "menu bar"
 msgstr "menüüriba"
 
-#: ../atk/atkobject.c:117
+#: atk/atkobject.c:117
 msgid "menu item"
 msgstr "menüüelement"
 
-#: ../atk/atkobject.c:118
+#: atk/atkobject.c:118
 msgid "option pane"
 msgstr "valikupaan"
 
-#: ../atk/atkobject.c:119
+#: atk/atkobject.c:119
 msgid "page tab"
 msgstr "leheküljesakk"
 
-#: ../atk/atkobject.c:120
+#: atk/atkobject.c:120
 msgid "page tab list"
 msgstr "leheküljesakkide nimekiri"
 
-#: ../atk/atkobject.c:121
+#: atk/atkobject.c:121
 msgid "panel"
 msgstr "paneel"
 
-#: ../atk/atkobject.c:122
+#: atk/atkobject.c:122
 msgid "password text"
 msgstr "parooli tekst"
 
-#: ../atk/atkobject.c:123
+#: atk/atkobject.c:123
 msgid "popup menu"
 msgstr "hüpikmenüü"
 
-#: ../atk/atkobject.c:124
+#: atk/atkobject.c:124
 msgid "progress bar"
 msgstr "edenemisriba"
 
-#: ../atk/atkobject.c:125
+#: atk/atkobject.c:125
 msgid "push button"
 msgstr "lülitamisnupp"
 
-#: ../atk/atkobject.c:126
+#: atk/atkobject.c:126
 msgid "radio button"
 msgstr "raadionupp"
 
-#: ../atk/atkobject.c:127
+#: atk/atkobject.c:127
 msgid "radio menu item"
 msgstr "raadionupuga menüükirje"
 
-#: ../atk/atkobject.c:128
+#: atk/atkobject.c:128
 msgid "root pane"
 msgstr "põhipaan"
 
-#: ../atk/atkobject.c:129
+#: atk/atkobject.c:129
 msgid "row header"
 msgstr "rea päis"
 
-#: ../atk/atkobject.c:130
+#: atk/atkobject.c:130
 msgid "scroll bar"
 msgstr "kerimisriba"
 
-#: ../atk/atkobject.c:131
+#: atk/atkobject.c:131
 msgid "scroll pane"
 msgstr "kerimispaan"
 
-#: ../atk/atkobject.c:132
+#: atk/atkobject.c:132
 msgid "separator"
 msgstr "eraldaja"
 
-#: ../atk/atkobject.c:133
+#: atk/atkobject.c:133
 msgid "slider"
 msgstr "liugur"
 
-#: ../atk/atkobject.c:134
+#: atk/atkobject.c:134
 msgid "split pane"
 msgstr "poolitamispaan"
 
-#: ../atk/atkobject.c:135
+#: atk/atkobject.c:135
 msgid "spin button"
 msgstr "kerimisnupp"
 
-#: ../atk/atkobject.c:136
+#: atk/atkobject.c:136
 msgid "statusbar"
 msgstr "olekuriba"
 
-#: ../atk/atkobject.c:137
+#: atk/atkobject.c:137
 msgid "table"
 msgstr "tabel"
 
-#: ../atk/atkobject.c:138
+#: atk/atkobject.c:138
 msgid "table cell"
 msgstr "tabeli lahter"
 
-#: ../atk/atkobject.c:139
+#: atk/atkobject.c:139
 msgid "table column header"
 msgstr "tabeli veerupäis"
 
-#: ../atk/atkobject.c:140
+#: atk/atkobject.c:140
 msgid "table row header"
 msgstr "tabeli reapäis"
 
-#: ../atk/atkobject.c:141
+#: atk/atkobject.c:141
 msgid "tear off menu item"
 msgstr "rebi-küljest menüüelement"
 
-#: ../atk/atkobject.c:142
+#: atk/atkobject.c:142
 msgid "terminal"
 msgstr "terminal"
 
-#: ../atk/atkobject.c:143
+#: atk/atkobject.c:143
 msgid "text"
 msgstr "tekst"
 
-#: ../atk/atkobject.c:144
+#: atk/atkobject.c:144
 msgid "toggle button"
 msgstr "lülitinupp"
 
-#: ../atk/atkobject.c:145
+#: atk/atkobject.c:145
 msgid "tool bar"
 msgstr "tööriistariba"
 
-#: ../atk/atkobject.c:146
+#: atk/atkobject.c:146
 msgid "tool tip"
 msgstr "tööriistavihje"
 
-#: ../atk/atkobject.c:147
+#: atk/atkobject.c:147
 msgid "tree"
 msgstr "puu"
 
-#: ../atk/atkobject.c:148
+#: atk/atkobject.c:148
 msgid "tree table"
 msgstr "puutabel"
 
-#: ../atk/atkobject.c:149
+#: atk/atkobject.c:149
 msgid "unknown"
 msgstr "tundmatu"
 
-#: ../atk/atkobject.c:150
+#: atk/atkobject.c:150
 msgid "viewport"
 msgstr "vaatepunkt"
 
-#: ../atk/atkobject.c:151
+#: atk/atkobject.c:151
 msgid "window"
 msgstr "aken"
 
-#: ../atk/atkobject.c:152
+#: atk/atkobject.c:152
 msgid "header"
 msgstr "päis"
 
-#: ../atk/atkobject.c:153
+#: atk/atkobject.c:153
 msgid "footer"
 msgstr "jalus"
 
-#: ../atk/atkobject.c:154
+#: atk/atkobject.c:154
 msgid "paragraph"
 msgstr "lõik"
 
-#: ../atk/atkobject.c:155
+#: atk/atkobject.c:155
 msgid "application"
 msgstr "rakendus"
 
-#: ../atk/atkobject.c:156
+#: atk/atkobject.c:156
 msgid "autocomplete"
 msgstr "automaatlõpetus"
 
-#: ../atk/atkobject.c:157
+#: atk/atkobject.c:157
 msgid "edit bar"
 msgstr "redigeerimisriba"
 
-#: ../atk/atkobject.c:158
+#: atk/atkobject.c:158
 msgid "embedded component"
 msgstr "põimitud komponent"
 
-#: ../atk/atkobject.c:159
+#: atk/atkobject.c:159
 msgid "entry"
 msgstr "sisestus"
 
-#: ../atk/atkobject.c:160
+#: atk/atkobject.c:160
 msgid "chart"
 msgstr "tabel"
 
-#: ../atk/atkobject.c:161
+#: atk/atkobject.c:161
 msgid "caption"
 msgstr "seletus"
 
-#: ../atk/atkobject.c:162
+#: atk/atkobject.c:162
 msgid "document frame"
 msgstr "dokumendi raam"
 
-#: ../atk/atkobject.c:163
+#: atk/atkobject.c:163
 msgid "heading"
 msgstr "päis"
 
-#: ../atk/atkobject.c:164
+#: atk/atkobject.c:164
 msgid "page"
 msgstr "lehekülg"
 
-#: ../atk/atkobject.c:165
+#: atk/atkobject.c:165
 msgid "section"
 msgstr "osa"
 
-#: ../atk/atkobject.c:166
+#: atk/atkobject.c:166
 msgid "redundant object"
 msgstr "üleliigne objekt"
 
-#: ../atk/atkobject.c:167
+#: atk/atkobject.c:167
 msgid "form"
 msgstr "vorm"
 
-#: ../atk/atkobject.c:356
+#: atk/atkobject.c:356
 msgid "Accessible Name"
 msgstr "Kasutatav nimi"
 
-#: ../atk/atkobject.c:357
+#: atk/atkobject.c:357
 msgid "Object instance's name formatted for assistive technology access"
 msgstr "Objekti nimetus vormindatuna abistava tehnikaga kasutamiseks"
 
-#: ../atk/atkobject.c:363
+#: atk/atkobject.c:363
 msgid "Accessible Description"
 msgstr "Kasutatav kirjeldus"
 
-#: ../atk/atkobject.c:364
+#: atk/atkobject.c:364
 msgid "Description of an object, formatted for assistive technology access"
 msgstr "Objekti kirjeldus vormindatuna abistava tehnikaga kasutamiseks"
 
-#: ../atk/atkobject.c:370
+#: atk/atkobject.c:370
 msgid "Accessible Parent"
 msgstr "Kasutatav vanem"
 
-#: ../atk/atkobject.c:371
+#: atk/atkobject.c:371
 msgid "Is used to notify that the parent has changed"
 msgstr "Kasutatakse vanema muutustest teavitamiseks"
 
-#: ../atk/atkobject.c:377
+#: atk/atkobject.c:377
 msgid "Accessible Value"
 msgstr "Kasutatav väärtus"
 
-#: ../atk/atkobject.c:378
+#: atk/atkobject.c:378
 msgid "Is used to notify that the value has changed"
 msgstr "Kasutatakse väärtuse muutustest teavitamiseks"
 
-#: ../atk/atkobject.c:386
+#: atk/atkobject.c:386
 msgid "Accessible Role"
 msgstr "Kasutatav roll"
 
-#: ../atk/atkobject.c:387
+#: atk/atkobject.c:387
 msgid "The accessible role of this object"
 msgstr "Objekti kasutatav roll"
 
-#: ../atk/atkobject.c:395
+#: atk/atkobject.c:395
 msgid "Accessible Layer"
 msgstr "Kasutatav kiht"
 
-#: ../atk/atkobject.c:396
+#: atk/atkobject.c:396
 msgid "The accessible layer of this object"
 msgstr "Objekti kasutatav kiht"
 
-#: ../atk/atkobject.c:404
+#: atk/atkobject.c:404
 msgid "Accessible MDI Value"
 msgstr "Kasutatav MDI väärtus"
 
-#: ../atk/atkobject.c:405
+#: atk/atkobject.c:405
 msgid "The accessible MDI value of this object"
 msgstr "Objekti kasutatav MDI (mitme dokumendi liides) väärtus"
 
-#: ../atk/atkobject.c:413
+#: atk/atkobject.c:413
 msgid "Accessible Table Caption"
 msgstr "Kasutatav tabeli seletus"
 
-#: ../atk/atkobject.c:414
+#: atk/atkobject.c:414
 msgid ""
 "Is used to notify that the table caption has changed; this property should "
 "not be used. accessible-table-caption-object should be used instead"
 msgstr ""
 "Kasutatakse tabeli seletuuse muutustest teavitamiseks; seda omadust oleks "
-"soovitatav mitte kasutada. Selle asmele võiks kasutada "
-"accessible-table-caption-object omadust"
+"soovitatav mitte kasutada. Selle asmele võiks kasutada accessible-table-"
+"caption-object omadust"
 
-#: ../atk/atkobject.c:420
+#: atk/atkobject.c:420
 msgid "Accessible Table Column Header"
 msgstr "Kasutatav tabeli veeru päis"
 
-#: ../atk/atkobject.c:421
+#: atk/atkobject.c:421
 msgid "Is used to notify that the table column header has changed"
 msgstr "Kasutatakse tabeli veeru päise muutustest teavitamiseks"
 
-#: ../atk/atkobject.c:427
+#: atk/atkobject.c:427
 msgid "Accessible Table Column Description"
 msgstr "Kasutatav tabeli veeru kirjeldus"
 
-#: ../atk/atkobject.c:428
+#: atk/atkobject.c:428
 msgid "Is used to notify that the table column description has changed"
-msgstr ""
-"Kasutatakse tabeli veeru kirjelduse muutustest teavitamiseks"
+msgstr "Kasutatakse tabeli veeru kirjelduse muutustest teavitamiseks"
 
-#: ../atk/atkobject.c:434
+#: atk/atkobject.c:434
 msgid "Accessible Table Row Header"
 msgstr "Kasutatav tabeli rea päis"
 
-#: ../atk/atkobject.c:435
+#: atk/atkobject.c:435
 msgid "Is used to notify that the table row header has changed"
 msgstr "Kasutatakse tabeli rea päise muutustest teavitamiseks"
 
-#: ../atk/atkobject.c:441
+#: atk/atkobject.c:441
 msgid "Accessible Table Row Description"
 msgstr "Kasutatav tabeli rea kirjeldus"
 
-#: ../atk/atkobject.c:442
+#: atk/atkobject.c:442
 msgid "Is used to notify that the table row description has changed"
-msgstr ""
-"Kasutatakse tabeli rea kirjelduse muutustest teavitamiseks"
+msgstr "Kasutatakse tabeli rea kirjelduse muutustest teavitamiseks"
 
-#: ../atk/atkobject.c:448
+#: atk/atkobject.c:448
 msgid "Accessible Table Summary"
 msgstr "Kasutatav tabeli kokkuvõte"
 
-#: ../atk/atkobject.c:449
+#: atk/atkobject.c:449
 msgid "Is used to notify that the table summary has changed"
 msgstr "Kasutatakse tabeli kokkuvõtte muutustest teavitamiseks"
 
-#: ../atk/atkobject.c:455
+#: atk/atkobject.c:455
 msgid "Accessible Table Caption Object"
 msgstr "Kasutatav tabeli seletuse objekt"
 
-#: ../atk/atkobject.c:456
+#: atk/atkobject.c:456
 msgid "Is used to notify that the table caption has changed"
 msgstr "Kasutatakse tabeli seletuse muutustest teavitamiseks"
 
-#: ../atk/atkobject.c:462
+#: atk/atkobject.c:462
 msgid "Number of Accessible Hypertext Links"
 msgstr "Kasutatavate viitade arv"
 
-#: ../atk/atkobject.c:463
+#: atk/atkobject.c:463
 msgid "The number of links which the current AtkHypertext has"
 msgstr "Käesoleva AtkHypertext'i viitade arv"
index 05d3c19..d780340 100644 (file)
--- a/po/eu.po
+++ b/po/eu.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-07-05 19:00+0000\n"
 "Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
 "Language-Team: Basque <itzulpena@euskalgnu.org>\n"
index 37cf390..d5be33b 100644 (file)
--- a/po/fa.po
+++ b/po/fa.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2005-07-13 19:23+0430\n"
 "Last-Translator: Meelad Zakaria <meelad@farsiweb.info>\n"
 "Language-Team: Persian <farsi@lists.sharif.edu>\n"
index 0ce6918..a18c524 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-07-06 10:19+0300\n"
 "Last-Translator: Ilkka Tuohela <hile@iki.fi>\n"
 "Language-Team: Gnome Finnish Translation Team <gnome-fi-laatu@lists."
index 249d392..38626ed 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 1.12.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-11-02 12:16+0100\n"
 "Last-Translator: Christophe Merlet (RedFox) <redfox@redfoxcenter.org>\n"
 "Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
index 38579d3..323f1d6 100644 (file)
--- a/po/ga.po
+++ b/po/ga.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2003-06-05 19:30+0100\n"
 "Last-Translator: Paul Duffy <dubhthach@frink.nuigalway.ie>\n"
 "Language-Team: Irish\n"
index d1c8609..20e2fba 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: gl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-12 18:50+0200\n"
 "Last-Translator: Ignacio Casal Quinteiro <nacho.resa@gmail.com>\n"
 "Language-Team: Galego <trasno@ceu.fi.udc.es>\n"
index c8ee4e7..619c424 100644 (file)
--- a/po/gu.po
+++ b/po/gu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.gu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-09 10:20+0530\n"
 "Last-Translator: Ankit Patel <ankit644@yahoo.com>\n"
 "Language-Team: Gujarati <indianoss-gujarati@lists.sourceforge.net>\n"
index 19a37ba..7c0405f 100644 (file)
--- a/po/he.po
+++ b/po/he.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.he\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2002-12-05 23:31+0200\n"
 "Last-Translator: Yair Hershkovitz <yairhr@gmail.com>\n"
 "Language-Team: Hebrew <he@li.org>\n"
index 7f1adfe..53a5c15 100644 (file)
--- a/po/hi.po
+++ b/po/hi.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.hi\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-20 13:30+0530\n"
 "Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
 "Language-Team: Hindi <fedora-trans-hi@redhat.com>\n"
index 1954a63..f021741 100644 (file)
--- a/po/hr.po
+++ b/po/hr.po
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2004-03-13 11:52+CET\n"
 "Last-Translator: auto\n"
 "Language-Team: Croatian <lokalizacija@linux.hr>\n"
index 7edb0b4..60ad342 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.hu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-26 13:09+0200\n"
 "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
 "Language-Team: Hungarian <gnome@gnome.hu>\n"
index 260636e..e764181 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-03-22 21:31+0700\n"
 "Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"
 "Language-Team: Indonesia <kontak@id.gnome.org>\n"
index 9adddb4..5415c91 100644 (file)
--- a/po/is.po
+++ b/po/is.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 2.1.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2003-05-04 11:21--100\n"
 "Last-Translator: Samuel Jon Gunnarsson <sammi@techattack.nu>\n"
 "Language-Team: Icelandic <gnome@techattack.nu>\n"
index d1db561..d09cc16 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-09-12 10:07+0200\n"
 "Last-Translator: Luca Ferretti <elle.uca@libero.it>\n"
 "Language-Team: Italian <tp@lists.linux.it>\n"
index 1561438..0690c67 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-16 22:41+0900\n"
 "Last-Translator: Satoru SATOH <ss@gnome.gr.jp>\n"
 "Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
index 1f640ff..29d0436 100644 (file)
--- a/po/ka.po
+++ b/po/ka.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-11-14 01:59+0100\n"
 "Last-Translator: Vladimer Sichinava <vsichi@gnome.org>\n"
 "Language-Team: Georgian <geognome@googlegroups.com>\n"
index 86f9836..bf23364 100644 (file)
--- a/po/kn.po
+++ b/po/kn.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ATK.GNOME-2.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2002-12-27 17:12+0530\n"
 "Last-Translator: Pramod <rpramod@postmaster.co.uk>\n"
 "Language-Team: Kannada <LL@li.org>\n"
index be2d656..8bfd67e 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 1.12.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-10 01:37+0900\n"
 "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
 "Language-Team: GNOME Korea <gnome-kr-hackers@lists.kldp.net>\n"
index 0893939..34bfde0 100644 (file)
--- a/po/ku.po
+++ b/po/ku.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ku\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-10-01 18:47+0100\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-12-23 21:49+0100\n"
 "Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
 "Language-Team: Kurdish <ku@li.org>\n"
@@ -135,6 +135,7 @@ msgstr "bijarkerê pelan"
 msgid "filler"
 msgstr "tijeker"
 
+#. I know it looks wrong but that is what Java returns
 #: atk/atkobject.c:104
 msgid "fontchooser"
 msgstr "hilbijêrê curetîpan"
@@ -397,7 +398,8 @@ msgstr "Navê Gihiştbar"
 
 #: atk/atkobject.c:357
 msgid "Object instance's name formatted for assistive technology access"
-msgstr "Navê hêmana bireserê, ji bo gihiştina teknolojiya alîkar hate teşekirin"
+msgstr ""
+"Navê hêmana bireserê, ji bo gihiştina teknolojiya alîkar hate teşekirin"
 
 #: atk/atkobject.c:363
 msgid "Accessible Description"
@@ -452,7 +454,9 @@ msgid "Accessible Table Caption"
 msgstr "Sernavê Tabloya ku Gihiştbar"
 
 #: atk/atkobject.c:414
-msgid "Is used to notify that the table caption has changed; this property should not be used. accessible-table-caption-object should be used instead"
+msgid ""
+"Is used to notify that the table caption has changed; this property should "
+"not be used. accessible-table-caption-object should be used instead"
 msgstr ""
 
 #: atk/atkobject.c:420
@@ -510,4 +514,3 @@ msgstr "Gihandinda Hejmara Hypertext"
 #: atk/atkobject.c:463
 msgid "The number of links which the current AtkHypertext has"
 msgstr "Hejmara Girêdanan yên di AtkHypertext de hene"
-
index c5a8b70..5b69ff4 100644 (file)
--- a/po/li.po
+++ b/po/li.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk cvs\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2003-06-04 16:08+0100\n"
 "Last-Translator: Mathieu van Woerkom <mathieu@brabants.org>\n"
 "Language-Team: Limburgish\n"
index a7cfbd3..6b0fc6b 100644 (file)
--- a/po/lt.po
+++ b/po/lt.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-01-07 14:33+0200\n"
 "Last-Translator: Žygimantas Beručka <uid0@akl.lt>\n"
 "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
index 2fdb1ab..bc280cc 100644 (file)
--- a/po/lv.po
+++ b/po/lv.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lv\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-07-21 13:22+0300\n"
 "Last-Translator: Raivis Dejus <orvils@gmail.com>\n"
 "Language-Team: Latvian <locale@laka.lv>\n"
index db645ef..df77f7a 100644 (file)
--- a/po/mk.po
+++ b/po/mk.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: mk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-02 08:33+0200\n"
 "Last-Translator: Arangel Angov <ufo@linux.net.mk>\n"
 "Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
index 3d8856f..0c2fecb 100644 (file)
--- a/po/ml.po
+++ b/po/ml.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-07-17 17:14+0530\n"
 "Last-Translator: Ani Peter <peter.ani@gmail.com>\n"
 "Language-Team: Malayalam\n"
index 01558ae..20a6c8b 100644 (file)
--- a/po/mn.po
+++ b/po/mn.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: mn\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2004-08-06 08:38+0200\n"
 "Last-Translator: Sanlig Badral <badral@users.sourceforge.net>\n"
 "Language-Team: Mongolian <openmn-translation@lists.sourceforge.net>\n"
index db0acc2..73e2b22 100644 (file)
--- a/po/mr.po
+++ b/po/mr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 1.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2004-02-07 13:20+0530\n"
 "Last-Translator: Jitendra Shah. <jitendras@vsnl.com>\n"
 "Language-Team: Marathi <www.indictrans.org>\n"
index d1cccc7..4742063 100644 (file)
--- a/po/ms.po
+++ b/po/ms.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2003-11-28 20:20+0800\n"
 "Last-Translator: Hasbullah Bin Pit <sebol@ikhlas.com>\n"
 "Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.org>\n"
index 64e0ac2..4fe50b7 100644 (file)
--- a/po/nb.po
+++ b/po/nb.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 2.15.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-26 21:26+0200\n"
 "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
 "Language-Team: Norwegian <i18n-nb@lister.ping.uio.no>\n"
index 0598f5f..90faf1b 100644 (file)
--- a/po/ne.po
+++ b/po/ne.po
@@ -18,7 +18,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.gnome-2-14.ne\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-04-26 22:52+0545\n"
 "Last-Translator: Shyam Krishna Bal <shyamkrishna_bal@yahoo.com>\n"
 "Language-Team: Nepali <info@mpp.org.np>\n"
index 77cd915..5483057 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk cvs\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-11 08:14+0200\n"
 "Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n"
 "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
index 9b73312..945053d 100644 (file)
--- a/po/nn.po
+++ b/po/nn.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: nn\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-09-02 12:14+0200\n"
 "Last-Translator: Åsmund Skjæveland <aasmunds@fys.uio.no>\n"
 "Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
index 0482c11..5b8891e 100644 (file)
--- a/po/or.po
+++ b/po/or.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the atk package.
 # Gora Mohanty <gora_mohanty@yahoo.co.in>, 2005, 2006.
 # Subhransu Behera <arya_subhransu@yahoo.co.in>, 2006.
-# $Id$
+# $Id: or.po,v 1.3 2006/12/15 05:17:55 liyuan Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.or\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-03-24 03:50+0530\n"
 "Last-Translator: Subhransu Behera <arya_subhransu@yahoo.co.in>\n"
 "Language-Team: Oriya <oriya-group@lists.sarovar.org>\n"
index 7ecd117..b0311f7 100644 (file)
--- a/po/pa.po
+++ b/po/pa.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-12-09 11:34+0530\n"
 "Last-Translator: KDB <brar.kd@gmail.com>\n"
 "Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
index 1a757cb..7ebae82 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.pl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-12 02:24+0200\n"
 "Last-Translator: Artur Flinta <aflinta@at.kernel.pl>\n"
 "Language-Team: Polish <translators@gnomepl.org>\n"
index a9aaa75..0a423af 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 2.16\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-17 21:10+0000\n"
 "Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
 "Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
index cee5ace..1ec2fc0 100644 (file)
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-08 23:20-0300\n"
 "Last-Translator: Leonardo Ferreira Fontenelle <leo.fontenelle@gmail.com>\n"
 "Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n"
index 6dae831..1b1dced 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-09-03 16:40+0300\n"
 "Last-Translator: Mişu Moldovan <dumol@gnome.ro>\n"
 "Language-Team: Romanian <gnomero-list@lists.sourceforge.net>\n"
index a7109ba..019776e 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-24 17:39+0300\n"
 "Last-Translator: Leonid Kanter <leon@asplinux.ru>\n"
 "Language-Team:  <gnome-cyr@gnome.org>\n"
index 847316c..14b5d05 100644 (file)
--- a/po/rw.po
+++ b/po/rw.po
@@ -15,7 +15,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 2.12\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2005-03-28 19:34-0700\n"
 "Last-Translator: Steve Murphy <murf@e-tools.com>\n"
 "Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
index d7168bf..730afd8 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-19 21:42+0200\n"
 "Last-Translator: Marcel Telka <marcel@telka.sk>\n"
 "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
index 1e03999..95f95c1 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-11 17:37+0100\n"
 "Last-Translator: Matjaž Horvat <m@owca.info>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
index 4f61513..b95d54c 100644 (file)
--- a/po/sq.po
+++ b/po/sq.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-28 08:41+0200\n"
 "Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
 "Language-Team: albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"
index 4950ba1..7850b1f 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-09-01 00:10+0200\n"
 "Last-Translator: Горан Ракић <grakic@devbase.net>\n"
 "Language-Team: Serbian (sr) <gnom@prevod.org>\n"
index cdc8e92..3a54c29 100644 (file)
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-09-01 00:10+0200\n"
 "Last-Translator: Goran Rakić <grakic@devbase.net>\n"
 "Language-Team: Serbian (sr) <gnom@prevod.org>\n"
index 9f1c862..01ad7a2 100644 (file)
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2004-08-06 19:34+0200\n"
 "Last-Translator: Bojan Suzic <bojans@teol.net>\n"
 "Language-Team: Serbian (sr) <gnom@prevod.org>\n"
index 30f9f20..ff307d1 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -4,13 +4,13 @@
 # Daniel Nylander <po@danielnylander.se>, 2006.
 # Christian Rose <menthos@menthos.com>, 2002, 2003, 2004, 2005, 2006.
 #
-# $Id$
+# $Id: sv.po,v 1.13 2006/12/15 05:17:55 liyuan Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-06-14 09:02+0100\n"
 "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
 "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
index 096a5f2..7b7efed 100644 (file)
--- a/po/ta.po
+++ b/po/ta.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD.ta\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-30 16:05+0530\n"
 "Last-Translator: Felix <ifelix25@gmail.com>\n"
 "Language-Team: Tamil <ta@li.org>\n"
index 0f53230..27a0195 100644 (file)
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk.HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-11-14 10:38+0530\n"
 "Last-Translator: Sree Ganesh <sthottem@redhat.com>\n"
 "Language-Team: Swecha <localisation@swecha.org>\n"
index 5945776..fa9340f 100644 (file)
--- a/po/th.po
+++ b/po/th.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-02-11 09:31+0700\n"
 "Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
 "Language-Team:  <l10n@opentle.org>\n"
index b2cd3f1..5983d40 100644 (file)
--- a/po/tk.po
+++ b/po/tk.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2004-05-25 17:47+0330\n"
 "Last-Translator: Mühemmet Amut <m_amout@yahoo.com>\n"
 "Language-Team: Turkmen <kakilikgroup@yahoo.com>\n"
index d1688e5..6290317 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tr\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-03-13 23:53+0200\n"
 "Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
 "Language-Team: Turkish <gnome-turk@gnome.org>\n"
index 90f50c4..3f4aa9f 100644 (file)
--- a/po/tt.po
+++ b/po/tt.po
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 1.3.10\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2005-11-01 12:39+0300\n"
 "Last-Translator: Albert Fazlí <tatarish.l10n@gmail.com>\n"
 "Language-Team: Tatarish <tatarish.l10n@gmail.com>\n"
index 26c20b7..eade1cc 100644 (file)
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 2.12 \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2005-06-17 13:10+0000\n"
 "Last-Translator: Gheyret Tohti <gheyret@yahoo.com>\n"
 "Language-Team: Gnome Uighur Translation Project <gnome-uighur@yahoogroups."
index 544df5f..2323203 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-07-23 16:46+0200\n"
 "Last-Translator: Maxim Dziumanenko <dziumanenko@gmail.com>\n"
 "Language-Team: Ukrainian <uk@li.org>\n"
index ba9c2cc..b537a82 100644 (file)
--- a/po/vi.po
+++ b/po/vi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ATK for Gnome HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-08-18 20:32+0930\n"
 "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
 "Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
index 087adc4..021d8de 100644 (file)
--- a/po/wa.po
+++ b/po/wa.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk HEAD\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2005-11-21 19:45+0100\n"
 "Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
 "Language-Team: Walloon <linux-wa@walon.org>\n"
index 53b827d..17bbe10 100644 (file)
--- a/po/xh.po
+++ b/po/xh.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2005-02-17 10:54+0200\n"
 "Last-Translator: Canonical Ltd <translations@canonical.com>\n"
 "Language-Team: Xhosa <xh-translate@ubuntu.com>\n"
index 6728863..b27a368 100644 (file)
--- a/po/yi.po
+++ b/po/yi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 1.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2003-03-19\n"
 "Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n"
 "Language-Team: Yiddish <raphael@cs.uky.edu>\n"
index 7086bcf..f4b47ca 100644 (file)
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2005-11-25 23:52+0800\n"
 "Last-Translator: chaoslawful <wangxz00@mails.tsinghua.edu.cn>\n"
 "Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"
index 0800ddb..d382ba8 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 1.12.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-07-31 15:31+0800\n"
 "Last-Translator: Li-Jen Hsin <hsin@med.cgu.edu.tw>\n"
 "Language-Team: Chinese (Taiwan) <community@linuxhall.org>\n"
index 0800ddb..d382ba8 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: atk 1.12.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-12-15 12:59+0800\n"
+"POT-Creation-Date: 2007-01-08 14:18+0000\n"
 "PO-Revision-Date: 2006-07-31 15:31+0800\n"
 "Last-Translator: Li-Jen Hsin <hsin@med.cgu.edu.tw>\n"
 "Language-Team: Chinese (Taiwan) <community@linuxhall.org>\n"