mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
2.24.1
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
'\" t
|
||||
.\" Title: gtester-report
|
||||
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
||||
.\" Generator: DocBook XSL Stylesheets v1.74.2 <http://docbook.sf.net/>
|
||||
.\" Date: 03/13/2009
|
||||
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
||||
.\" Date: 05/02/2010
|
||||
.\" Manual: [FIXME: manual]
|
||||
.\" Source: [FIXME: source]
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "GTESTER\-REPORT" "1" "03/13/2009" "[FIXME: source]" "[FIXME: manual]"
|
||||
.TH "GTESTER\-REPORT" "1" "05/02/2010" "[FIXME: source]" "[FIXME: manual]"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * set default formatting
|
||||
.\" -----------------------------------------------------------------
|
||||
|
@@ -66,6 +66,9 @@ locking function variants (those without the suffix _unlocked)
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GAsyncQueue ##### -->
|
||||
<para>
|
||||
The #GAsyncQueue struct is an opaque data structure, which represents
|
||||
@@ -77,6 +80,7 @@ an asynchronous queue. It should only be accessed through the
|
||||
<!-- ##### FUNCTION g_async_queue_new ##### -->
|
||||
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
|
@@ -65,16 +65,18 @@ g_atomic_pointer_compare_and_exchange() respectively.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_atomic_int_get ##### -->
|
||||
<para>
|
||||
Reads the value of the integer pointed to by @atomic. Also acts as
|
||||
a memory barrier.
|
||||
</para>
|
||||
|
||||
@atomic: a pointer to an integer
|
||||
@Returns: the value of *@atomic
|
||||
@Since: 2.4
|
||||
<!-- # Unused Parameters # -->
|
||||
@atomic: a pointer to an integer
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_atomic_int_set ##### -->
|
||||
@@ -83,10 +85,9 @@ Sets the value of the integer pointed to by @atomic.
|
||||
Also acts as a memory barrier.
|
||||
</para>
|
||||
|
||||
@Since: 2.10
|
||||
<!-- # Unused Parameters # -->
|
||||
@atomic: a pointer to an integer
|
||||
@newval: the new value
|
||||
@Since: 2.10
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_atomic_int_add ##### -->
|
||||
@@ -95,10 +96,9 @@ Atomically adds @val to the integer pointed to by @atomic.
|
||||
Also acts as a memory barrier.
|
||||
</para>
|
||||
|
||||
@Since: 2.4
|
||||
<!-- # Unused Parameters # -->
|
||||
@atomic: a pointer to an integer.
|
||||
@val: the value to add to *@atomic.
|
||||
@Since: 2.4
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_atomic_int_exchange_and_add ##### -->
|
||||
@@ -108,11 +108,10 @@ the value of *@atomic just before the addition took place.
|
||||
Also acts as a memory barrier.
|
||||
</para>
|
||||
|
||||
@Returns: the value of *@atomic before the addition.
|
||||
@Since: 2.4
|
||||
<!-- # Unused Parameters # -->
|
||||
@atomic: a pointer to an integer.
|
||||
@val: the value to add to *@atomic.
|
||||
@Returns: the value of *@atomic before the addition.
|
||||
@Since: 2.4
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_atomic_int_compare_and_exchange ##### -->
|
||||
@@ -122,12 +121,11 @@ if they are equal, atomically exchanges *@atomic with @newval.
|
||||
Also acts as a memory barrier.
|
||||
</para>
|
||||
|
||||
@Returns: %TRUE, if *@atomic was equal @oldval. %FALSE otherwise.
|
||||
@Since: 2.4
|
||||
<!-- # Unused Parameters # -->
|
||||
@atomic: a pointer to an integer.
|
||||
@oldval: the assumed old value of *@atomic.
|
||||
@newval: the new value of *@atomic.
|
||||
@Returns: %TRUE, if *@atomic was equal @oldval. %FALSE otherwise.
|
||||
@Since: 2.4
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_atomic_pointer_get ##### -->
|
||||
@@ -136,10 +134,9 @@ Reads the value of the pointer pointed to by @atomic. Also acts as
|
||||
a memory barrier.
|
||||
</para>
|
||||
|
||||
@atomic: a pointer to a #gpointer.
|
||||
@Returns: the value to add to *@atomic.
|
||||
@Since: 2.4
|
||||
<!-- # Unused Parameters # -->
|
||||
@atomic: a pointer to a #gpointer.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_atomic_pointer_set ##### -->
|
||||
@@ -148,10 +145,9 @@ Sets the value of the pointer pointed to by @atomic.
|
||||
Also acts as a memory barrier.
|
||||
</para>
|
||||
|
||||
@Since: 2.10
|
||||
<!-- # Unused Parameters # -->
|
||||
@atomic: a pointer to a #gpointer
|
||||
@newval: the new value
|
||||
@Since: 2.10
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_atomic_pointer_compare_and_exchange ##### -->
|
||||
@@ -161,12 +157,11 @@ if they are equal, atomically exchanges *@atomic with @newval.
|
||||
Also acts as a memory barrier.
|
||||
</para>
|
||||
|
||||
@Returns: %TRUE, if *@atomic was equal @oldval. %FALSE otherwise.
|
||||
@Since: 2.4
|
||||
<!-- # Unused Parameters # -->
|
||||
@atomic: a pointer to a #gpointer.
|
||||
@oldval: the assumed old value of *@atomic.
|
||||
@newval: the new value of *@atomic.
|
||||
@Returns: %TRUE, if *@atomic was equal @oldval. %FALSE otherwise.
|
||||
@Since: 2.4
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_atomic_int_inc ##### -->
|
||||
|
@@ -88,6 +88,9 @@ The #GBookmarkFile parser was added in GLib 2.12.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GBookmarkFile ##### -->
|
||||
<para>
|
||||
The <structname>GBookmarkFile</structname> struct contains only private data
|
||||
@@ -125,6 +128,7 @@ unknown encoding
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
|
@@ -52,6 +52,9 @@ side-effects.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO G_BYTE_ORDER ##### -->
|
||||
<para>
|
||||
The host byte order.
|
||||
|
@@ -164,6 +164,9 @@ export G_FILENAME_ENCODING=ISO-8859-1
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_convert ##### -->
|
||||
<para>
|
||||
|
||||
|
@@ -66,6 +66,9 @@ a #GTimeVal with g_get_current_time().
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO G_USEC_PER_SEC ##### -->
|
||||
<para>
|
||||
Number of microseconds in one second (1 million). This macro is provided for
|
||||
@@ -268,6 +271,7 @@ be cleared (as if you'd called g_date_clear()) but invalid (it won't
|
||||
represent an existing day). Free the return value with g_date_free().
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns: a newly-allocated #GDate
|
||||
|
||||
|
||||
|
@@ -382,6 +382,9 @@ Summary of rules for use of #GError:
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GError ##### -->
|
||||
<para>
|
||||
The <structname>GError</structname> structure contains
|
||||
|
@@ -41,6 +41,9 @@ g_dir_read_name(), g_dir_rewind(), g_dir_close().
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### ENUM GFileError ##### -->
|
||||
<para>
|
||||
Values corresponding to <literal>errno</literal> codes returned from file operations
|
||||
|
@@ -75,6 +75,9 @@ written by Philip Hazel.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### ENUM GRegexError ##### -->
|
||||
<para>
|
||||
Error codes returned by regular expressions functions.
|
||||
|
@@ -20,6 +20,9 @@ and the list of hook functions can be invoked.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GHookList ##### -->
|
||||
<para>
|
||||
The <structname>GHookList</structname> struct represents a
|
||||
|
@@ -32,6 +32,9 @@ The gettext manual.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO Q_ ##### -->
|
||||
<para>
|
||||
Like _(), but handles context in message ids. This has the advantage that
|
||||
@@ -209,6 +212,7 @@ Intltool has support for the NC_() macro since version 0.40.1.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
|
@@ -118,6 +118,9 @@ restricted to ASCII characters.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GKeyFile ##### -->
|
||||
<para>
|
||||
The <structname>GKeyFile</structname> struct contains only private fields
|
||||
@@ -164,6 +167,7 @@ Flags which influence the parsing.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
|
@@ -18,6 +18,9 @@ the standard integer and floating point types.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO G_MININT ##### -->
|
||||
<para>
|
||||
The minimum value which can be held in a #gint.
|
||||
|
@@ -17,6 +17,9 @@ These macros provide a few commonly-used features.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO G_OS_WIN32 ##### -->
|
||||
<para>
|
||||
This macro is defined only on Windows. So you can bracket
|
||||
|
@@ -18,6 +18,9 @@ by application programmers.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO G_INLINE_FUNC ##### -->
|
||||
<para>
|
||||
This macro is used to export function prototypes so they can be linked
|
||||
|
@@ -104,6 +104,9 @@ manages all available sources of events
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GMainLoop ##### -->
|
||||
<para>
|
||||
The <structname>GMainLoop</structname> struct is an opaque data type
|
||||
@@ -278,6 +281,7 @@ representing a set of sources to be handled in a main loop.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -303,6 +307,7 @@ representing a set of sources to be handled in a main loop.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -524,6 +529,7 @@ or -1 if an error occurred.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -532,6 +538,7 @@ or -1 if an error occurred.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -550,6 +557,7 @@ for the default main context.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -638,6 +646,7 @@ for the default main context.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -789,6 +798,7 @@ This is just a placeholder for #GClosureMarshal, which cannot be used here
|
||||
for dependency reasons.
|
||||
</para>
|
||||
|
||||
@void:
|
||||
|
||||
|
||||
<!-- ##### STRUCT GSourceFuncs ##### -->
|
||||
|
@@ -92,6 +92,9 @@ Sections marked as CDATA
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### ENUM GMarkupError ##### -->
|
||||
<para>
|
||||
Error codes returned by markup parsing.
|
||||
|
@@ -34,6 +34,9 @@ g_mem_set_vtable().
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO g_new ##### -->
|
||||
<para>
|
||||
Allocates @n_structs elements of type @struct_type.
|
||||
@@ -391,6 +394,7 @@ should return %NULL on failure, GLib will handle error-checking for you.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -419,5 +423,6 @@ Note that this function will not output anything unless you have
|
||||
previously installed the #glib_mem_profiler_table with g_mem_set_vtable().
|
||||
</para>
|
||||
|
||||
@void:
|
||||
|
||||
|
||||
|
@@ -92,6 +92,9 @@ object size used at allocation time is still available when freeing.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_slice_alloc ##### -->
|
||||
<para>
|
||||
Allocates a block of memory from the slice allocator.
|
||||
|
@@ -23,6 +23,9 @@ These can be extended with user-defined levels.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO G_LOG_DOMAIN ##### -->
|
||||
<para>
|
||||
Defines the log domain.
|
||||
|
@@ -17,11 +17,15 @@ These are portable utility functions.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_get_application_name ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -38,6 +42,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -82,6 +87,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -90,6 +96,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -98,6 +105,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -106,6 +114,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -114,6 +123,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -122,6 +132,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -154,6 +165,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -162,6 +174,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -170,6 +183,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_get_host_name ##### -->
|
||||
@@ -177,6 +191,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -185,6 +200,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -193,6 +209,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -201,6 +218,7 @@ These are portable utility functions.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -406,6 +424,7 @@ Declares a type of function which takes no arguments and has no return value.
|
||||
It is used to specify the type function passed to g_atexit().
|
||||
</para>
|
||||
|
||||
@void:
|
||||
|
||||
|
||||
<!-- ##### USER_FUNCTION GFreeFunc ##### -->
|
||||
|
@@ -99,6 +99,9 @@ just_say_hello (const char *filename, GError **error)
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GModule ##### -->
|
||||
<para>
|
||||
The #GModule struct is an opaque data structure to represent a
|
||||
@@ -112,6 +115,7 @@ It should only be accessed via the following functions.
|
||||
Checks if modules are supported on the current platform.
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns: %TRUE if modules are supported.
|
||||
|
||||
|
||||
@@ -228,6 +232,7 @@ Closes a module.
|
||||
Gets a string describing the last module error.
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns: a string describing the last module error.
|
||||
|
||||
|
||||
|
@@ -27,6 +27,9 @@ The #GFloatIEEE754 and #GDoubleIEEE754 unions are used to access the
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO G_IEEE754_FLOAT_BIAS ##### -->
|
||||
<para>
|
||||
See <ulink url="http://cch.loria.fr/documentation/IEEE754/numerical_comp_guide/ncg_math.doc.html">http://cch.loria.fr/documentation/IEEE754/numerical_comp_guide/ncg_math.doc.html</ulink>
|
||||
|
@@ -42,6 +42,9 @@ To free the entire queue, use g_queue_free().
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GQueue ##### -->
|
||||
<para>
|
||||
Contains the public fields of a <link linkend="glib-queues">Queue</link>.
|
||||
@@ -56,6 +59,7 @@ Contains the public fields of a <link linkend="glib-queues">Queue</link>.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
|
@@ -23,6 +23,9 @@ understand it myself. Look at gtkrc.c for some code using the scanner.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GScanner ##### -->
|
||||
<para>
|
||||
The data structure representing a lexical scanner.
|
||||
|
@@ -17,6 +17,9 @@ process launching
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### ENUM GSpawnError ##### -->
|
||||
<para>
|
||||
Error codes returned by spawning processes.
|
||||
|
@@ -40,6 +40,9 @@ wide characters (see g_unichar_iswide()) into account.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_strdup ##### -->
|
||||
<para>
|
||||
|
||||
|
@@ -20,6 +20,9 @@ nul bytes.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GString ##### -->
|
||||
<para>
|
||||
The #GString struct contains the public fields of a #GString.
|
||||
|
@@ -66,6 +66,9 @@ facilitate running tests and producing nicely formatted test reports.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_test_minimized_result ##### -->
|
||||
<para>
|
||||
|
||||
@@ -143,6 +146,7 @@ Returns %TRUE if tests are run in quiet mode.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -152,7 +156,7 @@ Returns %TRUE if tests are run in quiet mode.
|
||||
</para>
|
||||
|
||||
@testpath:
|
||||
@test_func:
|
||||
@void:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_test_add_data_func ##### -->
|
||||
@@ -162,7 +166,7 @@ Returns %TRUE if tests are run in quiet mode.
|
||||
|
||||
@testpath:
|
||||
@test_data:
|
||||
@test_func:
|
||||
@gconstpointer:
|
||||
|
||||
|
||||
<!-- ##### MACRO g_test_add ##### -->
|
||||
@@ -229,6 +233,7 @@ Returns %TRUE if tests are run in quiet mode.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_test_timer_elapsed ##### -->
|
||||
@@ -236,6 +241,7 @@ Returns %TRUE if tests are run in quiet mode.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -244,6 +250,7 @@ Returns %TRUE if tests are run in quiet mode.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -308,6 +315,7 @@ determine what traps to set.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -316,6 +324,7 @@ determine what traps to set.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -389,6 +398,7 @@ see g_test_rand_int() for details on test case random numbers.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -407,6 +417,7 @@ see g_test_rand_int() for details on test case random numbers.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -594,9 +605,9 @@ An opaque structure representing a test suite.
|
||||
@test_name:
|
||||
@data_size:
|
||||
@test_data:
|
||||
@data_setup:
|
||||
@data_test:
|
||||
@data_teardown:
|
||||
@void:
|
||||
@void:
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -614,6 +625,7 @@ An opaque structure representing a test suite.
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
|
@@ -24,6 +24,9 @@ is a perfectly valid empty stack.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### STRUCT GTrashStack ##### -->
|
||||
<para>
|
||||
Each piece of memory that is pushed onto the stack
|
||||
|
@@ -57,6 +57,9 @@ integer; values outside the range of a 32-bit integer will be mangled.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO GINT_TO_POINTER ##### -->
|
||||
<para>
|
||||
Stuffs an integer into a pointer type.
|
||||
|
@@ -42,6 +42,9 @@ for completeness - #gchar, #gint, #gshort, #glong, #gfloat, #gdouble.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### TYPEDEF gboolean ##### -->
|
||||
<para>
|
||||
A standard <type>boolean</type> type.
|
||||
|
@@ -40,6 +40,9 @@ Convenience functions for converting between UTF-8 and the locale encoding.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### TYPEDEF gunichar ##### -->
|
||||
<para>
|
||||
A type which can hold any UTF-32 or UCS-4 character code, also known
|
||||
|
@@ -19,6 +19,9 @@ typically use the features described here.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO GLIB_MAJOR_VERSION ##### -->
|
||||
<para>
|
||||
The major version number of the GLib library.
|
||||
|
@@ -28,6 +28,9 @@ give a perhaps-helpful warning before giving up.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### FUNCTION g_print ##### -->
|
||||
<para>
|
||||
Outputs a formatted message via the print handler.
|
||||
|
@@ -19,6 +19,9 @@ project.
|
||||
<!-- ##### SECTION Stability_Level ##### -->
|
||||
|
||||
|
||||
<!-- ##### SECTION Image ##### -->
|
||||
|
||||
|
||||
<!-- ##### MACRO MAXPATHLEN ##### -->
|
||||
<para>
|
||||
Provided for UNIX emulation on Windows; equivalent to UNIX
|
||||
@@ -42,6 +45,7 @@ macro %MAXPATHLEN, which is the maximum length of a filename
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
@@ -80,6 +84,7 @@ macro %MAXPATHLEN, which is the maximum length of a filename
|
||||
|
||||
</para>
|
||||
|
||||
@void:
|
||||
@Returns:
|
||||
|
||||
|
||||
|
@@ -1,13 +1,13 @@
|
||||
'\" t
|
||||
.\" Title: glib-genmarshal
|
||||
.\" Author: [see the "Author" section]
|
||||
.\" Generator: DocBook XSL Stylesheets v1.74.2 <http://docbook.sf.net/>
|
||||
.\" Date: 03/13/2009
|
||||
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
||||
.\" Date: 05/02/2010
|
||||
.\" Manual: [FIXME: manual]
|
||||
.\" Source: [FIXME: source]
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "GLIB\-GENMARSHAL" "1" "03/13/2009" "[FIXME: source]" "[FIXME: manual]"
|
||||
.TH "GLIB\-GENMARSHAL" "1" "05/02/2010" "[FIXME: source]" "[FIXME: manual]"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * set default formatting
|
||||
.\" -----------------------------------------------------------------
|
||||
|
@@ -1,13 +1,13 @@
|
||||
'\" t
|
||||
.\" Title: glib-mkenums
|
||||
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
||||
.\" Generator: DocBook XSL Stylesheets v1.75.1 <http://docbook.sf.net/>
|
||||
.\" Date: 07/05/2009
|
||||
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
|
||||
.\" Date: 05/02/2010
|
||||
.\" Manual: [FIXME: manual]
|
||||
.\" Source: [FIXME: source]
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "GLIB\-MKENUMS" "1" "07/05/2009" "[FIXME: source]" "[FIXME: manual]"
|
||||
.TH "GLIB\-MKENUMS" "1" "05/02/2010" "[FIXME: source]" "[FIXME: manual]"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * set default formatting
|
||||
.\" -----------------------------------------------------------------
|
||||
|
2
po/af.po
2
po/af.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-08 11:23+0100\n"
|
||||
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
|
||||
"Language-Team: translate-discuss-af@lists.sourceforge.net\n"
|
||||
|
2
po/am.po
2
po/am.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2003-01-16 08:39+EDT\n"
|
||||
"Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n"
|
||||
"Language-Team: Amharic <locales@geez.org>\n"
|
||||
|
2
po/ar.po
2
po/ar.po
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2008-09-17 05:06+0300\n"
|
||||
"Last-Translator: Anas Afif Emad <anas.e87@gmail.com>\n"
|
||||
"Language-Team: Arabic <doc@arabeyes.org>\n"
|
||||
|
2
po/as.po
2
po/as.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: as\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-09-15 12:48+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Assamese <>\n"
|
||||
|
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-01-04 19:27+0100\n"
|
||||
"Last-Translator: astur <malditoastur@gmail.com>\n"
|
||||
"Language-Team: Asturian <alministradores@softastur.org>\n"
|
||||
|
2
po/az.po
2
po/az.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.az\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2004-02-02 12:12+0200\n"
|
||||
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
|
||||
"Language-Team: Azerbaijani Turkish <gnome@azitt.com>\n"
|
||||
|
2
po/be.po
2
po/be.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2005-11-16 11:21+0200\n"
|
||||
"Last-Translator: Vital Khilko <vk@altlinux.ru>\n"
|
||||
"Language-Team: Belarusian <i18n@mova.org>\n"
|
||||
|
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2008-02-16 23:33+0200\n"
|
||||
"Last-Translator: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>\n"
|
||||
"Language-Team: Belarusian Latin <i18n@mova.org>\n"
|
||||
|
2
po/bg.po
2
po/bg.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-06 20:22+0200\n"
|
||||
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
|
||||
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
||||
|
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: bn_IN\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-09-15 18:31+0530\n"
|
||||
"Last-Translator: Runa Bhattacharjee <runab@redhat.com>\n"
|
||||
"Language-Team: Bengali INDIA <anubad@lists.ankur.org.in>\n"
|
||||
|
2
po/bs.po
2
po/bs.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.glib-2-4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2004-05-17 01:30+0000\n"
|
||||
"Last-Translator: Kenan Hadžiavdić <kenanh@frisurf.no>\n"
|
||||
"Language-Team: Bosnian <lokal@lugbih.org>\n"
|
||||
|
File diff suppressed because it is too large
Load Diff
2
po/cs.po
2
po/cs.po
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-15 02:28+0100\n"
|
||||
"Last-Translator: Petr Kovar <pknbe@volny.cz>\n"
|
||||
"Language-Team: Czech <gnome-cs-list@gnome.org>\n"
|
||||
|
2
po/cy.po
2
po/cy.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-12-21 14:56+0100\n"
|
||||
"Last-Translator: Iestyn Pryce <dylunio@gmail.com>\n"
|
||||
"Language-Team: Welsh <gnome-cy@pengwyn.linux.org.uk>\n"
|
||||
|
2
po/de.po
2
po/de.po
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-04 22:01+0100\n"
|
||||
"Last-Translator: Mario Blättermann <mariobl@gnome.org>\n"
|
||||
"Language-Team: Deutsch <gnome-de@gnome.org>\n"
|
||||
|
2
po/dz.po
2
po/dz.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.dz\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2006-08-09 10:23+0530\n"
|
||||
"Last-Translator: Mindu Dorji\n"
|
||||
"Language-Team: DZONGKHA <pgeyleg@dit.gov.bt>\n"
|
||||
|
2
po/el.po
2
po/el.po
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-18 23:12+0200\n"
|
||||
"Last-Translator: nikolaosx1 <nikolaosx1@gmail.com>\n"
|
||||
"Language-Team: Greek\n"
|
||||
|
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Thomas Thurman <tthurman@gnome.org>\n"
|
||||
"Language-Team: Shavian <ubuntu-l10n-en-shaw@lists.launchpad.net>\n"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2005-08-27 16:20-0400\n"
|
||||
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
|
||||
"Language-Team: Canadian English <adamw@gnome.org>\n"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-02-24 15:27+0100\n"
|
||||
"Last-Translator: Philip Withnall <philip@tecnocode.co.uk>\n"
|
||||
"Language-Team: British English <en@li.org>\n"
|
||||
|
2
po/eo.po
2
po/eo.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.3.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2003-07-01 15:10-0500\n"
|
||||
"Last-Translator: Charles Voelger <cvoelger@dweasel.com>\n"
|
||||
"Language-Team: Esperanto <LL@li.org>\n"
|
||||
|
2
po/es.po
2
po/es.po
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-07 11:48+0100\n"
|
||||
"Last-Translator: Jorge González <jorgegonz@svn.gnome.org>\n"
|
||||
"Language-Team: Español <gnome-es-list@gnome.org>\n"
|
||||
|
2
po/et.po
2
po/et.po
@@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GLib MASTER\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-05 09:47+0200\n"
|
||||
"Last-Translator: Ivar Smolin <okul@linux.ee>\n"
|
||||
"Language-Team: Estonian <gnome-et@linux.ee>\n"
|
||||
|
2
po/eu.po
2
po/eu.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-22 12:31+0100\n"
|
||||
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
|
||||
"Language-Team: Basque <itzulpena@euskalgnu.org>\n"
|
||||
|
2
po/fa.po
2
po/fa.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2006-09-04 18:36+0330\n"
|
||||
"Last-Translator: Roozbeh Pournader <roozbeh@farsiweb.info>\n"
|
||||
"Language-Team: Persian\n"
|
||||
|
2
po/fi.po
2
po/fi.po
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-20 00:00+0200\n"
|
||||
"Last-Translator: Tommi Vainikainen <thv@iki.fi>\n"
|
||||
"Language-Team: Finnish <gnome-fi-laatu@lists.sourceforge.net>\n"
|
||||
|
2
po/fr.po
2
po/fr.po
@@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-05 22:31+0100\n"
|
||||
"Last-Translator: Claude Paroz <claude@2xlibre.net>\n"
|
||||
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
|
||||
|
2
po/ga.po
2
po/ga.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-08-08 01:49-0600\n"
|
||||
"Last-Translator: Seán de Búrca <leftmostcat@gmail.com>\n"
|
||||
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
|
||||
|
2
po/gl.po
2
po/gl.po
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-09 09:51+0100\n"
|
||||
"Last-Translator: Fran Diéguez <frandieguez@ubuntu.com>\n"
|
||||
"Language-Team: Galician <gnome@g11n.net>\n"
|
||||
|
2
po/gu.po
2
po/gu.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.master.gu\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-09-09 16:51+0530\n"
|
||||
"Last-Translator: Sweta Kothari <swkothar@redhat.com>\n"
|
||||
"Language-Team: Gujarati\n"
|
||||
|
2
po/he.po
2
po/he.po
@@ -12,7 +12,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.he\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-09-06 09:32+0200\n"
|
||||
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
|
||||
"Language-Team: Hebrew <he@li.org>\n"
|
||||
|
2
po/hi.po
2
po/hi.po
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-09-11 15:59+0530\n"
|
||||
"Last-Translator: Rajesh Ranjan <rajesh672@gmail.com>\n"
|
||||
"Language-Team: Hindi <hindi.sf.net>\n"
|
||||
|
2
po/hr.po
2
po/hr.po
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2008-05-18 15:38+0000\n"
|
||||
"Last-Translator: Launchpad Translations Administrators <rosetta@launchpad."
|
||||
"net>\n"
|
||||
|
2
po/hu.po
2
po/hu.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-05 22:02+0100\n"
|
||||
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
|
||||
"Language-Team: Hungarian <gnome at fsf dot hu>\n"
|
||||
|
2
po/hy.po
2
po/hy.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2006-03-03 16:24+0000\n"
|
||||
"Last-Translator: Norayr Chilingaryan <norik@freenet.am>\n"
|
||||
"Language-Team: Armenian <norik@freenet.am>\n"
|
||||
|
2
po/id.po
2
po/id.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2005-08-30 22:41+0300\n"
|
||||
"Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"
|
||||
"Language-Team: Indonesia <sukarelawan@gnome.linux.or.id>\n"
|
||||
|
2
po/is.po
2
po/is.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2003-08-18 18:05+0000\n"
|
||||
"Last-Translator: Richard Allen <ra@ra.is>\n"
|
||||
"Language-Team: is <is@li.org>\n"
|
||||
|
2
po/it.po
2
po/it.po
@@ -18,7 +18,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.21.x\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-06 01:03+0100\n"
|
||||
"Last-Translator: Luca Ferretti <lferrett@gnome.org>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
|
2
po/ja.po
2
po/ja.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-09-05 22:30+0900\n"
|
||||
"Last-Translator: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>\n"
|
||||
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
|
||||
|
2
po/ka.po
2
po/ka.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ka\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2007-09-14 12:15+0200\n"
|
||||
"Last-Translator: Vladimer Sichinava ვლადიმერ სიჭინავა <vsichi@gnome.org>\n"
|
||||
"Language-Team: Georgian <http://mail.gnome.org/mailman/listinfo/gnome-ge-"
|
||||
|
2
po/ko.po
2
po/ko.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-02-16 03:42+0900\n"
|
||||
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
|
||||
"Language-Team: GNOME Korea <gnome-kr@googlegroups.com>\n"
|
||||
|
2
po/ku.po
2
po/ku.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.glib-2-8\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2006-04-20 17:33+0000\n"
|
||||
"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
|
||||
"Language-Team: Kurdish <gnu-ku-wergerandin@lists.sourceforge.net>\n"
|
||||
|
2
po/lt.po
2
po/lt.po
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: lt\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-05 11:16+0200\n"
|
||||
"Last-Translator: Rimas Kudelis <rq@akl.lt>\n"
|
||||
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
|
||||
|
2
po/lv.po
2
po/lv.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2002-12-19 01:04+0200\n"
|
||||
"Last-Translator: Artis Trops <hornet@navigator.lv>\n"
|
||||
"Language-Team: Latvian <ll10nt@os.lv>\n"
|
||||
|
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-02-27 17:15+0530\n"
|
||||
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
|
||||
"Language-Team: maithili <maithili.sf.net>\n"
|
||||
|
2
po/mg.po
2
po/mg.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GLIB VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2007-03-03 19:00+0300\n"
|
||||
"Last-Translator: Fanomezana Rajaonarisoa <fano@isvtec.com>\n"
|
||||
"Language-Team: MALAGASY <i18n-malagasy-gnome@gna.org>\n"
|
||||
|
2
po/mk.po
2
po/mk.po
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD.mk\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2008-02-04 04:11+0100\n"
|
||||
"Last-Translator: Jovan Naumovski <jovan@lugola.net>\n"
|
||||
"Language-Team: Macedonian <mkde-l10n@lists.sourceforge.net>\n"
|
||||
|
2
po/ml.po
2
po/ml.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.master.ml\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-09-20 20:08+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: <en@li.org>\n"
|
||||
|
2
po/mn.po
2
po/mn.po
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2005-05-30 01:07-0800\n"
|
||||
"Last-Translator: Бадрал <badral@openmn.org>\n"
|
||||
"Language-Team: Mongolian <openmn-translation@lists.sf.net>\n"
|
||||
|
2
po/mr.po
2
po/mr.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mr\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-09-07 19:13+0530\n"
|
||||
"Last-Translator: Sandeep Shedmake <sshedmak@redhat.com>\n"
|
||||
"Language-Team: Marathi <fedora-trans-mr@redhat.com>\n"
|
||||
|
2
po/ms.po
2
po/ms.po
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib HEAD\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2004-02-03 02:11+0730\n"
|
||||
"Last-Translator: Hasbullah Bin Pit <sebol@my-penguin.org>\n"
|
||||
"Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.org>\n"
|
||||
|
2
po/nb.po
2
po/nb.po
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib 2.23.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-04 22:56+0100\n"
|
||||
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
||||
"Language-Team: Norwegian bokmal <i18n-nb@lister.ping.uio.no>\n"
|
||||
|
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib master\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2010-03-18 13:53+0100\n"
|
||||
"Last-Translator: Nils-Christoph Fiedler <fiedler@medienkompanie.de>\n"
|
||||
"Language-Team: Low German <nds-lowgerman@lists.sourceforge.net>\n"
|
||||
|
2
po/ne.po
2
po/ne.po
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib.glib-2-10.ne\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2006-04-27 00:00+0545\n"
|
||||
"Last-Translator: Shyam Krishna Bal <shyamkrishna_bal@yahoo.com>\n"
|
||||
"Language-Team: Nepali <info@mpp.org.np>\n"
|
||||
|
2
po/nl.po
2
po/nl.po
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: glib\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2009-02-23 14:07+0100\n"
|
||||
"Last-Translator: Wouter Bolsterlee <wbolster@gnome.org>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||
|
2
po/nn.po
2
po/nn.po
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: nn\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2008-02-24 17:33+0100\n"
|
||||
"Last-Translator: Åsmund Skjæveland <aasmunds@ulrik.uio.no>\n"
|
||||
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
|
||||
|
2
po/oc.po
2
po/oc.po
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: oc\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2010-03-26 11:48-0400\n"
|
||||
"POT-Creation-Date: 2010-05-02 21:22-0400\n"
|
||||
"PO-Revision-Date: 2008-04-23 10:42+0200\n"
|
||||
"Last-Translator: Yannig Marchegay (Kokoyaya) <yannig@marchegay.org>\n"
|
||||
"Language-Team: Occitan <ubuntu-l10n-oci@lists.ubuntu.com>\n"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user