Matthias Clasen [Mon, 31 Mar 2008 03:52:57 +0000 (03:52 +0000)]
Simple fixes to help building GLib on embedded systems without NLS.
2008-03-30 Matthias Clasen <mclasen@redhat.com>
* glib/glibintl.h:
* glib/gstrfuncs.c:
* glib/gutils.c: Simple fixes to help building GLib on
embedded systems without NLS. (#524350, Peter Kjellerstedt)
svn path=/trunk/; revision=6779
Matthias Clasen [Mon, 31 Mar 2008 03:45:28 +0000 (03:45 +0000)]
Fix the build with -DG_DISABLE_ASSERT. (#525060, Arfrever Frehtes
2008-03-30 Matthias Clasen <mclasen@redhat.com>
* glib/ghash.c: Fix the build with -DG_DISABLE_ASSERT.
(#525060, Arfrever Frehtes Taifersar Arahesis)
svn path=/trunk/; revision=6777
Matthias Clasen [Mon, 31 Mar 2008 03:39:00 +0000 (03:39 +0000)]
Replace occurrances of G_GNUC_PRETTY_FUNCTION by G_STRFUNC. (#524344,
2008-03-30 Matthias Clasen <mclasen@redhat.com>
* glib/gthread.h: Replace occurrances of G_GNUC_PRETTY_FUNCTION
by G_STRFUNC. (#524344, Peter, Kjellerstedt)
svn path=/trunk/; revision=6775
Matthias Clasen [Mon, 31 Mar 2008 03:30:48 +0000 (03:30 +0000)]
Fix some documentation typos. (#524950, Rob Bradford)
2008-03-30 Matthias Clasen <mclasen@redhat.com>
* gfileenumerator.c:
* gfile.c: Fix some documentation typos. (#524950, Rob Bradford)
svn path=/trunk/; revision=6773
Matthias Clasen [Mon, 31 Mar 2008 03:17:54 +0000 (03:17 +0000)]
Fix a doc typo. (#524742, Hiroyuki Ikezoe)
2008-03-30 Matthias Clasen <mclasen@redhat.com>
* glib/gtestutils.c: Fix a doc typo. (#524742, Hiroyuki Ikezoe)
svn path=/trunk/; revision=6771
A. Walton [Fri, 28 Mar 2008 14:31:09 +0000 (14:31 +0000)]
Adds GIO_EXTRA_MODULES environment variable support, closing bug #523039.
2008-03-28 A. Walton <awalton@svn.gnome.org>
* giomodule.c (_g_io_modules_ensure_loaded):
Adds GIO_EXTRA_MODULES environment variable support, closing bug
#523039.
svn path=/trunk/; revision=6768
Alexander Larsson [Fri, 28 Mar 2008 13:57:29 +0000 (13:57 +0000)]
Fix up last commit.
2008-03-28 Alexander Larsson <alexl@redhat.com>
* gfile.c:
(copy_stream_with_progress):
Fix up last commit.
svn path=/trunk/; revision=6766
Alexander Larsson [Fri, 28 Mar 2008 12:44:37 +0000 (12:44 +0000)]
Fix ChangeLog entry
svn path=/trunk/; revision=6765
Alexander Larsson [Fri, 28 Mar 2008 12:43:11 +0000 (12:43 +0000)]
Fallback to g_file_query_info for source size if
2008-03-28 Alexander Larsson <alexl@redhat.com>
* gfile.c:
(copy_stream_with_progress):
(file_copy_fallback):
Fallback to g_file_query_info for source size
if g_file_input_stream_query_info fails. (#524579)
svn path=/trunk/; revision=6763
Alexander Larsson [Fri, 28 Mar 2008 11:44:04 +0000 (11:44 +0000)]
Reuse old string instead of adding new one.
2008-03-28 Alexander Larsson <alexl@redhat.com>
* glocalfile.c (g_local_file_move):
Reuse old string instead of adding new one.
svn path=/trunk/; revision=6762
Lin Ma [Fri, 28 Mar 2008 09:30:52 +0000 (09:30 +0000)]
still copyright issue. I hate copyright.
2008-03-28 Lin Ma <Lin.Ma@Sun.COM>
* fen/*.[hc]: still copyright issue. I hate copyright.
svn path=/trunk/; revision=6760
Alexander Larsson [Thu, 27 Mar 2008 20:13:00 +0000 (20:13 +0000)]
Return G_IO_ERROR_IS_DIRECTORY, not G_IO_ERROR_WOULD_MERGE when moving
2008-03-27 Alexander Larsson <alexl@redhat.com>
* glocalfile.c (g_local_file_move):
Return G_IO_ERROR_IS_DIRECTORY, not G_IO_ERROR_WOULD_MERGE when moving
file over directory. This is according to the docs and what the move via
copy+remove fallback does.
svn path=/trunk/; revision=6758
Lin Ma [Thu, 27 Mar 2008 09:14:54 +0000 (09:14 +0000)]
Updated copyright.
2008-03-27 Lin Ma <Lin.Ma@Sun.COM>
* fen/*.[hc]: Updated copyright.
svn path=/trunk/; revision=6757
Nguyễn Thái Ngọc Duy [Sun, 23 Mar 2008 09:21:27 +0000 (09:21 +0000)]
Update Vietnamese translation
2008-03-23 Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
* vi.po: Update Vietnamese translation
svn path=/trunk/; revision=6754
Claudio Saavedra [Sat, 22 Mar 2008 23:52:39 +0000 (23:52 +0000)]
Bug 523877 – gbookmarkfile: avoid using g_string_append_printf() and
2008-03-22 Claudio Saavedra <csaavedra@gnome.org>
Bug 523877 – gbookmarkfile: avoid using g_string_append_printf() and
other optimizations
* glib/gbookmarkfile.c: (bookmark_metadata_dump),
(bookmark_item_dump), (g_bookmark_file_dump), (expand_exec_line):
Replace all calls to g_string_append_printf with g_strconcat () or
g_string_append () where appropriate, to reduce the file creation time.
Also, use g_string_sized_new () with an appropriate buffer size instead
of g_string_new (NULL), to reduce time spent in memory reallocation.
(#523877, Claudio Saavedra, Emmanuele Bassi)
svn path=/trunk/; revision=6752
Emmanuele Bassi [Sat, 22 Mar 2008 17:01:52 +0000 (17:01 +0000)]
Bug 518160 - replace two g_strdup_printf calls in GBookmarkFile
2008-03-22 Emmanuele Bassi <ebassi@gnome.org>
Bug 518160 - replace two g_strdup_printf calls in GBookmarkFile
* glib/gbookmarkfile.c (is_element_full): Compare the fragments
instead of building two strings; this avoids two g_strdup_printf()
per namespaced element enountered. (#518160, Felix Riemann)
svn path=/trunk/; revision=6751
Matej Urbančič [Fri, 21 Mar 2008 18:12:32 +0000 (18:12 +0000)]
Updated Slovenian translation
svn path=/trunk/; revision=6748
Alexander Larsson [Thu, 20 Mar 2008 11:44:12 +0000 (11:44 +0000)]
Final fixes for struct statfs.f_fstypename checks (OpenBSD). (#521045)
2008-03-20 Alexander Larsson <alexl@redhat.com>
* configure.in:
Final fixes for struct statfs.f_fstypename checks (OpenBSD). (#521045)
Patch from ephraim_owns@hotmail.com
svn path=/trunk/; revision=6746
Priit Laes [Thu, 20 Mar 2008 09:50:40 +0000 (09:50 +0000)]
Translation updated by Ivar Smolin
2008-03-20 Priit Laes <plaes at svn dot gnome dot org>
* et.po: Translation updated by Ivar Smolin
svn path=/trunk/; revision=6745
Lin Ma [Thu, 20 Mar 2008 09:49:41 +0000 (09:49 +0000)]
Removed a bad formatted msg.
2008-03-20 Lin Ma <Lin.Ma@Sun.COM>
* fen/fen-data.c: (fdata_adjust_changed): Removed a bad formatted msg.
svn path=/trunk/; revision=6744
Lin Ma [Thu, 20 Mar 2008 09:40:28 +0000 (09:40 +0000)]
Fixed FEN does not emit attribute changed events when optimizing changed
2008-03-20 Lin Ma <Lin.Ma@Sun.COM>
* fen/fen-data.c: (process_events), (fdata_add_event): Fixed FEN does
not emit attribute changed events when optimizing changed events.
* fen/fen-helper.c, fen/fen-kernel.c: Added ifdef to default disable
warning messages.
svn path=/trunk/; revision=6743
Tor Lillqvist [Thu, 20 Mar 2008 02:40:23 +0000 (02:40 +0000)]
Bug 523298 - win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
2008-03-19 Tor Lillqvist <tml@novell.com>
Bug 523298 - win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
* glib/win_iconv.c: Fixes for code page 54936 (GB18030)
(mbtowc_flags): New function. Check if a code page is one of those
for which the dwFlags parameter to MultiByteToWideChar() must be
zero. Return 0 or MB_ERR_INVALID_CHARS.
(mbcs_mblen): New function for multi-byte (more than two bytes for
some characters) code pages. Only handles 54936 for now.
(make_csconv): Use it for 54936.
(kernel_mbtowc): Use mbtowc_flags().
svn path=/trunk/; revision=6741
Matthias Clasen [Wed, 19 Mar 2008 20:54:49 +0000 (20:54 +0000)]
Doc additions
svn path=/trunk/; revision=6740
Matthias Clasen [Wed, 19 Mar 2008 20:36:56 +0000 (20:36 +0000)]
Document GVFS_DISABLE_FUSE
svn path=/trunk/; revision=6739
Sebastien Bacher [Wed, 19 Mar 2008 14:07:00 +0000 (14:07 +0000)]
consider nfs4 mounts as G_UNIX_MOUNT_TYPE_NFS (Closes: #523338)
2008-03-19 Sebastien Bacher <seb128@ubuntu.com>
* gunixmounts.c: (guess_mount_type):
consider nfs4 mounts as G_UNIX_MOUNT_TYPE_NFS (Closes: #523338)
svn path=/trunk/; revision=6737
Alexander Larsson [Wed, 19 Mar 2008 12:16:20 +0000 (12:16 +0000)]
Bump block side for copy to 64k to minimize overhead for low latency
2008-03-19 Alexander Larsson <alexl@redhat.com>
* gfile.c:
(copy_stream_with_progress):
Bump block side for copy to 64k to minimize
overhead for low latency links. (#523015)
svn path=/trunk/; revision=6735
Sebastian Dröge [Tue, 18 Mar 2008 20:06:04 +0000 (20:06 +0000)]
Bug 522292 - Gives warnings in glib/gutils.h with GCC in C99 mode
* glib/gutils.h: Use "__attribute__ ((__gnu_inline__))" for inlining
if either __GNUC_STDC_INLINE__ or __GNUC_GNU_INLINE__ are defined. In
gcc version prior to 4.3 no correct C99-inline was implemented which
has semantic differences to GNU inline.
svn path=/trunk/; revision=6733
Laurent Dhima [Tue, 18 Mar 2008 15:56:50 +0000 (15:56 +0000)]
Updated Translation
svn path=/trunk/; revision=6732
Simos Xenitellis [Tue, 18 Mar 2008 10:54:17 +0000 (10:54 +0000)]
Updated Greek translation by Giannis Katsampiris
svn path=/trunk/; revision=6729
Laurent Dhima [Tue, 18 Mar 2008 10:02:26 +0000 (10:02 +0000)]
Updated Translation
svn path=/trunk/; revision=6728
Yang Zhang [Mon, 17 Mar 2008 04:13:31 +0000 (04:13 +0000)]
Updated zh_CN translation from manphiz
svn path=/trunk/; revision=6724
Tor Lillqvist [Sun, 16 Mar 2008 10:16:57 +0000 (10:16 +0000)]
Don't bother defining Autoconf variables for glib.def, gmodule.def,
2008-03-16 Tor Lillqvist <tml@novell.com>
* configure.in: Don't bother defining Autoconf variables for
glib.def, gmodule.def, gobject.def and gthread.def when this can
be handled easily in */Makefile.am which are the only files that
use them. Remove also TESTGMODULE_EXP which isn't used at all.
* */Makefile.am: Corrsponding changes.
svn path=/trunk/; revision=6722
Tor Lillqvist [Sun, 16 Mar 2008 09:30:21 +0000 (09:30 +0000)]
Make libgio-2.0.la depend on gio.def on Windows.
2008-03-16 Tor Lillqvist <tml@novell.com>
* Makefile.am (libgio_2_0_la_DEPENDENCIES): Make libgio-2.0.la
depend on gio.def on Windows.
svn path=/trunk/; revision=6721
Gabor Kelemen [Sun, 16 Mar 2008 01:07:11 +0000 (01:07 +0000)]
Translation updated
2008-03-16 Gabor Kelemen <kelemeng@gnome.hu>
* hu.po: Translation updated
svn path=/trunk/; revision=6720
Yuri Kozlov [Sat, 15 Mar 2008 22:55:43 +0000 (22:55 +0000)]
Updated Russian translation.
2008-03-15 Yuri Kozlov <kozlov.y@gmail.com>
* ru.po: Updated Russian translation.
svn path=/trunk/; revision=6717
Marcel Telka [Sat, 15 Mar 2008 14:04:08 +0000 (14:04 +0000)]
Updated Slovak translation.
2008-03-15 Marcel Telka <marcel@telka.sk>
* sk.po: Updated Slovak translation.
svn path=/trunk/; revision=6715
Matthias Clasen [Sat, 15 Mar 2008 00:40:47 +0000 (00:40 +0000)]
Make up an ending for this sentence.
svn path=/trunk/; revision=6714
Michael Natterer [Fri, 14 Mar 2008 19:30:38 +0000 (19:30 +0000)]
make it possible to disable single-file includes by defining
2008-03-14 Michael Natterer <mitch@imendio.com>
* glib/*.h: make it possible to disable single-file includes by
defining G_DISABLE_SINGLE_INCLUDES when building against GLib.
Approved by Tim Janik.
* glib/glib.h: include <glib/gslice.h>.
* glib/gi18n.h
* glib/gi18n-lib.h
* glib/gprintf.h: include <glib.h> so the above works when these
files are included without including <glib.h> first.
svn path=/trunk/; revision=6713
David Zeuthen [Fri, 14 Mar 2008 11:18:59 +0000 (11:18 +0000)]
Add g_unix_mount_monitor_set_rate_limit() function (#521946)
2008-03-12 David Zeuthen <davidz@redhat.com>
* gio.symbols:
* gunixmounts.[ch]:
Add g_unix_mount_monitor_set_rate_limit() function (#521946)
svn path=/trunk/; revision=6711
Alexander Larsson [Fri, 14 Mar 2008 11:15:49 +0000 (11:15 +0000)]
Avoid redudant tests (#521851) Patch from Josselin Mouette
2008-03-14 Alexander Larsson <alexl@redhat.com>
* gunixmounts.c:
(guess_mount_type):
Avoid redudant tests (#521851)
Patch from Josselin Mouette
svn path=/trunk/; revision=6710
Alexander Larsson [Fri, 14 Mar 2008 11:06:01 +0000 (11:06 +0000)]
Fix C89 issue (#521672) Patch from Jens Granseuer
2008-03-14 Alexander Larsson <alexl@redhat.com>
* gfilemonitor.c:
(g_file_monitor_is_cancelled):
Fix C89 issue (#521672)
Patch from Jens Granseuer
svn path=/trunk/; revision=6708
Alexander Larsson [Fri, 14 Mar 2008 11:02:42 +0000 (11:02 +0000)]
Shut down fam (including removing fam GSource) when module is unloaded
2008-03-14 Alexander Larsson <alexl@redhat.com>
* fam/fam-helper.[ch]:
* fam/fam-module.c:
Shut down fam (including removing fam GSource) when
module is unloaded (#521513)
Patch from Joe Marcus Clarke
svn path=/trunk/; revision=6706
Alexander Larsson [Fri, 14 Mar 2008 09:45:44 +0000 (09:45 +0000)]
Fix up FEN ifdefs
2008-03-14 Alexander Larsson <alexl@redhat.com>
* giomodule.c:
(_g_io_modules_ensure_loaded):
Fix up FEN ifdefs
svn path=/trunk/; revision=6705
Alexander Larsson [Fri, 14 Mar 2008 09:19:09 +0000 (09:19 +0000)]
Use right define name for f_fstypename member check
2008-03-14 Alexander Larsson <alexl@redhat.com>
* glocalfile.c:
(g_local_file_query_filesystem_info):
Use right define name for f_fstypename member check
2008-03-14 Alexander Larsson <alexl@redhat.com>
* configure.in:
Add required includes for f_fstypename member check.
svn path=/trunk/; revision=6703
Alexander Larsson [Fri, 14 Mar 2008 08:58:24 +0000 (08:58 +0000)]
Added. Added. Added. Added. Added. Added. Added. Added. Added. Added.
2008-03-14 Alexander Larsson <alexl@redhat.com>
* Makefile.am:
* fen/Makefile.am: Added.
* fen/fen-data.[ch]: Added.
* fen/fen-dump.[ch]: Added.
* fen/fen-helper.[ch]: Added.
* fen/fen-kernel.[ch]: Added.
* fen/fen-missing.[ch]: Added.
* fen/fen-node.[ch]: Added.
* fen/fen-sub.[ch]: Added.
* fen/gfendirectorymonitor.[ch]: Added.
* fen/gfenfilemonitor.[ch]: Added.
* giomodule.c:
Added Solaris FEN file notification backend.
Patch from Lin Ma <Lin.Ma@Sun.COM>
svn path=/trunk/; revision=6702
Tor Lillqvist [Thu, 13 Mar 2008 17:12:03 +0000 (17:12 +0000)]
Add lib/gio-2.0.lib and lib/gio-2.0.def.
2008-03-13 Tor Lillqvist <tml@novell.com>
* glib-zip.in: Add lib/gio-2.0.lib and lib/gio-2.0.def.
svn path=/trunk/; revision=6701
Tor Lillqvist [Thu, 13 Mar 2008 17:10:04 +0000 (17:10 +0000)]
Actually use the gio.def file when linking the library on Windows. Produce
2008-03-13 Tor Lillqvist <tml@novell.com>
* Makefile.am: Actually use the gio.def file when linking the
library on Windows. Produce .lib library for Microsoft's toolchain
when possible. Install the .lib and .def file like for the other
libraries of GLib.
svn path=/trunk/; revision=6700
Tomas Bzatek [Thu, 13 Mar 2008 16:32:31 +0000 (16:32 +0000)]
Include live-g-file in standard set of tests, making a temporary directory
2008-03-13 Tomas Bzatek <tbzatek@redhat.com>
* tests/live-g-file.c:
Include live-g-file in standard set of tests, making a temporary
directory in source structure.
Clean target directory before the tests (write mode only)
svn path=/trunk/; revision=6699
Tor Lillqvist [Wed, 12 Mar 2008 19:09:11 +0000 (19:09 +0000)]
Expand gio/win32/Makefile.
2008-03-12 Tor Lillqvist <tml@novell.com>
* configure.in: Expand gio/win32/Makefile.
2008-03-12 Tor Lillqvist <tml@novell.com>
Bug 517419 - gio win32 directory monitor
Implementation by Vlad Grecescu.
* win32/Makefile.am
* win32/gwin32directorymonitor.h
* win32/gwin32directorymonitor.c: New files.
* giomodule.c: Set up the GWin32DirectoryMonitor plumbing.
* Makefile.am: Add the win32 subdirectory.
svn path=/trunk/; revision=6698
Tor Lillqvist [Wed, 12 Mar 2008 18:33:59 +0000 (18:33 +0000)]
Introduce a macro GLocalFileStat that is the normal struct stat on Unix
2008-03-12 Tor Lillqvist <tml@novell.com>
* glocalfileinfo.h: Introduce a macro GLocalFileStat that is the
normal struct stat on Unix but struct _stati64 on Windows to have
access to 64-bit file size information. Use that instead of struct
stat in the functions declared here in this private header.
* glocalfileinfo.c: Corresponding changes. Move some G_OS_WIN32,
S_ISLNK and HAVE_UTIMES ifdefs and add some more to avoid compiler
warnings about unused functions and variables. Don't set
meaningless attributes like inode numbers on Windows.
svn path=/trunk/; revision=6697
Benjamin Otte [Wed, 12 Mar 2008 16:47:06 +0000 (16:47 +0000)]
g_file_contains_file() doesn't exist anymore
2008-03-12 Benjamin Otte <otte@gnome.org>
* gio/gio-sections.txt:
g_file_contains_file() doesn't exist anymore
svn path=/trunk/; revision=6696
Benjamin Otte [Wed, 12 Mar 2008 16:45:43 +0000 (16:45 +0000)]
trim whitespace so gtk-doc groks the function name
2008-03-12 Benjamin Otte <otte@gnome.org>
* gvfs.h:
trim whitespace so gtk-doc groks the function name
svn path=/trunk/; revision=6695
Matthias Clasen [Wed, 12 Mar 2008 16:19:10 +0000 (16:19 +0000)]
Bump version
svn path=/trunk/; revision=6694
Matthias Clasen [Wed, 12 Mar 2008 16:13:54 +0000 (16:13 +0000)]
Rotate ChangeLog
svn path=/trunk/; revision=6693
Sebastian Dröge [Wed, 12 Mar 2008 15:36:38 +0000 (15:36 +0000)]
Bug 316221 - G_LOCK warns about breaking strict-aliasing rules
* configure.in:
* glib/gthread.h: Prevent the compiler from warning about breaking
strict-aliasing rules when using gcc 4.3 and G_LOCK on C sources.
svn path=/trunk/; revision=6691
Wouter Bolsterlee [Wed, 12 Mar 2008 15:04:22 +0000 (15:04 +0000)]
Updated Dutch translation by Wouter Bolsterlee.
2008-03-12 Wouter Bolsterlee <wbolster@svn.gnome.org>
* nl.po: Updated Dutch translation by Wouter Bolsterlee.
svn path=/trunk/; revision=6690
Tor Lillqvist [Wed, 12 Mar 2008 13:16:54 +0000 (13:16 +0000)]
Implement as empty, returning FALSE, on Win32.
2008-03-12 Tor Lillqvist <tml@novell.com>
* glocalfile.c (_g_local_file_has_trash_dir): Implement as empty,
returning FALSE, on Win32.
svn path=/trunk/; revision=6689
Ignacio Casal Quinteiro [Wed, 12 Mar 2008 09:59:34 +0000 (09:59 +0000)]
Updated Galician Translation.
svn path=/trunk/; revision=6688
Jonh Wendell S. Santana [Wed, 12 Mar 2008 00:06:09 +0000 (00:06 +0000)]
minor update in pt_BR
svn path=/trunk/; revision=6687
Tor Lillqvist [Wed, 12 Mar 2008 00:04:52 +0000 (00:04 +0000)]
Bug 520914 - win_iconv doesn't support UCS-2
2008-03-12 Tor Lillqvist <tml@novell.com>
Bug 520914 - win_iconv doesn't support UCS-2
* glib/win_iconv.c: Make UCS-2 just an alias for
UTF-16. Technically this is wrong of course, but shouldn't matter
an awful lot in practice.
svn path=/trunk/; revision=6686
Daniel Nylander [Tue, 11 Mar 2008 20:23:16 +0000 (20:23 +0000)]
sv.po: Updated Swedish translation
svn path=/trunk/; revision=6684
Gil Forcada Codinachs [Tue, 11 Mar 2008 19:12:57 +0000 (19:12 +0000)]
Updated Catalan translation
svn path=/trunk/; revision=6683
Philip Withnall [Tue, 11 Mar 2008 17:30:39 +0000 (17:30 +0000)]
Updated British English translation.
2008-03-11 Philip Withnall <pwithnall@svn.gnome.org>
* en_GB.po: Updated British English translation.
svn path=/trunk/; revision=6682
Baris Cicek [Tue, 11 Mar 2008 17:06:49 +0000 (17:06 +0000)]
updated Turkish translation
svn path=/trunk/; revision=6681
Murray Cumming [Tue, 11 Mar 2008 15:43:25 +0000 (15:43 +0000)]
Bug 521591 – g_markup_parse_context_parse() creates GError message that
2008-03-11 Murray Cumming <murrayc@murrayc.com>
Bug 521591 – g_markup_parse_context_parse() creates GError message that
is invalid UTF8.
* glib/gmarkup.c (set_error): Make sure that the GError::message is
valid UTF-8 even if it is complaining about invalid UTF-8 in the
markup text, using _g_utf8_make_valid().
svn path=/trunk/; revision=6680
Alexander Larsson [Tue, 11 Mar 2008 14:48:28 +0000 (14:48 +0000)]
Correctly implement can_trash by actually looking for a trash dir, not
2008-03-11 Alexander Larsson <alexl@redhat.com>
* glocalfile.c:
* glocalfileinfo.[ch]:
Correctly implement can_trash by actually
looking for a trash dir, not just assuming
one exists.
svn path=/trunk/; revision=6679
Inaki Larranaga Murgoitio [Tue, 11 Mar 2008 13:17:24 +0000 (13:17 +0000)]
Updated Basque translation.
2008-03-11 Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
* eu.po: Updated Basque translation.
svn path=/trunk/; revision=6678
Takeshi AIHANA [Tue, 11 Mar 2008 11:50:34 +0000 (11:50 +0000)]
Updated Japanese translation.
2008-03-11 Takeshi AIHANA <takeshi.aihana@gmail.com>
* ja.po: Updated Japanese translation.
svn path=/trunk/; revision=6677
Timo Jyrinki [Tue, 11 Mar 2008 10:53:48 +0000 (10:53 +0000)]
Fix 3 fuzzies and 3 untranslated strings.
svn path=/trunk/; revision=6676
Gintautas Miliauskas [Tue, 11 Mar 2008 10:44:53 +0000 (10:44 +0000)]
Updated Lithuanian translation.
2008-03-11 Gintautas Miliauskas <gintas@akl.lt>
* lt.po: Updated Lithuanian translation.
svn path=/trunk/; revision=6675
Duarte Loreto [Tue, 11 Mar 2008 08:26:34 +0000 (08:26 +0000)]
Updated Portuguese translation.
2008-03-11 Duarte Loreto <happyguy_pt@hotmail.com>
* pt.po: Updated Portuguese translation.
svn path=/trunk/; revision=6674
Jorge Gonzalez Gonzalez [Tue, 11 Mar 2008 07:15:58 +0000 (07:15 +0000)]
Updated Spanish translation
svn path=/trunk/; revision=6673
Matthias Clasen [Tue, 11 Mar 2008 02:18:18 +0000 (02:18 +0000)]
2.16.1
svn path=/trunk/; revision=6671
Matthias Clasen [Tue, 11 Mar 2008 01:51:49 +0000 (01:51 +0000)]
Updates
svn path=/trunk/; revision=6670
Matthias Clasen [Tue, 11 Mar 2008 01:51:07 +0000 (01:51 +0000)]
Update to 7.6, for real
svn path=/trunk/; revision=6669
Matthias Clasen [Tue, 11 Mar 2008 00:40:10 +0000 (00:40 +0000)]
Bump version
svn path=/trunk/; revision=6668
Matthias Clasen [Tue, 11 Mar 2008 00:39:13 +0000 (00:39 +0000)]
Updates
svn path=/trunk/; revision=6667
Alexander Larsson [Tue, 11 Mar 2008 00:14:11 +0000 (00:14 +0000)]
Fix crashes in new constructor and properties code
2008-03-11 Alexander Larsson <alexl@redhat.com>
* gthemedicon.c:
Fix crashes in new constructor and properties code
svn path=/trunk/; revision=6666
Kenneth Nielsen [Mon, 10 Mar 2008 22:59:44 +0000 (22:59 +0000)]
Updated Danish translation
svn path=/trunk/; revision=6664
Murray Cumming [Mon, 10 Mar 2008 19:38:42 +0000 (19:38 +0000)]
Minor spelling correction in documentation: existance -> existence.
2008-03-10 Murray Cumming <murrayc@murrayc.com>
* gfile.c: Minor spelling correction in documentation:
existance -> existence.
svn path=/trunk/; revision=6663
Matthias Clasen [Mon, 10 Mar 2008 18:09:06 +0000 (18:09 +0000)]
2.16.0
svn path=/trunk/; revision=6661
Matthias Clasen [Mon, 10 Mar 2008 17:49:20 +0000 (17:49 +0000)]
Updates
svn path=/trunk/; revision=6660
Matthias Clasen [Mon, 10 Mar 2008 17:10:37 +0000 (17:10 +0000)]
Fix symbol list
svn path=/trunk/; revision=6659
Matthias Clasen [Mon, 10 Mar 2008 16:53:25 +0000 (16:53 +0000)]
Bump version to 2.16.0
svn path=/trunk/; revision=6658
Matthias Clasen [Mon, 10 Mar 2008 16:50:13 +0000 (16:50 +0000)]
Fix a typo
svn path=/trunk/; revision=6657
Matthias Clasen [Mon, 10 Mar 2008 16:47:58 +0000 (16:47 +0000)]
Remove inlined docs
svn path=/trunk/; revision=6656
Matthias Clasen [Mon, 10 Mar 2008 16:08:41 +0000 (16:08 +0000)]
Add properties to make bindings happy. (#517676, Samuel Cormier-Iijima)
2008-03-10 Matthias Clasen <mclasen@redhat.com>
* gthemedicon.c: Add properties to make bindings happy. (#517676,
Samuel Cormier-Iijima)
svn path=/trunk/; revision=6655
Matthias Clasen [Mon, 10 Mar 2008 15:55:16 +0000 (15:55 +0000)]
Fix confusing error message. (#521028, Peter Kjellerstedt)
2008-03-10 Matthias Clasen <mclasen@redhat.com>
* glib/giochannel.c (g_io_channle_set_encoding): Fix confusing
error message. (#521028, Peter Kjellerstedt)
svn path=/trunk/; revision=6654
Matthias Clasen [Mon, 10 Mar 2008 15:42:46 +0000 (15:42 +0000)]
Fix the build
svn path=/trunk/; revision=6653
Matthias Clasen [Mon, 10 Mar 2008 15:13:29 +0000 (15:13 +0000)]
Small test fixup
svn path=/trunk/; revision=6652
Matthias Clasen [Mon, 10 Mar 2008 15:07:21 +0000 (15:07 +0000)]
Add Since marker
svn path=/trunk/; revision=6651
Runa Bhattacharjee [Mon, 10 Mar 2008 07:21:46 +0000 (07:21 +0000)]
Added Entry for Bengali India Translation updation
svn path=/trunk/; revision=6650
Runa Bhattacharjee [Mon, 10 Mar 2008 07:21:03 +0000 (07:21 +0000)]
Updated Bengali India Translation
svn path=/trunk/; revision=6649
Marcel Telka [Sun, 9 Mar 2008 22:35:34 +0000 (22:35 +0000)]
Updated Slovak translation.
2008-03-09 Marcel Telka <marcel@telka.sk>
* sk.po: Updated Slovak translation.
svn path=/trunk/; revision=6648
Kjartan Maraas [Sun, 9 Mar 2008 13:32:52 +0000 (13:32 +0000)]
Fix
svn path=/trunk/; revision=6647
Kjartan Maraas [Sun, 9 Mar 2008 13:19:35 +0000 (13:19 +0000)]
Tweak
svn path=/trunk/; revision=6646
Kjartan Maraas [Sun, 9 Mar 2008 13:19:15 +0000 (13:19 +0000)]
Updated Norwegian bokmål translation.
2008-03-09 Kjartan Maraas <kmaraas@gnome.org>
* nb.po: Updated Norwegian bokmål translation.
svn path=/trunk/; revision=6645
Yuri Kozlov [Sat, 8 Mar 2008 22:11:38 +0000 (22:11 +0000)]
Updated Russian translation.
2008-03-09 Yuri Kozlov <kozlov.y@gmail.com>
* ru.po: Updated Russian translation.
svn path=/trunk/; revision=6644
Tor Lillqvist [Sat, 8 Mar 2008 16:06:00 +0000 (16:06 +0000)]
Define FILE_READ_ONLY_VOLUME if it is missing from winnt.h. (#521145)
2008-03-08 Tor Lillqvist <tml@novell.com>
* glocalfile.c: Define FILE_READ_ONLY_VOLUME if it is missing from
winnt.h. (#521145)
svn path=/trunk/; revision=6643
Yannig MARCHEGAY [Sat, 8 Mar 2008 11:20:51 +0000 (11:20 +0000)]
Updated Occitan translation
svn path=/trunk/; revision=6642