Changeset 3997
- Timestamp:
- Mar 20, 2017, 12:22:14 PM (4 years ago)
- Location:
- lliurex-gdrive/trunk/fuentes
- Files:
-
- 6 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-gdrive/trunk/fuentes/debian/control
r3993 r3997 27 27 Package: lliurex-gdrive-gui 28 28 Architecture: all 29 Depends: ${shlibs:Depends}, ${misc:Depends}, python, lliurex-gdrive-core (= ${binary:Version}), lliurex-gdrive-indicator (= ${binary:Version}), python-psutil 29 Depends: ${shlibs:Depends}, ${misc:Depends}, python, lliurex-gdrive-core (= ${binary:Version}), python-psutil 30 Recommends: lliurex-gdrive-indicator (= ${binary:Version}) 30 31 Description: Graphical interface to google drive 31 32 Interface to manager google drive accounts. … … 33 34 Package: lliurex-gdrive-indicator 34 35 Architecture: all 35 Depends: ${shlibs:Depends}, ${misc:Depends}, lliurex-gdrive-core (= ${binary:Version}), python,36 Depends: ${shlibs:Depends}, ${misc:Depends}, lliurex-gdrive-core (= ${binary:Version}), lliurex-gdrive-gui (= ${binary:Version}) python, 36 37 Description: Indicator menu to lliurex-google-drive 37 38 Indicator menu to lliurex-google-drive. -
lliurex-gdrive/trunk/fuentes/lliurex-gdrive-gui.install/usr/share/lliurex-gdrive/LliurexGdrive.py
r3993 r3997 6 6 7 7 8 import gettext 8 9 9 import signal 10 10 import os … … 14 14 15 15 signal.signal(signal.SIGINT, signal.SIG_DFL) 16 _=gettext.gettext17 16 17 import gettext 18 gettext.textdomain('lliurex-gdrive') 19 _ = gettext.gettext 18 20 19 21 RSRC="/usr/share/lliurex-gdrive/" … … 36 38 37 39 builder=Gtk.Builder() 40 builder.set_translation_domain('lliurex-gdrive') 38 41 ui_path=RSRC + "rsrc/lliurex-gdrive.ui" 39 42 builder.add_from_file(ui_path) 43 40 44 41 45 self.main_window=builder.get_object("main_window") -
lliurex-gdrive/trunk/fuentes/lliurex-gdrive-gui.install/usr/share/lliurex-gdrive/ProfileBox.py
r3994 r3997 47 47 48 48 builder=Gtk.Builder() 49 builder.set_translation_domain('lliurex-gdrive') 49 50 ui_path=RSRC + "/rsrc/lliurex-gdrive.ui" 50 51 builder.add_from_file(ui_path) -
lliurex-gdrive/trunk/fuentes/lliurex-gdrive-gui.install/usr/share/lliurex-gdrive/rsrc/lliurex-gdrive.ui
r3983 r3997 110 110 <property name="height_request">300</property> 111 111 <property name="can_focus">False</property> 112 <property name="resizable">False</property> 112 113 <property name="modal">True</property> 113 114 <property name="window_position">center</property> … … 138 139 <property name="halign">start</property> 139 140 <property name="margin_left">5</property> 140 <property name="label" translatable="yes">Profile: </property>141 <property name="label" translatable="yes">Profile: </property> 141 142 </object> 142 143 <packing> … … 153 154 <property name="margin_top">5</property> 154 155 <property name="margin_bottom">5</property> 155 <property name="label" translatable="yes">E-mail: </property>156 <property name="label" translatable="yes">E-mail: </property> 156 157 </object> 157 158 <packing> … … 168 169 <property name="margin_top">5</property> 169 170 <property name="margin_bottom">5</property> 170 <property name="label" translatable="yes">MountPoint: </property>171 <property name="label" translatable="yes">MountPoint: </property> 171 172 </object> 172 173 <packing> … … 183 184 <property name="margin_top">5</property> 184 185 <property name="margin_bottom">5</property> 185 <property name="label" translatable="yes">Mount at login: </property>186 <property name="label" translatable="yes">Mount at login: </property> 186 187 </object> 187 188 <packing> -
lliurex-gdrive/trunk/fuentes/python-lliurex-gdrive/lliurex/lliurexgdrive/__init__.py
r3993 r3997 226 226 227 227 228 command='df -h | grep "google-drive-ocamlfuse" | grep ' +mountpoint 228 command='df -h | grep "google-drive-ocamlfuse" | grep ' +mountpoint+'$' 229 229 230 230 p=subprocess.Popen(command,shell=True,stdout=subprocess.PIPE)
Note: See TracChangeset
for help on using the changeset viewer.