plugin name translations

This commit is contained in:
Marcos Pinto 2007-11-22 00:02:06 +00:00
commit 22317356c5
17 changed files with 373 additions and 267 deletions

View file

@ -3,7 +3,7 @@
# Distributed under the same terms as Deluge # Distributed under the same terms as Deluge
## ##
plugin_name = _("Blocklist Importer") plugin_name = "Blocklist Importer"
plugin_author = "Steve 'Tarka' Smith" plugin_author = "Steve 'Tarka' Smith"
plugin_version = "0.4" plugin_version = "0.4"
plugin_description = _(""" plugin_description = _("""

View file

@ -16,7 +16,7 @@
### Initialization ### ### Initialization ###
plugin_name = _("Desired Ratio") plugin_name = "Desired Ratio"
plugin_author = "Andrew Resch" plugin_author = "Andrew Resch"
plugin_version = "0.1" plugin_version = "0.1"
plugin_description = _("Set the desired ratio for a torrent.") plugin_description = _("Set the desired ratio for a torrent.")

View file

@ -16,7 +16,7 @@
### Initialization ### ### Initialization ###
plugin_name = _("Event Logging") plugin_name = "Event Logging"
plugin_author = "Micah Bucy" plugin_author = "Micah Bucy"
plugin_version = "0.2" plugin_version = "0.2"
plugin_description = _(""" plugin_description = _("""

View file

@ -16,7 +16,7 @@
### Initialization ### ### Initialization ###
plugin_name = _("Extra Stats") plugin_name = "Extra Stats"
plugin_author = "Micah Bucy" plugin_author = "Micah Bucy"
plugin_version = "0.1" plugin_version = "0.1"
plugin_description = _(""" plugin_description = _("""

View file

@ -16,7 +16,7 @@
### Initialization ### ### Initialization ###
plugin_name = _("Move Torrent") plugin_name = "Move Torrent"
plugin_author = "Marcos Pinto" plugin_author = "Marcos Pinto"
plugin_version = "0.2" plugin_version = "0.2"
plugin_description = _("This plugin allows users to move the torrent to a \ plugin_description = _("This plugin allows users to move the torrent to a \

View file

@ -30,9 +30,9 @@
# this exception statement from your version. If you delete this exception # this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here. # statement from all source files in the program, then also delete it here.
plugin_name = _("Network Activity Graph") plugin_name = "Network Activity Graph"
plugin_author = "Alon Zakai, Zach Tibbitts" plugin_author = "Alon Zakai, Zach Tibbitts, Cinar Sahin"
plugin_version = "0.2" plugin_version = "0.2.1"
plugin_description = _("Network Activity Graph plugin\n\nWritten by Kripkenstein") plugin_description = _("Network Activity Graph plugin\n\nWritten by Kripkenstein")
@ -134,6 +134,11 @@ class NetworkGraph:
else: else:
self.glade.get_widget("Line_Scale").get_adjustment().set_value(2); self.glade.get_widget("Line_Scale").get_adjustment().set_value(2);
if (self.config.get("length") > 59) & (self.config.get("length") < 3601):
self.glade.get_widget("History_Scale").get_adjustment().set_value(self.config.get("length"))
else:
self.glade_get_widget("History_Scale").get_adjustment().set_value(60);
if self.config.get("colors_set"): if self.config.get("colors_set"):
dl_color = self.config.get("down_line_color") dl_color = self.config.get("down_line_color")
df_color = self.config.get("down_fill_color") df_color = self.config.get("down_fill_color")
@ -177,6 +182,7 @@ class NetworkGraph:
self.glade.get_widget("Upload_Fill").set_color(gtk.gdk.Color(21627,21627,65535)) self.glade.get_widget("Upload_Fill").set_color(gtk.gdk.Color(21627,21627,65535))
self.glade.get_widget("Upload_Fill").set_alpha(32768) self.glade.get_widget("Upload_Fill").set_alpha(32768)
self.glade.get_widget("Line_Scale").get_adjustment().set_value(4); self.glade.get_widget("Line_Scale").get_adjustment().set_value(4);
self.glade.get_widget("History_Scale").get_adjustment().set_value(60);
self.glade.get_widget("Mean_Speed_Check").set_active(True) self.glade.get_widget("Mean_Speed_Check").set_active(True)
self.glade.get_widget("Max_Speed_Check").set_active(False) self.glade.get_widget("Max_Speed_Check").set_active(False)
self.glade.get_widget("Legend_Check").set_active(True) self.glade.get_widget("Legend_Check").set_active(True)
@ -244,6 +250,11 @@ class NetworkGraph:
else: else:
self.tab_graph.line_size = 4 self.tab_graph.line_size = 4
if (self.config.get("length") > 59) & (self.config.get("length") < 3601):
self.tab_graph.length = self.config.get("length")
else:
self.tab_graph.length = 60
if self.config.get("mean_selected"): if self.config.get("mean_selected"):
self.tab_graph.enable_mean() self.tab_graph.enable_mean()
else: else:
@ -270,6 +281,7 @@ class NetworkGraph:
self.tab_graph.enable_mean() self.tab_graph.enable_mean()
self.tab_graph.enable_legend() self.tab_graph.enable_legend()
self.tab_graph.line_size = 4 self.tab_graph.line_size = 4
self.tab_graph.length = 60
def reset_download(self,src): def reset_download(self,src):
self.glade.get_widget("Download_Line_Check").set_active(True) self.glade.get_widget("Download_Line_Check").set_active(True)
@ -316,6 +328,7 @@ class NetworkGraph:
self.config.set("colors_set",True) self.config.set("colors_set",True)
self.config.set("line_size",self.glade.get_widget("Line_Scale").get_adjustment().get_value()) self.config.set("line_size",self.glade.get_widget("Line_Scale").get_adjustment().get_value())
self.config.set("length",self.glade.get_widget("History_Scale").get_adjustment().get_value())
self.config.set("mean_selected",self.glade.get_widget("Mean_Speed_Check").get_active()) self.config.set("mean_selected",self.glade.get_widget("Mean_Speed_Check").get_active())
self.config.set("max_selected",self.glade.get_widget("Max_Speed_Check").get_active()) self.config.set("max_selected",self.glade.get_widget("Max_Speed_Check").get_active())
self.config.set("legend_selected",self.glade.get_widget("Legend_Check").get_active()) self.config.set("legend_selected",self.glade.get_widget("Legend_Check").get_active())

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE glade-interface SYSTEM "glade-2.0.dtd"> <!DOCTYPE glade-interface SYSTEM "glade-2.0.dtd">
<!--Generated with glade3 3.2.0 on Thu Aug 9 02:38:25 2007 by root@chris-laptop--> <!--Generated with glade3 3.4.0 on Tue Nov 20 13:54:57 2007 -->
<glade-interface> <glade-interface>
<widget class="GtkDialog" id="dialog"> <widget class="GtkDialog" id="dialog">
<property name="border_width">5</property> <property name="border_width">5</property>
@ -16,7 +16,7 @@
<widget class="GtkTable" id="table"> <widget class="GtkTable" id="table">
<property name="visible">True</property> <property name="visible">True</property>
<property name="events"></property> <property name="events"></property>
<property name="n_rows">9</property> <property name="n_rows">10</property>
<property name="n_columns">7</property> <property name="n_columns">7</property>
<property name="column_spacing">4</property> <property name="column_spacing">4</property>
<child> <child>
@ -24,58 +24,27 @@
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="can_focus">True</property>
<property name="label" translatable="yes">Show Legend</property> <property name="label" translatable="yes">Show Legend</property>
<property name="response_id">0</property>
<property name="draw_indicator">True</property> <property name="draw_indicator">True</property>
</widget> </widget>
<packing> <packing>
<property name="right_attach">7</property> <property name="right_attach">7</property>
<property name="top_attach">8</property> <property name="top_attach">9</property>
<property name="bottom_attach">9</property> <property name="bottom_attach">10</property>
<property name="x_options">GTK_FILL</property> <property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property> <property name="y_options">GTK_FILL</property>
</packing> </packing>
</child> </child>
<child> <child>
<widget class="GtkHSeparator" id="hseparator5"> <widget class="GtkButton" id="Reset_Upload">
<property name="width_request">20</property>
<property name="visible">True</property>
<property name="events"></property>
</widget>
<packing>
<property name="left_attach">5</property>
<property name="right_attach">6</property>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property>
<property name="x_padding">10</property>
</packing>
</child>
<child>
<widget class="GtkHSeparator" id="hseparator4">
<property name="width_request">20</property>
<property name="visible">True</property>
<property name="events"></property>
</widget>
<packing>
<property name="left_attach">5</property>
<property name="right_attach">6</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property>
<property name="x_padding">10</property>
</packing>
</child>
<child>
<widget class="GtkButton" id="Reset_Download">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="can_focus">True</property>
<property name="receives_default">True</property> <property name="receives_default">True</property>
<property name="tooltip" translatable="yes">Reset colors to their defaults</property> <property name="tooltip" translatable="yes">Reset colors to their defaults</property>
<property name="xalign">1</property> <property name="response_id">0</property>
<signal name="released" handler="on_Reset_Download_released"/> <signal name="released" handler="on_Reset_Upload_released"/>
<child> <child>
<widget class="GtkImage" id="image1"> <widget class="GtkImage" id="image3">
<property name="visible">True</property> <property name="visible">True</property>
<property name="stock">gtk-clear</property> <property name="stock">gtk-clear</property>
</widget> </widget>
@ -84,95 +53,18 @@
<packing> <packing>
<property name="left_attach">6</property> <property name="left_attach">6</property>
<property name="right_attach">7</property> <property name="right_attach">7</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options"></property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkHSeparator" id="hseparator3">
<property name="width_request">20</property>
<property name="visible">True</property>
<property name="events"></property>
</widget>
<packing>
<property name="left_attach">2</property>
<property name="right_attach">3</property>
<property name="top_attach">3</property> <property name="top_attach">3</property>
<property name="bottom_attach">4</property> <property name="bottom_attach">4</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property>
<property name="x_padding">10</property>
</packing>
</child>
<child>
<widget class="GtkHSeparator" id="hseparator1">
<property name="width_request">20</property>
<property name="visible">True</property>
<property name="events"></property>
</widget>
<packing>
<property name="left_attach">2</property>
<property name="right_attach">3</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property>
<property name="x_padding">10</property>
</packing>
</child>
<child>
<widget class="GtkLabel" id="label1">
<property name="visible">True</property>
<property name="label" translatable="yes">Line Size</property>
</widget>
<packing>
<property name="right_attach">2</property>
<property name="top_attach">5</property>
<property name="bottom_attach">6</property>
<property name="x_options"></property> <property name="x_options"></property>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
<child>
<widget class="GtkHScale" id="Line_Scale">
<property name="visible">True</property>
<property name="adjustment">4 1 5 0 0 0</property>
<property name="digits">0</property>
<property name="value_pos">GTK_POS_RIGHT</property>
</widget>
<packing>
<property name="left_attach">2</property>
<property name="right_attach">7</property>
<property name="top_attach">5</property>
<property name="bottom_attach">6</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options"></property> <property name="y_options"></property>
</packing> </packing>
</child> </child>
<child> <child>
<widget class="GtkLabel" id="Misc_Label"> <widget class="GtkCheckButton" id="Max_Speed_Check">
<property name="height_request">30</property>
<property name="visible">True</property>
<property name="xalign">0</property>
<property name="yalign">1</property>
<property name="label" translatable="yes">&lt;b&gt;Misc&lt;/b&gt;</property>
<property name="use_markup">True</property>
</widget>
<packing>
<property name="right_attach">7</property>
<property name="top_attach">4</property>
<property name="bottom_attach">5</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
<child>
<widget class="GtkCheckButton" id="Mean_Speed_Check">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="can_focus">True</property>
<property name="label" translatable="yes">Show Mean Speed</property> <property name="label" translatable="yes">Show Max Speed</property>
<property name="response_id">0</property>
<property name="draw_indicator">True</property> <property name="draw_indicator">True</property>
</widget> </widget>
<packing> <packing>
@ -184,122 +76,34 @@
</packing> </packing>
</child> </child>
<child> <child>
<widget class="GtkColorButton" id="Upload_Fill"> <widget class="GtkLabel" id="Download_Label">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="xalign">0</property>
<property name="receives_default">True</property> <property name="yalign">1</property>
<property name="use_alpha">True</property> <property name="label" translatable="yes">&lt;b&gt;Download&lt;/b&gt;</property>
<property name="color">#54545454ffff</property> <property name="use_markup">True</property>
<property name="alpha">32768</property>
</widget> </widget>
<packing> <packing>
<property name="left_attach">4</property> <property name="right_attach">7</property>
<property name="right_attach">5</property> <property name="x_options">GTK_FILL</property>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options"></property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkCheckButton" id="Upload_Fill_Check">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="label" translatable="yes">Fill</property>
<property name="draw_indicator">True</property>
</widget>
<packing>
<property name="left_attach">3</property>
<property name="right_attach">4</property>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options"></property>
<property name="y_options">GTK_FILL</property> <property name="y_options">GTK_FILL</property>
</packing> </packing>
</child> </child>
<child> <child>
<widget class="GtkColorButton" id="Upload_Line"> <widget class="GtkCheckButton" id="Download_Line_Check">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="use_alpha">True</property>
<property name="color">#00000000ffff</property>
<property name="alpha">49153</property>
</widget>
<packing>
<property name="left_attach">1</property>
<property name="right_attach">2</property>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options"></property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkCheckButton" id="Upload_Line_Check">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="can_focus">True</property>
<property name="label" translatable="yes">Line</property> <property name="label" translatable="yes">Line</property>
<property name="response_id">0</property>
<property name="draw_indicator">True</property> <property name="draw_indicator">True</property>
</widget> </widget>
<packing> <packing>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options"></property>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
<child>
<widget class="GtkColorButton" id="Download_Fill">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="use_alpha">True</property>
<property name="color">#8080ffff8080</property>
</widget>
<packing>
<property name="left_attach">4</property>
<property name="right_attach">5</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options"></property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkCheckButton" id="Download_Fill_Check">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="label" translatable="yes">Fill</property>
<property name="xalign">1</property>
<property name="draw_indicator">True</property>
</widget>
<packing>
<property name="left_attach">3</property>
<property name="right_attach">4</property>
<property name="top_attach">1</property> <property name="top_attach">1</property>
<property name="bottom_attach">2</property> <property name="bottom_attach">2</property>
<property name="x_options"></property> <property name="x_options"></property>
<property name="y_options">GTK_FILL</property> <property name="y_options">GTK_FILL</property>
</packing> </packing>
</child> </child>
<child>
<widget class="GtkColorButton" id="Download_Line">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="use_alpha">True</property>
<property name="color">#0000c0c00000</property>
</widget>
<packing>
<property name="left_attach">1</property>
<property name="right_attach">2</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options"></property>
<property name="y_options"></property>
</packing>
</child>
<child> <child>
<widget class="GtkLabel" id="Upload_Label"> <widget class="GtkLabel" id="Upload_Label">
<property name="height_request">30</property> <property name="height_request">30</property>
@ -319,13 +123,35 @@
</packing> </packing>
</child> </child>
<child> <child>
<widget class="GtkCheckButton" id="Download_Line_Check"> <widget class="GtkColorButton" id="Download_Line">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="can_focus">True</property>
<property name="label" translatable="yes">Line</property> <property name="receives_default">True</property>
<property name="response_id">0</property>
<property name="use_alpha">True</property>
<property name="color">#0000c0c00000</property>
</widget>
<packing>
<property name="left_attach">1</property>
<property name="right_attach">2</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options"></property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkCheckButton" id="Download_Fill_Check">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="label" translatable="yes">Fill</property>
<property name="xalign">1</property>
<property name="response_id">0</property>
<property name="draw_indicator">True</property> <property name="draw_indicator">True</property>
</widget> </widget>
<packing> <packing>
<property name="left_attach">3</property>
<property name="right_attach">4</property>
<property name="top_attach">1</property> <property name="top_attach">1</property>
<property name="bottom_attach">2</property> <property name="bottom_attach">2</property>
<property name="x_options"></property> <property name="x_options"></property>
@ -333,43 +159,228 @@
</packing> </packing>
</child> </child>
<child> <child>
<widget class="GtkLabel" id="Download_Label"> <widget class="GtkColorButton" id="Download_Fill">
<property name="visible">True</property> <property name="visible">True</property>
<property name="xalign">0</property> <property name="can_focus">True</property>
<property name="yalign">1</property> <property name="receives_default">True</property>
<property name="label" translatable="yes">&lt;b&gt;Download&lt;/b&gt;</property> <property name="response_id">0</property>
<property name="use_markup">True</property> <property name="use_alpha">True</property>
<property name="color">#8080ffff8080</property>
</widget> </widget>
<packing> <packing>
<property name="right_attach">7</property> <property name="left_attach">4</property>
<property name="x_options">GTK_FILL</property> <property name="right_attach">5</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options"></property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkCheckButton" id="Upload_Line_Check">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="label" translatable="yes">Line</property>
<property name="response_id">0</property>
<property name="draw_indicator">True</property>
</widget>
<packing>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options"></property>
<property name="y_options">GTK_FILL</property> <property name="y_options">GTK_FILL</property>
</packing> </packing>
</child> </child>
<child> <child>
<widget class="GtkCheckButton" id="Max_Speed_Check"> <widget class="GtkColorButton" id="Upload_Line">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="can_focus">True</property>
<property name="label" translatable="yes">Show Max Speed</property> <property name="receives_default">True</property>
<property name="response_id">0</property>
<property name="use_alpha">True</property>
<property name="color">#00000000ffff</property>
<property name="alpha">49153</property>
</widget>
<packing>
<property name="left_attach">1</property>
<property name="right_attach">2</property>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options"></property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkCheckButton" id="Upload_Fill_Check">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="label" translatable="yes">Fill</property>
<property name="response_id">0</property>
<property name="draw_indicator">True</property>
</widget>
<packing>
<property name="left_attach">3</property>
<property name="right_attach">4</property>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options"></property>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
<child>
<widget class="GtkColorButton" id="Upload_Fill">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="response_id">0</property>
<property name="use_alpha">True</property>
<property name="color">#54545454ffff</property>
<property name="alpha">32768</property>
</widget>
<packing>
<property name="left_attach">4</property>
<property name="right_attach">5</property>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options"></property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkCheckButton" id="Mean_Speed_Check">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="label" translatable="yes">Show Mean Speed</property>
<property name="response_id">0</property>
<property name="draw_indicator">True</property> <property name="draw_indicator">True</property>
</widget> </widget>
<packing> <packing>
<property name="right_attach">7</property> <property name="right_attach">7</property>
<property name="top_attach">6</property> <property name="top_attach">8</property>
<property name="bottom_attach">7</property> <property name="bottom_attach">9</property>
<property name="x_options">GTK_FILL</property> <property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property> <property name="y_options">GTK_FILL</property>
</packing> </packing>
</child> </child>
<child> <child>
<widget class="GtkButton" id="Reset_Upload"> <widget class="GtkLabel" id="Misc_Label">
<property name="height_request">30</property>
<property name="visible">True</property>
<property name="xalign">0</property>
<property name="yalign">1</property>
<property name="label" translatable="yes">&lt;b&gt;Misc&lt;/b&gt;</property>
<property name="use_markup">True</property>
<property name="ellipsize">PANGO_ELLIPSIZE_START</property>
</widget>
<packing>
<property name="right_attach">7</property>
<property name="top_attach">4</property>
<property name="bottom_attach">5</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
<child>
<widget class="GtkHScale" id="History_Scale">
<property name="visible">True</property>
<property name="adjustment">60 60 3600 60 60 0</property>
<property name="digits">0</property>
<property name="value_pos">GTK_POS_RIGHT</property>
</widget>
<packing>
<property name="left_attach">2</property>
<property name="right_attach">7</property>
<property name="top_attach">5</property>
<property name="bottom_attach">6</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkLabel" id="label1">
<property name="visible">True</property>
<property name="label" translatable="yes">History (sec)</property>
</widget>
<packing>
<property name="right_attach">2</property>
<property name="top_attach">5</property>
<property name="bottom_attach">6</property>
<property name="x_options"></property>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
<child>
<widget class="GtkHScale" id="Line_Scale">
<property name="visible">True</property>
<property name="adjustment">4 1 5 0 0 0</property>
<property name="digits">0</property>
<property name="value_pos">GTK_POS_RIGHT</property>
</widget>
<packing>
<property name="left_attach">2</property>
<property name="right_attach">7</property>
<property name="top_attach">6</property>
<property name="bottom_attach">7</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkLabel" id="label1">
<property name="visible">True</property>
<property name="label" translatable="yes">Line Size</property>
</widget>
<packing>
<property name="right_attach">2</property>
<property name="top_attach">6</property>
<property name="bottom_attach">7</property>
<property name="x_options"></property>
<property name="y_options">GTK_FILL</property>
</packing>
</child>
<child>
<widget class="GtkHSeparator" id="hseparator1">
<property name="width_request">20</property>
<property name="visible">True</property>
<property name="events"></property>
</widget>
<packing>
<property name="left_attach">2</property>
<property name="right_attach">3</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property>
<property name="x_padding">10</property>
</packing>
</child>
<child>
<widget class="GtkHSeparator" id="hseparator3">
<property name="width_request">20</property>
<property name="visible">True</property>
<property name="events"></property>
</widget>
<packing>
<property name="left_attach">2</property>
<property name="right_attach">3</property>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property>
<property name="x_padding">10</property>
</packing>
</child>
<child>
<widget class="GtkButton" id="Reset_Download">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="can_focus">True</property>
<property name="receives_default">True</property> <property name="receives_default">True</property>
<property name="tooltip" translatable="yes">Reset colors to their defaults</property> <property name="tooltip" translatable="yes">Reset colors to their defaults</property>
<signal name="released" handler="on_Reset_Upload_released"/> <property name="xalign">1</property>
<property name="response_id">0</property>
<signal name="released" handler="on_Reset_Download_released"/>
<child> <child>
<widget class="GtkImage" id="image3"> <widget class="GtkImage" id="image1">
<property name="visible">True</property> <property name="visible">True</property>
<property name="stock">gtk-clear</property> <property name="stock">gtk-clear</property>
</widget> </widget>
@ -378,12 +389,44 @@
<packing> <packing>
<property name="left_attach">6</property> <property name="left_attach">6</property>
<property name="right_attach">7</property> <property name="right_attach">7</property>
<property name="top_attach">3</property> <property name="top_attach">1</property>
<property name="bottom_attach">4</property> <property name="bottom_attach">2</property>
<property name="x_options"></property> <property name="x_options"></property>
<property name="y_options"></property> <property name="y_options"></property>
</packing> </packing>
</child> </child>
<child>
<widget class="GtkHSeparator" id="hseparator4">
<property name="width_request">20</property>
<property name="visible">True</property>
<property name="events"></property>
</widget>
<packing>
<property name="left_attach">5</property>
<property name="right_attach">6</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property>
<property name="x_padding">10</property>
</packing>
</child>
<child>
<widget class="GtkHSeparator" id="hseparator5">
<property name="width_request">20</property>
<property name="visible">True</property>
<property name="events"></property>
</widget>
<packing>
<property name="left_attach">5</property>
<property name="right_attach">6</property>
<property name="top_attach">3</property>
<property name="bottom_attach">4</property>
<property name="x_options">GTK_FILL</property>
<property name="y_options">GTK_FILL</property>
<property name="x_padding">10</property>
</packing>
</child>
</widget> </widget>
<packing> <packing>
<property name="expand">False</property> <property name="expand">False</property>
@ -401,6 +444,7 @@
<property name="visible">True</property> <property name="visible">True</property>
<property name="label">gtk-cancel</property> <property name="label">gtk-cancel</property>
<property name="use_stock">True</property> <property name="use_stock">True</property>
<property name="response_id">0</property>
<signal name="pressed" handler="on_button_cancel_pressed"/> <signal name="pressed" handler="on_button_cancel_pressed"/>
</widget> </widget>
</child> </child>

View file

@ -30,7 +30,7 @@
# this exception statement from your version. If you delete this exception # this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here. # statement from all source files in the program, then also delete it here.
plugin_name = _("Network Health Monitor") plugin_name = "Network Health Monitor"
plugin_author = "Alon Zakai, Zach Tibbitts" plugin_author = "Alon Zakai, Zach Tibbitts"
plugin_version = "0.2" plugin_version = "0.2"
plugin_description = _("Network Health Monitor plugin\n\nWritten by Kripkenstein") plugin_description = _("Network Health Monitor plugin\n\nWritten by Kripkenstein")

View file

@ -1,3 +1,30 @@
# Copyright (C) Marcos Pinto 2007 <markybob@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, write to:
# The Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor
# Boston, MA 02110-1301, USA.
#
# In addition, as a special exception, the copyright holders give
# permission to link the code of portions of this program with the OpenSSL
# library.
# You must obey the GNU General Public License in all respects for all of
# the code used other than OpenSSL. If you modify file(s) with this
# exception, you may extend this exception to your version of the file(s),
# but you are not obligated to do so. If you do not wish to do so, delete
# this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here.
# The name of the plugin # The name of the plugin
plugin_name = "Scheduler" plugin_name = "Scheduler"

View file

@ -14,7 +14,7 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
plugin_name = _("Speed Limiter") plugin_name = "Speed Limiter"
plugin_author = "Marcos Pinto" plugin_author = "Marcos Pinto"
plugin_version = "0.1" plugin_version = "0.1"
plugin_description = _("Set the desired speed limit per torrent.") plugin_description = _("Set the desired speed limit per torrent.")

View file

@ -16,7 +16,7 @@
### Initialization ### ### Initialization ###
plugin_name = _("Torrent Creator") plugin_name = "Torrent Creator"
plugin_author = "Andrew Resch" plugin_author = "Andrew Resch"
plugin_version = "0.1" plugin_version = "0.1"
plugin_description = _("A torrent creator plugin") plugin_description = _("A torrent creator plugin")

View file

@ -1,4 +1,4 @@
# Copyright (C) 2007 # Copyright (C) Marcos Pinto 2007 <markybob@gmail.com>
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@ -9,14 +9,26 @@
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program. If not, write to:
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. # The Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor
# Boston, MA 02110-1301, USA.
#
# In addition, as a special exception, the copyright holders give
# permission to link the code of portions of this program with the OpenSSL
# library.
# You must obey the GNU General Public License in all respects for all of
# the code used other than OpenSSL. If you modify file(s) with this
# exception, you may extend this exception to your version of the file(s),
# but you are not obligated to do so. If you do not wish to do so, delete
# this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here.
### Initialization ### ### Initialization ###
plugin_name = _("Torrent Files") plugin_name = "Torrent Files"
plugin_author = "Deluge" plugin_author = "Deluge"
plugin_version = "0.2" plugin_version = "0.2"
plugin_description = _(""" plugin_description = _("""

View file

@ -16,7 +16,7 @@
### Initialization ### ### Initialization ###
plugin_name = _("Torrent Notification") plugin_name = "Torrent Notification"
plugin_author = "Micah Bucy" plugin_author = "Micah Bucy"
plugin_version = "0.1" plugin_version = "0.1"
plugin_description = _("Make tray icon blink when torrent finishes downloading \ plugin_description = _("Make tray icon blink when torrent finishes downloading \

View file

@ -1,4 +1,4 @@
# Copyright (C) 2007 # Copyright (C) Marcos Pinto 2007 <markybob@gmail.com>
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@ -9,14 +9,26 @@
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program. If not, write to:
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. # The Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor
# Boston, MA 02110-1301, USA.
#
# In addition, as a special exception, the copyright holders give
# permission to link the code of portions of this program with the OpenSSL
# library.
# You must obey the GNU General Public License in all respects for all of
# the code used other than OpenSSL. If you modify file(s) with this
# exception, you may extend this exception to your version of the file(s),
# but you are not obligated to do so. If you do not wish to do so, delete
# this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here.
### Initialization ### ### Initialization ###
plugin_name = _("Torrent Peers") plugin_name = "Torrent Peers"
plugin_author = "Deluge" plugin_author = "Deluge"
plugin_version = "0.2" plugin_version = "0.2"
plugin_description = _(""" plugin_description = _("""

View file

@ -30,7 +30,7 @@
# this exception statement from your version. If you delete this exception # this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here. # statement from all source files in the program, then also delete it here.
plugin_name = _("Torrent Search") plugin_name = "Torrent Search"
plugin_author = "Zach Tibbitts" plugin_author = "Zach Tibbitts"
plugin_version = "0.5" plugin_version = "0.5"
plugin_description = _("A searchbar for torrent search engines") plugin_description = _("A searchbar for torrent search engines")

View file

@ -16,7 +16,7 @@
### Initialization ### ### Initialization ###
plugin_name = _("Web Seed") plugin_name = "Web Seed"
plugin_author = "Marcos Pinto" plugin_author = "Marcos Pinto"
plugin_version = "0.1" plugin_version = "0.1"
plugin_description = _("This plugin allows users to add web seeds to their \ plugin_description = _("This plugin allows users to add web seeds to their \

View file

@ -31,24 +31,22 @@
# statement from all source files in the program, then also delete it here. # statement from all source files in the program, then also delete it here.
import gettext import gettext
import gtk.glade
import locale import locale
import os import os
import common import common
APP = 'deluge' APP = 'deluge'
DIR = os.path.join(common.INSTALL_PREFIX, 'share', 'locale') DIR = os.path.join(common.INSTALL_PREFIX, 'share', 'locale')
if not common.windows_check(): try:
locale.setlocale(locale.LC_ALL, '')
except:
try: try:
locale.setlocale(locale.LC_MESSAGES, '') locale.setlocale(locale.LC_MESSAGES, '')
locale.bindtextdomain(APP, DIR)
locale.textdomain(APP)
except: except:
pass pass
else: gtk.glade.bindtextdomain(APP, DIR)
import gtk.glade gtk.glade.textdomain(APP)
locale.setlocale(locale.LC_ALL, '')
gtk.glade.bindtextdomain(APP, DIR)
gtk.glade.textdomain(APP)
gettext.bindtextdomain(APP, DIR) gettext.bindtextdomain(APP, DIR)
gettext.textdomain(APP) gettext.textdomain(APP)
gettext.install(APP, DIR, unicode=1) gettext.install(APP, DIR, unicode=1)