Merge lp:~raof/do-plugins/plugins-i18n into lp:do-plugins

Proposed by Chris Halse Rogers
Status: Merged
Merge reported by: Chris Halse Rogers
Merged at revision: not available
Proposed branch: lp:~raof/do-plugins/plugins-i18n
Merge into: lp:do-plugins
Diff against target: None lines
To merge this branch: bzr merge lp:~raof/do-plugins/plugins-i18n
Reviewer Review Type Date Requested Status
Chris S. Approve
Review via email: mp+7742@code.launchpad.net

Commit message

Use translations in plugins. Fixes bug #321748.

To post a comment you must log in.
Revision history for this message
Chris Halse Rogers (raof) wrote :

Make the plugins use the translations we have. This (mostly) fixes bug #321748.

This essentially replaces all Mono.Unix.Catalog use with Mono.Addins.AddinManager.CurrentLocalizer. The .addin.xml then provides Mono.Addins with the necessary metadata to load the appropriate translations.

The addin metadata itself is not translated; Preferences->Plugins will still be in all-English. Fixing this last part will require one of two things
a) Mono.Addins to gain translation support for the addin metadata, a feature which is planned but not started, or
b) For us to change the plugin API and require translated properties on all plugins.

For the moment, I think we should merge this & release with it. We can look at the Preferences->Plugins list issue later.

