Esempio n. 1
0
	def __init__(self):
		Action.__init__(self, _("Extract Here"))
		self.extensions_set = set((
			".rar", ".7z", ".zip", ".gz", ".tgz", ".tar", ".lzma", ".bz2",
			".tbz2", ".tzo", ".lzo", ".xz", ".ar", ".cbz", ".Z", ".taz",
			".lz", ".bz", ".tbz", ".lzh",
			))
	def __init__(self, name, object):
		self.name = name
		self.object = object
		self.data = {
			'type': 'unkwnon',
			'name': 'Unknown',
			'descr': 'Seems an action file ' + name + '.yaml is missed',
			'icon_name': 'system-run',
			'env': {},
			'rank': 0,
		}
		self.data.update(actions_cache.get_data (name))
		self.rank_adjust = self.data['rank']
		Action.__init__(self, self.data['name'])
Esempio n. 3
0
 def __init__(self):
     Action.__init__(self, _("Reply..."))
Esempio n. 4
0
	def __init__(self):
		Action.__init__(self, _('Compose Email in Gmail'))
Esempio n. 5
0
 def __init__(self):
     Action.__init__(self, _('Send Message'))
 def __init__(self):
     Action.__init__(self, name=_("Username"))
Esempio n. 7
0
	def __init__(self):
		Action.__init__(self, _("Save As..."))
Esempio n. 8
0
 def __init__(self):
     self.branch_filter = None
     Action.__init__(self, _('Change Branch'))
Esempio n. 9
0
 def __init__(self):
     Action.__init__(self, _('Commit All In Dir'))
Esempio n. 10
0
 def __init__(self):
     Action.__init__(self, _("Dismiss"))
Esempio n. 11
0
 def __init__(self):
     Action.__init__(self, _("Create Task"))
Esempio n. 12
0
 def __init__(self):
     Action.__init__(self, _("Delete"))
Esempio n. 13
0
 def __init__(self):
     Action.__init__(self, _("Mark Done"))
Esempio n. 14
0
 def __init__(self):
     Action.__init__(self, _("Open"))
Esempio n. 15
0
 def __init__(self, retweet_to_all=False):
     self._retweet_to_all = retweet_to_all
     name = _("Retweet") if retweet_to_all else _("Retweet To...")
     Action.__init__(self, name)
Esempio n. 16
0
 def __init__(self):
     Action.__init__(self, _("Send Private Message..."))
Esempio n. 17
0
	def __init__(self):
		Action.__init__(self, _("Dequeue"))
Esempio n. 18
0
 def __init__(self, name, method):
     Action.__init__(self, name)
     self.method = method
Esempio n. 19
0
	def __init__(self):
		Action.__init__(self, _('Start Session'))
Esempio n. 20
0
	def __init__(self):
		Action.__init__(self, _('Insert QuickNote into Zim'))
Esempio n. 21
0
 def __init__(self):
     Action.__init__(self, _('Create Branch'))
Esempio n. 22
0
	def __init__(self):
		Action.__init__(self, _('Open'))
Esempio n. 23
0
	def __init__(self):
		Action.__init__(self, _("Show Information"))
Esempio n. 24
0
	def __init__(self):
		Action.__init__(self, _('Create Subpage...'))
Esempio n. 25
0
 def __init__(self):
     Action.__init__(self, name=_("Remove"))
Esempio n. 26
0
	def __init__(self):
		Action.__init__(self, _('Create Zim Page'))
Esempio n. 27
0
 def __init__(self):
     Action.__init__(self, _("Google Search"))
Esempio n. 28
0
	def __init__(self):
		# TRANS: The user starts a program (command) and
		# TRANS: the text is written on stdin
		Action.__init__(self, _("Write to Command..."))
		self.post_result = False
Esempio n. 29
0
 def __init__(self):
     Action.__init__(self, _("Select in Kupfer"))
Esempio n. 30
0
	def __init__(self):
		Action.__init__(self, _("Run (Get Output)"))
Esempio n. 31
0
	def __init__(self):
		Action.__init__(self, _("DuckDuckGo Search"))
Esempio n. 32
0
 def __init__(self):
     Action.__init__(self, _("Send Message To..."))
Esempio n. 33
0
	def __init__(self):
		# TRANS: The user starts a program (command) and
		# TRANS: the text is written on stdin, and we
		# TRANS: present the output (stdout) to the user.
		Action.__init__(self, _("Filter through Command..."))
		self.post_result = True
Esempio n. 34
0
	def __init__(self):
		# TRANS: The user starts a program (command) and
		# TRANS: the text is written on stdin
		Action.__init__(self, _("Write to Command..."))
		self.post_result = False
Esempio n. 35
0
	def __init__(self):
		# TRANS: The user starts a program (command) and the text
		# TRANS: is an argument to the command
		Action.__init__(self, _("Pass to Command..."))
Esempio n. 36
0
	def __init__(self):
		# TRANS: The user starts a program (command) and
		# TRANS: the text is written on stdin, and we
		# TRANS: present the output (stdout) to the user.
		Action.__init__(self, _("Filter through Command..."))
		self.post_result = True
Esempio n. 37
0
	def __init__(self):
		Action.__init__(self, _("Play"))
Esempio n. 38
0
	def __init__(self):
		Action.__init__(self, _("Run (Get Output)"))
Esempio n. 39
0
	def __init__(self):
		Action.__init__(self, name=_("Connect"))
Esempio n. 40
0
	def __init__(self):
		# TRANS: The user starts a program (command) and the text
		# TRANS: is an argument to the command
		Action.__init__(self, _("Pass to Command..."))
Esempio n. 41
0
 def __init__(self):
     self.branch_filter = fil_remove_local
     Action.__init__(self, _('Push'))
Esempio n. 42
0
 def __init__(self):
     Action.__init__(self, _("Search With..."))
Esempio n. 43
0
 def __init__(self):
     Action.__init__(self, _('Commit'))
Esempio n. 44
0
 def __init__(self):
     Action.__init__(self, _("Search For..."))
Esempio n. 45
0
 def __init__(self):
     Action.__init__(self, _("Gitk"))
Esempio n. 46
0
 def __init__(self):
     Action.__init__(self, _("Rescan"))
Esempio n. 47
0
	def __init__(self):
		Action.__init__(self, _("Show Source Code"))
Esempio n. 48
0
 def __init__(self):
     Action.__init__(self, _("Copy"))
Esempio n. 49
0
 def __init__(self):
     Action.__init__(self, name=_("Add Key"))
Esempio n. 50
0
 def __init__(self):
     Action.__init__(self, _("Define"))
Esempio n. 51
0
	def __init__(self):
		Action.__init__(self, _("Calculate"))
Esempio n. 52
0
 def __init__(self):
     Action.__init__(self, _("Play"))
Esempio n. 53
0
 def __init__(self):
     Action.__init__(self, name=_("Update Twitter Status"))
Esempio n. 54
0
 def __init__(self):
     Action.__init__(self, _("Enqueue"))
Esempio n. 55
0
	def __init__(self):
		Action.__init__(self, _('Edit Contact in Gmail'))
Esempio n. 56
0
 def __init__(self):
     Action.__init__(self, _("Search in Tracker"))
Esempio n. 57
0
 def __init__(self):
     Action.__init__(self, _("Run (Discard Result)"))
Esempio n. 58
0
 def __init__(self):
     Action.__init__(self, _("Move To..."))
Esempio n. 59
0
 def __init__(self):
     Action.__init__(self, _("Run (Take Result)"))
Esempio n. 60
0
 def __init__(self):
     Action.__init__(self, _("Copy Content To clipboard"))