Re: gnome-power-manager has branched for 2-16

2006-08-23 Thread Danilo Šegan
Yesterday at 23:39, Richard Hughes wrote:

 GNOME Power Manager has branched for 2-16, and all ongoing development
 work will be done on HEAD.

Thanks for the notice, translation status pages should reflect the new
branch with the next update.

Cheers,
Danilo
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


Re: GLib has been branched for 2.12

2006-08-23 Thread Danilo Šegan
Today at 5:46, Matthias Clasen wrote:

 Further 2.12.x releases will be made off the glib-2-12 branch,
 new development leading to 2.14 will happen on HEAD.

Thanks for the notice, translation status pages should reflect the new
branch with the next update.

Cheers,
Danilo
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


Re: GTK+ has been branched for 2.10

2006-08-23 Thread Danilo Šegan
Today at 6:15, Matthias Clasen wrote:

 Further GTK+ 2.10.x releases will be done off the gtk-2-10 branch,
 new development leading to 2.12 will happen on HEAD.

And this too :)

Cheers,
Danilo
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


Deskbar Applet string change request

2006-08-23 Thread Raphaël Slinckx
Hi !

I have a string in deskbar-applet, but i received bug reports about it,
because the meaning wasn't clear.

I hope someone on this list can provide a useful replacement, and this
mail also serves as a request to break string freeze to replace it with
that hypothetical new string.

Related bug is:
http://bugzilla.gnome.org/show_bug.cgi?id=352009

The current string is:
Search selection when triggering the shortcut

The meaning is that if you have a text selected (highlighted) in the
selection clipboard, then triggering the deskbar-applet hotkey, will
also use that selected text as search query. For example i see a word
gnome in a webpage, i highlight it with the mouse, hit alt-f3, then
deskbar pops up with the query gnome in it, and display results of
that query.

As I'm not a native english speaker i don't know how to describe that.

Thanks in advance !
Raf

___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


How to translate new string in gnome-applets

2006-08-23 Thread Daniel Nylander

Hi all,

How should I translate the new string

Tomboy (ne Stickynotes)

in gnome-applets?

ne is what? Not equal?

Regards,
Daniel


smime.p7s
Description: S/MIME Cryptographic Signature
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


Re: How to translate new string in gnome-applets

2006-08-23 Thread Thomas Thurman
On 23/08/06, Daniel Nylander [EMAIL PROTECTED] wrote:
Hi all,How should I translate the new stringTomboy (ne Stickynotes)in gnome-applets?ne is what? Not equal?
Traditionally, in the UK and
US, women have taken their husband's name on marriage. When you want to
tell people a woman's name and have both her old and new names listed,
you would write it like this:
 Lucy Hall nee Augerwhere nee is the French word for born, because that was the name she was born with.This
is an example of the same idea: they are saying that what is now Tomboy
was once Stickynotes. However, they appear to think that Tomboy is
male, so are using the masculine form of nee, ne. (This is rather
amusing, since in English a tomboy must necessarily be female.)
If the same concept doesn't exist in your language, you could treat it as something like Tomboy, formerly Stickynotes.peaceThomas
___
gnome-i18n mailing list
gnome-i18n@gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-i18n


Re: String change for Tomboy (patch included)

2006-08-23 Thread Sanford Armstrong

This email hasn't made it to gnome-i18n or gnome-doc-list, so I have
subscribed to those lists to expedite things.  The patch mentioned
below is also attached to this email.  Sorry for any unnecessary
duplication.

On 8/22/06, Sanford Armstrong [EMAIL PROTECTED] wrote:

As part of Tomboy being included in GNOME 2.16 [1], several users have
requested the ability for old Sticky Notes to be automatically
imported into Tomboy [2] [3].  This feature is now ready to be
committed.

Attached is the patch, and it breaks the string freeze for Tomboy in two ways:

1) A GConf key has been added to tomboy.schemas.in.  Since the Sticky
Note import plugin is an official part of Tomboy, and the plugin uses
a GConf key to determine if it has ever been run before, this is a
necessary change.

2) Previously, when manually running the Sticky Note import plugin,
the dialog would say something like 4 of 4 Sticky Notes were
successfully imported.  But if a user upgrades/installs Tomboy, and
the first time it starts is on their next log-in, that message is
somewhat disembodied and needs to be more explicit.  Therefore it now
ends with successfully imported into Tomboy.  I feel that this is an
important change for users who are just transitioning from Sticky
Notes to Tomboy.  If anyone has a better suggestion for the verbiage
in that dialog, I would be happy to hear it.

I am new to internationalization, so if there is any additional way I
have broken the freeze please let me know.  I would like to commit
this patch to CVS as soon as possible.

Thanks,
Sandy Armstrong

[1] http://mail.gnome.org/archives/devel-announce-list/2006-August/msg0.html
[2] http://mail.gnome.org/archives/desktop-devel-list/2006-July/msg00642.html
[3] http://mail.gnome.org/archives/desktop-devel-list/2006-August/msg00211.html



? INSTALL
? Tomboy/Plugins/.StickyNoteImport.cs.swp
? data/DefaultPlugins.desktop
? data/DefaultPlugins.desktop.in
? data/tomboy-plugins.pc
? po/stamp-it
Index: Tomboy/NoteManager.cs
===
RCS file: /cvs/gnome/tomboy/Tomboy/NoteManager.cs,v
retrieving revision 1.30
diff -u -p -r1.30 NoteManager.cs
--- Tomboy/NoteManager.cs	27 Jul 2006 08:50:17 -	1.30
+++ Tomboy/NoteManager.cs	23 Aug 2006 04:54:00 -
@@ -143,7 +143,10 @@ namespace Tomboy
 			trie_controller.Update ();
 
 			// Load all the plugins for our notes.
-			foreach (Note note in notes) {
+			// Iterating through copy of notes list, because list may be
+			// changed when loading plugins.
+			ArrayList notesCopy = new ArrayList (notes);
+			foreach (Note note in notesCopy) {
 plugin_mgr.LoadPluginsForNote (note);
 			}
 		}
Index: Tomboy/Preferences.cs
===
RCS file: /cvs/gnome/tomboy/Tomboy/Preferences.cs,v
retrieving revision 1.8
diff -u -p -r1.8 Preferences.cs
--- Tomboy/Preferences.cs	2 Aug 2006 07:08:24 -	1.8
+++ Tomboy/Preferences.cs	23 Aug 2006 04:54:00 -
@@ -23,6 +23,8 @@ namespace Tomboy
 		public const string EXPORTHTML_LAST_DIRECTORY = /apps/tomboy/export_html/last_directory;
 		public const string EXPORTHTML_EXPORT_LINKED = /apps/tomboy/export_html/export_linked;
 
+		public const string STICKYNOTEIMPORTER_FIRST_RUN = /apps/tomboy/sticky_note_importer/sticky_importer_first_run;
+
 		static GConf.Client client;
 		static GConf.NotifyEventHandler changed_handler;
 
@@ -70,6 +72,9 @@ namespace Tomboy
 
 			case EXPORTHTML_LAST_DIRECTORY:
 return ;
+
+			case STICKYNOTEIMPORTER_FIRST_RUN:
+return true;
 			}
 
 			return null;
Index: Tomboy/Plugins/StickyNoteImport.cs
===
RCS file: /cvs/gnome/tomboy/Tomboy/Plugins/StickyNoteImport.cs,v
retrieving revision 1.3
diff -u -p -r1.3 StickyNoteImport.cs
--- Tomboy/Plugins/StickyNoteImport.cs	25 Jul 2006 22:34:25 -	1.3
+++ Tomboy/Plugins/StickyNoteImport.cs	23 Aug 2006 04:54:00 -
@@ -18,9 +18,15 @@ public class StickyNoteImporter : NotePl
 	private const string base_duplicate_note_title = {0} (#{1});
 
 	private const string debug_no_sticky_file =
-		StickyNoteImporter: Sticky Notes XML file does not exist!;
+		StickyNoteImporter: Sticky Notes XML file does not exist or is invalid!;
 	private const string debug_create_error_base =
 		StickyNoteImporter: Error while trying to create note \{0}\: {1};
+	private const string debug_first_run_detected =
+		StickyNoteImporter: Detecting that importer has never been run...;
+	private const string debug_gconf_set_error_base =
+		StickyNoteImporter: Error setting initial GConf first run key value: {0};
+
+	private string sticky_xml_path;
 	
 	protected override void Initialize ()
 	{
@@ -30,6 +36,12 @@ public class StickyNoteImporter : NotePl
 		item.Activated += ImportButtonClicked;
 		item.Show ();
 		AddPluginMenuItem (item);
+		
+		sticky_xml_path =
+			Environment.GetFolderPath (System.Environment.SpecialFolder.Personal)
+			+ sticky_xml_rel_path;
+		
+