Revision history for this message
Chris S. (cszikszoy) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'Alias/Alias.mdp'
--- Alias/Alias.mdp 2009-02-28 16:16:48 +0000
+++ Alias/Alias.mdp 2009-06-22 01:49:55 +0000
@@ -25,6 +25,5 @@
25 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />25 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
26 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />26 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
27 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />27 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
28 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
29 </References>28 </References>
30</Project>
31\ No newline at end of file29\ No newline at end of file
30</Project>
3231
=== modified file 'Alias/Makefile.am'
--- Alias/Makefile.am 2009-01-09 05:04:13 +0000
+++ Alias/Makefile.am 2009-06-21 11:51:24 +0000
@@ -14,6 +14,5 @@
14REFERENCES = \14REFERENCES = \
15 System \15 System \
16 System.Core \16 System.Core \
17 Mono.Posix \
18 $(DO_PLATFORM_LIBS) \17 $(DO_PLATFORM_LIBS) \
19 $(DO_UNIVERSE_LIBS)18 $(DO_UNIVERSE_LIBS)
2019
=== renamed file 'Alias/Resources/Alias.addin.xml' => 'Alias/Resources/Alias.addin.xml.in'
--- Alias/Resources/Alias.addin.xml 2009-03-31 23:19:25 +0000
+++ Alias/Resources/Alias.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,10 +13,12 @@
13 <Import assembly="Alias.dll"/>13 <Import assembly="Alias.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
20 <Extension path="/Do/ItemSource">22 <Extension path="/Do/ItemSource">
21 <ItemSource type="Alias.AliasItemSource" />23 <ItemSource type="Alias.AliasItemSource" />
22 </Extension>24 </Extension>
2325
=== modified file 'Alias/src/AliasAction.cs'
--- Alias/src/AliasAction.cs 2008-12-31 23:40:35 +0000
+++ Alias/src/AliasAction.cs 2009-06-21 08:59:18 +0000
@@ -21,7 +21,7 @@
21using System;21using System;
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Universe;26using Do.Universe;
27using Do.Platform;27using Do.Platform;
@@ -33,11 +33,11 @@
33 {33 {
34 34
35 public override string Name {35 public override string Name {
36 get { return Catalog.GetString ("Assign Alias..."); }36 get { return AddinManager.CurrentLocalizer.GetString ("Assign Alias..."); }
37 }37 }
3838
39 public override string Description {39 public override string Description {
40 get { return Catalog.GetString ("Give an item an alternate name."); }40 get { return AddinManager.CurrentLocalizer.GetString ("Give an item an alternate name."); }
41 }41 }
4242
43 public override string Icon {43 public override string Icon {
4444
=== modified file 'Alias/src/AliasItemSource.cs'
--- Alias/src/AliasItemSource.cs 2009-06-17 02:06:45 +0000
+++ Alias/src/AliasItemSource.cs 2009-06-21 08:59:18 +0000
@@ -25,7 +25,7 @@
25using System.Runtime.Serialization;25using System.Runtime.Serialization;
26using System.Runtime.Serialization.Formatters.Binary;26using System.Runtime.Serialization.Formatters.Binary;
2727
28using Mono.Unix;28using Mono.Addins;
2929
30using Do.Universe;30using Do.Universe;
31using Do.Platform;31using Do.Platform;
@@ -137,11 +137,11 @@
137 }137 }
138 138
139 public override string Name {139 public override string Name {
140 get { return Catalog.GetString ("Alias items"); }140 get { return AddinManager.CurrentLocalizer.GetString ("Alias items"); }
141 }141 }
142142
143 public override string Description {143 public override string Description {
144 get { return Catalog.GetString ("Aliased items from Do's universe."); }144 get { return AddinManager.CurrentLocalizer.GetString ("Aliased items from Do's universe."); }
145 }145 }
146146
147 public override string Icon {147 public override string Icon {
148148
=== modified file 'Alias/src/DeleteAliasAction.cs'
--- Alias/src/DeleteAliasAction.cs 2008-12-31 23:40:35 +0000
+++ Alias/src/DeleteAliasAction.cs 2009-06-21 08:59:18 +0000
@@ -21,7 +21,7 @@
21using System.Linq;21using System.Linq;
22using System.Collections.Generic;22using System.Collections.Generic;
2323
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Universe;26using Do.Universe;
27using Do.Platform;27using Do.Platform;
@@ -31,13 +31,12 @@
31 31
32 class DeleteAliasAction : Act32 class DeleteAliasAction : Act
33 {33 {
34
35 public override string Name {34 public override string Name {
36 get { return Catalog.GetString ("Delete Alias"); }35 get { return AddinManager.CurrentLocalizer.GetString ("Delete Alias"); }
37 }36 }
3837
39 public override string Description {38 public override string Description {
40 get { return Catalog.GetString ("Deletes an alias."); }39 get { return AddinManager.CurrentLocalizer.GetString ("Deletes an alias."); }
41 }40 }
4241
43 public override string Icon {42 public override string Icon {
4443
=== modified file 'AptURL/AptURL.mdp'
--- AptURL/AptURL.mdp 2009-02-28 16:16:48 +0000
+++ AptURL/AptURL.mdp 2009-06-22 01:49:55 +0000
@@ -25,4 +25,4 @@
25 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />25 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
26 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />26 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
27 </References>27 </References>
28</Project>
29\ No newline at end of file28\ No newline at end of file
29</Project>
3030
=== renamed file 'AptURL/Resources/AptURL.addin.xml' => 'AptURL/Resources/AptURL.addin.xml.in'
--- AptURL/Resources/AptURL.addin.xml 2009-03-31 23:19:25 +0000
+++ AptURL/Resources/AptURL.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="AptURL.dll"/>13 <Import assembly="AptURL.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'Archive/Archive.mdp'
--- Archive/Archive.mdp 2009-02-28 16:16:48 +0000
+++ Archive/Archive.mdp 2009-06-22 01:49:55 +0000
@@ -23,8 +23,7 @@
23 </Contents>23 </Contents>
24 <References>24 <References>
25 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />25 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
26 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
27 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />26 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
28 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />27 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
29 </References>28 </References>
30</Project>
31\ No newline at end of file29\ No newline at end of file
30</Project>
3231
=== modified file 'Archive/Makefile.am'
--- Archive/Makefile.am 2009-01-09 05:04:13 +0000
+++ Archive/Makefile.am 2009-06-21 11:51:24 +0000
@@ -11,7 +11,6 @@
11 Resources/Archive.addin.xml11 Resources/Archive.addin.xml
1212
13REFERENCES = \13REFERENCES = \
14 Mono.Posix \
15 System \14 System \
16 System.Core \15 System.Core \
17 $(DO_UNIVERSE_LIBS)16 $(DO_UNIVERSE_LIBS)
1817
=== renamed file 'Archive/Resources/Archive.addin.xml' => 'Archive/Resources/Archive.addin.xml.in'
--- Archive/Resources/Archive.addin.xml 2009-03-31 23:19:25 +0000
+++ Archive/Resources/Archive.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="Archive.dll"/>13 <Import assembly="Archive.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'Archive/src/CreateArchiveAction.cs'
--- Archive/src/CreateArchiveAction.cs 2008-12-21 23:44:34 +0000
+++ Archive/src/CreateArchiveAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Diagnostics;24using System.Diagnostics;
25using System.Linq;25using System.Linq;
2626
27using Mono.Unix;27using Mono.Addins;
28using Do.Universe;28using Do.Universe;
2929
30namespace Archive {30namespace Archive {
@@ -38,11 +38,11 @@
38 }38 }
39 39
40 public override string Name {40 public override string Name {
41 get { return Catalog.GetString ("Create archive"); }41 get { return AddinManager.CurrentLocalizer.GetString ("Create archive"); }
42 }42 }
43 43
44 public override string Description {44 public override string Description {
45 get { return Catalog.GetString ("Create an archive with the selected item"); }45 get { return AddinManager.CurrentLocalizer.GetString ("Create an archive with the selected item"); }
46 }46 }
47 47
48 public override string Icon {48 public override string Icon {
4949
=== modified file 'Archive/src/ExtractArchiveAction.cs'
--- Archive/src/ExtractArchiveAction.cs 2009-05-29 09:39:41 +0000
+++ Archive/src/ExtractArchiveAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Diagnostics;24using System.Diagnostics;
25using System.Linq;25using System.Linq;
2626
27using Mono.Unix;27using Mono.Addins;
28using Do.Universe;28using Do.Universe;
2929
30namespace Archive {30namespace Archive {
@@ -37,11 +37,11 @@
37 }37 }
38 38
39 public override string Name {39 public override string Name {
40 get { return Catalog.GetString ("Extract archive"); }40 get { return AddinManager.CurrentLocalizer.GetString ("Extract archive"); }
41 }41 }
42 42
43 public override string Description {43 public override string Description {
44 get { return Catalog.GetString ("Extract an archive to a given folder"); }44 get { return AddinManager.CurrentLocalizer.GetString ("Extract an archive to a given folder"); }
45 }45 }
46 46
47 public override string Icon {47 public override string Icon {
4848
=== modified file 'Banshee/Banshee.mdp'
--- Banshee/Banshee.mdp 2009-02-28 16:16:48 +0000
+++ Banshee/Banshee.mdp 2009-06-22 01:49:55 +0000
@@ -33,7 +33,6 @@
33 </Contents>33 </Contents>
34 <References>34 <References>
35 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />35 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
36 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
37 <ProjectReference type="Gac" localcopy="True" refto="NDesk.DBus, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f6716e4f9b2ed099" />36 <ProjectReference type="Gac" localcopy="True" refto="NDesk.DBus, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f6716e4f9b2ed099" />
38 <ProjectReference type="Gac" localcopy="True" refto="NDesk.DBus.GLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f6716e4f9b2ed099" />37 <ProjectReference type="Gac" localcopy="True" refto="NDesk.DBus.GLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f6716e4f9b2ed099" />
39 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />38 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
@@ -41,4 +40,4 @@
41 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />40 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
42 </References>41 </References>
43 <Deployment.LinuxDeployData scriptName="banshee-1" />42 <Deployment.LinuxDeployData scriptName="banshee-1" />
44</Project>
45\ No newline at end of file43\ No newline at end of file
44</Project>
4645
=== modified file 'Banshee/Makefile.am'
--- Banshee/Makefile.am 2009-05-07 16:03:28 +0000
+++ Banshee/Makefile.am 2009-06-21 11:51:24 +0000
@@ -23,7 +23,6 @@
23 Resources/Banshee.addin.xml23 Resources/Banshee.addin.xml
2424
25REFERENCES = \25REFERENCES = \
26 Mono.Posix \
27 System \26 System \
28 System.Core \27 System.Core \
29 $(BANSHEE_INDEXER_LIBS) \28 $(BANSHEE_INDEXER_LIBS) \
3029
=== modified file 'Banshee/Resources/Banshee.addin.xml.in'
--- Banshee/Resources/Banshee.addin.xml.in 2009-05-18 06:45:46 +0000
+++ Banshee/Resources/Banshee.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -11,8 +11,10 @@
11 11
12 <Runtime>12 <Runtime>
13 <Import assembly="Banshee.dll"/>13 <Import assembly="Banshee.dll"/>
14 <Import assembly="@BANSHEE_INDEXER_DLL@"/>14 <Import assembly="/usr/lib/banshee-1/Banshee.CollectionIndexer.dll"/>
15 </Runtime>15 </Runtime>
16
17 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
16 18
17 <Dependencies>19 <Dependencies>
18 <Addin id="Universe" version="1.0" />20 <Addin id="Universe" version="1.0" />
1921
=== modified file 'Banshee/src/BansheeIndexer.cs'
--- Banshee/src/BansheeIndexer.cs 2009-01-23 07:31:12 +0000
+++ Banshee/src/BansheeIndexer.cs 2009-06-21 11:51:24 +0000
@@ -28,7 +28,7 @@
2828
29using Banshee.Collection.Indexer.RemoteHelper;29using Banshee.Collection.Indexer.RemoteHelper;
3030
31using Mono.Unix;31using Mono.Addins;
3232
33using Do.Platform;33using Do.Platform;
34using Do.Universe;34using Do.Universe;
3535
=== modified file 'Banshee/src/BrowseMediaItems.cs'
--- Banshee/src/BrowseMediaItems.cs 2009-01-22 03:02:27 +0000
+++ Banshee/src/BrowseMediaItems.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
2121
22using System;22using System;
2323
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Universe;26using Do.Universe;
2727
@@ -53,8 +53,8 @@
53 public class BrowseArtistMusicItem : BrowseMediaItem53 public class BrowseArtistMusicItem : BrowseMediaItem
54 {54 {
55 public BrowseArtistMusicItem () :55 public BrowseArtistMusicItem () :
56 base (Catalog.GetString ("Browse Artists"),56 base (AddinManager.CurrentLocalizer.GetString ("Browse Artists"),
57 Catalog.GetString ("Browse Music by Artist"))57 AddinManager.CurrentLocalizer.GetString ("Browse Music by Artist"))
58 {58 {
59 }59 }
60 60
@@ -66,24 +66,24 @@
66 public class BrowseAlbumsMusicItem : BrowseMediaItem66 public class BrowseAlbumsMusicItem : BrowseMediaItem
67 {67 {
68 public BrowseAlbumsMusicItem () :68 public BrowseAlbumsMusicItem () :
69 base (Catalog.GetString ("Browse Albums"), 69 base (AddinManager.CurrentLocalizer.GetString ("Browse Albums"),
70 Catalog.GetString ("Browse Music by Album"))70 AddinManager.CurrentLocalizer.GetString ("Browse Music by Album"))
71 {71 {
72 }72 }
73 }73 }
74 74
75 public class BrowsePublisherPodcastItem : BrowseMediaItem75 public class BrowsePublisherPodcastItem : BrowseMediaItem
76 {76 {
77 public BrowsePublisherPodcastItem () : base (Catalog.GetString ("Browse Podcasts"),77 public BrowsePublisherPodcastItem () : base (AddinManager.CurrentLocalizer.GetString ("Browse Podcasts"),
78 Catalog.GetString ("Browse Podcasts by Publisher"))78 AddinManager.CurrentLocalizer.GetString ("Browse Podcasts by Publisher"))
79 {79 {
80 }80 }
81 }81 }
82 82
83 public class BrowseVideoItem : BrowseMediaItem83 public class BrowseVideoItem : BrowseMediaItem
84 {84 {
85 public BrowseVideoItem () : base (Catalog.GetString ("Browse Videos"),85 public BrowseVideoItem () : base (AddinManager.CurrentLocalizer.GetString ("Browse Videos"),
86 Catalog.GetString ("Browse All Videos"))86 AddinManager.CurrentLocalizer.GetString ("Browse All Videos"))
87 {87 {
88 }88 }
89 }89 }
9090
=== modified file 'Banshee/src/EnqueueAction.cs'
--- Banshee/src/EnqueueAction.cs 2009-01-22 04:17:45 +0000
+++ Banshee/src/EnqueueAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Threading;24using System.Threading;
25using System.Collections.Generic;25using System.Collections.Generic;
2626
27using Mono.Unix;27using Mono.Addins;
2828
29using Do.Platform;29using Do.Platform;
30using Do.Universe;30using Do.Universe;
@@ -34,11 +34,11 @@
34 public class EnqueueAction : Act34 public class EnqueueAction : Act
35 {35 {
36 public override string Name {36 public override string Name {
37 get { return Catalog.GetString ("Add to Play Queue"); }37 get { return AddinManager.CurrentLocalizer.GetString ("Add to Play Queue"); }
38 }38 }
39 39
40 public override string Description {40 public override string Description {
41 get { return Catalog.GetString ("Add media to play queue"); }41 get { return AddinManager.CurrentLocalizer.GetString ("Add media to play queue"); }
42 }42 }
4343
44 public override string Icon {44 public override string Icon {
4545
=== modified file 'Banshee/src/MediaItemSource.cs'
--- Banshee/src/MediaItemSource.cs 2009-01-23 04:17:06 +0000
+++ Banshee/src/MediaItemSource.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System;22using System;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Platform;27using Do.Platform;
28using Do.Universe;28using Do.Universe;
@@ -43,11 +43,11 @@
43 }43 }
44 44
45 public override string Name {45 public override string Name {
46 get { return Catalog.GetString ("Banshee Media"); }46 get { return AddinManager.CurrentLocalizer.GetString ("Banshee Media"); }
47 }47 }
48 48
49 public override string Description {49 public override string Description {
50 get { return Catalog.GetString ("Indexes Media from Banshee Media Player"); }50 get { return AddinManager.CurrentLocalizer.GetString ("Indexes Media from Banshee Media Player"); }
51 }51 }
52 52
53 public override string Icon {53 public override string Icon {
5454
=== modified file 'Banshee/src/MediaItems.cs'
--- Banshee/src/MediaItems.cs 2009-01-22 04:17:45 +0000
+++ Banshee/src/MediaItems.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System;21using System;
22using Do.Universe;22using Do.Universe;
2323
24using Mono.Unix;24using Mono.Addins;
2525
26namespace Banshee26namespace Banshee
27{27{
@@ -188,7 +188,7 @@
188 188
189 public override string Description {189 public override string Description {
190 get { return string.Format ("{0} {1} {2}", 190 get { return string.Format ("{0} {1} {2}",
191 Catalog.GetString ("All Music by"), artist, Year); }191 AddinManager.CurrentLocalizer.GetString ("All Music by"), artist, Year); }
192 }192 }
193 193
194 public override string Icon {194 public override string Icon {
195195
=== modified file 'Banshee/src/NextAction.cs'
--- Banshee/src/NextAction.cs 2009-01-22 03:02:27 +0000
+++ Banshee/src/NextAction.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Universe;25using Do.Universe;
2626
@@ -29,11 +29,11 @@
29 public class NextAction : AbstractPlayerAction29 public class NextAction : AbstractPlayerAction
30 {30 {
31 public override string Name {31 public override string Name {
32 get { return Catalog.GetString ("Next"); }32 get { return AddinManager.CurrentLocalizer.GetString ("Next"); }
33 }33 }
3434
35 public override string Description {35 public override string Description {
36 get { return Catalog.GetString ("Play next track"); }36 get { return AddinManager.CurrentLocalizer.GetString ("Play next track"); }
37 }37 }
3838
39 public override string Icon {39 public override string Icon {
4040
=== modified file 'Banshee/src/PauseAction.cs'
--- Banshee/src/PauseAction.cs 2009-02-27 06:17:30 +0000
+++ Banshee/src/PauseAction.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Platform;25using Do.Platform;
26using Do.Universe;26using Do.Universe;
@@ -30,11 +30,11 @@
30 public class PauseAction : AbstractPlayerAction30 public class PauseAction : AbstractPlayerAction
31 {31 {
32 public override string Name {32 public override string Name {
33 get { return Catalog.GetString ("Pause"); }33 get { return AddinManager.CurrentLocalizer.GetString ("Pause"); }
34 }34 }
3535
36 public override string Description {36 public override string Description {
37 get { return Catalog.GetString ("Pause playing track"); }37 get { return AddinManager.CurrentLocalizer.GetString ("Pause playing track"); }
38 }38 }
3939
40 public override string Icon {40 public override string Icon {
4141
=== modified file 'Banshee/src/PlayAction.cs'
--- Banshee/src/PlayAction.cs 2009-03-01 17:35:43 +0000
+++ Banshee/src/PlayAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Linq;23using System.Linq;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
2929
@@ -32,11 +32,11 @@
32 public class PlayAction : AbstractPlayerAction32 public class PlayAction : AbstractPlayerAction
33 { 33 {
34 public override string Name {34 public override string Name {
35 get { return Catalog.GetString ("Play"); }35 get { return AddinManager.CurrentLocalizer.GetString ("Play"); }
36 }36 }
37 37
38 public override string Description {38 public override string Description {
39 get { return Catalog.GetString ("Play from your Banshee Collection"); }39 get { return AddinManager.CurrentLocalizer.GetString ("Play from your Banshee Collection"); }
40 }40 }
41 41
42 public override string Icon {42 public override string Icon {
4343
=== modified file 'Banshee/src/PreviousAction.cs'
--- Banshee/src/PreviousAction.cs 2009-01-22 03:02:27 +0000
+++ Banshee/src/PreviousAction.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Universe;25using Do.Universe;
2626
@@ -29,11 +29,11 @@
29 public class PreviousAction : AbstractPlayerAction29 public class PreviousAction : AbstractPlayerAction
30 {30 {
31 public override string Name {31 public override string Name {
32 get { return Catalog.GetString ("Previous"); }32 get { return AddinManager.CurrentLocalizer.GetString ("Previous"); }
33 }33 }
3434
35 public override string Description {35 public override string Description {
36 get { return Catalog.GetString ("Play previous track"); }36 get { return AddinManager.CurrentLocalizer.GetString ("Play previous track"); }
37 }37 }
3838
39 public override string Icon {39 public override string Icon {
4040
=== modified file 'Banshee/src/SearchCollectionAction.cs'
--- Banshee/src/SearchCollectionAction.cs 2009-01-23 04:17:06 +0000
+++ Banshee/src/SearchCollectionAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Linq;23using System.Linq;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Platform;28using Do.Platform;
29using Do.Universe;29using Do.Universe;
@@ -33,11 +33,11 @@
33 public class SearchCollectionAction : Act33 public class SearchCollectionAction : Act
34 { 34 {
35 public override string Name {35 public override string Name {
36 get { return Catalog.GetString ("Search Banshee Media"); }36 get { return AddinManager.CurrentLocalizer.GetString ("Search Banshee Media"); }
37 }37 }
38 38
39 public override string Description {39 public override string Description {
40 get { return Catalog.GetString ("Search your entire Banshee collection"); }40 get { return AddinManager.CurrentLocalizer.GetString ("Search your entire Banshee collection"); }
41 }41 }
4242
43 public override string Icon {43 public override string Icon {
4444
=== modified file 'Bibtex/Bibtex.mdp'
--- Bibtex/Bibtex.mdp 2009-02-28 16:16:48 +0000
+++ Bibtex/Bibtex.mdp 2009-06-22 01:49:55 +0000
@@ -30,10 +30,9 @@
30 <References>30 <References>
31 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />31 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
32 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />32 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
33 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
34 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />33 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
35 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />34 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
36 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />35 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
37 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />36 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
38 </References>37 </References>
39</Project>
40\ No newline at end of file38\ No newline at end of file
39</Project>
4140
=== modified file 'Bibtex/Makefile.am'
--- Bibtex/Makefile.am 2009-02-04 02:36:34 +0000
+++ Bibtex/Makefile.am 2009-06-22 01:49:05 +0000
@@ -17,7 +17,6 @@
17 gtk-gui/objects.xml17 gtk-gui/objects.xml
1818
19REFERENCES = \19REFERENCES = \
20 Mono.Posix \
21 System \20 System \
22 System.Core \21 System.Core \
23 $(GTK_SHARP_20_LIBS) \22 $(GTK_SHARP_20_LIBS) \
2423
=== renamed file 'Bibtex/Resources/Bibtex.addin.xml' => 'Bibtex/Resources/Bibtex.addin.xml.in'
--- Bibtex/Resources/Bibtex.addin.xml 2009-03-31 23:19:25 +0000
+++ Bibtex/Resources/Bibtex.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="Bibtex.dll"/>13 <Import assembly="Bibtex.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'Bibtex/gtk-gui/Bibtex.Configuration.cs'
--- Bibtex/gtk-gui/Bibtex.Configuration.cs 2009-01-22 12:54:17 +0000
+++ Bibtex/gtk-gui/Bibtex.Configuration.cs 2009-06-22 01:49:05 +0000
@@ -41,13 +41,13 @@
41 // Container child table1.Gtk.Table+TableChild41 // Container child table1.Gtk.Table+TableChild
42 this.bibtexFileLabel = new Gtk.Label();42 this.bibtexFileLabel = new Gtk.Label();
43 this.bibtexFileLabel.Name = "bibtexFileLabel";43 this.bibtexFileLabel.Name = "bibtexFileLabel";
44 this.bibtexFileLabel.LabelProp = Mono.Unix.Catalog.GetString("Choose BibTeX file");44 this.bibtexFileLabel.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Choose BibTeX file");
45 this.table1.Add(this.bibtexFileLabel);45 this.table1.Add(this.bibtexFileLabel);
46 Gtk.Table.TableChild w1 = ((Gtk.Table.TableChild)(this.table1[this.bibtexFileLabel]));46 Gtk.Table.TableChild w1 = ((Gtk.Table.TableChild)(this.table1[this.bibtexFileLabel]));
47 w1.XOptions = ((Gtk.AttachOptions)(4));47 w1.XOptions = ((Gtk.AttachOptions)(4));
48 w1.YOptions = ((Gtk.AttachOptions)(4));48 w1.YOptions = ((Gtk.AttachOptions)(4));
49 // Container child table1.Gtk.Table+TableChild49 // Container child table1.Gtk.Table+TableChild
50 this.chooseBibtexFileButton = new Gtk.FileChooserButton(Mono.Unix.Catalog.GetString("Select A File"), ((Gtk.FileChooserAction)(0)));50 this.chooseBibtexFileButton = new Gtk.FileChooserButton(Mono.Addins.AddinManager.CurrentLocalizer.GetString("Select A File"), ((Gtk.FileChooserAction)(0)));
51 this.chooseBibtexFileButton.Name = "chooseBibtexFileButton";51 this.chooseBibtexFileButton.Name = "chooseBibtexFileButton";
52 this.table1.Add(this.chooseBibtexFileButton);52 this.table1.Add(this.chooseBibtexFileButton);
53 Gtk.Table.TableChild w2 = ((Gtk.Table.TableChild)(this.table1[this.chooseBibtexFileButton]));53 Gtk.Table.TableChild w2 = ((Gtk.Table.TableChild)(this.table1[this.chooseBibtexFileButton]));
@@ -55,7 +55,7 @@
55 w2.RightAttach = ((uint)(2));55 w2.RightAttach = ((uint)(2));
56 w2.YOptions = ((Gtk.AttachOptions)(4));56 w2.YOptions = ((Gtk.AttachOptions)(4));
57 // Container child table1.Gtk.Table+TableChild57 // Container child table1.Gtk.Table+TableChild
58 this.chooseDocsFolderButton = new Gtk.FileChooserButton(Mono.Unix.Catalog.GetString("Select your documents folder"), ((Gtk.FileChooserAction)(2)));58 this.chooseDocsFolderButton = new Gtk.FileChooserButton(Mono.Addins.AddinManager.CurrentLocalizer.GetString("Select your documents folder"), ((Gtk.FileChooserAction)(2)));
59 this.chooseDocsFolderButton.Name = "chooseDocsFolderButton";59 this.chooseDocsFolderButton.Name = "chooseDocsFolderButton";
60 this.table1.Add(this.chooseDocsFolderButton);60 this.table1.Add(this.chooseDocsFolderButton);
61 Gtk.Table.TableChild w3 = ((Gtk.Table.TableChild)(this.table1[this.chooseDocsFolderButton]));61 Gtk.Table.TableChild w3 = ((Gtk.Table.TableChild)(this.table1[this.chooseDocsFolderButton]));
@@ -67,7 +67,7 @@
67 // Container child table1.Gtk.Table+TableChild67 // Container child table1.Gtk.Table+TableChild
68 this.docFolderLable = new Gtk.Label();68 this.docFolderLable = new Gtk.Label();
69 this.docFolderLable.Name = "docFolderLable";69 this.docFolderLable.Name = "docFolderLable";
70 this.docFolderLable.LabelProp = Mono.Unix.Catalog.GetString("Choose documents folder");70 this.docFolderLable.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Choose documents folder");
71 this.table1.Add(this.docFolderLable);71 this.table1.Add(this.docFolderLable);
72 Gtk.Table.TableChild w4 = ((Gtk.Table.TableChild)(this.table1[this.docFolderLable]));72 Gtk.Table.TableChild w4 = ((Gtk.Table.TableChild)(this.table1[this.docFolderLable]));
73 w4.TopAttach = ((uint)(1));73 w4.TopAttach = ((uint)(1));
7474
=== modified file 'Bibtex/gtk-gui/gui.stetic'
--- Bibtex/gtk-gui/gui.stetic 2009-01-22 12:54:17 +0000
+++ Bibtex/gtk-gui/gui.stetic 2009-06-22 01:49:05 +0000
@@ -2,8 +2,12 @@
2<stetic-interface>2<stetic-interface>
3 <configuration>3 <configuration>
4 <images-root-path>..</images-root-path>4 <images-root-path>..</images-root-path>
5 <target-gtk-version>2.12.1</target-gtk-version>5 <target-gtk-version>2.12.9</target-gtk-version>
6 </configuration>6 </configuration>
7 <import>
8 <widget-library name="Do.Platform.Linux, Version=0.9.0.0, Culture=neutral" />
9 <widget-library name="../bin/Debug/Bibtex.dll" internal="true" />
10 </import>
7 <widget class="Gtk.Bin" id="Bibtex.Configuration" design-size="375 300">11 <widget class="Gtk.Bin" id="Bibtex.Configuration" design-size="375 300">
8 <property name="MemberName" />12 <property name="MemberName" />
9 <child>13 <child>
@@ -97,4 +101,4 @@
97 </widget>101 </widget>
98 </child>102 </child>
99 </widget>103 </widget>
100</stetic-interface>104</stetic-interface>
101\ No newline at end of file105\ No newline at end of file
102106
=== modified file 'Bibtex/gtk-gui/objects.xml'
--- Bibtex/gtk-gui/objects.xml 2008-12-29 18:23:07 +0000
+++ Bibtex/gtk-gui/objects.xml 2009-06-22 01:49:05 +0000
@@ -1,5 +1,5 @@
1<objects attr-sync="on">1<objects attr-sync="on">
2 <object type="Do.Addins.Bibtex.Configuration" palette-category="Bibtex" allow-children="false" base-type="Gtk.Bin">2 <object type="Bibtex.Configuration" palette-category="Bibtex" allow-children="false" base-type="Gtk.Bin">
3 <itemgroups>3 <itemgroups>
4 <itemgroup label="Configuration Properties">4 <itemgroup label="Configuration Properties">
5 <property name="BibtexFilePath" />5 <property name="BibtexFilePath" />
66
=== modified file 'Cl.ickable/Cl.ickable.mdp'
--- Cl.ickable/Cl.ickable.mdp 2009-02-28 16:16:48 +0000
+++ Cl.ickable/Cl.ickable.mdp 2009-06-22 01:49:55 +0000
@@ -23,10 +23,9 @@
23 </Contents>23 </Contents>
24 <References>24 <References>
25 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />25 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
26 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
27 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />26 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
28 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />27 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
29 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />28 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
30 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />29 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
31 </References>30 </References>
32</Project>
33\ No newline at end of file31\ No newline at end of file
32</Project>
3433
=== modified file 'Cl.ickable/Makefile.am'
--- Cl.ickable/Makefile.am 2009-01-09 05:04:13 +0000
+++ Cl.ickable/Makefile.am 2009-06-21 11:51:24 +0000
@@ -11,7 +11,6 @@
11 Resources/Cl.ickable.addin.xml11 Resources/Cl.ickable.addin.xml
1212
13REFERENCES = \13REFERENCES = \
14 Mono.Posix \
15 System \14 System \
16 System.Core \15 System.Core \
17 System.Web \16 System.Web \
1817
=== renamed file 'Cl.ickable/Resources/Cl.ickable.addin.xml' => 'Cl.ickable/Resources/Cl.ickable.addin.xml.in'
--- Cl.ickable/Resources/Cl.ickable.addin.xml 2009-03-31 23:19:25 +0000
+++ Cl.ickable/Resources/Cl.ickable.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="Cl.ickable.dll"/>13 <Import assembly="Cl.ickable.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'Cl.ickable/src/ClickableItemSource.cs'
--- Cl.ickable/src/ClickableItemSource.cs 2008-12-21 23:44:34 +0000
+++ Cl.ickable/src/ClickableItemSource.cs 2009-06-21 11:51:24 +0000
@@ -18,7 +18,7 @@
1818
19using System;19using System;
20using System.Collections.Generic;20using System.Collections.Generic;
21using Mono.Unix;21using Mono.Addins;
2222
23using Do.Universe;23using Do.Universe;
2424
@@ -28,11 +28,11 @@
28 {28 {
29 29
30 public override string Name {30 public override string Name {
31 get { return Catalog.GetString ("Cl.ickable Items"); }31 get { return AddinManager.CurrentLocalizer.GetString ("Cl.ickable Items"); }
32 }32 }
33 33
34 public override string Description { 34 public override string Description {
35 get { return Catalog.GetString ("Usefull Cl.ickable Items"); }35 get { return AddinManager.CurrentLocalizer.GetString ("Usefull Cl.ickable Items"); }
36 }36 }
37 37
38 public override string Icon {38 public override string Icon {
3939
=== modified file 'Cl.ickable/src/ClipAction.cs'
--- Cl.ickable/src/ClipAction.cs 2009-01-15 17:55:40 +0000
+++ Cl.ickable/src/ClipAction.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System.Linq;21using System.Linq;
22using System.Collections.Generic;22using System.Collections.Generic;
2323
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Platform;26using Do.Platform;
27using Do.Universe;27using Do.Universe;
@@ -35,11 +35,11 @@
35 const string ClipPostURL = "http://cl.ickable.com/cgi-bin/SaveClip.cgi";35 const string ClipPostURL = "http://cl.ickable.com/cgi-bin/SaveClip.cgi";
36 36
37 public override string Name {37 public override string Name {
38 get { return Catalog.GetString ("Clip"); }38 get { return AddinManager.CurrentLocalizer.GetString ("Clip"); }
39 }39 }
40 40
41 public override string Description {41 public override string Description {
42 get { return Catalog.GetString ("Create a clip with Cl.ickable"); }42 get { return AddinManager.CurrentLocalizer.GetString ("Create a clip with Cl.ickable"); }
43 }43 }
44 44
45 public override string Icon {45 public override string Icon {
4646
=== modified file 'Cl.ickable/src/WebClipsItem.cs'
--- Cl.ickable/src/WebClipsItem.cs 2008-12-21 23:44:34 +0000
+++ Cl.ickable/src/WebClipsItem.cs 2009-06-21 11:51:24 +0000
@@ -17,7 +17,7 @@
17//17//
1818
19using System;19using System;
20using Mono.Unix;20using Mono.Addins;
2121
22using Do.Platform;22using Do.Platform;
23using Do.Universe;23using Do.Universe;
@@ -29,11 +29,11 @@
29 const string WebClipsURL = "http://cl.ickable.com/clips/";29 const string WebClipsURL = "http://cl.ickable.com/clips/";
30 30
31 public override string Name {31 public override string Name {
32 get { return Catalog.GetString ("Cl.ickable Clips"); }32 get { return AddinManager.CurrentLocalizer.GetString ("Cl.ickable Clips"); }
33 }33 }
34 34
35 public override string Description {35 public override string Description {
36 get { return Catalog.GetString ("Opens your cl.ickable clips"); }36 get { return AddinManager.CurrentLocalizer.GetString ("Opens your cl.ickable clips"); }
37 }37 }
38 38
39 public override string Icon {39 public override string Icon {
4040
=== modified file 'ClawsMail/ClawsMail.mdp'
--- ClawsMail/ClawsMail.mdp 2009-02-28 16:16:48 +0000
+++ ClawsMail/ClawsMail.mdp 2009-06-22 01:49:55 +0000
@@ -23,9 +23,8 @@
23 <References>23 <References>
24 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />24 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
25 <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />25 <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
26 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
27 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />26 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
28 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />27 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
29 </References>28 </References>
30 <Deployment.LinuxDeployData scriptName="sylpheed-claws-address" />29 <Deployment.LinuxDeployData scriptName="sylpheed-claws-address" />
31</Project>
32\ No newline at end of file30\ No newline at end of file
31</Project>
3332
=== modified file 'ClawsMail/Makefile.am'
--- ClawsMail/Makefile.am 2009-01-09 07:25:58 +0000
+++ ClawsMail/Makefile.am 2009-06-21 11:51:24 +0000
@@ -14,6 +14,5 @@
14 System \14 System \
15 System.Xml \15 System.Xml \
16 System.Core \16 System.Core \
17 Mono.Posix \
18 $(DO_PLATFORM_LIBS) \17 $(DO_PLATFORM_LIBS) \
19 $(DO_UNIVERSE_LIBS)18 $(DO_UNIVERSE_LIBS)
2019
=== renamed file 'ClawsMail/Resources/ClawsMail.addin.xml' => 'ClawsMail/Resources/ClawsMail.addin.xml.in'
--- ClawsMail/Resources/ClawsMail.addin.xml 2009-03-31 23:19:25 +0000
+++ ClawsMail/Resources/ClawsMail.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="ClawsMail.dll"/>13 <Import assembly="ClawsMail.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'ClawsMail/src/ClawsContactDetailItem.cs'
--- ClawsMail/src/ClawsContactDetailItem.cs 2009-01-07 04:28:04 +0000
+++ ClawsMail/src/ClawsContactDetailItem.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19 */19 */
2020
21using System;21using System;
22using Mono.Unix;22using Mono.Addins;
23using Do.Universe;23using Do.Universe;
2424
25namespace Claws {25namespace Claws {
@@ -68,18 +68,18 @@
68 68
69 string remark = type.Substring (type.LastIndexOf (".") + 1);69 string remark = type.Substring (type.LastIndexOf (".") + 1);
70 if (type.StartsWith (ClawsContactsItemSource.ClawsPrimaryEmailPrefix)) {70 if (type.StartsWith (ClawsContactsItemSource.ClawsPrimaryEmailPrefix)) {
71 name = Catalog.GetString ("Primary Email") + " " + remark;71 name = AddinManager.CurrentLocalizer.GetString ("Primary Email") + " " + remark;
72 } else {72 } else {
73 if (remark.Length > 0) {73 if (remark.Length > 0) {
74 name = Catalog.GetString ("Email") + " " + remark;74 name = AddinManager.CurrentLocalizer.GetString ("Email") + " " + remark;
75 } else {75 } else {
76 name = Catalog.GetString ("Other email");76 name = AddinManager.CurrentLocalizer.GetString ("Other email");
77 }77 }
78 }78 }
79 79
80 } else { 80 } else {
81 icon = IconForOthers;81 icon = IconForOthers;
82 name = Catalog.GetString ("Other");82 name = AddinManager.CurrentLocalizer.GetString ("Other");
83 }83 }
84 }84 }
8585
8686
=== modified file 'ClawsMail/src/ClawsContactsItemSource.cs'
--- ClawsMail/src/ClawsContactsItemSource.cs 2009-01-07 04:28:04 +0000
+++ ClawsMail/src/ClawsContactsItemSource.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.IO;23using System.IO;
24using System.Collections.Generic;24using System.Collections.Generic;
25using System.Xml;25using System.Xml;
26using Mono.Unix;26using Mono.Addins;
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
2929
@@ -50,11 +50,11 @@
50 #region std properties50 #region std properties
51 51
52 public override string Name {52 public override string Name {
53 get { return Catalog.GetString ("ClawsMail contacts"); }53 get { return AddinManager.CurrentLocalizer.GetString ("ClawsMail contacts"); }
54 }54 }
5555
56 public override string Description {56 public override string Description {
57 get { return Catalog.GetString ("Contacts in ClawsMail address book"); }57 get { return AddinManager.CurrentLocalizer.GetString ("Contacts in ClawsMail address book"); }
58 }58 }
5959
60 public override string Icon {60 public override string Icon {
6161
=== modified file 'Confluence/Confluence.mdp'
--- Confluence/Confluence.mdp 2009-02-28 16:16:48 +0000
+++ Confluence/Confluence.mdp 2009-06-22 01:49:55 +0000
@@ -30,7 +30,6 @@
30 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />30 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
31 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />31 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
32 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />32 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
33 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
34 <ProjectReference type="Gac" localcopy="True" refto="gconf-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />33 <ProjectReference type="Gac" localcopy="True" refto="gconf-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
35 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />34 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
36 <ProjectReference type="Gac" localcopy="True" refto="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />35 <ProjectReference type="Gac" localcopy="True" refto="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
@@ -40,4 +39,4 @@
40 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />39 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
41 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />40 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
42 </References>41 </References>
43</Project>
44\ No newline at end of file42\ No newline at end of file
43</Project>
4544
=== modified file 'Confluence/Makefile.am'
--- Confluence/Makefile.am 2009-01-09 07:45:01 +0000
+++ Confluence/Makefile.am 2009-06-22 01:49:05 +0000
@@ -17,7 +17,6 @@
17 gtk-gui/objects.xml17 gtk-gui/objects.xml
1818
19REFERENCES = \19REFERENCES = \
20 Mono.Posix \
21 System \20 System \
22 System.Core \21 System.Core \
23 System.Web \22 System.Web \
2423
=== renamed file 'Confluence/Resources/Confluence.addin.xml' => 'Confluence/Resources/Confluence.addin.xml.in'
--- Confluence/Resources/Confluence.addin.xml 2009-03-31 23:19:25 +0000
+++ Confluence/Resources/Confluence.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="Confluence.dll"/>13 <Import assembly="Confluence.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'Confluence/gtk-gui/Confluence.ConfluenceConfigWidget.cs'
--- Confluence/gtk-gui/Confluence.ConfluenceConfigWidget.cs 2009-01-05 01:32:46 +0000
+++ Confluence/gtk-gui/Confluence.ConfluenceConfigWidget.cs 2009-06-22 01:49:05 +0000
@@ -51,7 +51,7 @@
51 w1.SetTip(this._entryBaseUrl, "The base url location to your Confluence install. ie. http://opensource.atlassian.com/confluence/spring", "The base url location to your Confluence install. ie. http://opensource.atlassian.com/confluence/spring");51 w1.SetTip(this._entryBaseUrl, "The base url location to your Confluence install. ie. http://opensource.atlassian.com/confluence/spring", "The base url location to your Confluence install. ie. http://opensource.atlassian.com/confluence/spring");
52 this._entryBaseUrl.CanFocus = true;52 this._entryBaseUrl.CanFocus = true;
53 this._entryBaseUrl.Name = "_entryBaseUrl";53 this._entryBaseUrl.Name = "_entryBaseUrl";
54 this._entryBaseUrl.Text = Mono.Unix.Catalog.GetString("http://opensource.atlassian.com/confluence/spring");54 this._entryBaseUrl.Text = Mono.Addins.AddinManager.CurrentLocalizer.GetString("http://opensource.atlassian.com/confluence/spring");
55 this._entryBaseUrl.IsEditable = true;55 this._entryBaseUrl.IsEditable = true;
56 this._entryBaseUrl.WidthChars = 40;56 this._entryBaseUrl.WidthChars = 40;
57 this._entryBaseUrl.InvisibleChar = '●';57 this._entryBaseUrl.InvisibleChar = '●';
@@ -94,7 +94,7 @@
94 this._entryUsername = new Gtk.Entry();94 this._entryUsername = new Gtk.Entry();
95 this._entryUsername.CanFocus = true;95 this._entryUsername.CanFocus = true;
96 this._entryUsername.Name = "_entryUsername";96 this._entryUsername.Name = "_entryUsername";
97 this._entryUsername.Text = Mono.Unix.Catalog.GetString("username1");97 this._entryUsername.Text = Mono.Addins.AddinManager.CurrentLocalizer.GetString("username1");
98 this._entryUsername.IsEditable = true;98 this._entryUsername.IsEditable = true;
99 this._entryUsername.InvisibleChar = '●';99 this._entryUsername.InvisibleChar = '●';
100 this.table1.Add(this._entryUsername);100 this.table1.Add(this._entryUsername);
101101
=== modified file 'Confluence/gtk-gui/gui.stetic'
--- Confluence/gtk-gui/gui.stetic 2009-01-09 07:25:58 +0000
+++ Confluence/gtk-gui/gui.stetic 2009-06-22 01:49:05 +0000
@@ -2,7 +2,7 @@
2<stetic-interface>2<stetic-interface>
3 <configuration>3 <configuration>
4 <images-root-path>..</images-root-path>4 <images-root-path>..</images-root-path>
5 <target-gtk-version>2.12</target-gtk-version>5 <target-gtk-version>2.12.9</target-gtk-version>
6 </configuration>6 </configuration>
7 <import>7 <import>
8 <widget-library name="../bin/Debug/Confluence.dll" internal="true" />8 <widget-library name="../bin/Debug/Confluence.dll" internal="true" />
99
=== modified file 'Confluence/src/ConfluenceSearchAction.cs'
--- Confluence/src/ConfluenceSearchAction.cs 2008-12-24 04:37:17 +0000
+++ Confluence/src/ConfluenceSearchAction.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System.Collections.Generic;21using System.Collections.Generic;
22using Do.Universe;22using Do.Universe;
23using Do.Platform.Linux;23using Do.Platform.Linux;
24using Mono.Unix;24using Mono.Addins;
2525
2626
27/// <summary>27/// <summary>
@@ -82,7 +82,7 @@
82 /// </value>82 /// </value>
83 public override string Name 83 public override string Name
84 {84 {
85 get { return Catalog.GetString ("Search Confluence"); }85 get { return AddinManager.CurrentLocalizer.GetString ("Search Confluence"); }
86 }86 }
87 87
88 /// <value>88 /// <value>
@@ -90,7 +90,7 @@
90 /// </value>90 /// </value>
91 public override string Description 91 public override string Description
92 {92 {
93 get { return Catalog.GetString ("Searches Confluence and returns results to Do"); }93 get { return AddinManager.CurrentLocalizer.GetString ("Searches Confluence and returns results to Do"); }
94 }94 }
95 95
96 /// <value>96 /// <value>
9797
=== modified file 'Del.icio.us/Makefile.am'
--- Del.icio.us/Makefile.am 2009-01-16 01:25:56 +0000
+++ Del.icio.us/Makefile.am 2009-06-21 11:51:24 +0000
@@ -17,7 +17,6 @@
17 Resources/icons/delicious.png17 Resources/icons/delicious.png
1818
19REFERENCES = \19REFERENCES = \
20 Mono.Posix \
21 System \20 System \
22 System.Core \21 System.Core \
23 System.Web \22 System.Web \
2423
=== renamed file 'Del.icio.us/Resources/delicious.addin.xml' => 'Del.icio.us/Resources/delicious.addin.xml.in'
--- Del.icio.us/Resources/delicious.addin.xml 2009-03-31 23:19:25 +0000
+++ Del.icio.us/Resources/delicious.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="del.icio.us.dll"/>13 <Import assembly="del.icio.us.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'Del.icio.us/del.icio.us.mdp'
--- Del.icio.us/del.icio.us.mdp 2009-02-28 16:16:48 +0000
+++ Del.icio.us/del.icio.us.mdp 2009-06-22 01:49:55 +0000
@@ -30,7 +30,6 @@
30 <References>30 <References>
31 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />31 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
32 <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />32 <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
33 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
34 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />33 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
35 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />34 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
36 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />35 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
@@ -38,4 +37,4 @@
38 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />37 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
39 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />38 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
40 </References>39 </References>
41</Project>
42\ No newline at end of file40\ No newline at end of file
41</Project>
4342
=== modified file 'Del.icio.us/src/BookmarksItemSource.cs'
--- Del.icio.us/src/BookmarksItemSource.cs 2009-05-29 09:39:41 +0000
+++ Del.icio.us/src/BookmarksItemSource.cs 2009-06-21 11:51:24 +0000
@@ -27,18 +27,18 @@
2727
28using Do.Platform.Linux;28using Do.Platform.Linux;
2929
30using Mono.Unix;30using Mono.Addins;
3131
32namespace Delicious32namespace Delicious
33{ 33{
34 public class BookmarksItemSource : ItemSource, IConfigurable34 public class BookmarksItemSource : ItemSource, IConfigurable
35 {35 {
36 public override string Name {36 public override string Name {
37 get { return Catalog.GetString ("Del.icio.us bookmarks"); }37 get { return AddinManager.CurrentLocalizer.GetString ("Del.icio.us bookmarks"); }
38 }38 }
39 39
40 public override string Description {40 public override string Description {
41 get { return Catalog.GetString ("Indexes your del.icio.us bookmarks"); }41 get { return AddinManager.CurrentLocalizer.GetString ("Indexes your del.icio.us bookmarks"); }
42 }42 }
43 43
44 public override string Icon {44 public override string Icon {
4545
=== modified file 'Del.icio.us/src/NewBookmarkAction.cs'
--- Del.icio.us/src/NewBookmarkAction.cs 2009-05-29 09:39:41 +0000
+++ Del.icio.us/src/NewBookmarkAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Threading;23using System.Threading;
24using System.Text.RegularExpressions;24using System.Text.RegularExpressions;
2525
26using Mono.Unix;26using Mono.Addins;
27using Do.Universe;27using Do.Universe;
2828
2929
@@ -55,11 +55,11 @@
55 }55 }
56 56
57 public override string Name {57 public override string Name {
58 get { return Catalog.GetString ("New del.icio.us bookmark"); }58 get { return AddinManager.CurrentLocalizer.GetString ("New del.icio.us bookmark"); }
59 }59 }
60 60
61 public override string Description {61 public override string Description {
62 get { return Catalog.GetString ("Create a new bookmark at del.icio.us"); }62 get { return AddinManager.CurrentLocalizer.GetString ("Create a new bookmark at del.icio.us"); }
63 }63 }
64 64
65 public override string Icon {65 public override string Icon {
6666
=== modified file 'Del.icio.us/src/SearchAction.cs'
--- Del.icio.us/src/SearchAction.cs 2009-05-29 09:39:41 +0000
+++ Del.icio.us/src/SearchAction.cs 2009-06-21 11:51:24 +0000
@@ -26,7 +26,7 @@
26using System.Collections.Generic;26using System.Collections.Generic;
27using System.Security.Cryptography.X509Certificates;27using System.Security.Cryptography.X509Certificates;
2828
29using Mono.Unix;29using Mono.Addins;
3030
31using Do.Universe;31using Do.Universe;
32using Do.Universe.Common;32using Do.Universe.Common;
@@ -44,11 +44,11 @@
44 public class SearchAction : Act44 public class SearchAction : Act
45 {45 {
46 public override string Name {46 public override string Name {
47 get { return Catalog.GetString ("Search del.icio.us"); }47 get { return AddinManager.CurrentLocalizer.GetString ("Search del.icio.us"); }
48 }48 }
49 49
50 public override string Description {50 public override string Description {
51 get { return Catalog.GetString ("del.icio.us tag search"); }51 get { return AddinManager.CurrentLocalizer.GetString ("del.icio.us tag search"); }
52 }52 }
53 53
54 public override string Icon {54 public override string Icon {
5555
=== modified file 'Del.icio.us/src/TagItem.cs'
--- Del.icio.us/src/TagItem.cs 2008-12-21 23:44:34 +0000
+++ Del.icio.us/src/TagItem.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
2121
22using System;22using System;
23using Do.Universe;23using Do.Universe;
24using Mono.Unix;24using Mono.Addins;
2525
26namespace Delicious26namespace Delicious
27{27{
@@ -42,9 +42,9 @@
42 public override string Description {42 public override string Description {
43 get { 43 get {
44 if (tag.Equals ("Untagged"))44 if (tag.Equals ("Untagged"))
45 return Catalog.GetString ("Untagged del.ico.us bookmarks"); 45 return AddinManager.CurrentLocalizer.GetString ("Untagged del.ico.us bookmarks");
46 return string.Format (46 return string.Format (
47 Catalog.GetString ("del.icio.us bookmarks tagged with {0}"), Name);47 AddinManager.CurrentLocalizer.GetString ("del.icio.us bookmarks tagged with {0}"), Name);
48 }48 }
49 }49 }
50 50
5151
=== modified file 'Del.icio.us/src/TagsItemSource.cs'
--- Del.icio.us/src/TagsItemSource.cs 2009-02-17 13:57:19 +0000
+++ Del.icio.us/src/TagsItemSource.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System;22using System;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
2828
@@ -31,11 +31,11 @@
31 public class TagsItemSource : ItemSource31 public class TagsItemSource : ItemSource
32 {32 {
33 public override string Name {33 public override string Name {
34 get { return Catalog.GetString ("Del.icio.us Tags"); }34 get { return AddinManager.CurrentLocalizer.GetString ("Del.icio.us Tags"); }
35 }35 }
36 36
37 public override string Description {37 public override string Description {
38 get { return Catalog.GetString ("Organizes your del.icio.us bookmarks by tag"); }38 get { return AddinManager.CurrentLocalizer.GetString ("Organizes your del.icio.us bookmarks by tag"); }
39 }39 }
40 40
41 public override string Icon {41 public override string Icon {
4242
=== modified file 'DiskMounter/DiskMounter.mdp'
--- DiskMounter/DiskMounter.mdp 2009-06-17 01:07:23 +0000
+++ DiskMounter/DiskMounter.mdp 2009-06-22 01:49:55 +0000
@@ -25,9 +25,8 @@
25 <References>25 <References>
26 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />26 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
27 <ProjectReference type="Gac" localcopy="True" refto="gnome-vfs-sharp, Version=2.24.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />27 <ProjectReference type="Gac" localcopy="True" refto="gnome-vfs-sharp, Version=2.24.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
28 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
29 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />28 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
30 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.9.0.0, Culture=neutral" />29 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.9.0.0, Culture=neutral" />
31 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.9.0.0, Culture=neutral" />30 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.9.0.0, Culture=neutral" />
32 </References>31 </References>
33</Project>
34\ No newline at end of file32\ No newline at end of file
33</Project>
3534
=== modified file 'DiskMounter/Makefile.am'
--- DiskMounter/Makefile.am 2009-01-09 05:04:13 +0000
+++ DiskMounter/Makefile.am 2009-06-21 11:51:24 +0000
@@ -13,7 +13,6 @@
13 Resources/DiskMounter.addin.xml13 Resources/DiskMounter.addin.xml
1414
15REFERENCES = \15REFERENCES = \
16 Mono.Posix \
17 System \16 System \
18 System.Core \17 System.Core \
19 $(GNOME_VFS_SHARP_20_LIBS) \18 $(GNOME_VFS_SHARP_20_LIBS) \
2019
=== renamed file 'DiskMounter/Resources/DiskMounter.addin.xml' => 'DiskMounter/Resources/DiskMounter.addin.xml.in'
--- DiskMounter/Resources/DiskMounter.addin.xml 2009-03-31 23:19:25 +0000
+++ DiskMounter/Resources/DiskMounter.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="DiskMounter.dll"/>13 <Import assembly="DiskMounter.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'DiskMounter/src/MountAction.cs'
--- DiskMounter/src/MountAction.cs 2009-06-17 01:07:23 +0000
+++ DiskMounter/src/MountAction.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19using System.Collections.Generic;19using System.Collections.Generic;
20using System.Linq;20using System.Linq;
2121
22using Mono.Unix;22using Mono.Addins;
2323
24using Do.Universe;24using Do.Universe;
25using Do.Platform;25using Do.Platform;
@@ -29,11 +29,11 @@
29 public class MountAction : Act29 public class MountAction : Act
30 {30 {
31 public override string Name {31 public override string Name {
32 get { return Catalog.GetString ("Mount"); }32 get { return AddinManager.CurrentLocalizer.GetString ("Mount"); }
33 }33 }
34 34
35 public override string Description {35 public override string Description {
36 get { return Catalog.GetString ("Mount volume"); }36 get { return AddinManager.CurrentLocalizer.GetString ("Mount volume"); }
37 }37 }
38 38
39 public override string Icon {39 public override string Icon {
4040
=== modified file 'DiskMounter/src/OpenVolumeAction.cs'
--- DiskMounter/src/OpenVolumeAction.cs 2009-06-17 01:07:23 +0000
+++ DiskMounter/src/OpenVolumeAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
2323
24using Gnome.Vfs;24using Gnome.Vfs;
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
@@ -37,11 +37,11 @@
37 }37 }
38 38
39 public override string Name {39 public override string Name {
40 get { return Catalog.GetString ("Open"); }40 get { return AddinManager.CurrentLocalizer.GetString ("Open"); }
41 }41 }
42 42
43 public override string Description {43 public override string Description {
44 get { return Catalog.GetString ("Open a removable volume"); }44 get { return AddinManager.CurrentLocalizer.GetString ("Open a removable volume"); }
45 }45 }
46 46
47 public override string Icon {47 public override string Icon {
4848
=== modified file 'DiskMounter/src/UnmountAction.cs'
--- DiskMounter/src/UnmountAction.cs 2009-06-17 01:07:23 +0000
+++ DiskMounter/src/UnmountAction.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
20using System.Collections.Generic;20using System.Collections.Generic;
21using System.Linq;21using System.Linq;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Universe;25using Do.Universe;
26using Do.Platform;26using Do.Platform;
@@ -30,11 +30,11 @@
30 public class UnmountAction : Act30 public class UnmountAction : Act
31 {31 {
32 public override string Name {32 public override string Name {
33 get { return Catalog.GetString ("Unmount"); }33 get { return AddinManager.CurrentLocalizer.GetString ("Unmount"); }
34 }34 }
35 35
36 public override string Description {36 public override string Description {
37 get { return Catalog.GetString ("Unmount or eject a volume"); }37 get { return AddinManager.CurrentLocalizer.GetString ("Unmount or eject a volume"); }
38 }38 }
39 39
40 public override string Icon {40 public override string Icon {
4141
=== modified file 'Dropbox/Dropbox.mdp'
--- Dropbox/Dropbox.mdp 2009-06-14 15:24:47 +0000
+++ Dropbox/Dropbox.mdp 2009-06-22 01:49:55 +0000
@@ -43,8 +43,7 @@
43 <References>43 <References>
44 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />44 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
45 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />45 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
46 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
47 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />46 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
48 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />47 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
49 </References>48 </References>
50</Project>
51\ No newline at end of file49\ No newline at end of file
50</Project>
5251
=== modified file 'Dropbox/Makefile.am'
--- Dropbox/Makefile.am 2009-06-14 15:24:47 +0000
+++ Dropbox/Makefile.am 2009-06-22 01:49:05 +0000
@@ -31,7 +31,6 @@
31REFERENCES = \31REFERENCES = \
32 System \32 System \
33 System.Core \33 System.Core \
34 Mono.Posix \
35 $(DO_PLATFORM_LINUX_LIBS) \34 $(DO_PLATFORM_LINUX_LIBS) \
36 $(DO_UNIVERSE_LIBS) \35 $(DO_UNIVERSE_LIBS) \
37 $(GTK_SHARP_20_LIBS)36 $(GTK_SHARP_20_LIBS)
3837
=== renamed file 'Dropbox/Resources/Dropbox.addin.xml' => 'Dropbox/Resources/Dropbox.addin.xml.in'
--- Dropbox/Resources/Dropbox.addin.xml 2009-05-10 17:04:26 +0000
+++ Dropbox/Resources/Dropbox.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="Dropbox.dll"/>13 <Import assembly="Dropbox.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'Dropbox/gtk-gui/Dropbox.DropboxConfig.cs'
--- Dropbox/gtk-gui/Dropbox.DropboxConfig.cs 2009-06-02 19:25:08 +0000
+++ Dropbox/gtk-gui/Dropbox.DropboxConfig.cs 2009-06-22 01:49:05 +0000
@@ -77,7 +77,7 @@
77 this.frame2.Add(this.GtkAlignment);77 this.frame2.Add(this.GtkAlignment);
78 this.GtkLabel1 = new Gtk.Label();78 this.GtkLabel1 = new Gtk.Label();
79 this.GtkLabel1.Name = "GtkLabel1";79 this.GtkLabel1.Name = "GtkLabel1";
80 this.GtkLabel1.LabelProp = Mono.Unix.Catalog.GetString("Dropbox Location");80 this.GtkLabel1.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Dropbox Location");
81 this.GtkLabel1.UseMarkup = true;81 this.GtkLabel1.UseMarkup = true;
82 this.frame2.LabelWidget = this.GtkLabel1;82 this.frame2.LabelWidget = this.GtkLabel1;
83 this.vbox2.Add(this.frame2);83 this.vbox2.Add(this.frame2);
8484
=== modified file 'Dropbox/gtk-gui/gui.stetic'
--- Dropbox/gtk-gui/gui.stetic 2009-06-10 17:32:19 +0000
+++ Dropbox/gtk-gui/gui.stetic 2009-06-22 01:49:05 +0000
@@ -2,7 +2,7 @@
2<stetic-interface>2<stetic-interface>
3 <configuration>3 <configuration>
4 <images-root-path>..</images-root-path>4 <images-root-path>..</images-root-path>
5 <target-gtk-version>2.12</target-gtk-version>5 <target-gtk-version>2.12.9</target-gtk-version>
6 </configuration>6 </configuration>
7 <import>7 <import>
8 <widget-library name="../bin/Debug/Dropbox.dll" internal="true" />8 <widget-library name="../bin/Debug/Dropbox.dll" internal="true" />
99
=== modified file 'Dropbox/src/Config/DropboxConfig.cs'
--- Dropbox/src/Config/DropboxConfig.cs 2009-06-06 16:40:38 +0000
+++ Dropbox/src/Config/DropboxConfig.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System;22using System;
23using System.IO;23using System.IO;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Gtk;27using Gtk;
2828
@@ -65,7 +65,7 @@
65 protected virtual void OnBasePathBtnClicked (object sender, System.EventArgs e)65 protected virtual void OnBasePathBtnClicked (object sender, System.EventArgs e)
66 {66 {
67 FileChooserDialog chooser = new FileChooserDialog (67 FileChooserDialog chooser = new FileChooserDialog (
68 Catalog.GetString ("Select location of Dropbox folder"),68 AddinManager.CurrentLocalizer.GetString ("Select location of Dropbox folder"),
69 new Dialog (), FileChooserAction.SelectFolder,69 new Dialog (), FileChooserAction.SelectFolder,
70 Gtk.Stock.Cancel, ResponseType.Cancel,70 Gtk.Stock.Cancel, ResponseType.Cancel,
71 Gtk.Stock.Open, ResponseType.Accept);71 Gtk.Stock.Open, ResponseType.Accept);
7272
=== modified file 'Dropbox/src/DropboxAbstractAction.cs'
--- Dropbox/src/DropboxAbstractAction.cs 2009-06-15 19:39:58 +0000
+++ Dropbox/src/DropboxAbstractAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Diagnostics;24using System.Diagnostics;
25using System.Collections.Generic;25using System.Collections.Generic;
2626
27using Mono.Unix;27using Mono.Addins;
2828
29using Do.Universe;29using Do.Universe;
30using Do.Platform;30using Do.Platform;
@@ -45,7 +45,7 @@
45 45
46 protected void Notify (string message)46 protected void Notify (string message)
47 {47 {
48 Notification notification = new Notification (Catalog.GetString ("Dropbox"), message, "dropbox");48 Notification notification = new Notification (AddinManager.CurrentLocalizer.GetString ("Dropbox"), message, "dropbox");
49 Services.Notifications.Notify (notification);49 Services.Notifications.Notify (notification);
50 }50 }
51 51
5252
=== modified file 'Dropbox/src/DropboxLinkAction.cs'
--- Dropbox/src/DropboxLinkAction.cs 2009-06-14 15:24:47 +0000
+++ Dropbox/src/DropboxLinkAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Linq;24using System.Linq;
25using System.Collections.Generic;25using System.Collections.Generic;
2626
27using Mono.Unix;27using Mono.Addins;
2828
29using Do.Universe;29using Do.Universe;
30using Do.Universe.Common;30using Do.Universe.Common;
@@ -37,11 +37,11 @@
37 {37 {
38 38
39 public override string Name {39 public override string Name {
40 get { return Catalog.GetString ("Add to Dropbox..."); }40 get { return AddinManager.CurrentLocalizer.GetString ("Add to Dropbox..."); }
41 }41 }
42 42
43 public override string Description {43 public override string Description {
44 get { return Catalog.GetString ("Links a file or folder to your Dropbox."); }44 get { return AddinManager.CurrentLocalizer.GetString ("Links a file or folder to your Dropbox."); }
45 }45 }
46 46
47 public override string Icon {47 public override string Icon {
4848
=== modified file 'Dropbox/src/DropboxPuburlAction.cs'
--- Dropbox/src/DropboxPuburlAction.cs 2009-06-15 19:39:58 +0000
+++ Dropbox/src/DropboxPuburlAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Linq;23using System.Linq;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
29using Do.Universe.Common;29using Do.Universe.Common;
@@ -38,11 +38,11 @@
38 {38 {
39 39
40 public override string Name {40 public override string Name {
41 get { return Catalog.GetString ("Get public URL"); }41 get { return AddinManager.CurrentLocalizer.GetString ("Get public URL"); }
42 }42 }
43 43
44 public override string Description {44 public override string Description {
45 get { return Catalog.GetString ("Gets public URL of a shared Dropbox file."); }45 get { return AddinManager.CurrentLocalizer.GetString ("Gets public URL of a shared Dropbox file."); }
46 }46 }
47 47
48 public override string Icon {48 public override string Icon {
4949
=== modified file 'Dropbox/src/DropboxRevisionsAction.cs'
--- Dropbox/src/DropboxRevisionsAction.cs 2009-06-14 15:24:47 +0000
+++ Dropbox/src/DropboxRevisionsAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Linq;23using System.Linq;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
27 27
28using Do.Universe;28using Do.Universe;
29using Do.Universe.Common;29using Do.Universe.Common;
@@ -38,11 +38,11 @@
38 {38 {
39 39
40 public override string Name {40 public override string Name {
41 get { return Catalog.GetString ("View revisions"); }41 get { return AddinManager.CurrentLocalizer.GetString ("View revisions"); }
42 }42 }
43 43
44 public override string Description {44 public override string Description {
45 get { return Catalog.GetString ("Views file history in Dropbox web interface."); }45 get { return AddinManager.CurrentLocalizer.GetString ("Views file history in Dropbox web interface."); }
46 }46 }
47 47
48 public override string Icon {48 public override string Icon {
4949
=== modified file 'Dropbox/src/DropboxShareAction.cs'
--- Dropbox/src/DropboxShareAction.cs 2009-06-15 19:39:58 +0000
+++ Dropbox/src/DropboxShareAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Linq;24using System.Linq;
25using System.Collections.Generic;25using System.Collections.Generic;
2626
27using Mono.Unix;27using Mono.Addins;
28 28
29using Do.Universe;29using Do.Universe;
30using Do.Universe.Common;30using Do.Universe.Common;
@@ -39,11 +39,11 @@
39 {39 {
40 40
41 public override string Name {41 public override string Name {
42 get { return Catalog.GetString ("Share with Dropbox"); }42 get { return AddinManager.CurrentLocalizer.GetString ("Share with Dropbox"); }
43 }43 }
44 44
45 public override string Description {45 public override string Description {
46 get { return Catalog.GetString ("Links a file to your Dropbox public folder."); }46 get { return AddinManager.CurrentLocalizer.GetString ("Links a file to your Dropbox public folder."); }
47 }47 }
48 48
49 public override string Icon {49 public override string Icon {
5050
=== modified file 'Dropbox/src/DropboxStartAction.cs'
--- Dropbox/src/DropboxStartAction.cs 2009-06-14 15:24:47 +0000
+++ Dropbox/src/DropboxStartAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
26 26
27using Do.Universe;27using Do.Universe;
28using Do.Universe.Common;28using Do.Universe.Common;
@@ -38,11 +38,11 @@
38 {38 {
39 39
40 public override string Name {40 public override string Name {
41 get { return Catalog.GetString ("Start Dropbox"); }41 get { return AddinManager.CurrentLocalizer.GetString ("Start Dropbox"); }
42 }42 }
43 43
44 public override string Description {44 public override string Description {
45 get { return Catalog.GetString ("Starts the Dropbox daemon."); }45 get { return AddinManager.CurrentLocalizer.GetString ("Starts the Dropbox daemon."); }
46 }46 }
47 47
48 public override string Icon {48 public override string Icon {
4949
=== modified file 'Dropbox/src/DropboxStopAction.cs'
--- Dropbox/src/DropboxStopAction.cs 2009-06-14 15:24:47 +0000
+++ Dropbox/src/DropboxStopAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
@@ -36,11 +36,11 @@
36 {36 {
37 37
38 public override string Name {38 public override string Name {
39 get { return Catalog.GetString ("Stop Dropbox"); }39 get { return AddinManager.CurrentLocalizer.GetString ("Stop Dropbox"); }
40 }40 }
41 41
42 public override string Description {42 public override string Description {
43 get { return Catalog.GetString ("Stops the Dropbox daemon."); }43 get { return AddinManager.CurrentLocalizer.GetString ("Stops the Dropbox daemon."); }
44 }44 }
45 45
46 public override string Icon {46 public override string Icon {
4747
=== modified file 'Dropbox/src/DropboxUnshareAction.cs'
--- Dropbox/src/DropboxUnshareAction.cs 2009-06-14 15:24:47 +0000
+++ Dropbox/src/DropboxUnshareAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Linq;24using System.Linq;
25using System.Collections.Generic;25using System.Collections.Generic;
2626
27using Mono.Unix;27using Mono.Addins;
28 28
29using Do.Universe;29using Do.Universe;
30using Do.Universe.Common;30using Do.Universe.Common;
@@ -38,11 +38,11 @@
38 {38 {
39 39
40 public override string Name {40 public override string Name {
41 get { return Catalog.GetString ("Stop sharing with Dropbox"); }41 get { return AddinManager.CurrentLocalizer.GetString ("Stop sharing with Dropbox"); }
42 }42 }
43 43
44 public override string Description {44 public override string Description {
45 get { return Catalog.GetString ("Unlinks a file from your Dropbox public folder."); }45 get { return AddinManager.CurrentLocalizer.GetString ("Unlinks a file from your Dropbox public folder."); }
46 }46 }
47 47
48 public override string Icon {48 public override string Icon {
@@ -64,7 +64,7 @@
64 64
65 Unlink (link_path);65 Unlink (link_path);
66 66
67 Notify (String.Format (Catalog.GetString ("Stopped sharing") + " {0}", path));67 Notify (String.Format (AddinManager.CurrentLocalizer.GetString ("Stopped sharing") + " {0}", path));
68 }68 }
69 69
70 yield break;70 yield break;
7171
=== modified file 'Dropbox/src/DropboxWebInterfaceAction.cs'
--- Dropbox/src/DropboxWebInterfaceAction.cs 2009-06-14 15:24:47 +0000
+++ Dropbox/src/DropboxWebInterfaceAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Linq;24using System.Linq;
25using System.Collections.Generic;25using System.Collections.Generic;
2626
27using Mono.Unix;27using Mono.Addins;
2828
29using Do.Universe;29using Do.Universe;
30using Do.Platform;30using Do.Platform;
@@ -36,11 +36,11 @@
36 {36 {
37 37
38 public override string Name {38 public override string Name {
39 get { return Catalog.GetString ("Dropbox web interface"); }39 get { return AddinManager.CurrentLocalizer.GetString ("Dropbox web interface"); }
40 }40 }
41 41
42 public override string Description {42 public override string Description {
43 get { return Catalog.GetString ("View folder in Dropbox web interface."); }43 get { return AddinManager.CurrentLocalizer.GetString ("View folder in Dropbox web interface."); }
44 }44 }
45 45
46 public override string Icon {46 public override string Icon {
4747
=== modified file 'EOG-Slideshow/EOG-Slideshow.mdp'
--- EOG-Slideshow/EOG-Slideshow.mdp 2009-02-28 16:16:48 +0000
+++ EOG-Slideshow/EOG-Slideshow.mdp 2009-06-22 01:49:55 +0000
@@ -24,4 +24,4 @@
24 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />24 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
25 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />25 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
26 </References>26 </References>
27</Project>
28\ No newline at end of file27\ No newline at end of file
28</Project>
2929
=== modified file 'EOG-Slideshow/Makefile.am'
--- EOG-Slideshow/Makefile.am 2009-01-14 18:25:25 +0000
+++ EOG-Slideshow/Makefile.am 2009-06-21 11:51:24 +0000
@@ -11,6 +11,5 @@
11REFERENCES = \11REFERENCES = \
12 System \12 System \
13 System.Core \13 System.Core \
14 Mono.Posix \
15 $(DO_PLATFORM_LIBS) \14 $(DO_PLATFORM_LIBS) \
16 $(DO_UNIVERSE_LIBS)15 $(DO_UNIVERSE_LIBS)
1716
=== renamed file 'EOG-Slideshow/Resources/EOG-Slideshow.addin.xml' => 'EOG-Slideshow/Resources/EOG-Slideshow.addin.xml.in'
--- EOG-Slideshow/Resources/EOG-Slideshow.addin.xml 2009-03-31 23:19:25 +0000
+++ EOG-Slideshow/Resources/EOG-Slideshow.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="EOG-Slideshow.dll"/>13 <Import assembly="EOG-Slideshow.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'EOG-Slideshow/src/PlaySlideshowAction.cs'
--- EOG-Slideshow/src/PlaySlideshowAction.cs 2009-01-14 18:25:25 +0000
+++ EOG-Slideshow/src/PlaySlideshowAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Diagnostics;23using System.Diagnostics;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
29using Do.Platform;29using Do.Platform;
@@ -37,11 +37,11 @@
37 }37 }
3838
39 public override string Name {39 public override string Name {
40 get { return Catalog.GetString ("Play Slideshow"); }40 get { return AddinManager.CurrentLocalizer.GetString ("Play Slideshow"); }
41 }41 }
4242
43 public override string Description {43 public override string Description {
44 get { return Catalog.GetString ("Plays a slideshow of images in a folder."); }44 get { return AddinManager.CurrentLocalizer.GetString ("Plays a slideshow of images in a folder."); }
45 }45 }
4646
47 public override string Icon {47 public override string Icon {
4848
=== modified file 'Emesene/Emesene.mdp'
--- Emesene/Emesene.mdp 2009-02-28 16:16:48 +0000
+++ Emesene/Emesene.mdp 2009-06-22 01:49:55 +0000
@@ -48,4 +48,4 @@
48 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />48 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
49 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />49 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
50 </References>50 </References>
51</Project>
52\ No newline at end of file51\ No newline at end of file
52</Project>
5353
=== renamed file 'Emesene/Resources/Emesene.addin.xml' => 'Emesene/Resources/Emesene.addin.xml.in'
--- Emesene/Resources/Emesene.addin.xml 2009-03-31 23:19:25 +0000
+++ Emesene/Resources/Emesene.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="Emesene.dll"/>13 <Import assembly="Emesene.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'Epiphany/Epiphany.mdp'
--- Epiphany/Epiphany.mdp 2009-06-11 07:36:57 +0000
+++ Epiphany/Epiphany.mdp 2009-06-22 01:49:55 +0000
@@ -22,8 +22,7 @@
22 <References>22 <References>
23 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />23 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
24 <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />24 <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
25 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
26 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />25 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
27 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />26 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
28 </References>27 </References>
29</Project>
30\ No newline at end of file28\ No newline at end of file
29</Project>
3130
=== modified file 'Epiphany/Makefile.am'
--- Epiphany/Makefile.am 2009-06-11 07:36:57 +0000
+++ Epiphany/Makefile.am 2009-06-21 11:51:24 +0000
@@ -10,7 +10,6 @@
10 Resources/Epiphany.addin.xml10 Resources/Epiphany.addin.xml
1111
12REFERENCES = \12REFERENCES = \
13 Mono.Posix \
14 System \13 System \
15 System.Core \14 System.Core \
16 System.Xml \15 System.Xml \
1716
=== renamed file 'Epiphany/Resources/Epiphany.addin.xml' => 'Epiphany/Resources/Epiphany.addin.xml.in'
--- Epiphany/Resources/Epiphany.addin.xml 2009-03-31 23:19:25 +0000
+++ Epiphany/Resources/Epiphany.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="Epiphany.dll"/>13 <Import assembly="Epiphany.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'Epiphany/src/EpiphanyBookmarkItemSource.cs'
--- Epiphany/src/EpiphanyBookmarkItemSource.cs 2009-06-11 07:36:57 +0000
+++ Epiphany/src/EpiphanyBookmarkItemSource.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Xml;23using System.Xml;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
29using Do.Universe.Common;29using Do.Universe.Common;
@@ -41,10 +41,10 @@
41 items = new List<Item> ();41 items = new List<Item> ();
42 }42 }
4343
44 public override string Name { get { return Catalog.GetString ("Epiphany Bookmarks"); } }44 public override string Name { get { return AddinManager.CurrentLocalizer.GetString ("Epiphany Bookmarks"); } }
45 45
46 public override string Description { 46 public override string Description {
47 get { return Catalog.GetString ("Indexes your Epiphany bookmarks."); }47 get { return AddinManager.CurrentLocalizer.GetString ("Indexes your Epiphany bookmarks."); }
48 }48 }
49 49
50 public override string Icon { get { return "gnome-web-browser"; } }50 public override string Icon { get { return "gnome-web-browser"; } }
5151
=== modified file 'Epiphany/src/EpiphanyBrowseBookmarksItem.cs'
--- Epiphany/src/EpiphanyBrowseBookmarksItem.cs 2009-06-11 07:36:57 +0000
+++ Epiphany/src/EpiphanyBrowseBookmarksItem.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19 */19 */
20using System;20using System;
2121
22using Mono.Unix;22using Mono.Addins;
2323
24using Do.Universe;24using Do.Universe;
2525
@@ -28,11 +28,11 @@
28 public class EpiphanyBrowseBookmarksItem : Item28 public class EpiphanyBrowseBookmarksItem : Item
29 {29 {
30 public override string Name {30 public override string Name {
31 get { return Catalog.GetString ("Bookmarks"); }31 get { return AddinManager.CurrentLocalizer.GetString ("Bookmarks"); }
32 }32 }
33 33
34 public override string Description {34 public override string Description {
35 get { return Catalog.GetString ("Browse Bookmarks"); } 35 get { return AddinManager.CurrentLocalizer.GetString ("Browse Bookmarks"); }
36 }36 }
37 37
38 public override string Icon {38 public override string Icon {
3939
=== modified file 'Evolution/Evolution.mdp'
--- Evolution/Evolution.mdp 2009-02-28 16:16:48 +0000
+++ Evolution/Evolution.mdp 2009-06-22 01:49:55 +0000
@@ -25,10 +25,9 @@
25 </Contents>25 </Contents>
26 <References>26 <References>
27 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />27 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
28 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
29 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />28 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
30 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />29 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
31 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />30 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
32 <ProjectReference type="Gac" localcopy="True" refto="evolution-sharp, Version=3.0.0.0, Culture=neutral, PublicKeyToken=457eed85bd9370df" />31 <ProjectReference type="Gac" localcopy="True" refto="evolution-sharp, Version=3.0.0.0, Culture=neutral, PublicKeyToken=457eed85bd9370df" />
33 </References>32 </References>
34</Project>
35\ No newline at end of file33\ No newline at end of file
34</Project>
3635
=== modified file 'Evolution/Makefile.am'
--- Evolution/Makefile.am 2009-05-07 16:03:28 +0000
+++ Evolution/Makefile.am 2009-06-21 11:51:24 +0000
@@ -17,7 +17,6 @@
17 Resources/icons/phone.png17 Resources/icons/phone.png
1818
19REFERENCES = \19REFERENCES = \
20 Mono.Posix \
21 System \20 System \
22 System.Core \21 System.Core \
23 $(EVOLUTION_SHARP_LIBS) \22 $(EVOLUTION_SHARP_LIBS) \
2423
=== renamed file 'Evolution/Resources/Evolution.addin.xml' => 'Evolution/Resources/Evolution.addin.xml.in'
--- Evolution/Resources/Evolution.addin.xml 2009-03-31 23:19:25 +0000
+++ Evolution/Resources/Evolution.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="Evolution.dll"/>13 <Import assembly="Evolution.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'Evolution/src/AddressContactDetailItem.cs'
--- Evolution/src/AddressContactDetailItem.cs 2008-12-24 00:36:22 +0000
+++ Evolution/src/AddressContactDetailItem.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
1919
20using System;20using System;
21using Do.Universe;21using Do.Universe;
22using Mono.Unix;22using Mono.Addins;
2323
24namespace Evolution24namespace Evolution
25{25{
@@ -31,7 +31,7 @@
3131
32 public override string Name {32 public override string Name {
33 get {33 get {
34 return Catalog.GetString ("Address");34 return AddinManager.CurrentLocalizer.GetString ("Address");
35 35
36 /* // The home/other/work tags are not exact.36 /* // The home/other/work tags are not exact.
37 string desc = "";37 string desc = "";
3838
=== modified file 'Evolution/src/ContactItemSource.cs'
--- Evolution/src/ContactItemSource.cs 2008-12-24 00:41:39 +0000
+++ Evolution/src/ContactItemSource.cs 2009-06-21 11:51:24 +0000
@@ -26,7 +26,7 @@
26using Do.Universe.Common;26using Do.Universe.Common;
27using Do.Platform;27using Do.Platform;
2828
29using Mono.Unix;29using Mono.Addins;
3030
31namespace Evolution31namespace Evolution
32{32{
@@ -55,8 +55,8 @@
55 get { yield return typeof (ContactItem); }55 get { yield return typeof (ContactItem); }
56 }56 }
57 57
58 public override string Name { get { return Catalog.GetString ("Evolution Contacts"); } }58 public override string Name { get { return AddinManager.CurrentLocalizer.GetString ("Evolution Contacts"); } }
59 public override string Description { get { return Catalog.GetString ("Evolution Contacts"); } }59 public override string Description { get { return AddinManager.CurrentLocalizer.GetString ("Evolution Contacts"); } }
60 public override string Icon { get { return "evolution"; } }60 public override string Icon { get { return "evolution"; } }
61 61
62 public override IEnumerable<Item> Items {62 public override IEnumerable<Item> Items {
6363
=== modified file 'Evolution/src/EmailContactDetailItem.cs'
--- Evolution/src/EmailContactDetailItem.cs 2008-07-25 05:30:47 +0000
+++ Evolution/src/EmailContactDetailItem.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
1919
20using System;20using System;
21using Do.Universe;21using Do.Universe;
22using Mono.Unix;22using Mono.Addins;
2323
24namespace Evolution24namespace Evolution
25{25{
@@ -31,7 +31,7 @@
3131
32 public override string Name {32 public override string Name {
33 get {33 get {
34 return Catalog.GetString ("Email");34 return AddinManager.CurrentLocalizer.GetString ("Email");
35 /* // The home/other/work tags are not exact.35 /* // The home/other/work tags are not exact.
36 string desc = "";36 string desc = "";
37 if (Key.Contains (".work"))37 if (Key.Contains (".work"))
3838
=== modified file 'Evolution/src/PhoneContactDetailItem.cs'
--- Evolution/src/PhoneContactDetailItem.cs 2008-07-25 05:30:47 +0000
+++ Evolution/src/PhoneContactDetailItem.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
1919
20using System;20using System;
21using Do.Universe;21using Do.Universe;
22using Mono.Unix;22using Mono.Addins;
2323
24namespace Evolution24namespace Evolution
25{25{
@@ -31,9 +31,9 @@
3131
32 public override string Name {32 public override string Name {
33 get {33 get {
34 if (Key.Contains (".work")) return Catalog.GetString ("Work Phone");34 if (Key.Contains (".work")) return AddinManager.CurrentLocalizer.GetString ("Work Phone");
35 if (Key.Contains (".home")) return Catalog.GetString ("Home Phone");35 if (Key.Contains (".home")) return AddinManager.CurrentLocalizer.GetString ("Home Phone");
36 if (Key.Contains (".mobile")) return Catalog.GetString ("Mobile Phone");36 if (Key.Contains (".mobile")) return AddinManager.CurrentLocalizer.GetString ("Mobile Phone");
37 return "Phone";37 return "Phone";
38 }38 }
39 }39 }
4040
=== modified file 'Exaile/Makefile.am'
--- Exaile/Makefile.am 2009-03-24 02:28:22 +0000
+++ Exaile/Makefile.am 2009-06-21 11:51:24 +0000
@@ -22,7 +22,6 @@
22 System.Core \22 System.Core \
23 System.Xml \23 System.Xml \
24 System.Data \24 System.Data \
25 Mono.Posix \
26 Mono.Data.Sqlite \25 Mono.Data.Sqlite \
27 $(GTK_SHARP_20_LIBS) \26 $(GTK_SHARP_20_LIBS) \
28 $(DO_PLATFORM_LIBS) \27 $(DO_PLATFORM_LIBS) \
2928
=== renamed file 'Exaile/Resources/Exaile.addin.xml' => 'Exaile/Resources/Exaile.addin.xml.in'
--- Exaile/Resources/Exaile.addin.xml 2009-05-16 20:18:15 +0000
+++ Exaile/Resources/Exaile.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="Exaile.dll"/>13 <Import assembly="Exaile.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'Exaile/src/ExaileItems.cs'
--- Exaile/src/ExaileItems.cs 2009-04-30 21:06:05 +0000
+++ Exaile/src/ExaileItems.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System.Diagnostics;21using System.Diagnostics;
22using System.Collections.Generic;22using System.Collections.Generic;
2323
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Universe;26using Do.Universe;
27using Do.Platform;27using Do.Platform;
@@ -47,7 +47,7 @@
47 class BrowseArtistsMusicItem : BrowseMusicItem47 class BrowseArtistsMusicItem : BrowseMusicItem
48 {48 {
49 public BrowseArtistsMusicItem ():49 public BrowseArtistsMusicItem ():
50 base (Catalog.GetString ("Browse Artists"), Catalog.GetString ("Browse Exaile Music by Artist"))50 base (AddinManager.CurrentLocalizer.GetString ("Browse Artists"), AddinManager.CurrentLocalizer.GetString ("Browse Exaile Music by Artist"))
51 {51 {
52 }52 }
53 }53 }
@@ -55,7 +55,7 @@
55 class BrowseAlbumsMusicItem : BrowseMusicItem55 class BrowseAlbumsMusicItem : BrowseMusicItem
56 {56 {
57 public BrowseAlbumsMusicItem ():57 public BrowseAlbumsMusicItem ():
58 base (Catalog.GetString ("Browse Albums"), Catalog.GetString ("Browse Exaile Music by Album"))58 base (AddinManager.CurrentLocalizer.GetString ("Browse Albums"), AddinManager.CurrentLocalizer.GetString ("Browse Exaile Music by Album"))
59 {59 {
60 }60 }
61 }61 }
@@ -64,20 +64,20 @@
64 {64 {
65 public static readonly IEnumerable<ExaileRunnableItem> Items = new [] {65 public static readonly IEnumerable<ExaileRunnableItem> Items = new [] {
66 new ExaileRunnableItem (66 new ExaileRunnableItem (
67 Catalog.GetString ("Show Current Track"),67 AddinManager.CurrentLocalizer.GetString ("Show Current Track"),
68 Catalog.GetString ("Show Notification of Current Track in Exaile"),68 AddinManager.CurrentLocalizer.GetString ("Show Notification of Current Track in Exaile"),
69 "gnome-mime-audio",69 "gnome-mime-audio",
70 "--gui-query"),70 "--gui-query"),
7171
72 new ExaileRunnableItem (72 new ExaileRunnableItem (
73 Catalog.GetString ("Volume Up"),73 AddinManager.CurrentLocalizer.GetString ("Volume Up"),
74 Catalog.GetString ("Increase Exaile Playback Volume"),74 AddinManager.CurrentLocalizer.GetString ("Increase Exaile Playback Volume"),
75 "audio-volume-high",75 "audio-volume-high",
76 "--increase_vol=10"),76 "--increase_vol=10"),
7777
78 new ExaileRunnableItem (78 new ExaileRunnableItem (
79 Catalog.GetString ("Volume Down"),79 AddinManager.CurrentLocalizer.GetString ("Volume Down"),
80 Catalog.GetString ("Decrease Exaile Playback Volume"),80 AddinManager.CurrentLocalizer.GetString ("Decrease Exaile Playback Volume"),
81 "audio-volume-low",81 "audio-volume-low",
82 "--decrease_vol=10"),82 "--decrease_vol=10"),
83 };83 };
8484
=== modified file 'Exaile/src/MusicItemSource.cs'
--- Exaile/src/MusicItemSource.cs 2009-03-24 13:22:11 +0000
+++ Exaile/src/MusicItemSource.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System.Linq;21using System.Linq;
22using System.Collections.Generic;22using System.Collections.Generic;
2323
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Universe;26using Do.Universe;
27using Do.Platform;27using Do.Platform;
@@ -41,11 +41,11 @@
41 }41 }
4242
43 public override string Name {43 public override string Name {
44 get { return Catalog.GetString ("Exaile Music"); }44 get { return AddinManager.CurrentLocalizer.GetString ("Exaile Music"); }
45 }45 }
46 46
47 public override string Description { 47 public override string Description {
48 get { return Catalog.GetString ("Provides access to artists and albums from Exaile."); }48 get { return AddinManager.CurrentLocalizer.GetString ("Provides access to artists and albums from Exaile."); }
49 }49 }
50 50
51 public override string Icon {51 public override string Icon {
5252
=== modified file 'Exaile/src/MusicItems.cs'
--- Exaile/src/MusicItems.cs 2009-03-24 13:22:11 +0000
+++ Exaile/src/MusicItems.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
20using System;20using System;
21using System.Collections.Generic;21using System.Collections.Generic;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Universe;25using Do.Universe;
2626
@@ -74,7 +74,7 @@
74 public override string Description74 public override string Description
75 {75 {
76 get {76 get {
77 return string.Format (Catalog.GetString ("All music by") + " {0}", artist);77 return string.Format (AddinManager.CurrentLocalizer.GetString ("All music by") + " {0}", artist);
78 }78 }
79 }79 }
80 }80 }
8181
=== modified file 'Exaile/src/NextAction.cs'
--- Exaile/src/NextAction.cs 2009-03-24 13:22:11 +0000
+++ Exaile/src/NextAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Diagnostics;23using System.Diagnostics;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
2929
@@ -39,11 +39,11 @@
39 }39 }
4040
41 public override string Name {41 public override string Name {
42 get { return Catalog.GetString ("Next"); }42 get { return AddinManager.CurrentLocalizer.GetString ("Next"); }
43 }43 }
4444
45 public override string Description {45 public override string Description {
46 get { return Catalog.GetString ("Skip to the next track in Exaile."); }46 get { return AddinManager.CurrentLocalizer.GetString ("Skip to the next track in Exaile."); }
47 }47 }
4848
49 public override string Icon {49 public override string Icon {
5050
=== modified file 'Exaile/src/PauseAction.cs'
--- Exaile/src/PauseAction.cs 2009-03-24 13:22:11 +0000
+++ Exaile/src/PauseAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Diagnostics;23using System.Diagnostics;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
2929
@@ -39,11 +39,11 @@
39 }39 }
4040
41 public override string Name {41 public override string Name {
42 get { return Catalog.GetString ("Pause"); }42 get { return AddinManager.CurrentLocalizer.GetString ("Pause"); }
43 }43 }
4444
45 public override string Description {45 public override string Description {
46 get { return Catalog.GetString ("Pause music in Exaile."); }46 get { return AddinManager.CurrentLocalizer.GetString ("Pause music in Exaile."); }
47 }47 }
4848
49 public override string Icon {49 public override string Icon {
5050
=== modified file 'Exaile/src/PlayAction.cs'
--- Exaile/src/PlayAction.cs 2009-03-24 13:22:11 +0000
+++ Exaile/src/PlayAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Diagnostics;23using System.Diagnostics;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
2929
@@ -39,11 +39,11 @@
39 }39 }
4040
41 public override string Name {41 public override string Name {
42 get { return Catalog.GetString ("Play"); }42 get { return AddinManager.CurrentLocalizer.GetString ("Play"); }
43 }43 }
4444
45 public override string Description {45 public override string Description {
46 get { return Catalog.GetString ("Play music in Exaile."); }46 get { return AddinManager.CurrentLocalizer.GetString ("Play music in Exaile."); }
47 }47 }
4848
49 public override string Icon {49 public override string Icon {
5050
=== modified file 'Exaile/src/PlayItemAction.cs'
--- Exaile/src/PlayItemAction.cs 2009-03-24 13:22:11 +0000
+++ Exaile/src/PlayItemAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Diagnostics;23using System.Diagnostics;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
2929
@@ -38,11 +38,11 @@
38 }38 }
3939
40 public override string Name {40 public override string Name {
41 get { return Catalog.GetString ("Play"); }41 get { return AddinManager.CurrentLocalizer.GetString ("Play"); }
42 }42 }
4343
44 public override string Description {44 public override string Description {
45 get { return Catalog.GetString ("Play an item in Exaile."); }45 get { return AddinManager.CurrentLocalizer.GetString ("Play an item in Exaile."); }
46 }46 }
4747
48 public override string Icon {48 public override string Icon {
4949
=== modified file 'Exaile/src/PreviousAction.cs'
--- Exaile/src/PreviousAction.cs 2009-03-24 13:22:11 +0000
+++ Exaile/src/PreviousAction.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Diagnostics;23using System.Diagnostics;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
2929
@@ -39,11 +39,11 @@
39 }39 }
4040
41 public override string Name {41 public override string Name {
42 get { return Catalog.GetString ("Previous"); }42 get { return AddinManager.CurrentLocalizer.GetString ("Previous"); }
43 }43 }
4444
45 public override string Description {45 public override string Description {
46 get { return Catalog.GetString ("Skip to the previous track in Exaile."); }46 get { return AddinManager.CurrentLocalizer.GetString ("Skip to the previous track in Exaile."); }
47 }47 }
4848
49 public override string Icon {49 public override string Icon {
5050
=== modified file 'File/File.mdp'
--- File/File.mdp 2009-06-17 01:19:09 +0000
+++ File/File.mdp 2009-06-22 01:49:55 +0000
@@ -48,7 +48,6 @@
48 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />48 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
49 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />49 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
50 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />50 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
51 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
52 <ProjectReference type="Gac" localcopy="True" refto="glib-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />51 <ProjectReference type="Gac" localcopy="True" refto="glib-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
53 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />52 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
54 <ProjectReference type="Gac" localcopy="True" refto="Do.Interface.Linux, Version=0.9.0.0, Culture=neutral" />53 <ProjectReference type="Gac" localcopy="True" refto="Do.Interface.Linux, Version=0.9.0.0, Culture=neutral" />
@@ -56,4 +55,4 @@
56 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.9.0.0, Culture=neutral" />55 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.9.0.0, Culture=neutral" />
57 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.9.0.0, Culture=neutral" />56 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.9.0.0, Culture=neutral" />
58 </References>57 </References>
59</Project>
60\ No newline at end of file58\ No newline at end of file
59</Project>
6160
=== modified file 'File/Makefile.am'
--- File/Makefile.am 2009-02-16 01:11:46 +0000
+++ File/Makefile.am 2009-06-22 01:49:05 +0000
@@ -32,7 +32,6 @@
32 Resources/File.addin.xml32 Resources/File.addin.xml
3333
34REFERENCES = \34REFERENCES = \
35 Mono.Posix \
36 System \35 System \
37 System.Core \36 System.Core \
38 $(GTK_SHARP_20_LIBS) \37 $(GTK_SHARP_20_LIBS) \
3938
=== renamed file 'File/Resources/File.addin.xml' => 'File/Resources/File.addin.xml.in'
--- File/Resources/File.addin.xml 2009-03-31 23:19:25 +0000
+++ File/Resources/File.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="File.dll"/>13 <Import assembly="File.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'File/gtk-gui/Do.FilesAndFolders.Configuration.cs'
--- File/gtk-gui/Do.FilesAndFolders.Configuration.cs 2009-03-05 01:12:21 +0000
+++ File/gtk-gui/Do.FilesAndFolders.Configuration.cs 2009-06-22 01:49:05 +0000
@@ -183,7 +183,7 @@
183 this.show_hidden_chk = new Gtk.CheckButton();183 this.show_hidden_chk = new Gtk.CheckButton();
184 this.show_hidden_chk.CanFocus = true;184 this.show_hidden_chk.CanFocus = true;
185 this.show_hidden_chk.Name = "show_hidden_chk";185 this.show_hidden_chk.Name = "show_hidden_chk";
186 this.show_hidden_chk.Label = Mono.Unix.Catalog.GetString("Show hidden files");186 this.show_hidden_chk.Label = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Show hidden files");
187 this.show_hidden_chk.DrawIndicator = true;187 this.show_hidden_chk.DrawIndicator = true;
188 this.show_hidden_chk.UseUnderline = true;188 this.show_hidden_chk.UseUnderline = true;
189 this.show_hidden_chk.BorderWidth = ((uint)(5));189 this.show_hidden_chk.BorderWidth = ((uint)(5));
@@ -200,7 +200,7 @@
200 // Notebook tab200 // Notebook tab
201 this.label1 = new Gtk.Label();201 this.label1 = new Gtk.Label();
202 this.label1.Name = "label1";202 this.label1.Name = "label1";
203 this.label1.LabelProp = Mono.Unix.Catalog.GetString("Indexed Folders");203 this.label1.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Indexed Folders");
204 this.notebook1.SetTabLabel(this.vbox4, this.label1);204 this.notebook1.SetTabLabel(this.vbox4, this.label1);
205 this.label1.ShowAll();205 this.label1.ShowAll();
206 // Container child notebook1.Gtk.Notebook+NotebookChild206 // Container child notebook1.Gtk.Notebook+NotebookChild
@@ -308,7 +308,7 @@
308 // Notebook tab308 // Notebook tab
309 this.label2 = new Gtk.Label();309 this.label2 = new Gtk.Label();
310 this.label2.Name = "label2";310 this.label2.Name = "label2";
311 this.label2.LabelProp = Mono.Unix.Catalog.GetString("Ignored Folders");311 this.label2.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Ignored Folders");
312 this.notebook1.SetTabLabel(this.vbox5, this.label2);312 this.notebook1.SetTabLabel(this.vbox5, this.label2);
313 this.label2.ShowAll();313 this.label2.ShowAll();
314 this.vbox1.Add(this.notebook1);314 this.vbox1.Add(this.notebook1);
315315
=== modified file 'File/gtk-gui/gui.stetic'
--- File/gtk-gui/gui.stetic 2009-03-05 01:12:21 +0000
+++ File/gtk-gui/gui.stetic 2009-06-22 01:49:05 +0000
@@ -2,7 +2,7 @@
2<stetic-interface>2<stetic-interface>
3 <configuration>3 <configuration>
4 <images-root-path>..</images-root-path>4 <images-root-path>..</images-root-path>
5 <target-gtk-version>2.12</target-gtk-version>5 <target-gtk-version>2.12.9</target-gtk-version>
6 </configuration>6 </configuration>
7 <import>7 <import>
8 <widget-library name="../bin/Debug/File.dll" internal="true" />8 <widget-library name="../bin/Debug/File.dll" internal="true" />
99
=== modified file 'File/src/Do/Do.FilesAndFolders/AbstractFileAction.cs'
--- File/src/Do/Do.FilesAndFolders/AbstractFileAction.cs 2009-06-09 21:31:05 +0000
+++ File/src/Do/Do.FilesAndFolders/AbstractFileAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Diagnostics;24using System.Diagnostics;
25using System.Collections.Generic;25using System.Collections.Generic;
2626
27using Mono.Unix;27using Mono.Addins;
2828
29using Do.Universe;29using Do.Universe;
30using Do.Platform;30using Do.Platform;
3131
=== modified file 'File/src/Do/Do.FilesAndFolders/Configuration.cs'
--- File/src/Do/Do.FilesAndFolders/Configuration.cs 2009-03-05 01:12:21 +0000
+++ File/src/Do/Do.FilesAndFolders/Configuration.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
2323
24using Gtk;24using Gtk;
25using Mono.Unix;25using Mono.Addins;
2626
27namespace Do.FilesAndFolders27namespace Do.FilesAndFolders
28{ 28{
@@ -32,8 +32,8 @@
32 {32 {
33 PathNodeView[] nodeViews = new PathNodeView[2];33 PathNodeView[] nodeViews = new PathNodeView[2];
34 34
35 string indexDialog = Catalog.GetString ("Choose a folder to index");35 string indexDialog = AddinManager.CurrentLocalizer.GetString ("Choose a folder to index");
36 string ignoreDialog = Catalog.GetString ("Choose a folder to ignore");36 string ignoreDialog = AddinManager.CurrentLocalizer.GetString ("Choose a folder to ignore");
37 37
38 public Configuration ()38 public Configuration ()
39 { 39 {
4040
=== modified file 'File/src/Do/Do.FilesAndFolders/CopyAction.cs'
--- File/src/Do/Do.FilesAndFolders/CopyAction.cs 2009-01-22 18:12:43 +0000
+++ File/src/Do/Do.FilesAndFolders/CopyAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
@@ -34,11 +34,11 @@
34 {34 {
3535
36 public override string Name {36 public override string Name {
37 get { return Catalog.GetString ("Copy to..."); }37 get { return AddinManager.CurrentLocalizer.GetString ("Copy to..."); }
38 }38 }
39 39
40 public override string Description {40 public override string Description {
41 get { return Catalog.GetString ("Copies a file or folder to another location."); }41 get { return AddinManager.CurrentLocalizer.GetString ("Copies a file or folder to another location."); }
42 }42 }
43 43
44 public override string Icon {44 public override string Icon {
4545
=== modified file 'File/src/Do/Do.FilesAndFolders/DeleteAction.cs'
--- File/src/Do/Do.FilesAndFolders/DeleteAction.cs 2009-01-22 18:12:43 +0000
+++ File/src/Do/Do.FilesAndFolders/DeleteAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
@@ -34,11 +34,11 @@
34 {34 {
3535
36 public override string Name {36 public override string Name {
37 get { return Catalog.GetString ("Delete File"); }37 get { return AddinManager.CurrentLocalizer.GetString ("Delete File"); }
38 }38 }
39 39
40 public override string Description { 40 public override string Description {
41 get { return Catalog.GetString ("Deletes a file or folder."); }41 get { return AddinManager.CurrentLocalizer.GetString ("Deletes a file or folder."); }
42 }42 }
43 43
44 public override string Icon {44 public override string Icon {
4545
=== modified file 'File/src/Do/Do.FilesAndFolders/FileItemSource.cs'
--- File/src/Do/Do.FilesAndFolders/FileItemSource.cs 2009-06-17 01:07:23 +0000
+++ File/src/Do/Do.FilesAndFolders/FileItemSource.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
@@ -76,12 +76,12 @@
76 }76 }
77 77
78 public override string Name {78 public override string Name {
79 get { return Catalog.GetString ("Files and Folders"); }79 get { return AddinManager.CurrentLocalizer.GetString ("Files and Folders"); }
80 }80 }
81 81
82 public override string Description {82 public override string Description {
83 get {83 get {
84 return Catalog.GetString ("Catalogs important files and folders for quick access.");84 return AddinManager.CurrentLocalizer.GetString ("Catalogs important files and folders for quick access.");
85 }85 }
86 }86 }
87 87
8888
=== modified file 'File/src/Do/Do.FilesAndFolders/MoveAction.cs'
--- File/src/Do/Do.FilesAndFolders/MoveAction.cs 2009-01-22 18:12:43 +0000
+++ File/src/Do/Do.FilesAndFolders/MoveAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
@@ -34,11 +34,11 @@
34 {34 {
3535
36 public override string Name {36 public override string Name {
37 get { return Catalog.GetString ("Move to..."); }37 get { return AddinManager.CurrentLocalizer.GetString ("Move to..."); }
38 }38 }
39 39
40 public override string Description {40 public override string Description {
41 get { return Catalog.GetString ("Moves a file or folder to another location."); }41 get { return AddinManager.CurrentLocalizer.GetString ("Moves a file or folder to another location."); }
42 }42 }
43 43
44 public override string Icon {44 public override string Icon {
4545
=== modified file 'File/src/Do/Do.FilesAndFolders/MoveToTrashAction.cs'
--- File/src/Do/Do.FilesAndFolders/MoveToTrashAction.cs 2009-01-10 03:10:38 +0000
+++ File/src/Do/Do.FilesAndFolders/MoveToTrashAction.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System.IO;21using System.IO;
22using System.Collections.Generic;22using System.Collections.Generic;
2323
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Universe;26using Do.Universe;
27using Do.Universe.Common;27using Do.Universe.Common;
@@ -36,11 +36,11 @@
36 Path.Combine (Environment.GetFolderPath (Environment.SpecialFolder.LocalApplicationData), "Trash/files");36 Path.Combine (Environment.GetFolderPath (Environment.SpecialFolder.LocalApplicationData), "Trash/files");
3737
38 public override string Name {38 public override string Name {
39 get { return Catalog.GetString ("Move to Trash"); }39 get { return AddinManager.CurrentLocalizer.GetString ("Move to Trash"); }
40 }40 }
41 41
42 public override string Description {42 public override string Description {
43 get { return Catalog.GetString ("Moves a file or folder to the trash"); }43 get { return AddinManager.CurrentLocalizer.GetString ("Moves a file or folder to the trash"); }
44 }44 }
45 45
46 public override string Icon {46 public override string Icon {
4747
=== modified file 'File/src/Do/Do.FilesAndFolders/NewFileAction.cs'
--- File/src/Do/Do.FilesAndFolders/NewFileAction.cs 2009-01-10 03:32:29 +0000
+++ File/src/Do/Do.FilesAndFolders/NewFileAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
@@ -34,11 +34,11 @@
34 {34 {
3535
36 public override string Name {36 public override string Name {
37 get { return Catalog.GetString ("Create New File"); }37 get { return AddinManager.CurrentLocalizer.GetString ("Create New File"); }
38 }38 }
39 39
40 public override string Description {40 public override string Description {
41 get { return Catalog.GetString ("Creates an new, empty file."); }41 get { return AddinManager.CurrentLocalizer.GetString ("Creates an new, empty file."); }
42 }42 }
43 43
44 public override string Icon {44 public override string Icon {
@@ -146,7 +146,7 @@
146 if (!Directory.Exists (parent))146 if (!Directory.Exists (parent))
147 throw new FileNotFoundException ("Parent directory must exist", "parent");147 throw new FileNotFoundException ("Parent directory must exist", "parent");
148 148
149 return GetNewFileName (parent, Catalog.GetString ("Untitled"), 0);149 return GetNewFileName (parent, AddinManager.CurrentLocalizer.GetString ("Untitled"), 0);
150 }150 }
151151
152 static string GetNewFileName (string parent, string name, uint suffix)152 static string GetNewFileName (string parent, string name, uint suffix)
153153
=== modified file 'File/src/Do/Do.FilesAndFolders/NewFolderAction.cs'
--- File/src/Do/Do.FilesAndFolders/NewFolderAction.cs 2009-01-10 02:13:19 +0000
+++ File/src/Do/Do.FilesAndFolders/NewFolderAction.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System.IO;21using System.IO;
22using System.Collections.Generic;22using System.Collections.Generic;
2323
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Universe;26using Do.Universe;
27using Do.Platform;27using Do.Platform;
@@ -32,11 +32,11 @@
32 public class NewFolderAction : NewFileAction32 public class NewFolderAction : NewFileAction
33 {33 {
34 public override string Name {34 public override string Name {
35 get { return Catalog.GetString ("Create New Folder"); }35 get { return AddinManager.CurrentLocalizer.GetString ("Create New Folder"); }
36 }36 }
37 37
38 public override string Description {38 public override string Description {
39 get { return Catalog.GetString ("Creates an new folder."); }39 get { return AddinManager.CurrentLocalizer.GetString ("Creates an new folder."); }
40 }40 }
41 41
42 public override string Icon {42 public override string Icon {
4343
=== modified file 'File/src/Do/Do.FilesAndFolders/RecentFileItemSource.cs'
--- File/src/Do/Do.FilesAndFolders/RecentFileItemSource.cs 2009-02-14 20:52:23 +0000
+++ File/src/Do/Do.FilesAndFolders/RecentFileItemSource.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
@@ -69,11 +69,11 @@
69 }69 }
70 70
71 public override string Name {71 public override string Name {
72 get { return Catalog.GetString ("Recent Files"); }72 get { return AddinManager.CurrentLocalizer.GetString ("Recent Files"); }
73 }73 }
74 74
75 public override string Description {75 public override string Description {
76 get { return Catalog.GetString ("Finds recently-opened files."); }76 get { return AddinManager.CurrentLocalizer.GetString ("Finds recently-opened files."); }
77 }77 }
78 78
79 public override string Icon {79 public override string Icon {
8080
=== modified file 'File/src/Do/Do.FilesAndFolders/RenameAction.cs'
--- File/src/Do/Do.FilesAndFolders/RenameAction.cs 2009-01-22 18:12:43 +0000
+++ File/src/Do/Do.FilesAndFolders/RenameAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
@@ -34,11 +34,11 @@
34 {34 {
35 35
36 public override string Name { 36 public override string Name {
37 get { return Catalog.GetString ("Rename file..."); }37 get { return AddinManager.CurrentLocalizer.GetString ("Rename file..."); }
38 }38 }
39 39
40 public override string Description {40 public override string Description {
41 get { return Catalog.GetString ("Renames a file."); }41 get { return AddinManager.CurrentLocalizer.GetString ("Renames a file."); }
42 }42 }
43 43
44 public override string Icon {44 public override string Icon {
4545
=== modified file 'File/src/IgnorePathNodeView.cs'
--- File/src/IgnorePathNodeView.cs 2009-03-04 22:34:14 +0000
+++ File/src/IgnorePathNodeView.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19 */19 */
2020
21using System;21using System;
22using Mono.Unix;22using Mono.Addins;
2323
24using Gtk;24using Gtk;
2525
@@ -45,7 +45,7 @@
45 cell = new CellRendererText ();45 cell = new CellRendererText ();
46 (cell as CellRendererText).Width = 310;46 (cell as CellRendererText).Width = 310;
47 (cell as CellRendererText).Ellipsize = Pango.EllipsizeMode.Middle;47 (cell as CellRendererText).Ellipsize = Pango.EllipsizeMode.Middle;
48 AppendColumn (Catalog.GetString ("Folder"), cell, "text", Column.Path);48 AppendColumn (AddinManager.CurrentLocalizer.GetString ("Folder"), cell, "text", Column.Path);
49 49
50 Refresh ();50 Refresh ();
51 }51 }
5252
=== modified file 'File/src/IndexPathNodeView.cs'
--- File/src/IndexPathNodeView.cs 2009-03-05 01:12:21 +0000
+++ File/src/IndexPathNodeView.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19 */19 */
2020
21using System;21using System;
22using Mono.Unix;22using Mono.Addins;
2323
24using Gtk;24using Gtk;
2525
@@ -46,13 +46,13 @@
46 cell = new CellRendererText ();46 cell = new CellRendererText ();
47 (cell as CellRendererText).Width = 280;47 (cell as CellRendererText).Width = 280;
48 (cell as CellRendererText).Ellipsize = Pango.EllipsizeMode.Middle;48 (cell as CellRendererText).Ellipsize = Pango.EllipsizeMode.Middle;
49 AppendColumn (Catalog.GetString ("Folder"), cell, "text", Column.Path);49 AppendColumn (AddinManager.CurrentLocalizer.GetString ("Folder"), cell, "text", Column.Path);
50 50
51 cell = new CellRendererText ();51 cell = new CellRendererText ();
52 (cell as CellRendererText).Editable = true;52 (cell as CellRendererText).Editable = true;
53 (cell as CellRendererText).Edited += OnDepthEdited;53 (cell as CellRendererText).Edited += OnDepthEdited;
54 (cell as CellRendererText).Alignment = Pango.Alignment.Right;54 (cell as CellRendererText).Alignment = Pango.Alignment.Right;
55 AppendColumn (Catalog.GetString ("Depth"), cell, "text", Column.Depth);55 AppendColumn (AddinManager.CurrentLocalizer.GetString ("Depth"), cell, "text", Column.Depth);
56 56
57 Refresh ();57 Refresh ();
58 }58 }
5959
=== modified file 'File/src/PathNodeView.cs'
--- File/src/PathNodeView.cs 2009-03-04 22:34:14 +0000
+++ File/src/PathNodeView.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19 */19 */
2020
21using System;21using System;
22using Mono.Unix;22using Mono.Addins;
2323
24using Gtk;24using Gtk;
2525
2626
=== modified file 'Firefox/Firefox.mdp'
--- Firefox/Firefox.mdp 2009-05-19 00:21:18 +0000
+++ Firefox/Firefox.mdp 2009-06-22 01:49:55 +0000
@@ -25,7 +25,6 @@
25 </Contents>25 </Contents>
26 <References>26 <References>
27 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />27 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
28 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
29 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />28 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
30 <ProjectReference type="Gac" localcopy="True" refto="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />29 <ProjectReference type="Gac" localcopy="True" refto="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
31 <ProjectReference type="Gac" localcopy="True" refto="Mono.Data.SqliteClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />30 <ProjectReference type="Gac" localcopy="True" refto="Mono.Data.SqliteClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
@@ -35,4 +34,4 @@
35 <ProjectReference type="Gac" localcopy="True" refto="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />34 <ProjectReference type="Gac" localcopy="True" refto="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
36 <ProjectReference type="Gac" localcopy="True" refto="Mono.Data.SqliteClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />35 <ProjectReference type="Gac" localcopy="True" refto="Mono.Data.SqliteClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
37 </References>36 </References>
38</Project>
39\ No newline at end of file37\ No newline at end of file
38</Project>
4039
=== modified file 'Firefox/Makefile.am'
--- Firefox/Makefile.am 2009-05-19 00:21:18 +0000
+++ Firefox/Makefile.am 2009-06-21 11:51:24 +0000
@@ -17,6 +17,5 @@
17 System.Core \17 System.Core \
18 System.Data \18 System.Data \
19 Mono.Data.SqliteClient \19 Mono.Data.SqliteClient \
20 Mono.Posix \
21 $(DO_PLATFORM_LIBS) \20 $(DO_PLATFORM_LIBS) \
22 $(DO_UNIVERSE_LIBS)21 $(DO_UNIVERSE_LIBS)
2322
=== renamed file 'Firefox/Resources/Firefox.addin.xml' => 'Firefox/Resources/Firefox.addin.xml.in'
--- Firefox/Resources/Firefox.addin.xml 2009-05-19 00:21:18 +0000
+++ Firefox/Resources/Firefox.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="Firefox.dll"/>13 <Import assembly="Firefox.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'Firefox/src/BrowseBookmarkItem.cs'
--- Firefox/src/BrowseBookmarkItem.cs 2009-05-19 00:21:18 +0000
+++ Firefox/src/BrowseBookmarkItem.cs 2009-06-21 11:51:24 +0000
@@ -18,7 +18,7 @@
1818
19using System;19using System;
2020
21using Mono.Unix;21using Mono.Addins;
2222
23using Do.Universe;23using Do.Universe;
2424
@@ -27,11 +27,11 @@
27 public class BrowseBookmarkItem : Item 27 public class BrowseBookmarkItem : Item
28 {28 {
29 public override string Name {29 public override string Name {
30 get { return Catalog.GetString ("Bookmarks"); } 30 get { return AddinManager.CurrentLocalizer.GetString ("Bookmarks"); }
31 }31 }
32 32
33 public override string Description {33 public override string Description {
34 get { return Catalog.GetString ("Browse Firefox Bookmarks"); } 34 get { return AddinManager.CurrentLocalizer.GetString ("Browse Firefox Bookmarks"); }
35 }35 }
36 36
37 public override string Icon {37 public override string Icon {
3838
=== modified file 'Firefox/src/BrowseHistoryItem.cs'
--- Firefox/src/BrowseHistoryItem.cs 2009-05-19 00:21:18 +0000
+++ Firefox/src/BrowseHistoryItem.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Universe;25using Do.Universe;
2626
@@ -29,11 +29,11 @@
29 public class BrowseHistoryItem : Item 29 public class BrowseHistoryItem : Item
30 {30 {
31 public override string Name {31 public override string Name {
32 get { return Catalog.GetString ("History"); }32 get { return AddinManager.CurrentLocalizer.GetString ("History"); }
33 }33 }
34 34
35 public override string Description {35 public override string Description {
36 get { return Catalog.GetString ("Browse Firefox History"); } 36 get { return AddinManager.CurrentLocalizer.GetString ("Browse Firefox History"); }
37 }37 }
38 38
39 public override string Icon {39 public override string Icon {
4040
=== modified file 'Firefox/src/FolderItem.cs'
--- Firefox/src/FolderItem.cs 2009-05-19 00:21:18 +0000
+++ Firefox/src/FolderItem.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Universe;25using Do.Universe;
2626
@@ -48,7 +48,7 @@
48 }48 }
49 49
50 public override string Description {50 public override string Description {
51 get { return Catalog.GetString ("A Firefox Bookmarks Directory"); }51 get { return AddinManager.CurrentLocalizer.GetString ("A Firefox Bookmarks Directory"); }
52 }52 }
53 53
54 public override string Icon {54 public override string Icon {
5555
=== modified file 'Firefox/src/PlaceItem.cs'
--- Firefox/src/PlaceItem.cs 2009-05-19 00:21:18 +0000
+++ Firefox/src/PlaceItem.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Universe;25using Do.Universe;
26using Do.Universe.Common;26using Do.Universe.Common;
2727
=== modified file 'Firefox/src/PlacesItemSource.cs'
--- Firefox/src/PlacesItemSource.cs 2009-05-19 03:46:55 +0000
+++ Firefox/src/PlacesItemSource.cs 2009-06-21 11:51:24 +0000
@@ -28,7 +28,7 @@
28using Do.Universe;28using Do.Universe;
29using Do.Universe.Common;29using Do.Universe.Common;
3030
31using Mono.Unix;31using Mono.Addins;
32using Mono.Data.SqliteClient;32using Mono.Data.SqliteClient;
33 33
34namespace Firefox34namespace Firefox
@@ -66,11 +66,11 @@
66 }66 }
6767
68 public override string Name {68 public override string Name {
69 get { return Catalog.GetString ("Firefox Places"); }69 get { return AddinManager.CurrentLocalizer.GetString ("Firefox Places"); }
70 }70 }
7171
72 public override string Description {72 public override string Description {
73 get { return Catalog.GetString ("Search your bookmarks and history."); }73 get { return AddinManager.CurrentLocalizer.GetString ("Search your bookmarks and history."); }
74 }74 }
7575
76 public override string Icon {76 public override string Icon {
@@ -246,7 +246,7 @@
246 * parent for all other directories. It doesn't have a name,246 * parent for all other directories. It doesn't have a name,
247 * so we'll give it one. */ 247 * so we'll give it one. */
248 if (id == 1)248 if (id == 1)
249 yield return new FolderItem (Catalog.GetString ("Mozilla Bookmarks"), id, parent);249 yield return new FolderItem (AddinManager.CurrentLocalizer.GetString ("Mozilla Bookmarks"), id, parent);
250 /* Firefox uses another field that doesn't have a name.250 /* Firefox uses another field that doesn't have a name.
251 * It references portions of their menu that generate251 * It references portions of their menu that generate
252 * information dynamically from History, Tags, etc.252 * information dynamically from History, Tags, etc.
253253
=== modified file 'Flickr/Flickr.mdp'
--- Flickr/Flickr.mdp 2009-04-30 01:03:44 +0000
+++ Flickr/Flickr.mdp 2009-06-22 01:49:55 +0000
@@ -36,10 +36,9 @@
36 <ProjectReference type="Gac" localcopy="True" refto="FlickrNet, Version=2.1.5.0, Culture=neutral, PublicKeyToken=2491df59efa5d132" />36 <ProjectReference type="Gac" localcopy="True" refto="FlickrNet, Version=2.1.5.0, Culture=neutral, PublicKeyToken=2491df59efa5d132" />
37 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />37 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
38 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />38 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
39 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
40 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />39 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
41 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />40 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
42 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />41 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
43 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />42 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
44 </References>43 </References>
45</Project>
46\ No newline at end of file44\ No newline at end of file
45</Project>
4746
=== modified file 'Flickr/Makefile.am'
--- Flickr/Makefile.am 2009-05-07 16:03:28 +0000
+++ Flickr/Makefile.am 2009-06-22 01:49:05 +0000
@@ -23,7 +23,6 @@
23 Resources/icons/flickr.png23 Resources/icons/flickr.png
2424
25REFERENCES = \25REFERENCES = \
26 Mono.Posix \
27 System \26 System \
28 System.Core \27 System.Core \
29 $(GTK_SHARP_20_LIBS) \28 $(GTK_SHARP_20_LIBS) \
3029
=== renamed file 'Flickr/Resources/Flickr.addin.xml' => 'Flickr/Resources/Flickr.addin.xml.in'
--- Flickr/Resources/Flickr.addin.xml 2009-03-31 23:19:25 +0000
+++ Flickr/Resources/Flickr.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="Flickr.dll"/>13 <Import assembly="Flickr.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'Flickr/gtk-gui/Flickr.AccountConfig.cs'
--- Flickr/gtk-gui/Flickr.AccountConfig.cs 2009-04-24 01:15:22 +0000
+++ Flickr/gtk-gui/Flickr.AccountConfig.cs 2009-06-22 01:49:05 +0000
@@ -64,7 +64,7 @@
64 // Container child vbox2.Gtk.Box+BoxChild64 // Container child vbox2.Gtk.Box+BoxChild
65 this.status_lbl = new Gtk.Label();65 this.status_lbl = new Gtk.Label();
66 this.status_lbl.Name = "status_lbl";66 this.status_lbl.Name = "status_lbl";
67 this.status_lbl.LabelProp = Mono.Unix.Catalog.GetString("Do needs your authorization in order to upload photos to your flickr account. Press the \"Authorize\" button to open a web browser and give Do authorization. ");67 this.status_lbl.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Do needs your authorization in order to upload photos to your flickr account. Press the \"Authorize\" button to open a web browser and give Do authorization. ");
68 this.status_lbl.Wrap = true;68 this.status_lbl.Wrap = true;
69 this.vbox2.Add(this.status_lbl);69 this.vbox2.Add(this.status_lbl);
70 Gtk.Box.BoxChild w1 = ((Gtk.Box.BoxChild)(this.vbox2[this.status_lbl]));70 Gtk.Box.BoxChild w1 = ((Gtk.Box.BoxChild)(this.vbox2[this.status_lbl]));
@@ -91,7 +91,7 @@
91 this.frame1.Add(this.GtkAlignment);91 this.frame1.Add(this.GtkAlignment);
92 this.auth_lbl = new Gtk.Label();92 this.auth_lbl = new Gtk.Label();
93 this.auth_lbl.Name = "auth_lbl";93 this.auth_lbl.Name = "auth_lbl";
94 this.auth_lbl.LabelProp = Mono.Unix.Catalog.GetString("<b>Account</b>");94 this.auth_lbl.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("<b>Account</b>");
95 this.auth_lbl.UseMarkup = true;95 this.auth_lbl.UseMarkup = true;
96 this.frame1.LabelWidget = this.auth_lbl;96 this.frame1.LabelWidget = this.auth_lbl;
97 this.vbox1.Add(this.frame1);97 this.vbox1.Add(this.frame1);
@@ -116,7 +116,7 @@
116 w9.Add(w10);116 w9.Add(w10);
117 // Container child GtkHBox.Gtk.Container+ContainerChild117 // Container child GtkHBox.Gtk.Container+ContainerChild
118 Gtk.Label w12 = new Gtk.Label();118 Gtk.Label w12 = new Gtk.Label();
119 w12.LabelProp = Mono.Unix.Catalog.GetString("_Authorize");119 w12.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("_Authorize");
120 w12.UseUnderline = true;120 w12.UseUnderline = true;
121 w9.Add(w12);121 w9.Add(w12);
122 w8.Add(w9);122 w8.Add(w9);
123123
=== modified file 'Flickr/gtk-gui/Flickr.UploadConfig.cs'
--- Flickr/gtk-gui/Flickr.UploadConfig.cs 2009-04-19 02:03:26 +0000
+++ Flickr/gtk-gui/Flickr.UploadConfig.cs 2009-06-22 01:49:05 +0000
@@ -80,7 +80,7 @@
80 this.vbox6.Name = "vbox6";80 this.vbox6.Name = "vbox6";
81 this.vbox6.Spacing = 6;81 this.vbox6.Spacing = 6;
82 // Container child vbox6.Gtk.Box+BoxChild82 // Container child vbox6.Gtk.Box+BoxChild
83 this.private_radio = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("Private"));83 this.private_radio = new Gtk.RadioButton(Mono.Addins.AddinManager.CurrentLocalizer.GetString("Private"));
84 this.private_radio.CanFocus = true;84 this.private_radio.CanFocus = true;
85 this.private_radio.Name = "private_radio";85 this.private_radio.Name = "private_radio";
86 this.private_radio.Active = true;86 this.private_radio.Active = true;
@@ -104,7 +104,7 @@
104 this.friends_chk = new Gtk.CheckButton();104 this.friends_chk = new Gtk.CheckButton();
105 this.friends_chk.CanFocus = true;105 this.friends_chk.CanFocus = true;
106 this.friends_chk.Name = "friends_chk";106 this.friends_chk.Name = "friends_chk";
107 this.friends_chk.Label = Mono.Unix.Catalog.GetString("Visible to friends");107 this.friends_chk.Label = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Visible to friends");
108 this.friends_chk.DrawIndicator = true;108 this.friends_chk.DrawIndicator = true;
109 this.friends_chk.UseUnderline = true;109 this.friends_chk.UseUnderline = true;
110 this.vbox7.Add(this.friends_chk);110 this.vbox7.Add(this.friends_chk);
@@ -116,7 +116,7 @@
116 this.family_chk = new Gtk.CheckButton();116 this.family_chk = new Gtk.CheckButton();
117 this.family_chk.CanFocus = true;117 this.family_chk.CanFocus = true;
118 this.family_chk.Name = "family_chk";118 this.family_chk.Name = "family_chk";
119 this.family_chk.Label = Mono.Unix.Catalog.GetString("Visible to family");119 this.family_chk.Label = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Visible to family");
120 this.family_chk.DrawIndicator = true;120 this.family_chk.DrawIndicator = true;
121 this.family_chk.UseUnderline = true;121 this.family_chk.UseUnderline = true;
122 this.vbox7.Add(this.family_chk);122 this.vbox7.Add(this.family_chk);
@@ -131,7 +131,7 @@
131 w5.Expand = false;131 w5.Expand = false;
132 w5.Fill = false;132 w5.Fill = false;
133 // Container child vbox6.Gtk.Box+BoxChild133 // Container child vbox6.Gtk.Box+BoxChild
134 this.public_radio = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("Public"));134 this.public_radio = new Gtk.RadioButton(Mono.Addins.AddinManager.CurrentLocalizer.GetString("Public"));
135 this.public_radio.CanFocus = true;135 this.public_radio.CanFocus = true;
136 this.public_radio.Name = "public_radio";136 this.public_radio.Name = "public_radio";
137 this.public_radio.DrawIndicator = true;137 this.public_radio.DrawIndicator = true;
@@ -146,7 +146,7 @@
146 this.frame3.Add(this.GtkAlignment2);146 this.frame3.Add(this.GtkAlignment2);
147 this.GtkLabel5 = new Gtk.Label();147 this.GtkLabel5 = new Gtk.Label();
148 this.GtkLabel5.Name = "GtkLabel5";148 this.GtkLabel5.Name = "GtkLabel5";
149 this.GtkLabel5.LabelProp = Mono.Unix.Catalog.GetString("<b>Viewing permissions</b>");149 this.GtkLabel5.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("<b>Viewing permissions</b>");
150 this.GtkLabel5.UseMarkup = true;150 this.GtkLabel5.UseMarkup = true;
151 this.frame3.LabelWidget = this.GtkLabel5;151 this.frame3.LabelWidget = this.GtkLabel5;
152 this.vbox4.Add(this.frame3);152 this.vbox4.Add(this.frame3);
@@ -179,7 +179,7 @@
179 this.label1 = new Gtk.Label();179 this.label1 = new Gtk.Label();
180 this.label1.Name = "label1";180 this.label1.Name = "label1";
181 this.label1.Xalign = 0F;181 this.label1.Xalign = 0F;
182 this.label1.LabelProp = Mono.Unix.Catalog.GetString("Default tags to use on images posted with Do. Seperate tags with a space; for multiple word tags use quotes. ex.) concert \"Mars Volta\" Omar");182 this.label1.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Default tags to use on images posted with Do. Seperate tags with a space; for multiple word tags use quotes. ex.) concert \"Mars Volta\" Omar");
183 this.label1.Wrap = true;183 this.label1.Wrap = true;
184 this.vbox5.Add(this.label1);184 this.vbox5.Add(this.label1);
185 Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(this.vbox5[this.label1]));185 Gtk.Box.BoxChild w11 = ((Gtk.Box.BoxChild)(this.vbox5[this.label1]));
@@ -206,7 +206,7 @@
206 this.frame1.Add(this.GtkAlignment);206 this.frame1.Add(this.GtkAlignment);
207 this.GtkLabel4 = new Gtk.Label();207 this.GtkLabel4 = new Gtk.Label();
208 this.GtkLabel4.Name = "GtkLabel4";208 this.GtkLabel4.Name = "GtkLabel4";
209 this.GtkLabel4.LabelProp = Mono.Unix.Catalog.GetString("<b>Tags</b>");209 this.GtkLabel4.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("<b>Tags</b>");
210 this.GtkLabel4.UseMarkup = true;210 this.GtkLabel4.UseMarkup = true;
211 this.frame1.LabelWidget = this.GtkLabel4;211 this.frame1.LabelWidget = this.GtkLabel4;
212 this.vbox3.Add(this.frame1);212 this.vbox3.Add(this.frame1);
213213
=== modified file 'Flickr/gtk-gui/Flickr.UploadDialog.cs'
--- Flickr/gtk-gui/Flickr.UploadDialog.cs 2009-04-24 00:44:55 +0000
+++ Flickr/gtk-gui/Flickr.UploadDialog.cs 2009-06-22 01:49:05 +0000
@@ -33,7 +33,7 @@
33 Stetic.Gui.Initialize(this);33 Stetic.Gui.Initialize(this);
34 // Widget Flickr.UploadDialog34 // Widget Flickr.UploadDialog
35 this.Name = "Flickr.UploadDialog";35 this.Name = "Flickr.UploadDialog";
36 this.Title = Mono.Unix.Catalog.GetString("Flickr Upload");36 this.Title = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Flickr Upload");
37 this.Icon = Gdk.Pixbuf.LoadFromResource("flickr.png");37 this.Icon = Gdk.Pixbuf.LoadFromResource("flickr.png");
38 this.WindowPosition = ((Gtk.WindowPosition)(4));38 this.WindowPosition = ((Gtk.WindowPosition)(4));
39 this.Resizable = false;39 this.Resizable = false;
@@ -118,7 +118,7 @@
118 w10.Add(w11);118 w10.Add(w11);
119 // Container child GtkHBox.Gtk.Container+ContainerChild119 // Container child GtkHBox.Gtk.Container+ContainerChild
120 Gtk.Label w13 = new Gtk.Label();120 Gtk.Label w13 = new Gtk.Label();
121 w13.LabelProp = Mono.Unix.Catalog.GetString("_Hide");121 w13.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("_Hide");
122 w13.UseUnderline = true;122 w13.UseUnderline = true;
123 w10.Add(w13);123 w10.Add(w13);
124 w9.Add(w10);124 w9.Add(w10);
@@ -143,7 +143,7 @@
143 w19.Add(w20);143 w19.Add(w20);
144 // Container child GtkHBox1.Gtk.Container+ContainerChild144 // Container child GtkHBox1.Gtk.Container+ContainerChild
145 Gtk.Label w22 = new Gtk.Label();145 Gtk.Label w22 = new Gtk.Label();
146 w22.LabelProp = Mono.Unix.Catalog.GetString("_OK");146 w22.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("_OK");
147 w22.UseUnderline = true;147 w22.UseUnderline = true;
148 w19.Add(w22);148 w19.Add(w22);
149 w18.Add(w19);149 w18.Add(w19);
150150
=== modified file 'Flickr/gtk-gui/gui.stetic'
--- Flickr/gtk-gui/gui.stetic 2009-04-30 01:03:44 +0000
+++ Flickr/gtk-gui/gui.stetic 2009-06-22 01:49:05 +0000
@@ -2,7 +2,7 @@
2<stetic-interface>2<stetic-interface>
3 <configuration>3 <configuration>
4 <images-root-path>..</images-root-path>4 <images-root-path>..</images-root-path>
5 <target-gtk-version>2.12</target-gtk-version>5 <target-gtk-version>2.12.9</target-gtk-version>
6 </configuration>6 </configuration>
7 <import>7 <import>
8 <widget-library name="../bin/Debug/Flickr.dll" internal="true" />8 <widget-library name="../bin/Debug/Flickr.dll" internal="true" />
99
=== modified file 'Flickr/src/AccountConfig.cs'
--- Flickr/src/AccountConfig.cs 2008-12-24 03:48:49 +0000
+++ Flickr/src/AccountConfig.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19 */19 */
20using System;20using System;
21using System.Threading;21using System.Threading;
22using Mono.Unix;22using Mono.Addins;
2323
24using Gtk;24using Gtk;
25using FlickrNet;25using FlickrNet;
@@ -88,7 +88,7 @@
88 Frob = flickr.AuthGetFrob ();88 Frob = flickr.AuthGetFrob ();
89 Services.Environment.OpenUrl (flickr.AuthCalcUrl (Frob, AuthLevel.Write));89 Services.Environment.OpenUrl (flickr.AuthCalcUrl (Frob, AuthLevel.Write));
90 Widget image = auth_btn.Image;90 Widget image = auth_btn.Image;
91 auth_btn.Label = Catalog.GetString ("Click to compete authorization");91 auth_btn.Label = AddinManager.CurrentLocalizer.GetString ("Click to compete authorization");
92 auth_btn.Image = image; 92 auth_btn.Image = image;
93 auth_btn.Clicked -= new EventHandler (OnAuthBtnClicked);93 auth_btn.Clicked -= new EventHandler (OnAuthBtnClicked);
94 auth_btn.Clicked += new EventHandler (OnCompleteBtnClicked);94 auth_btn.Clicked += new EventHandler (OnCompleteBtnClicked);
@@ -109,7 +109,7 @@
109 109
110 private void SetBtnStateComplete ()110 private void SetBtnStateComplete ()
111 {111 {
112 status_lbl.Text = String.Format (Catalog.GetString ("Thank you {0} "112 status_lbl.Text = String.Format (AddinManager.CurrentLocalizer.GetString ("Thank you {0} "
113 + "for allowing Do access to Flickr."), Username);113 + "for allowing Do access to Flickr."), Username);
114 auth_btn.Label = "Sign in as a different user";114 auth_btn.Label = "Sign in as a different user";
115 auth_btn.Clicked -= new EventHandler (OnCompleteBtnClicked);115 auth_btn.Clicked -= new EventHandler (OnCompleteBtnClicked);
116116
=== modified file 'Flickr/src/FlickrItemSource.cs'
--- Flickr/src/FlickrItemSource.cs 2008-12-24 03:48:49 +0000
+++ Flickr/src/FlickrItemSource.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
2121
22using System;22using System;
23using System.Collections.Generic;23using System.Collections.Generic;
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Universe;26using Do.Universe;
27using Do.Platform.Linux;27using Do.Platform.Linux;
@@ -31,7 +31,7 @@
31 public class FlickrItemSource : ItemSource, IConfigurable31 public class FlickrItemSource : ItemSource, IConfigurable
32 { 32 {
33 public override string Name {33 public override string Name {
34 get { return Catalog.GetString ("Account"); }34 get { return AddinManager.CurrentLocalizer.GetString ("Account"); }
35 }35 }
36 36
37 public override string Description {37 public override string Description {
3838
=== modified file 'Flickr/src/UploadAction.cs'
--- Flickr/src/UploadAction.cs 2009-04-19 02:03:26 +0000
+++ Flickr/src/UploadAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Threading;24using System.Threading;
25using System.Collections.Generic;25using System.Collections.Generic;
26using System.Linq;26using System.Linq;
27using Mono.Unix;27using Mono.Addins;
2828
29using Do.Universe;29using Do.Universe;
30using Do.Platform;30using Do.Platform;
@@ -37,11 +37,11 @@
37 const string ImageExtensions = ".jpg .jpeg .gif .png .tiff";37 const string ImageExtensions = ".jpg .jpeg .gif .png .tiff";
38 38
39 public override string Name {39 public override string Name {
40 get { return Catalog.GetString ("Upload photo"); }40 get { return AddinManager.CurrentLocalizer.GetString ("Upload photo"); }
41 }41 }
42 42
43 public override string Description {43 public override string Description {
44 get { return Catalog.GetString ("Upload one or more photos to Flickr"); }44 get { return AddinManager.CurrentLocalizer.GetString ("Upload one or more photos to Flickr"); }
45 }45 }
46 46
47 /*47 /*
4848
=== modified file 'Flickr/src/UploadDialog.cs'
--- Flickr/src/UploadDialog.cs 2009-05-05 19:29:20 +0000
+++ Flickr/src/UploadDialog.cs 2009-06-21 11:51:24 +0000
@@ -1,5 +1,5 @@
1using System;1using System;
2using Mono.Unix;2using Mono.Addins;
33
4using Gtk;4using Gtk;
5using Gdk;5using Gdk;
@@ -29,17 +29,17 @@
29 29
30 this.CurrentUpload = 0;30 this.CurrentUpload = 0;
31 this.IsDestroyed = false;31 this.IsDestroyed = false;
32 UploadingLabel = Catalog.GetString ("Uploading {0}...");32 UploadingLabel = AddinManager.CurrentLocalizer.GetString ("Uploading {0}...");
33 ProgressLabel = Catalog.GetString ("Uploading {0} of {1}...");33 ProgressLabel = AddinManager.CurrentLocalizer.GetString ("Uploading {0} of {1}...");
34 FinishedUploadLabel = Catalog.GetString ("Finished uploading images to Flickr.");34 FinishedUploadLabel = AddinManager.CurrentLocalizer.GetString ("Finished uploading images to Flickr.");
35 FinishedProgressLabel = Catalog.GetString ("Uploaded {0} images");35 FinishedProgressLabel = AddinManager.CurrentLocalizer.GetString ("Uploaded {0} images");
36 ContinuationText = Catalog.GetString ("Your images are still being uploaded.");36 ContinuationText = AddinManager.CurrentLocalizer.GetString ("Your images are still being uploaded.");
37 37
38 using (Pixbuf FlickrPix = Pixbuf.LoadFromResource ("flickr.png"))38 using (Pixbuf FlickrPix = Pixbuf.LoadFromResource ("flickr.png"))
39 FlickrImage.Pixbuf = FlickrPix.ScaleSimple (75, 75, Gdk.InterpType.Bilinear);39 FlickrImage.Pixbuf = FlickrPix.ScaleSimple (75, 75, Gdk.InterpType.Bilinear);
40 40
41 TextLabel.Text = Catalog.GetString ("Your images are being uploaded to Flickr.");41 TextLabel.Text = AddinManager.CurrentLocalizer.GetString ("Your images are being uploaded to Flickr.");
42 uploadProgress.Text = Catalog.GetString (string.Format (ProgressLabel, CurrentUpload, TotalUploads));42 uploadProgress.Text = AddinManager.CurrentLocalizer.GetString (string.Format (ProgressLabel, CurrentUpload, TotalUploads));
43 }43 }
44 44
45 public int TotalUploads {get; set; }45 public int TotalUploads {get; set; }
4646
=== modified file 'GNOME-Dictionary/GNOME-Dictionary.mdp'
--- GNOME-Dictionary/GNOME-Dictionary.mdp 2009-02-28 16:16:48 +0000
+++ GNOME-Dictionary/GNOME-Dictionary.mdp 2009-06-22 01:49:55 +0000
@@ -21,11 +21,10 @@
21 </Contents>21 </Contents>
22 <References>22 <References>
23 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />23 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
24 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
25 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />24 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
26 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />25 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
27 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />26 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
28 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />27 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
29 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />28 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
30 </References>29 </References>
31</Project>
32\ No newline at end of file30\ No newline at end of file
31</Project>
3332
=== modified file 'GNOME-Dictionary/Makefile.am'
--- GNOME-Dictionary/Makefile.am 2009-01-09 05:04:13 +0000
+++ GNOME-Dictionary/Makefile.am 2009-06-21 11:51:24 +0000
@@ -9,7 +9,6 @@
9 Resources/GNOME-Dictionary.addin.xml9 Resources/GNOME-Dictionary.addin.xml
1010
11REFERENCES = \11REFERENCES = \
12 Mono.Posix \
13 System \12 System \
14 System.Core \13 System.Core \
15 $(GTK_SHARP_20_LIBS) \14 $(GTK_SHARP_20_LIBS) \
1615
=== renamed file 'GNOME-Dictionary/Resources/GNOME-Dictionary.addin.xml' => 'GNOME-Dictionary/Resources/GNOME-Dictionary.addin.xml.in'
--- GNOME-Dictionary/Resources/GNOME-Dictionary.addin.xml 2009-03-31 23:19:25 +0000
+++ GNOME-Dictionary/Resources/GNOME-Dictionary.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="GNOME-Dictionary.dll"/>13 <Import assembly="GNOME-Dictionary.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'GNOME-Dictionary/src/DefineAction.cs'
--- GNOME-Dictionary/src/DefineAction.cs 2008-12-21 23:44:34 +0000
+++ GNOME-Dictionary/src/DefineAction.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System.Collections.Generic;21using System.Collections.Generic;
22using System.Text.RegularExpressions;22using System.Text.RegularExpressions;
2323
24using Mono.Unix;24using Mono.Addins;
25using Do.Universe;25using Do.Universe;
2626
27namespace GNOME27namespace GNOME
@@ -48,12 +48,12 @@
48 }48 }
49 49
50 public override string Name {50 public override string Name {
51 get { return Catalog.GetString ("Define"); }51 get { return AddinManager.CurrentLocalizer.GetString ("Define"); }
52 }52 }
53 53
54 public override string Description54 public override string Description
55 {55 {
56 get { return Catalog.GetString ("Define a given word."); }56 get { return AddinManager.CurrentLocalizer.GetString ("Define a given word."); }
57 }57 }
58 58
59 public override string Icon59 public override string Icon
6060
=== modified file 'GNOME-Screenshot/GNOME-Screenshot.mdp'
--- GNOME-Screenshot/GNOME-Screenshot.mdp 2009-02-28 16:16:48 +0000
+++ GNOME-Screenshot/GNOME-Screenshot.mdp 2009-06-22 01:49:55 +0000
@@ -25,9 +25,8 @@
25 </Contents>25 </Contents>
26 <References>26 <References>
27 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />27 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
28 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
29 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />28 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
30 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />29 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
31 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />30 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
32 </References>31 </References>
33</Project>
34\ No newline at end of file32\ No newline at end of file
33</Project>
3534
=== modified file 'GNOME-Screenshot/Makefile.am'
--- GNOME-Screenshot/Makefile.am 2009-01-09 05:04:13 +0000
+++ GNOME-Screenshot/Makefile.am 2009-06-21 11:51:24 +0000
@@ -14,7 +14,6 @@
14 Resources/GNOME-Screenshot.addin.xml14 Resources/GNOME-Screenshot.addin.xml
1515
16REFERENCES = \16REFERENCES = \
17 Mono.Posix \
18 System \17 System \
19 System.Core \18 System.Core \
20 $(DO_PLATFORM_LIBS) \19 $(DO_PLATFORM_LIBS) \
2120
=== renamed file 'GNOME-Screenshot/Resources/GNOME-Screenshot.addin.xml' => 'GNOME-Screenshot/Resources/GNOME-Screenshot.addin.xml.in'
--- GNOME-Screenshot/Resources/GNOME-Screenshot.addin.xml 2009-03-31 23:19:25 +0000
+++ GNOME-Screenshot/Resources/GNOME-Screenshot.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="GNOME-Screenshot.dll"/>13 <Import assembly="GNOME-Screenshot.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'GNOME-Screenshot/src/CurrentWindowScreenshotItem.cs'
--- GNOME-Screenshot/src/CurrentWindowScreenshotItem.cs 2008-07-25 05:30:47 +0000
+++ GNOME-Screenshot/src/CurrentWindowScreenshotItem.cs 2009-06-21 11:51:24 +0000
@@ -19,17 +19,17 @@
19 */19 */
2020
21using System;21using System;
22using Mono.Unix;22using Mono.Addins;
2323
24namespace GNOME {24namespace GNOME {
2525
26 class CurrentWindowScreenshotItem : ScreenshotItem {26 class CurrentWindowScreenshotItem : ScreenshotItem {
27 public override string Name {27 public override string Name {
28 get { return Catalog.GetString ("Current window"); }28 get { return AddinManager.CurrentLocalizer.GetString ("Current window"); }
29 }29 }
30 30
31 public override string Description {31 public override string Description {
32 get { return Catalog.GetString ("Take a screenshot of the current window."); }32 get { return AddinManager.CurrentLocalizer.GetString ("Take a screenshot of the current window."); }
33 }33 }
34 34
35 public override string Icon {35 public override string Icon {
3636
=== modified file 'GNOME-Screenshot/src/ScreenshotDelayItem.cs'
--- GNOME-Screenshot/src/ScreenshotDelayItem.cs 2008-12-24 03:53:06 +0000
+++ GNOME-Screenshot/src/ScreenshotDelayItem.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19 */19 */
2020
21using System;21using System;
22using Mono.Unix;22using Mono.Addins;
23using Do.Universe;23using Do.Universe;
2424
25namespace GNOME25namespace GNOME
@@ -34,12 +34,12 @@
34 }34 }
3535
36 public override string Name {36 public override string Name {
37 get { return string.Format (Catalog.GetString ("{0}-second delay"), Seconds); }37 get { return string.Format (AddinManager.CurrentLocalizer.GetString ("{0}-second delay"), Seconds); }
38 }38 }
3939
40 public override string Description {40 public override string Description {
41 get {41 get {
42 string waitString = Catalog.GetPluralString (42 string waitString = AddinManager.CurrentLocalizer.GetPluralString (
43 "Wait {0} second before taking the screenshot.",43 "Wait {0} second before taking the screenshot.",
44 "Wait {0} seconds before taking the screenshot.", Seconds);44 "Wait {0} seconds before taking the screenshot.", Seconds);
45 return string.Format (waitString, Seconds);45 return string.Format (waitString, Seconds);
4646
=== modified file 'GNOME-Screenshot/src/ScreenshotItemSource.cs'
--- GNOME-Screenshot/src/ScreenshotItemSource.cs 2009-05-29 09:39:41 +0000
+++ GNOME-Screenshot/src/ScreenshotItemSource.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
22using System.Collections.Generic;22using System.Collections.Generic;
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Universe;25using Do.Universe;
2626
@@ -37,11 +37,11 @@
37 }37 }
38 38
39 public override string Name {39 public override string Name {
40 get { return Catalog.GetString ("GNOME Screenshot Items"); }40 get { return AddinManager.CurrentLocalizer.GetString ("GNOME Screenshot Items"); }
41 }41 }
42 42
43 public override string Description {43 public override string Description {
44 get { return Catalog.GetString ("Whole screen or current window."); }44 get { return AddinManager.CurrentLocalizer.GetString ("Whole screen or current window."); }
45 }45 }
46 46
47 public override string Icon {47 public override string Icon {
4848
=== modified file 'GNOME-Screenshot/src/TakeScreenshotAction.cs'
--- GNOME-Screenshot/src/TakeScreenshotAction.cs 2008-12-21 23:44:34 +0000
+++ GNOME-Screenshot/src/TakeScreenshotAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Diagnostics;22using System.Diagnostics;
23using System.Collections.Generic;23using System.Collections.Generic;
24using System.Linq;24using System.Linq;
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
2828
@@ -31,11 +31,11 @@
31 public class TakeScreenshotAction : Act {31 public class TakeScreenshotAction : Act {
3232
33 public override string Name {33 public override string Name {
34 get { return Catalog.GetString ("Take screenshot"); }34 get { return AddinManager.CurrentLocalizer.GetString ("Take screenshot"); }
35 }35 }
3636
37 public override string Description {37 public override string Description {
38 get { return Catalog.GetString ("Takes a screenshot with optional delay."); }38 get { return AddinManager.CurrentLocalizer.GetString ("Takes a screenshot with optional delay."); }
39 }39 }
4040
41 public override string Icon {41 public override string Icon {
4242
=== modified file 'GNOME-Screenshot/src/WholeScreenScreenshotItem.cs'
--- GNOME-Screenshot/src/WholeScreenScreenshotItem.cs 2008-07-25 05:30:47 +0000
+++ GNOME-Screenshot/src/WholeScreenScreenshotItem.cs 2009-06-21 11:51:24 +0000
@@ -19,17 +19,17 @@
19 */19 */
2020
21using System;21using System;
22using Mono.Unix;22using Mono.Addins;
2323
24namespace GNOME {24namespace GNOME {
2525
26 class WholeScreenScreenshotItem : ScreenshotItem {26 class WholeScreenScreenshotItem : ScreenshotItem {
27 public override string Name {27 public override string Name {
28 get { return Catalog.GetString ("Whole screen"); }28 get { return AddinManager.CurrentLocalizer.GetString ("Whole screen"); }
29 }29 }
30 30
31 public override string Description {31 public override string Description {
32 get { return Catalog.GetString ("Take a screenshot of the entire screen."); }32 get { return AddinManager.CurrentLocalizer.GetString ("Take a screenshot of the entire screen."); }
33 }33 }
34 34
35 public override string Icon {35 public override string Icon {
3636
=== modified file 'GNOME-Session/GNOME-Session.mdp'
--- GNOME-Session/GNOME-Session.mdp 2009-02-28 16:16:48 +0000
+++ GNOME-Session/GNOME-Session.mdp 2009-06-22 01:49:55 +0000
@@ -25,9 +25,8 @@
25 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />25 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
26 <ProjectReference type="Gac" localcopy="True" refto="NDesk.DBus, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f6716e4f9b2ed099" />26 <ProjectReference type="Gac" localcopy="True" refto="NDesk.DBus, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f6716e4f9b2ed099" />
27 <ProjectReference type="Gac" localcopy="True" refto="NDesk.DBus.GLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f6716e4f9b2ed099" />27 <ProjectReference type="Gac" localcopy="True" refto="NDesk.DBus.GLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f6716e4f9b2ed099" />
28 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
29 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />28 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
30 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />29 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
31 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />30 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
32 </References>31 </References>
33</Project>
34\ No newline at end of file32\ No newline at end of file
33</Project>
3534
=== modified file 'GNOME-Session/Makefile.am'
--- GNOME-Session/Makefile.am 2009-05-17 07:43:33 +0000
+++ GNOME-Session/Makefile.am 2009-06-21 11:51:24 +0000
@@ -13,7 +13,6 @@
13 Resources/GNOME-Session.addin.xml13 Resources/GNOME-Session.addin.xml
1414
15REFERENCES = \15REFERENCES = \
16 Mono.Posix \
17 System \16 System \
18 System.Core \17 System.Core \
19 $(NDESK_DBUS_10_LIBS) \18 $(NDESK_DBUS_10_LIBS) \
2019
=== renamed file 'GNOME-Session/Resources/GNOME-Session.addin.xml' => 'GNOME-Session/Resources/GNOME-Session.addin.xml.in'
--- GNOME-Session/Resources/GNOME-Session.addin.xml 2009-05-17 07:43:33 +0000
+++ GNOME-Session/Resources/GNOME-Session.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="GNOME-Session.dll"/>13 <Import assembly="GNOME-Session.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'GNOME-Session/src/SessionCommandsItemSource.cs'
--- GNOME-Session/src/SessionCommandsItemSource.cs 2009-05-29 09:39:41 +0000
+++ GNOME-Session/src/SessionCommandsItemSource.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System;21using System;
22using System.Collections.Generic;22using System.Collections.Generic;
2323
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Universe;26using Do.Universe;
2727
@@ -38,11 +38,11 @@
38 }38 }
3939
40 public override string Name { 40 public override string Name {
41 get { return Catalog.GetString ("GNOME Session Commands"); } 41 get { return AddinManager.CurrentLocalizer.GetString ("GNOME Session Commands"); }
42 }42 }
43 43
44 public override string Description { 44 public override string Description {
45 get { return Catalog.GetString ("Log out, Shutdown, Restart, etc."); }45 get { return AddinManager.CurrentLocalizer.GetString ("Log out, Shutdown, Restart, etc."); }
46 }46 }
47 47
48 public override string Icon { get { return "system-log-out"; } }48 public override string Icon { get { return "system-log-out"; } }
@@ -51,38 +51,38 @@
51 {51 {
52 get {52 get {
53 yield return new SessionCommandItem (53 yield return new SessionCommandItem (
54 Catalog.GetString ("Log Out"),54 AddinManager.CurrentLocalizer.GetString ("Log Out"),
55 Catalog.GetString ("Close your session and return to the login screen."),55 AddinManager.CurrentLocalizer.GetString ("Close your session and return to the login screen."),
56 "system-log-out",56 "system-log-out",
57 PowerManagement.Logout);57 PowerManagement.Logout);
5858
59 yield return new SessionCommandItem (59 yield return new SessionCommandItem (
60 Catalog.GetString ("Shutdown"),60 AddinManager.CurrentLocalizer.GetString ("Shutdown"),
61 Catalog.GetString ("Turn your computer off."),61 AddinManager.CurrentLocalizer.GetString ("Turn your computer off."),
62 "system-shutdown",62 "system-shutdown",
63 SystemManagement.Shutdown);63 SystemManagement.Shutdown);
6464
65 yield return new SessionCommandItem (65 yield return new SessionCommandItem (
66 Catalog.GetString ("Hibernate"),66 AddinManager.CurrentLocalizer.GetString ("Hibernate"),
67 Catalog.GetString ("Put your computer into hibernation mode."),67 AddinManager.CurrentLocalizer.GetString ("Put your computer into hibernation mode."),
68 "gnome-session-hibernate",68 "gnome-session-hibernate",
69 PowerManagement.Hibernate);69 PowerManagement.Hibernate);
7070
71 yield return new SessionCommandItem (71 yield return new SessionCommandItem (
72 Catalog.GetString ("Suspend"),72 AddinManager.CurrentLocalizer.GetString ("Suspend"),
73 Catalog.GetString ("Put your computer into suspend mode."),73 AddinManager.CurrentLocalizer.GetString ("Put your computer into suspend mode."),
74 "gnome-session-suspend",74 "gnome-session-suspend",
75 PowerManagement.Suspend);75 PowerManagement.Suspend);
7676
77 yield return new SessionCommandItem (77 yield return new SessionCommandItem (
78 Catalog.GetString ("Restart"),78 AddinManager.CurrentLocalizer.GetString ("Restart"),
79 Catalog.GetString ("Restart your computer."),79 AddinManager.CurrentLocalizer.GetString ("Restart your computer."),
80 "reload",80 "reload",
81 SystemManagement.Restart);81 SystemManagement.Restart);
8282
83 yield return new SessionCommandItem (83 yield return new SessionCommandItem (
84 Catalog.GetString ("Lock Screen"),84 AddinManager.CurrentLocalizer.GetString ("Lock Screen"),
85 Catalog.GetString ("Lock your screen."),85 AddinManager.CurrentLocalizer.GetString ("Lock your screen."),
86 "system-lock-screen",86 "system-lock-screen",
87 ScreenSaver.Lock);87 ScreenSaver.Lock);
88 }88 }
8989
=== modified file 'GNOME-Terminal/GNOME-Terminal.mdp'
--- GNOME-Terminal/GNOME-Terminal.mdp 2009-02-28 16:16:48 +0000
+++ GNOME-Terminal/GNOME-Terminal.mdp 2009-06-22 01:49:55 +0000
@@ -24,7 +24,6 @@
24 </Contents>24 </Contents>
25 <References>25 <References>
26 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />26 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
27 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
28 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />27 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
29 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />28 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
30 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />29 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
@@ -32,4 +31,4 @@
32 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />31 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
33 <ProjectReference type="Gac" localcopy="True" refto="gconf-sharp, Version=2.20.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />32 <ProjectReference type="Gac" localcopy="True" refto="gconf-sharp, Version=2.20.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
34 </References>33 </References>
35</Project>
36\ No newline at end of file34\ No newline at end of file
35</Project>
3736
=== modified file 'GNOME-Terminal/Makefile.am'
--- GNOME-Terminal/Makefile.am 2009-02-03 19:01:29 +0000
+++ GNOME-Terminal/Makefile.am 2009-06-21 11:51:24 +0000
@@ -12,7 +12,6 @@
12 Resources/GNOME-Terminal.addin.xml12 Resources/GNOME-Terminal.addin.xml
1313
14REFERENCES = \14REFERENCES = \
15 Mono.Posix \
16 System \15 System \
17 System.Core \16 System.Core \
18 $(GCONF_SHARP_20_LIBS) \17 $(GCONF_SHARP_20_LIBS) \
1918
=== renamed file 'GNOME-Terminal/Resources/GNOME-Terminal.addin.xml' => 'GNOME-Terminal/Resources/GNOME-Terminal.addin.xml.in'
--- GNOME-Terminal/Resources/GNOME-Terminal.addin.xml 2009-03-31 23:19:25 +0000
+++ GNOME-Terminal/Resources/GNOME-Terminal.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="GNOME-Terminal.dll"/>13 <Import assembly="GNOME-Terminal.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'GNOME-Terminal/src/OpenTerminalHereAction.cs'
--- GNOME-Terminal/src/OpenTerminalHereAction.cs 2008-12-21 23:44:34 +0000
+++ GNOME-Terminal/src/OpenTerminalHereAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Collections.Generic;22using System.Collections.Generic;
23using System.Linq;23using System.Linq;
24using System.Diagnostics;24using System.Diagnostics;
25using Mono.Unix;25using Mono.Addins;
26using Do.Universe;26using Do.Universe;
2727
28namespace GNOME.Terminal28namespace GNOME.Terminal
@@ -35,12 +35,12 @@
3535
36 public override string Name36 public override string Name
37 {37 {
38 get { return Catalog.GetString ("Open Terminal Here"); }38 get { return AddinManager.CurrentLocalizer.GetString ("Open Terminal Here"); }
39 }39 }
4040
41 public override string Description41 public override string Description
42 {42 {
43 get { return Catalog.GetString ("Opens a GNOME Terminal in a given location."); }43 get { return AddinManager.CurrentLocalizer.GetString ("Opens a GNOME Terminal in a given location."); }
44 }44 }
45 45
46 public override string Icon46 public override string Icon
4747
=== modified file 'GNOME-Terminal/src/ProfileItem.cs'
--- GNOME-Terminal/src/ProfileItem.cs 2009-02-03 19:01:29 +0000
+++ GNOME-Terminal/src/ProfileItem.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using GConf;25using GConf;
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Platform;28using Do.Platform;
29using Do.Universe;29using Do.Universe;
@@ -33,8 +33,8 @@
3333
34 public class ProfileItem : Item, IOpenableItem34 public class ProfileItem : Item, IOpenableItem
35 {35 {
36 readonly new string DefaultName = Catalog.GetString ("Unnamed Profile");36 readonly new string DefaultName = AddinManager.CurrentLocalizer.GetString ("Unnamed Profile");
37 readonly new string DefaultDescription = Catalog.GetString ("GNOME Terminal Profile");37 readonly new string DefaultDescription = AddinManager.CurrentLocalizer.GetString ("GNOME Terminal Profile");
3838
39 string name, description;39 string name, description;
4040
4141
=== modified file 'GNOME-Terminal/src/ProfileItemSource.cs'
--- GNOME-Terminal/src/ProfileItemSource.cs 2009-02-03 18:35:49 +0000
+++ GNOME-Terminal/src/ProfileItemSource.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Collections.Generic;23using System.Collections.Generic;
24using System.Text.RegularExpressions;24using System.Text.RegularExpressions;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
2929
@@ -46,11 +46,11 @@
46 }46 }
4747
48 public override string Name {48 public override string Name {
49 get { return Catalog.GetString ("GNOME Terminal Profiles"); }49 get { return AddinManager.CurrentLocalizer.GetString ("GNOME Terminal Profiles"); }
50 }50 }
5151
52 public override string Description {52 public override string Description {
53 get { return Catalog.GetString ("Indexes your GNOME Terminal profiles."); } 53 get { return AddinManager.CurrentLocalizer.GetString ("Indexes your GNOME Terminal profiles."); }
54 }54 }
5555
56 public override string Icon {56 public override string Icon {
5757
=== modified file 'GNOME-Terminal/src/RunInTerminalAction.cs'
--- GNOME-Terminal/src/RunInTerminalAction.cs 2009-01-08 23:51:32 +0000
+++ GNOME-Terminal/src/RunInTerminalAction.cs 2009-06-21 11:51:24 +0000
@@ -24,7 +24,7 @@
24using System.Collections.Generic;24using System.Collections.Generic;
25using System.Diagnostics;25using System.Diagnostics;
2626
27using Mono.Unix;27using Mono.Addins;
2828
29using Do.Universe;29using Do.Universe;
30using Do.Platform;30using Do.Platform;
@@ -39,11 +39,11 @@
39 }39 }
4040
41 public override string Name {41 public override string Name {
42 get { return Catalog.GetString ("Run in Terminal"); }42 get { return AddinManager.CurrentLocalizer.GetString ("Run in Terminal"); }
43 }43 }
4444
45 public override string Description {45 public override string Description {
46 get { return Catalog.GetString ("Runs a command in GNOME Terminal."); }46 get { return AddinManager.CurrentLocalizer.GetString ("Runs a command in GNOME Terminal."); }
47 }47 }
4848
49 public override string Icon {49 public override string Icon {
5050
=== modified file 'GoogleCalculator/GoogleCalculator.mdp'
--- GoogleCalculator/GoogleCalculator.mdp 2009-02-28 16:16:48 +0000
+++ GoogleCalculator/GoogleCalculator.mdp 2009-06-22 01:49:55 +0000
@@ -20,10 +20,9 @@
20 </Contents>20 </Contents>
21 <References>21 <References>
22 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />22 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
23 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
24 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />23 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
25 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />24 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
26 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />25 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
27 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />26 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
28 </References>27 </References>
29</Project>
30\ No newline at end of file28\ No newline at end of file
29</Project>
3130
=== modified file 'GoogleCalculator/Makefile.am'
--- GoogleCalculator/Makefile.am 2009-02-05 04:18:51 +0000
+++ GoogleCalculator/Makefile.am 2009-06-21 11:51:24 +0000
@@ -9,7 +9,6 @@
9 Resources/GoogleCalculator.addin.xml9 Resources/GoogleCalculator.addin.xml
1010
11REFERENCES = \11REFERENCES = \
12 Mono.Posix \
13 System \12 System \
14 System.Core \13 System.Core \
15 System.Web \14 System.Web \
1615
=== renamed file 'GoogleCalculator/Resources/GoogleCalculator.addin.xml' => 'GoogleCalculator/Resources/GoogleCalculator.addin.xml.in'
--- GoogleCalculator/Resources/GoogleCalculator.addin.xml 2009-03-31 23:19:25 +0000
+++ GoogleCalculator/Resources/GoogleCalculator.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="GoogleCalculator.dll"/>13 <Import assembly="GoogleCalculator.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'GoogleCalculator/src/GoogleCalculatorAction.cs'
--- GoogleCalculator/src/GoogleCalculatorAction.cs 2009-05-01 21:48:45 +0000
+++ GoogleCalculator/src/GoogleCalculatorAction.cs 2009-06-21 11:51:24 +0000
@@ -25,7 +25,7 @@
25using System.Text.RegularExpressions;25using System.Text.RegularExpressions;
26using System.Web;26using System.Web;
2727
28using Mono.Unix;28using Mono.Addins;
2929
30using Do.Platform;30using Do.Platform;
31using Do.Universe;31using Do.Universe;
@@ -50,7 +50,7 @@
50 }50 }
5151
52 public override string Description {52 public override string Description {
53 get { return Catalog.GetString ("Perform a calculation using Google Calculator."); }53 get { return AddinManager.CurrentLocalizer.GetString ("Perform a calculation using Google Calculator."); }
54 }54 }
5555
56 public override string Icon {56 public override string Icon {
@@ -90,7 +90,7 @@
90 // Strip HTML tags:90 // Strip HTML tags:
91 reply = Regex.Replace (reply, @"<[^>]+>", "");91 reply = Regex.Replace (reply, @"<[^>]+>", "");
92 } catch {92 } catch {
93 reply = Catalog.GetString ("Google Calculator could not evaluate the expression.");93 reply = AddinManager.CurrentLocalizer.GetString ("Google Calculator could not evaluate the expression.");
94 }94 }
9595
96 yield return new TextItem (HttpUtility.HtmlDecode(reply));96 yield return new TextItem (HttpUtility.HtmlDecode(reply));
9797
=== modified file 'GoogleCalendar/GoogleCalendar.mdp'
--- GoogleCalendar/GoogleCalendar.mdp 2009-02-28 16:16:48 +0000
+++ GoogleCalendar/GoogleCalendar.mdp 2009-06-22 01:49:55 +0000
@@ -35,7 +35,6 @@
35 <References>35 <References>
36 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />36 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
37 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />37 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
38 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
39 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.AccessControl.dll" />38 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.AccessControl.dll" />
40 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.Calendar.dll" />39 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.Calendar.dll" />
41 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.Client.dll" />40 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.Client.dll" />
@@ -47,4 +46,4 @@
47 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />46 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
48 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />47 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
49 </References>48 </References>
50</Project>
51\ No newline at end of file49\ No newline at end of file
50</Project>
5251
=== modified file 'GoogleCalendar/Makefile.am'
--- GoogleCalendar/Makefile.am 2009-05-15 23:36:54 +0000
+++ GoogleCalendar/Makefile.am 2009-06-21 11:51:24 +0000
@@ -22,7 +22,6 @@
22 Resources/icons/calIcon.png22 Resources/icons/calIcon.png
2323
24REFERENCES = \24REFERENCES = \
25 Mono.Posix \
26 System \25 System \
27 System.Core \26 System.Core \
28 System.Xml \27 System.Xml \
2928
=== renamed file 'GoogleCalendar/Resources/GoogleCalendar.addin.xml' => 'GoogleCalendar/Resources/GoogleCalendar.addin.xml.in'
--- GoogleCalendar/Resources/GoogleCalendar.addin.xml 2009-05-07 19:49:44 +0000
+++ GoogleCalendar/Resources/GoogleCalendar.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="GoogleCalendar.dll"/>13 <Import assembly="GoogleCalendar.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'GoogleCalendar/src/Configuration.cs'
--- GoogleCalendar/src/Configuration.cs 2009-01-01 01:25:16 +0000
+++ GoogleCalendar/src/Configuration.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
2323
24using Gtk;24using Gtk;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Platform.Linux;28using Do.Platform.Linux;
2929
@@ -39,7 +39,7 @@
39 39
40 public Configuration() : base ("Google Calendar", Uri)40 public Configuration() : base ("Google Calendar", Uri)
41 {41 {
42 UsernameLabel = Catalog.GetString ("E-Mail:");42 UsernameLabel = AddinManager.CurrentLocalizer.GetString ("E-Mail:");
43 Username = GCal.Preferences.Username;43 Username = GCal.Preferences.Username;
44 Password = GCal.Preferences.Password;44 Password = GCal.Preferences.Password;
45 }45 }
4646
=== modified file 'GoogleCalendar/src/GCal.cs'
--- GoogleCalendar/src/GCal.cs 2008-12-31 21:07:37 +0000
+++ GoogleCalendar/src/GCal.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System;21using System;
22using System.Collections.Generic;22using System.Collections.Generic;
2323
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Platform;26using Do.Platform;
27using Do.Universe;27using Do.Universe;
@@ -31,7 +31,7 @@
31 31
32 public static class GCal32 public static class GCal
33 {33 {
34 static readonly string ConnectionErrorMessage = Catalog.GetString ("Failed to connect to GCal service");34 static readonly string ConnectionErrorMessage = AddinManager.CurrentLocalizer.GetString ("Failed to connect to GCal service");
35 static GCalClient client;35 static GCalClient client;
36 36
37 static GCal()37 static GCal()
3838
=== modified file 'GoogleCalendar/src/GCalClient.cs'
--- GoogleCalendar/src/GCalClient.cs 2009-01-01 01:25:16 +0000
+++ GoogleCalendar/src/GCalClient.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Linq;23using System.Linq;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Google.GData.Client;28using Google.GData.Client;
29using Google.GData.Calendar;29using Google.GData.Calendar;
@@ -37,8 +37,8 @@
37 37
38 public class GCalClient38 public class GCalClient
39 {39 {
40 readonly string AllEventsCalName = Catalog.GetString ("All Events");40 readonly string AllEventsCalName = AddinManager.CurrentLocalizer.GetString ("All Events");
41 readonly string ErrorInMethod = Catalog.GetString ("An error has occurred in {0}");41 readonly string ErrorInMethod = AddinManager.CurrentLocalizer.GetString ("An error has occurred in {0}");
4242
43 const int MonthsToIndex = 1;43 const int MonthsToIndex = 1;
44 const string GAppName = "alexLauni-gnomeDoGCalPlugin-1.5";44 const string GAppName = "alexLauni-gnomeDoGCalPlugin-1.5";
4545
=== modified file 'GoogleCalendar/src/GCalPreferences.cs'
--- GoogleCalendar/src/GCalPreferences.cs 2009-01-01 01:25:16 +0000
+++ GoogleCalendar/src/GCalPreferences.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Platform;25using Do.Platform;
2626
2727
=== modified file 'GoogleCalendar/src/GCalendarItem.cs'
--- GoogleCalendar/src/GCalendarItem.cs 2009-01-01 01:25:16 +0000
+++ GoogleCalendar/src/GCalendarItem.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
22using System.Text;22using System.Text;
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Platform;25using Do.Platform;
26using Do.Universe;26using Do.Universe;
@@ -42,7 +42,7 @@
42 }42 }
43 43
44 public override string Description {44 public override string Description {
45 get { return Catalog.GetString ("Google Calendar"); }45 get { return AddinManager.CurrentLocalizer.GetString ("Google Calendar"); }
46 }46 }
47 47
48 public override string Icon {48 public override string Icon {
4949
=== modified file 'GoogleCalendar/src/GCalendarItemSource.cs'
--- GoogleCalendar/src/GCalendarItemSource.cs 2008-12-31 21:16:30 +0000
+++ GoogleCalendar/src/GCalendarItemSource.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Linq;23using System.Linq;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
29using Do.Platform.Linux;29using Do.Platform.Linux;
@@ -37,11 +37,11 @@
37 }37 }
3838
39 public override string Name {39 public override string Name {
40 get { return Catalog.GetString ("Google Calendars"); }40 get { return AddinManager.CurrentLocalizer.GetString ("Google Calendars"); }
41 }41 }
42 42
43 public override string Description {43 public override string Description {
44 get { return Catalog.GetString ("Indexes your Google Calendars"); }44 get { return AddinManager.CurrentLocalizer.GetString ("Indexes your Google Calendars"); }
45 }45 }
46 46
47 public override string Icon {47 public override string Icon {
4848
=== modified file 'GoogleCalendar/src/GCalendarNewEvent.cs'
--- GoogleCalendar/src/GCalendarNewEvent.cs 2009-01-01 01:25:16 +0000
+++ GoogleCalendar/src/GCalendarNewEvent.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Text;22using System.Text;
23using System.Collections.Generic;23using System.Collections.Generic;
24using System.Linq;24using System.Linq;
25using Mono.Unix;25using Mono.Addins;
2626
2727
28using Do.Universe;28using Do.Universe;
@@ -35,11 +35,11 @@
35 public sealed class GCalendarNewEvent : Act35 public sealed class GCalendarNewEvent : Act
36 {36 {
37 public override string Name {37 public override string Name {
38 get { return Catalog.GetString ("New Event"); }38 get { return AddinManager.CurrentLocalizer.GetString ("New Event"); }
39 }39 }
40 40
41 public override string Description {41 public override string Description {
42 get { return Catalog.GetString ("Create a new event in Google Calendar"); }42 get { return AddinManager.CurrentLocalizer.GetString ("Create a new event in Google Calendar"); }
43 }43 }
44 44
45 public override string Icon {45 public override string Icon {
4646
=== modified file 'GoogleCalendar/src/GCalendarSearchEvents.cs'
--- GoogleCalendar/src/GCalendarSearchEvents.cs 2008-12-31 21:16:30 +0000
+++ GoogleCalendar/src/GCalendarSearchEvents.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
2828
@@ -37,11 +37,11 @@
37 }37 }
38 38
39 public override string Name {39 public override string Name {
40 get { return Catalog.GetString ("Search Events"); }40 get { return AddinManager.CurrentLocalizer.GetString ("Search Events"); }
41 }41 }
42 42
43 public override string Description {43 public override string Description {
44 get { return Catalog.GetString ("Search Google Calendar for Events"); }44 get { return AddinManager.CurrentLocalizer.GetString ("Search Google Calendar for Events"); }
45 }45 }
46 46
47 public override string Icon {47 public override string Icon {
4848
=== modified file 'GoogleCalendar/src/GCalendarViewActions.cs'
--- GoogleCalendar/src/GCalendarViewActions.cs 2009-01-01 01:25:16 +0000
+++ GoogleCalendar/src/GCalendarViewActions.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Platform;27using Do.Platform;
28using Do.Universe;28using Do.Universe;
@@ -38,11 +38,11 @@
38 }38 }
3939
40 public override string Name {40 public override string Name {
41 get { return Catalog.GetString ("View Event"); }41 get { return AddinManager.CurrentLocalizer.GetString ("View Event"); }
42 }42 }
4343
44 public override string Description {44 public override string Description {
45 get { return Catalog.GetString ("Open event in browser"); }45 get { return AddinManager.CurrentLocalizer.GetString ("Open event in browser"); }
46 }46 }
4747
48 public override string Icon {48 public override string Icon {
@@ -69,11 +69,11 @@
69 }69 }
7070
71 public override string Name {71 public override string Name {
72 get { return Catalog.GetString ("View Calendar"); }72 get { return AddinManager.CurrentLocalizer.GetString ("View Calendar"); }
73 }73 }
7474
75 public override string Description {75 public override string Description {
76 get { return Catalog.GetString ("Open calendar in browser"); }76 get { return AddinManager.CurrentLocalizer.GetString ("Open calendar in browser"); }
77 }77 }
7878
79 public override string Icon {79 public override string Icon {
8080
=== modified file 'GoogleContacts/GMailContacts.mdp'
--- GoogleContacts/GMailContacts.mdp 2009-05-17 08:45:38 +0000
+++ GoogleContacts/GMailContacts.mdp 2009-06-22 01:49:55 +0000
@@ -38,7 +38,6 @@
38 <ProjectReference type="Gac" localcopy="True" refto="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />38 <ProjectReference type="Gac" localcopy="True" refto="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
39 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />39 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
40 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />40 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
41 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
42 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.Client.dll" />41 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.Client.dll" />
43 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.Contacts.dll" />42 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.Contacts.dll" />
44 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.Extensions.dll" />43 <ProjectReference type="Assembly" localcopy="True" refto="../BundledLibraries/Google.GData.Extensions.dll" />
@@ -47,4 +46,4 @@
47 <ProjectReference type="Assembly" localcopy="True" specificVersion="False" refto="../../../../../../usr/local/lib/gnome-do/Do.Platform.Linux.dll" />46 <ProjectReference type="Assembly" localcopy="True" specificVersion="False" refto="../../../../../../usr/local/lib/gnome-do/Do.Platform.Linux.dll" />
48 <ProjectReference type="Assembly" localcopy="True" specificVersion="False" refto="../../../../../../usr/local/lib/gnome-do/Do.Universe.dll" />47 <ProjectReference type="Assembly" localcopy="True" specificVersion="False" refto="../../../../../../usr/local/lib/gnome-do/Do.Universe.dll" />
49 </References>48 </References>
50</Project>
51\ No newline at end of file49\ No newline at end of file
50</Project>
5251
=== modified file 'GoogleContacts/Makefile.am'
--- GoogleContacts/Makefile.am 2009-05-17 08:45:38 +0000
+++ GoogleContacts/Makefile.am 2009-06-21 11:51:24 +0000
@@ -23,7 +23,6 @@
23 Resources/icons/phone.png23 Resources/icons/phone.png
2424
25REFERENCES = \25REFERENCES = \
26 Mono.Posix \
27 System \26 System \
28 System.Core \27 System.Core \
29 System.Security \28 System.Security \
3029
=== renamed file 'GoogleContacts/Resources/GoogleContacts.addin.xml' => 'GoogleContacts/Resources/GoogleContacts.addin.xml.in'
--- GoogleContacts/Resources/GoogleContacts.addin.xml 2009-05-17 08:43:00 +0000
+++ GoogleContacts/Resources/GoogleContacts.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="GoogleContacts.dll"/>13 <Import assembly="GoogleContacts.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'GoogleContacts/src/GMail.cs'
--- GoogleContacts/src/GMail.cs 2008-12-31 16:52:24 +0000
+++ GoogleContacts/src/GMail.cs 2009-06-21 11:51:24 +0000
@@ -23,7 +23,7 @@
23using System.Threading;23using System.Threading;
24using System.Collections.Generic;24using System.Collections.Generic;
2525
26using Mono.Unix;26using Mono.Addins;
2727
28using Do.Universe;28using Do.Universe;
29using Do.Platform;29using Do.Platform;
@@ -32,10 +32,10 @@
32{32{
33 public static class GMail33 public static class GMail
34 {34 {
35 static readonly string ConnectionErrorMessage = Catalog.GetString ("An error occurred connecting to google, "35 static readonly string ConnectionErrorMessage = AddinManager.CurrentLocalizer.GetString ("An error occurred connecting to google, "
36 + "are your credentials valid?");36 + "are your credentials valid?");
37 37
38 static readonly string MissingCredentialsMessage = Catalog.GetString ("Missing login credentials. Please set "38 static readonly string MissingCredentialsMessage = AddinManager.CurrentLocalizer.GetString ("Missing login credentials. Please set "
39 + "login information in plugin configuration.");39 + "login information in plugin configuration.");
40 40
41 static GMailClient client;41 static GMailClient client;
4242
=== modified file 'GoogleContacts/src/GMailContactDetailItem.cs'
--- GoogleContacts/src/GMailContactDetailItem.cs 2008-12-23 16:02:34 +0000
+++ GoogleContacts/src/GMailContactDetailItem.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
20 */20 */
2121
22using System;22using System;
23using Mono.Unix;23using Mono.Addins;
24using Do.Universe;24using Do.Universe;
2525
26namespace GMail26namespace GMail
@@ -38,15 +38,15 @@
38 public override string Name {38 public override string Name {
39 get {39 get {
40 switch (type.ToLower ()) {40 switch (type.ToLower ()) {
41 case "email.gmail": return Catalog.GetString ("Primary Email");41 case "email.gmail": return AddinManager.CurrentLocalizer.GetString ("Primary Email");
42 case "phone.gmail": return Catalog.GetString ("Primary Phone");42 case "phone.gmail": return AddinManager.CurrentLocalizer.GetString ("Primary Phone");
43 case "email.gmail.home": return Catalog.GetString ("Home Email");43 case "email.gmail.home": return AddinManager.CurrentLocalizer.GetString ("Home Email");
44 case "email.gmail.work": return Catalog.GetString ("Work Email");44 case "email.gmail.work": return AddinManager.CurrentLocalizer.GetString ("Work Email");
45 case "phone.gmail.home": return Catalog.GetString ("Home Phone");45 case "phone.gmail.home": return AddinManager.CurrentLocalizer.GetString ("Home Phone");
46 case "phone.gmail.work": return Catalog.GetString ("Work Phone");46 case "phone.gmail.work": return AddinManager.CurrentLocalizer.GetString ("Work Phone");
47 case "address.gmail": return Catalog.GetString ("Primary Address");47 case "address.gmail": return AddinManager.CurrentLocalizer.GetString ("Primary Address");
48 case "address.gmail.home": return Catalog.GetString ("Home Address");48 case "address.gmail.home": return AddinManager.CurrentLocalizer.GetString ("Home Address");
49 case "address.gmail.work": return Catalog.GetString ("Work Address");49 case "address.gmail.work": return AddinManager.CurrentLocalizer.GetString ("Work Address");
50 default: return "Other " + DetailRoot (type);50 default: return "Other " + DetailRoot (type);
51 }51 }
52 }52 }
5353
=== modified file 'GoogleContacts/src/GMailContactItemSource.cs'
--- GoogleContacts/src/GMailContactItemSource.cs 2008-12-24 04:42:14 +0000
+++ GoogleContacts/src/GMailContactItemSource.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Threading;22using System.Threading;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Universe;27using Do.Universe;
28using Do.Platform.Linux;28using Do.Platform.Linux;
@@ -35,11 +35,11 @@
35 {35 {
36 }36 }
37 public override string Name { 37 public override string Name {
38 get { return Catalog.GetString ("GMail Contacts"); }38 get { return AddinManager.CurrentLocalizer.GetString ("GMail Contacts"); }
39 }39 }
40 40
41 public override string Description { 41 public override string Description {
42 get { return Catalog.GetString ("Index your GMail contacts"); }42 get { return AddinManager.CurrentLocalizer.GetString ("Index your GMail contacts"); }
43 }43 }
44 44
45 public override string Icon { 45 public override string Icon {
4646
=== modified file 'GoogleContacts/src/Preferences.cs'
--- GoogleContacts/src/Preferences.cs 2009-01-05 01:32:46 +0000
+++ GoogleContacts/src/Preferences.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Platform;25using Do.Platform;
2626
2727
=== modified file 'GoogleContacts/src/RecentConversationsAction.cs'
--- GoogleContacts/src/RecentConversationsAction.cs 2009-05-17 08:45:38 +0000
+++ GoogleContacts/src/RecentConversationsAction.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Linq;22using System.Linq;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Do.Platform;27using Do.Platform;
28using Do.Universe;28using Do.Universe;
@@ -36,11 +36,11 @@
36 const string url = "https://mail.google.com/mail/?shva=1#search/from:({0})+OR+to:({0})";36 const string url = "https://mail.google.com/mail/?shva=1#search/from:({0})+OR+to:({0})";
37 37
38 public override string Name {38 public override string Name {
39 get { return Catalog.GetString ("View recent conversations"); }39 get { return AddinManager.CurrentLocalizer.GetString ("View recent conversations"); }
40 }40 }
4141
42 public override string Description {42 public override string Description {
43 get { return Catalog.GetString ("View recent emails and chat logs with a friend"); }43 get { return AddinManager.CurrentLocalizer.GetString ("View recent emails and chat logs with a friend"); }
44 }44 }
4545
46 public override string Icon {46 public override string Icon {
4747
=== modified file 'GoogleDocs/GDocs.mdp'
--- GoogleDocs/GDocs.mdp 2009-06-09 22:50:11 +0000
+++ GoogleDocs/GDocs.mdp 2009-06-22 01:49:55 +0000
@@ -35,7 +35,6 @@
35 <References>35 <References>
36 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />36 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
37 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />37 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
38 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
39 <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />38 <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
40 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />39 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
41 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />40 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
@@ -47,4 +46,4 @@
47 <ProjectReference type="Gac" localcopy="True" refto="Google.GData.Documents, Version=1.4.0.2, Culture=neutral, PublicKeyToken=099e9a853da5b089" />46 <ProjectReference type="Gac" localcopy="True" refto="Google.GData.Documents, Version=1.4.0.2, Culture=neutral, PublicKeyToken=099e9a853da5b089" />
48 <ProjectReference type="Gac" localcopy="True" refto="Google.GData.Extensions, Version=1.4.0.2, Culture=neutral, PublicKeyToken=0b4c5df2ebf20876" />47 <ProjectReference type="Gac" localcopy="True" refto="Google.GData.Extensions, Version=1.4.0.2, Culture=neutral, PublicKeyToken=0b4c5df2ebf20876" />
49 </References>48 </References>
50</Project>
51\ No newline at end of file49\ No newline at end of file
50</Project>
5251
=== modified file 'GoogleDocs/Makefile.am'
--- GoogleDocs/Makefile.am 2009-06-09 22:50:11 +0000
+++ GoogleDocs/Makefile.am 2009-06-21 11:51:24 +0000
@@ -25,7 +25,6 @@
25 Resources/icons/gDocsUploadIcon.png25 Resources/icons/gDocsUploadIcon.png
2626
27REFERENCES = \27REFERENCES = \
28 Mono.Posix \
29 System \28 System \
30 System.Core \29 System.Core \
31 System.Xml \30 System.Xml \
3231
=== renamed file 'GoogleDocs/Resources/GoogleDocs.addin.xml' => 'GoogleDocs/Resources/GoogleDocs.addin.xml.in'
--- GoogleDocs/Resources/GoogleDocs.addin.xml 2009-06-17 20:40:03 +0000
+++ GoogleDocs/Resources/GoogleDocs.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="GoogleDocs.dll"/>13 <Import assembly="GoogleDocs.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'GoogleDocs/src/Configuration.cs'
--- GoogleDocs/src/Configuration.cs 2009-06-09 22:50:11 +0000
+++ GoogleDocs/src/Configuration.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19using System.Text.RegularExpressions;19using System.Text.RegularExpressions;
2020
21using Gtk;21using Gtk;
22using Mono.Unix;22using Mono.Addins;
2323
24using Do.Platform;24using Do.Platform;
25using Do.Platform.Linux;25using Do.Platform.Linux;
@@ -35,7 +35,7 @@
3535
36 public Configuration () : base ("Google Docs", Uri)36 public Configuration () : base ("Google Docs", Uri)
37 {37 {
38 UsernameLabel = Catalog.GetString ("E-Mail:");38 UsernameLabel = AddinManager.CurrentLocalizer.GetString ("E-Mail:");
39 Username = GDocs.Preferences.Username;39 Username = GDocs.Preferences.Username;
40 Password = GDocs.Preferences.Password;40 Password = GDocs.Preferences.Password;
41 }41 }
4242
=== modified file 'GoogleDocs/src/GDocs.cs'
--- GoogleDocs/src/GDocs.cs 2009-06-09 22:50:11 +0000
+++ GoogleDocs/src/GDocs.cs 2009-06-21 11:51:24 +0000
@@ -22,7 +22,7 @@
22using System.Threading;22using System.Threading;
23using System.Collections.Generic;23using System.Collections.Generic;
2424
25using Mono.Unix;25using Mono.Addins;
2626
27using Google.GData.Client;27using Google.GData.Client;
28using Google.GData.Documents;28using Google.GData.Documents;
@@ -139,24 +139,24 @@
139 static Notification GetUploadFailedNotification ()139 static Notification GetUploadFailedNotification ()
140 {140 {
141 return new Notification (141 return new Notification (
142 Catalog.GetString ("Uploading failed."), 142 AddinManager.CurrentLocalizer.GetString ("Uploading failed."),
143 Catalog.GetString ("An error occurred when uploading files to Google Docs."), 143 AddinManager.CurrentLocalizer.GetString ("An error occurred when uploading files to Google Docs."),
144 "gDocsIcon.png@" + typeof (GDocsItemSource).Assembly.FullName);144 "gDocsIcon.png@" + typeof (GDocsItemSource).Assembly.FullName);
145 }145 }
146 146
147 static Notification GetDeleteDocumentFailedNotification ()147 static Notification GetDeleteDocumentFailedNotification ()
148 {148 {
149 return new Notification (149 return new Notification (
150 Catalog.GetString ("Deleting failed."), 150 AddinManager.CurrentLocalizer.GetString ("Deleting failed."),
151 Catalog.GetString ("An error occurred when deleting the document at Google Docs."), 151 AddinManager.CurrentLocalizer.GetString ("An error occurred when deleting the document at Google Docs."),
152 "gDocsIcon.png@" + typeof (GDocsItemSource).Assembly.FullName);152 "gDocsIcon.png@" + typeof (GDocsItemSource).Assembly.FullName);
153 }153 }
154 154
155 static Notification GetDocumentDeletedNotification (string documentTitle)155 static Notification GetDocumentDeletedNotification (string documentTitle)
156 {156 {
157 return new Notification (157 return new Notification (
158 Catalog.GetString ("Document deleted."), 158 AddinManager.CurrentLocalizer.GetString ("Document deleted."),
159 string.Format (Catalog.GetString ("The document '{0}' has been successfully moved into Trash at Google Docs."), documentTitle), 159 string.Format (AddinManager.CurrentLocalizer.GetString ("The document '{0}' has been successfully moved into Trash at Google Docs."), documentTitle),
160 "gDocsIcon.png@" + typeof (GDocsItemSource).Assembly.FullName);160 "gDocsIcon.png@" + typeof (GDocsItemSource).Assembly.FullName);
161 }161 }
162 162
163163
=== modified file 'GoogleDocs/src/GDocsAbstractItem.cs'
--- GoogleDocs/src/GDocsAbstractItem.cs 2009-06-17 20:42:28 +0000
+++ GoogleDocs/src/GDocsAbstractItem.cs 2009-06-21 11:51:24 +0000
@@ -18,7 +18,7 @@
18using System;18using System;
19using System.Text;19using System.Text;
2020
21using Mono.Unix;21using Mono.Addins;
2222
23using Do.Universe;23using Do.Universe;
24using Do.Platform;24using Do.Platform;
@@ -40,7 +40,7 @@
40 }40 }
41 41
42 public override string Description {42 public override string Description {
43 get { return Catalog.GetString ("Google Docs Generic Document"); }43 get { return AddinManager.CurrentLocalizer.GetString ("Google Docs Generic Document"); }
44 }44 }
45 45
46 public virtual string URL {46 public virtual string URL {
4747
=== modified file 'GoogleDocs/src/GDocsDocumentItem.cs'
--- GoogleDocs/src/GDocsDocumentItem.cs 2009-06-09 22:50:11 +0000
+++ GoogleDocs/src/GDocsDocumentItem.cs 2009-06-21 11:51:24 +0000
@@ -18,7 +18,7 @@
1818
19using System;19using System;
20using System.Text;20using System.Text;
21using Mono.Unix;21using Mono.Addins;
2222
23using Do.Universe;23using Do.Universe;
2424
@@ -30,7 +30,7 @@
30 public GDocsDocumentItem (string name, string url) : base (name, url) {}30 public GDocsDocumentItem (string name, string url) : base (name, url) {}
31 31
32 public override string Description {32 public override string Description {
33 get { return Catalog.GetString ("Google Docs Text Document"); }33 get { return AddinManager.CurrentLocalizer.GetString ("Google Docs Text Document"); }
34 }34 }
35 35
36 public override string Icon {36 public override string Icon {
3737
=== modified file 'GoogleDocs/src/GDocsItemSource.cs'
--- GoogleDocs/src/GDocsItemSource.cs 2009-06-09 22:50:11 +0000
+++ GoogleDocs/src/GDocsItemSource.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19using System.Threading;19using System.Threading;
20using System.Collections.Generic;20using System.Collections.Generic;
2121
22using Mono.Unix;22using Mono.Addins;
2323
24using Do.Universe;24using Do.Universe;
25using Do.Platform;25using Do.Platform;
@@ -30,11 +30,11 @@
30 public sealed class GDocsItemSource : ItemSource, IConfigurable30 public sealed class GDocsItemSource : ItemSource, IConfigurable
31 {31 {
32 public override string Name {32 public override string Name {
33 get { return Catalog.GetString ("Google Docs"); }33 get { return AddinManager.CurrentLocalizer.GetString ("Google Docs"); }
34 }34 }
35 35
36 public override string Description {36 public override string Description {
37 get { return Catalog.GetString ("Indexes your documents stored at Google Docs"); }37 get { return AddinManager.CurrentLocalizer.GetString ("Indexes your documents stored at Google Docs"); }
38 }38 }
39 39
40 public override string Icon {40 public override string Icon {
4141
=== modified file 'GoogleDocs/src/GDocsPDFItem.cs'
--- GoogleDocs/src/GDocsPDFItem.cs 2009-06-09 22:50:11 +0000
+++ GoogleDocs/src/GDocsPDFItem.cs 2009-06-21 11:51:24 +0000
@@ -17,7 +17,7 @@
1717
18using System;18using System;
19using System.Text;19using System.Text;
20using Mono.Unix;20using Mono.Addins;
2121
2222
23using Do.Universe;23using Do.Universe;
@@ -30,7 +30,7 @@
30 public GDocsPDFItem (string name, string url) : base (name, url) {}30 public GDocsPDFItem (string name, string url) : base (name, url) {}
31 31
32 public override string Description {32 public override string Description {
33 get { return Catalog.GetString ("Google Docs PDF Document"); }33 get { return AddinManager.CurrentLocalizer.GetString ("Google Docs PDF Document"); }
34 }34 }
35 35
36 public override string Icon {36 public override string Icon {
3737
=== modified file 'GoogleDocs/src/GDocsPresentationItem.cs'
--- GoogleDocs/src/GDocsPresentationItem.cs 2009-06-09 22:50:11 +0000
+++ GoogleDocs/src/GDocsPresentationItem.cs 2009-06-21 11:51:24 +0000
@@ -17,7 +17,7 @@
1717
18using System;18using System;
19using System.Text;19using System.Text;
20using Mono.Unix;20using Mono.Addins;
2121
2222
23using Do.Universe;23using Do.Universe;
@@ -30,7 +30,7 @@
30 public GDocsPresentationItem (string name, string url) : base (name, url) {}30 public GDocsPresentationItem (string name, string url) : base (name, url) {}
31 31
32 public override string Description {32 public override string Description {
33 get { return Catalog.GetString ("Google Docs Presentation"); }33 get { return AddinManager.CurrentLocalizer.GetString ("Google Docs Presentation"); }
34 }34 }
35 35
36 public override string Icon {36 public override string Icon {
3737
=== modified file 'GoogleDocs/src/GDocsSpreadsheetItem.cs'
--- GoogleDocs/src/GDocsSpreadsheetItem.cs 2009-06-09 22:50:11 +0000
+++ GoogleDocs/src/GDocsSpreadsheetItem.cs 2009-06-21 11:51:24 +0000
@@ -17,7 +17,7 @@
1717
18using System;18using System;
19using System.Text;19using System.Text;
20using Mono.Unix;20using Mono.Addins;
2121
2222
23using Do.Universe;23using Do.Universe;
@@ -30,7 +30,7 @@
30 public GDocsSpreadsheetItem (string name, string url) : base (name, url) {}30 public GDocsSpreadsheetItem (string name, string url) : base (name, url) {}
31 31
32 public override string Description {32 public override string Description {
33 get { return Catalog.GetString ("Google Docs Spreadsheet"); }33 get { return AddinManager.CurrentLocalizer.GetString ("Google Docs Spreadsheet"); }
34 }34 }
35 35
36 public override string Icon {36 public override string Icon {
3737
=== modified file 'GoogleDocs/src/GDocsTrashDocument.cs'
--- GoogleDocs/src/GDocsTrashDocument.cs 2009-06-09 22:50:11 +0000
+++ GoogleDocs/src/GDocsTrashDocument.cs 2009-06-21 11:51:24 +0000
@@ -19,7 +19,7 @@
19using System.Text;19using System.Text;
20using System.Collections.Generic;20using System.Collections.Generic;
21using System.Linq;21using System.Linq;
22using Mono.Unix;22using Mono.Addins;
2323
24using Do.Platform;24using Do.Platform;
25using Do.Universe;25using Do.Universe;
@@ -32,11 +32,11 @@
32 public sealed class GDocsTrashDocument : Act32 public sealed class GDocsTrashDocument : Act
33 {33 {
34 public override string Name {34 public override string Name {
35 get { return Catalog.GetString ("Delete Document"); }35 get { return AddinManager.CurrentLocalizer.GetString ("Delete Document"); }
36 }36 }
37 37
38 public override string Description {38 public override string Description {
39 get { return Catalog.GetString ("Move a document into Trash at Google Docs"); }39 get { return AddinManager.CurrentLocalizer.GetString ("Move a document into Trash at Google Docs"); }
40 }40 }
41 41
42 public override string Icon {42 public override string Icon {
4343
=== modified file 'GoogleDocs/src/GDocsUploadDocument.cs'
--- GoogleDocs/src/GDocsUploadDocument.cs 2009-06-09 22:50:11 +0000
+++ GoogleDocs/src/GDocsUploadDocument.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
20using System.Collections.Generic;20using System.Collections.Generic;
21using System.Linq;21using System.Linq;
22using System.Text.RegularExpressions;22using System.Text.RegularExpressions;
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Universe;25using Do.Universe;
2626
@@ -34,11 +34,11 @@
34 const string ExtPattern = @"\.(txt|doc|docx|html|htm|odt|rtf|xls|xlsx|ods|csv|tsv|tsb|ppt|pps|sxw|pdf)$";34 const string ExtPattern = @"\.(txt|doc|docx|html|htm|odt|rtf|xls|xlsx|ods|csv|tsv|tsb|ppt|pps|sxw|pdf)$";
35 35
36 public override string Name {36 public override string Name {
37 get { return Catalog.GetString ("Upload Document"); }37 get { return AddinManager.CurrentLocalizer.GetString ("Upload Document"); }
38 }38 }
39 39
40 public override string Description {40 public override string Description {
41 get { return Catalog.GetString ("Upload a document to Google Docs"); }41 get { return AddinManager.CurrentLocalizer.GetString ("Upload a document to Google Docs"); }
42 }42 }
43 43
44 public override string Icon {44 public override string Icon {
4545
=== modified file 'GoogleDocs/src/Preferences.cs'
--- GoogleDocs/src/Preferences.cs 2009-06-09 22:50:11 +0000
+++ GoogleDocs/src/Preferences.cs 2009-06-21 11:51:24 +0000
@@ -16,7 +16,7 @@
16// along with this program. If not, see <http://www.gnu.org/licenses/>.16// along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
18using System;18using System;
19using Mono.Unix;19using Mono.Addins;
20using Do.Platform;20using Do.Platform;
2121
22namespace GDocs22namespace GDocs
2323
=== modified file 'GoogleMaps/GoogleMaps.mdp'
--- GoogleMaps/GoogleMaps.mdp 2009-02-28 16:16:48 +0000
+++ GoogleMaps/GoogleMaps.mdp 2009-06-22 01:49:55 +0000
@@ -21,10 +21,9 @@
21 </Contents>21 </Contents>
22 <References>22 <References>
23 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />23 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
24 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
25 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />24 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
26 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />25 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
27 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />26 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
28 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />27 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
29 </References>28 </References>
30</Project>
31\ No newline at end of file29\ No newline at end of file
30</Project>
3231
=== modified file 'GoogleMaps/Makefile.am'
--- GoogleMaps/Makefile.am 2009-02-05 04:18:51 +0000
+++ GoogleMaps/Makefile.am 2009-06-21 11:51:24 +0000
@@ -9,7 +9,6 @@
9 Resources/GoogleMaps.addin.xml9 Resources/GoogleMaps.addin.xml
1010
11REFERENCES = \11REFERENCES = \
12 Mono.Posix \
13 System \12 System \
14 System.Core \13 System.Core \
15 System.Web \14 System.Web \
1615
=== renamed file 'GoogleMaps/Resources/GoogleMaps.addin.xml' => 'GoogleMaps/Resources/GoogleMaps.addin.xml.in'
--- GoogleMaps/Resources/GoogleMaps.addin.xml 2009-03-31 23:19:25 +0000
+++ GoogleMaps/Resources/GoogleMaps.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Runtime>13 <Runtime>
14 <Import assembly="GoogleMaps.dll"/>14 <Import assembly="GoogleMaps.dll"/>
15 </Runtime>15 </Runtime>
16
17 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
16 18
17 <Dependencies>19 <Dependencies>
18 <Addin id="Universe" version="1.0" />20 <Addin id="Universe" version="1.0" />
1921
=== modified file 'GoogleMaps/src/MapAction.cs'
--- GoogleMaps/src/MapAction.cs 2009-02-05 04:18:51 +0000
+++ GoogleMaps/src/MapAction.cs 2009-06-21 11:51:24 +0000
@@ -21,7 +21,7 @@
21using System.Collections.Generic;21using System.Collections.Generic;
22using System.Linq;22using System.Linq;
23using System.Web;23using System.Web;
24using Mono.Unix;24using Mono.Addins;
2525
26using Do.Universe;26using Do.Universe;
27using Do.Platform;27using Do.Platform;
@@ -37,12 +37,12 @@
37 public class MapAction : Act37 public class MapAction : Act
38 {38 {
39 public override string Name {39 public override string Name {
40 get { return Catalog.GetString ("Map"); }40 get { return AddinManager.CurrentLocalizer.GetString ("Map"); }
41 }41 }
42 42
43 public override string Description43 public override string Description
44 {44 {
45 get { return Catalog.GetString ("Map a location or route in Google maps."); }45 get { return AddinManager.CurrentLocalizer.GetString ("Map a location or route in Google maps."); }
46 }46 }
47 47
48 public override string Icon48 public override string Icon
4949
=== modified file 'GoogleSearch/GoogleSearch.mdp'
--- GoogleSearch/GoogleSearch.mdp 2009-02-28 16:16:48 +0000
+++ GoogleSearch/GoogleSearch.mdp 2009-06-22 01:49:55 +0000
@@ -32,7 +32,6 @@
32 <ProjectReference type="Gac" localcopy="True" refto="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />32 <ProjectReference type="Gac" localcopy="True" refto="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
33 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />33 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
34 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />34 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
35 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
36 <ProjectReference type="Gac" localcopy="True" refto="gconf-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />35 <ProjectReference type="Gac" localcopy="True" refto="gconf-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
37 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />36 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
38 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />37 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
@@ -40,4 +39,4 @@
40 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />39 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
41 <ProjectReference type="Gac" localcopy="True" refto="Do.Interface.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />40 <ProjectReference type="Gac" localcopy="True" refto="Do.Interface.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
42 </References>41 </References>
43</Project>
44\ No newline at end of file42\ No newline at end of file
43</Project>
4544
=== modified file 'GoogleSearch/Makefile.am'
--- GoogleSearch/Makefile.am 2009-01-09 08:18:51 +0000
+++ GoogleSearch/Makefile.am 2009-06-22 01:49:05 +0000
@@ -17,7 +17,6 @@
17 Resources/GoogleSearch.addin.xml17 Resources/GoogleSearch.addin.xml
1818
19REFERENCES = \19REFERENCES = \
20 Mono.Posix \
21 System \20 System \
22 System.Core \21 System.Core \
23 System.Web \22 System.Web \
2423
=== renamed file 'GoogleSearch/Resources/GoogleSearch.addin.xml' => 'GoogleSearch/Resources/GoogleSearch.addin.xml.in'
--- GoogleSearch/Resources/GoogleSearch.addin.xml 2009-03-31 23:19:25 +0000
+++ GoogleSearch/Resources/GoogleSearch.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="GoogleSearch.dll"/>13 <Import assembly="GoogleSearch.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'GoogleSearch/gtk-gui/InlineGoogleSearch.InlineGoogleSearchConfig.cs'
--- GoogleSearch/gtk-gui/InlineGoogleSearch.InlineGoogleSearchConfig.cs 2009-01-05 06:46:20 +0000
+++ GoogleSearch/gtk-gui/InlineGoogleSearch.InlineGoogleSearchConfig.cs 2009-06-22 01:49:05 +0000
@@ -71,7 +71,7 @@
71 this.vbox4.Name = "vbox4";71 this.vbox4.Name = "vbox4";
72 this.vbox4.Spacing = 6;72 this.vbox4.Spacing = 6;
73 // Container child vbox4.Gtk.Box+BoxChild73 // Container child vbox4.Gtk.Box+BoxChild
74 this.goToSearch_rbtn = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("Go directly to Google Search page"));74 this.goToSearch_rbtn = new Gtk.RadioButton(Mono.Addins.AddinManager.CurrentLocalizer.GetString("Go directly to Google Search page"));
75 this.goToSearch_rbtn.CanFocus = true;75 this.goToSearch_rbtn.CanFocus = true;
76 this.goToSearch_rbtn.Name = "goToSearch_rbtn";76 this.goToSearch_rbtn.Name = "goToSearch_rbtn";
77 this.goToSearch_rbtn.Active = true;77 this.goToSearch_rbtn.Active = true;
@@ -84,7 +84,7 @@
84 w1.Expand = false;84 w1.Expand = false;
85 w1.Fill = false;85 w1.Fill = false;
86 // Container child vbox4.Gtk.Box+BoxChild86 // Container child vbox4.Gtk.Box+BoxChild
87 this.returnResults_rbtn = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("Show search results in Do"));87 this.returnResults_rbtn = new Gtk.RadioButton(Mono.Addins.AddinManager.CurrentLocalizer.GetString("Show search results in Do"));
88 this.returnResults_rbtn.CanFocus = true;88 this.returnResults_rbtn.CanFocus = true;
89 this.returnResults_rbtn.Name = "returnResults_rbtn";89 this.returnResults_rbtn.Name = "returnResults_rbtn";
90 this.returnResults_rbtn.DrawIndicator = true;90 this.returnResults_rbtn.DrawIndicator = true;
@@ -103,7 +103,7 @@
103 this.showFirstCheck = new Gtk.CheckButton();103 this.showFirstCheck = new Gtk.CheckButton();
104 this.showFirstCheck.CanFocus = true;104 this.showFirstCheck.CanFocus = true;
105 this.showFirstCheck.Name = "showFirstCheck";105 this.showFirstCheck.Name = "showFirstCheck";
106 this.showFirstCheck.Label = Mono.Unix.Catalog.GetString("Show Search page link as first result");106 this.showFirstCheck.Label = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Show Search page link as first result");
107 this.showFirstCheck.Active = true;107 this.showFirstCheck.Active = true;
108 this.showFirstCheck.DrawIndicator = true;108 this.showFirstCheck.DrawIndicator = true;
109 this.showFirstCheck.UseUnderline = true;109 this.showFirstCheck.UseUnderline = true;
@@ -117,7 +117,7 @@
117 this.frame8.Add(this.GtkAlignment1);117 this.frame8.Add(this.GtkAlignment1);
118 this.GtkLabel10 = new Gtk.Label();118 this.GtkLabel10 = new Gtk.Label();
119 this.GtkLabel10.Name = "GtkLabel10";119 this.GtkLabel10.Name = "GtkLabel10";
120 this.GtkLabel10.LabelProp = Mono.Unix.Catalog.GetString("<b>Google Search</b>");120 this.GtkLabel10.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("<b>Google Search</b>");
121 this.GtkLabel10.UseMarkup = true;121 this.GtkLabel10.UseMarkup = true;
122 this.frame8.LabelWidget = this.GtkLabel10;122 this.frame8.LabelWidget = this.GtkLabel10;
123 this.vbox5.Add(this.frame8);123 this.vbox5.Add(this.frame8);
@@ -141,7 +141,7 @@
141 this.applySSL = new Gtk.CheckButton();141 this.applySSL = new Gtk.CheckButton();
142 this.applySSL.CanFocus = true;142 this.applySSL.CanFocus = true;
143 this.applySSL.Name = "applySSL";143 this.applySSL.Name = "applySSL";
144 this.applySSL.Label = Mono.Unix.Catalog.GetString("Apply to Google Search page link");144 this.applySSL.Label = Mono.Addins.AddinManager.CurrentLocalizer.GetString("Apply to Google Search page link");
145 this.applySSL.DrawIndicator = true;145 this.applySSL.DrawIndicator = true;
146 this.applySSL.UseUnderline = true;146 this.applySSL.UseUnderline = true;
147 this.vbox7.Add(this.applySSL);147 this.vbox7.Add(this.applySSL);
@@ -154,7 +154,7 @@
154 this.safeSearchBox.Name = "safeSearchBox";154 this.safeSearchBox.Name = "safeSearchBox";
155 this.safeSearchBox.Spacing = 6;155 this.safeSearchBox.Spacing = 6;
156 // Container child safeSearchBox.Gtk.Box+BoxChild156 // Container child safeSearchBox.Gtk.Box+BoxChild
157 this.nosafe_rbtn = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("Do not filter my search results."));157 this.nosafe_rbtn = new Gtk.RadioButton(Mono.Addins.AddinManager.CurrentLocalizer.GetString("Do not filter my search results."));
158 this.nosafe_rbtn.CanFocus = true;158 this.nosafe_rbtn.CanFocus = true;
159 this.nosafe_rbtn.Name = "nosafe_rbtn";159 this.nosafe_rbtn.Name = "nosafe_rbtn";
160 this.nosafe_rbtn.Active = true;160 this.nosafe_rbtn.Active = true;
@@ -167,7 +167,7 @@
167 w9.Expand = false;167 w9.Expand = false;
168 w9.Fill = false;168 w9.Fill = false;
169 // Container child safeSearchBox.Gtk.Box+BoxChild169 // Container child safeSearchBox.Gtk.Box+BoxChild
170 this.moderate_rbtn = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("Use moderate filtering"));170 this.moderate_rbtn = new Gtk.RadioButton(Mono.Addins.AddinManager.CurrentLocalizer.GetString("Use moderate filtering"));
171 this.moderate_rbtn.CanFocus = true;171 this.moderate_rbtn.CanFocus = true;
172 this.moderate_rbtn.Name = "moderate_rbtn";172 this.moderate_rbtn.Name = "moderate_rbtn";
173 this.moderate_rbtn.DrawIndicator = true;173 this.moderate_rbtn.DrawIndicator = true;
@@ -179,7 +179,7 @@
179 w10.Expand = false;179 w10.Expand = false;
180 w10.Fill = false;180 w10.Fill = false;
181 // Container child safeSearchBox.Gtk.Box+BoxChild181 // Container child safeSearchBox.Gtk.Box+BoxChild
182 this.strict_rbtn = new Gtk.RadioButton(Mono.Unix.Catalog.GetString("Use strict filtering"));182 this.strict_rbtn = new Gtk.RadioButton(Mono.Addins.AddinManager.CurrentLocalizer.GetString("Use strict filtering"));
183 this.strict_rbtn.CanFocus = true;183 this.strict_rbtn.CanFocus = true;
184 this.strict_rbtn.Name = "strict_rbtn";184 this.strict_rbtn.Name = "strict_rbtn";
185 this.strict_rbtn.DrawIndicator = true;185 this.strict_rbtn.DrawIndicator = true;
@@ -200,7 +200,7 @@
200 this.frame3.Add(this.GtkAlignment);200 this.frame3.Add(this.GtkAlignment);
201 this.GtkLabel12 = new Gtk.Label();201 this.GtkLabel12 = new Gtk.Label();
202 this.GtkLabel12.Name = "GtkLabel12";202 this.GtkLabel12.Name = "GtkLabel12";
203 this.GtkLabel12.LabelProp = Mono.Unix.Catalog.GetString("<b>SafeSearch Preferences</b>");203 this.GtkLabel12.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("<b>SafeSearch Preferences</b>");
204 this.GtkLabel12.UseMarkup = true;204 this.GtkLabel12.UseMarkup = true;
205 this.frame3.LabelWidget = this.GtkLabel12;205 this.frame3.LabelWidget = this.GtkLabel12;
206 this.vbox5.Add(this.frame3);206 this.vbox5.Add(this.frame3);
207207
=== modified file 'GoogleSearch/gtk-gui/gui.stetic'
--- GoogleSearch/gtk-gui/gui.stetic 2009-01-09 07:25:58 +0000
+++ GoogleSearch/gtk-gui/gui.stetic 2009-06-22 01:49:05 +0000
@@ -2,7 +2,7 @@
2<stetic-interface>2<stetic-interface>
3 <configuration>3 <configuration>
4 <images-root-path>..</images-root-path>4 <images-root-path>..</images-root-path>
5 <target-gtk-version>2.12</target-gtk-version>5 <target-gtk-version>2.12.9</target-gtk-version>
6 </configuration>6 </configuration>
7 <import>7 <import>
8 <widget-library name="../bin/Debug/InlineGoogleSearch.dll" internal="true" />8 <widget-library name="../bin/Debug/InlineGoogleSearch.dll" internal="true" />
99
=== modified file 'GoogleSearch/src/ImFeelingLuckyAction.cs'
--- GoogleSearch/src/ImFeelingLuckyAction.cs 2009-02-11 19:17:18 +0000
+++ GoogleSearch/src/ImFeelingLuckyAction.cs 2009-06-21 11:51:24 +0000
@@ -26,7 +26,7 @@
26using System.Linq;26using System.Linq;
27using Do.Universe;27using Do.Universe;
28using Do.Platform;28using Do.Platform;
29using Mono.Unix;29using Mono.Addins;
3030
31/// <summary>31/// <summary>
32/// Action that immediately takes you to the first result provided by Google32/// Action that immediately takes you to the first result provided by Google
@@ -42,7 +42,7 @@
42 /// </value>42 /// </value>
43 public override string Name {43 public override string Name {
44 get { 44 get {
45 return Catalog.GetString ("I'm Feeling Lucky!"); 45 return AddinManager.CurrentLocalizer.GetString ("I'm Feeling Lucky!");
46 }46 }
47 }47 }
48 48
@@ -51,7 +51,7 @@
51 /// </value>51 /// </value>
52 public override string Description {52 public override string Description {
53 get { 53 get {
54 return Catalog.GetString ("Searches Google and takes you to the first result"); 54 return AddinManager.CurrentLocalizer.GetString ("Searches Google and takes you to the first result");
55 }55 }
56 }56 }
57 57
5858
=== modified file 'GoogleSearch/src/InlineGoogleSearch.cs'
--- GoogleSearch/src/InlineGoogleSearch.cs 2009-02-11 19:17:18 +0000
+++ GoogleSearch/src/InlineGoogleSearch.cs 2009-06-21 11:51:24 +0000
@@ -30,7 +30,7 @@
30using Do.Platform;30using Do.Platform;
31using Do.Platform.Linux;31using Do.Platform.Linux;
3232
33using Mono.Unix;33using Mono.Addins;
3434
35/// <summary>35/// <summary>
36/// Do plug-in that returns search results from google back to gnome-do for 36/// Do plug-in that returns search results from google back to gnome-do for
@@ -78,7 +78,7 @@
78 /// </value>78 /// </value>
79 public override string Name {79 public override string Name {
80 get { 80 get {
81 return Catalog.GetString ("Search Google"); 81 return AddinManager.CurrentLocalizer.GetString ("Search Google");
82 }82 }
83 }83 }
84 84
@@ -87,7 +87,7 @@
87 /// </value>87 /// </value>
88 public override string Description {88 public override string Description {
89 get { 89 get {
90 return Catalog.GetString ("Allows you to perform Google Searches from Do"); 90 return AddinManager.CurrentLocalizer.GetString ("Allows you to perform Google Searches from Do");
91 }91 }
92 }92 }
93 93
9494
=== modified file 'ImageShack/ImageShack.mdp'
--- ImageShack/ImageShack.mdp 2009-05-27 04:41:20 +0000
+++ ImageShack/ImageShack.mdp 2009-06-22 01:49:55 +0000
@@ -28,7 +28,6 @@
28 </Contents>28 </Contents>
29 <References>29 <References>
30 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />30 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
31 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
32 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />31 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
33 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />32 <ProjectReference type="Gac" localcopy="True" refto="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
34 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />33 <ProjectReference type="Gac" localcopy="True" refto="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
@@ -38,4 +37,4 @@
38 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.9.0.0, Culture=neutral" />37 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.9.0.0, Culture=neutral" />
39 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.9.0.0, Culture=neutral" />38 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.9.0.0, Culture=neutral" />
40 </References>39 </References>
41</Project>
42\ No newline at end of file40\ No newline at end of file
41</Project>
4342
=== modified file 'ImageShack/Makefile.am'
--- ImageShack/Makefile.am 2009-03-04 05:10:41 +0000
+++ ImageShack/Makefile.am 2009-06-22 01:49:05 +0000
@@ -16,7 +16,6 @@
16 Resources/ImageShack.addin.xml16 Resources/ImageShack.addin.xml
1717
18REFERENCES = \18REFERENCES = \
19 Mono.Posix \
20 System \19 System \
21 System.Core \20 System.Core \
22 System.Web \21 System.Web \
2322
=== renamed file 'ImageShack/Resources/ImageShack.addin.xml' => 'ImageShack/Resources/ImageShack.addin.xml.in'
--- ImageShack/Resources/ImageShack.addin.xml 2009-03-31 23:19:25 +0000
+++ ImageShack/Resources/ImageShack.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -12,6 +12,8 @@
12 <Runtime>12 <Runtime>
13 <Import assembly="ImageShack.dll"/>13 <Import assembly="ImageShack.dll"/>
14 </Runtime>14 </Runtime>
15
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
15 17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
1820
=== modified file 'ImageShack/gtk-gui/ImageShack.ImageShackConfig.cs'
--- ImageShack/gtk-gui/ImageShack.ImageShackConfig.cs 2009-01-06 05:31:45 +0000
+++ ImageShack/gtk-gui/ImageShack.ImageShackConfig.cs 2009-06-22 01:49:05 +0000
@@ -66,7 +66,7 @@
66 this.label2 = new Gtk.Label();66 this.label2 = new Gtk.Label();
67 this.label2.Name = "label2";67 this.label2.Name = "label2";
68 this.label2.Xalign = 0F;68 this.label2.Xalign = 0F;
69 this.label2.LabelProp = Mono.Unix.Catalog.GetString("If you have an ImageShack account, a registration code allows you to save images to the My Images sections of your account.\n\nPlease log-in to your ImageShack account before getting your registration code.");69 this.label2.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("If you have an ImageShack account, a registration code allows you to save images to the My Images sections of your account.\n\nPlease log-in to your ImageShack account before getting your registration code.");
70 this.label2.Wrap = true;70 this.label2.Wrap = true;
71 this.hbox1.Add(this.label2);71 this.hbox1.Add(this.label2);
72 Gtk.Box.BoxChild w1 = ((Gtk.Box.BoxChild)(this.hbox1[this.label2]));72 Gtk.Box.BoxChild w1 = ((Gtk.Box.BoxChild)(this.hbox1[this.label2]));
@@ -87,7 +87,7 @@
87 this.label1 = new Gtk.Label();87 this.label1 = new Gtk.Label();
88 this.label1.Name = "label1";88 this.label1.Name = "label1";
89 this.label1.Xalign = 0F;89 this.label1.Xalign = 0F;
90 this.label1.LabelProp = Mono.Unix.Catalog.GetString("_Registration Code");90 this.label1.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("_Registration Code");
91 this.label1.UseUnderline = true;91 this.label1.UseUnderline = true;
92 this.hbox2.Add(this.label1);92 this.hbox2.Add(this.label1);
93 Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.hbox2[this.label1]));93 Gtk.Box.BoxChild w3 = ((Gtk.Box.BoxChild)(this.hbox2[this.label1]));
@@ -121,7 +121,7 @@
121 this.RegistrationButton.Name = "RegistrationButton";121 this.RegistrationButton.Name = "RegistrationButton";
122 this.RegistrationButton.UseUnderline = true;122 this.RegistrationButton.UseUnderline = true;
123 this.RegistrationButton.Xalign = 0F;123 this.RegistrationButton.Xalign = 0F;
124 this.RegistrationButton.Label = Mono.Unix.Catalog.GetString("_Get Registration Code");124 this.RegistrationButton.Label = Mono.Addins.AddinManager.CurrentLocalizer.GetString("_Get Registration Code");
125 this.hbox3.Add(this.RegistrationButton);125 this.hbox3.Add(this.RegistrationButton);
126 Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.hbox3[this.RegistrationButton]));126 Gtk.Box.BoxChild w6 = ((Gtk.Box.BoxChild)(this.hbox3[this.RegistrationButton]));
127 w6.Position = 0;127 w6.Position = 0;
@@ -137,7 +137,7 @@
137 this.GtkLabel1 = new Gtk.Label();137 this.GtkLabel1 = new Gtk.Label();
138 this.GtkLabel1.Name = "GtkLabel1";138 this.GtkLabel1.Name = "GtkLabel1";
139 this.GtkLabel1.Xalign = 0F;139 this.GtkLabel1.Xalign = 0F;
140 this.GtkLabel1.LabelProp = Mono.Unix.Catalog.GetString("<b>Registration Code</b>");140 this.GtkLabel1.LabelProp = Mono.Addins.AddinManager.CurrentLocalizer.GetString("<b>Registration Code</b>");
141 this.GtkLabel1.UseMarkup = true;141 this.GtkLabel1.UseMarkup = true;
142 this.frame1.LabelWidget = this.GtkLabel1;142 this.frame1.LabelWidget = this.GtkLabel1;
143 this.vbox1.Add(this.frame1);143 this.vbox1.Add(this.frame1);
144144
=== modified file 'ImageShack/gtk-gui/gui.stetic'
--- ImageShack/gtk-gui/gui.stetic 2009-01-09 07:25:58 +0000
+++ ImageShack/gtk-gui/gui.stetic 2009-06-22 01:49:05 +0000
@@ -2,7 +2,7 @@
2<stetic-interface>2<stetic-interface>
3 <configuration>3 <configuration>
4 <images-root-path>..</images-root-path>4 <images-root-path>..</images-root-path>
5 <target-gtk-version>2.12</target-gtk-version>5 <target-gtk-version>2.12.9</target-gtk-version>
6 </configuration>6 </configuration>
7 <import>7 <import>
8 <widget-library name="../bin/Debug/ImageShack.dll" internal="true" />8 <widget-library name="../bin/Debug/ImageShack.dll" internal="true" />
99
=== modified file 'ImageShack/src/ImageShackAction.cs'
--- ImageShack/src/ImageShackAction.cs 2009-03-04 05:10:41 +0000
+++ ImageShack/src/ImageShackAction.cs 2009-06-21 11:51:24 +0000
@@ -27,7 +27,7 @@
27using System.Web;27using System.Web;
28using System.Xml.Linq;28using System.Xml.Linq;
2929
30using Mono.Unix;30using Mono.Addins;
3131
32using Do.Platform;32using Do.Platform;
33using Do.Platform.Linux;33using Do.Platform.Linux;
@@ -51,11 +51,11 @@
51 51
52 52
53 public override string Name {53 public override string Name {
54 get { return Catalog.GetString ("Upload to ImageShack"); }54 get { return AddinManager.CurrentLocalizer.GetString ("Upload to ImageShack"); }
55 }55 }
56 56
57 public override string Description {57 public override string Description {
58 get { return Catalog.GetString ("Uploads the image to ImageShack."); }58 get { return AddinManager.CurrentLocalizer.GetString ("Uploads the image to ImageShack."); }
59 }59 }
60 60
61 public override string Icon {61 public override string Icon {
@@ -99,7 +99,7 @@
99 99
100 private static bool FileIsValidForUpload (string file)100 private static bool FileIsValidForUpload (string file)
101 {101 {
102 string fileSizeError = Catalog.GetString ("File size exceeds ImageShack's 1.5MB limit.");102 string fileSizeError = AddinManager.CurrentLocalizer.GetString ("File size exceeds ImageShack's 1.5MB limit.");
103 103
104 FileInfo fi = new FileInfo(file);104 FileInfo fi = new FileInfo(file);
105 long fileSize = fi.Length; 105 long fileSize = fi.Length;
106106
=== modified file 'ImageShack/src/Notifications.cs'
--- ImageShack/src/Notifications.cs 2008-12-24 04:44:00 +0000
+++ ImageShack/src/Notifications.cs 2009-06-21 11:51:24 +0000
@@ -20,7 +20,7 @@
2020
21using System;21using System;
2222
23using Mono.Unix;23using Mono.Addins;
2424
25using Do.Platform;25using Do.Platform;
2626
@@ -28,8 +28,8 @@
28{28{
29 public class UploadNotification : Notification29 public class UploadNotification : Notification
30 {30 {
31 static readonly string message_title = Catalog.GetString ("ImageShack");31 static readonly string message_title = AddinManager.CurrentLocalizer.GetString ("ImageShack");
32 static readonly string upload_message = Catalog.GetString ("Do is uploading your image... Please wait a moment...");32 static readonly string upload_message = AddinManager.CurrentLocalizer.GetString ("Do is uploading your image... Please wait a moment...");
33 33
34 public UploadNotification (string icon) 34 public UploadNotification (string icon)
35 : base (message_title, upload_message, icon)35 : base (message_title, upload_message, icon)
@@ -39,8 +39,8 @@
39 39
40 public class GeneralErrorNotification : Notification40 public class GeneralErrorNotification : Notification
41 {41 {
42 static readonly string message_title = Catalog.GetString ("ImageShack");42 static readonly string message_title = AddinManager.CurrentLocalizer.GetString ("ImageShack");
43 static readonly string error_message = Catalog.GetString ("Unable to upload image to ImageShack at this time.");43 static readonly string error_message = AddinManager.CurrentLocalizer.GetString ("Unable to upload image to ImageShack at this time.");
44 44
45 public GeneralErrorNotification () 45 public GeneralErrorNotification ()
46 : base (message_title, error_message, "")46 : base (message_title, error_message, "")
@@ -50,7 +50,7 @@
50 50
51 public class InvalidFileNotification : Notification51 public class InvalidFileNotification : Notification
52 {52 {
53 static readonly string message_title = Catalog.GetString ("ImageShack");53 static readonly string message_title = AddinManager.CurrentLocalizer.GetString ("ImageShack");
54 54
55 public InvalidFileNotification (string message) 55 public InvalidFileNotification (string message)
56 : base (message_title, message, "")56 : base (message_title, message, "")
5757
=== modified file 'JIRA/JIRA.mdp'
--- JIRA/JIRA.mdp 2009-01-09 08:10:40 +0000
+++ JIRA/JIRA.mdp 2009-06-22 01:49:55 +0000
@@ -33,7 +33,6 @@
33 </Contents>33 </Contents>
34 <References>34 <References>
35 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />35 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
36 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
37 <ProjectReference type="Gac" localcopy="True" refto="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />36 <ProjectReference type="Gac" localcopy="True" refto="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
38 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />37 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
39 <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />38 <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
@@ -45,4 +44,4 @@
45 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />44 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform.Linux, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
46 </References>45 </References>
47 <GtkDesignInfo generateGettext="False" />46 <GtkDesignInfo generateGettext="False" />
48</Project>
49\ No newline at end of file47\ No newline at end of file
48</Project>
5049
=== modified file 'JIRA/Makefile.am'
--- JIRA/Makefile.am 2009-01-09 07:45:01 +0000
+++ JIRA/Makefile.am 2009-06-21 11:51:24 +0000
@@ -22,7 +22,6 @@
22REFERENCES = \22REFERENCES = \
23 System \23 System \
24 System.Core \24 System.Core \
25 Mono.Posix \
26 System.Web.Services \25 System.Web.Services \
27 System.Xml \26 System.Xml \
28 $(DO_PLATFORM_LIBS) \27 $(DO_PLATFORM_LIBS) \
2928
=== renamed file 'JIRA/Resources/JIRA.addin.xml' => 'JIRA/Resources/JIRA.addin.xml.in'
--- JIRA/Resources/JIRA.addin.xml 2009-03-31 23:19:25 +0000
+++ JIRA/Resources/JIRA.addin.xml.in 2009-06-21 11:51:24 +0000
@@ -13,6 +13,8 @@
13 <Import assembly="JIRA.dll"/>13 <Import assembly="JIRA.dll"/>
14 </Runtime>14 </Runtime>
1515
16 <Localizer type="Gettext" catalog="gnome-do-plugins" location="@expanded_datadir@/locale" />
17
16 <Dependencies>18 <Dependencies>
17 <Addin id="Universe" version="1.0" />19 <Addin id="Universe" version="1.0" />
18 </Dependencies>20 </Dependencies>
1921
=== modified file 'Launchpad/Launchpad.mdp'
--- Launchpad/Launchpad.mdp 2009-02-28 16:16:48 +0000
+++ Launchpad/Launchpad.mdp 2009-06-22 01:49:55 +0000
@@ -31,10 +31,9 @@
31 </Contents>31 </Contents>
32 <References>32 <References>
33 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />33 <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
34 <ProjectReference type="Gac" localcopy="True" refto="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
35 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />34 <ProjectReference type="Gac" localcopy="True" refto="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
36 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />35 <ProjectReference type="Gac" localcopy="True" refto="Do.Universe, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
37 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />36 <ProjectReference type="Gac" localcopy="True" refto="Do.Platform, Version=0.8.0.0, Culture=neutral, PublicKeyToken=null" />
38 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />37 <ProjectReference type="Gac" localcopy="True" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
39 </References>38 </References>
40</Project>
41\ No newline at end of file39\ No newline at end of file
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches