Beispiel #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'])
Beispiel #3
0
 def __init__(self):
     Action.__init__(self, _("Reply..."))
Beispiel #4
0
	def __init__(self):
		Action.__init__(self, _('Compose Email in Gmail'))
Beispiel #5
0
 def __init__(self):
     Action.__init__(self, _('Send Message'))
 def __init__(self):
     Action.__init__(self, name=_("Username"))
Beispiel #7
0
	def __init__(self):
		Action.__init__(self, _("Save As..."))
Beispiel #8
0
 def __init__(self):
     self.branch_filter = None
     Action.__init__(self, _('Change Branch'))
Beispiel #9
0
 def __init__(self):
     Action.__init__(self, _('Commit All In Dir'))
Beispiel #10
0
 def __init__(self):
     Action.__init__(self, _("Dismiss"))
Beispiel #11
0
 def __init__(self):
     Action.__init__(self, _("Create Task"))
Beispiel #12
0
 def __init__(self):
     Action.__init__(self, _("Delete"))
Beispiel #13
0
 def __init__(self):
     Action.__init__(self, _("Mark Done"))
Beispiel #14
0
 def __init__(self):
     Action.__init__(self, _("Open"))
Beispiel #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)
Beispiel #16
0
 def __init__(self):
     Action.__init__(self, _("Send Private Message..."))
Beispiel #17
0
	def __init__(self):
		Action.__init__(self, _("Dequeue"))
Beispiel #18
0
 def __init__(self, name, method):
     Action.__init__(self, name)
     self.method = method
Beispiel #19
0
	def __init__(self):
		Action.__init__(self, _('Start Session'))
Beispiel #20
0
	def __init__(self):
		Action.__init__(self, _('Insert QuickNote into Zim'))
Beispiel #21
0
 def __init__(self):
     Action.__init__(self, _('Create Branch'))
Beispiel #22
0
	def __init__(self):
		Action.__init__(self, _('Open'))
Beispiel #23
0
	def __init__(self):
		Action.__init__(self, _("Show Information"))
Beispiel #24
0
	def __init__(self):
		Action.__init__(self, _('Create Subpage...'))
 def __init__(self):
     Action.__init__(self, name=_("Remove"))
Beispiel #26
0
	def __init__(self):
		Action.__init__(self, _('Create Zim Page'))
Beispiel #27
0
 def __init__(self):
     Action.__init__(self, _("Google Search"))
Beispiel #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
Beispiel #29
0
 def __init__(self):
     Action.__init__(self, _("Select in Kupfer"))
Beispiel #30
0
	def __init__(self):
		Action.__init__(self, _("Run (Get Output)"))
Beispiel #31
0
	def __init__(self):
		Action.__init__(self, _("DuckDuckGo Search"))
Beispiel #32
0
 def __init__(self):
     Action.__init__(self, _("Send Message To..."))
Beispiel #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
Beispiel #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
Beispiel #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..."))
Beispiel #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
Beispiel #37
0
	def __init__(self):
		Action.__init__(self, _("Play"))
Beispiel #38
0
	def __init__(self):
		Action.__init__(self, _("Run (Get Output)"))
Beispiel #39
0
	def __init__(self):
		Action.__init__(self, name=_("Connect"))
Beispiel #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..."))
Beispiel #41
0
 def __init__(self):
     self.branch_filter = fil_remove_local
     Action.__init__(self, _('Push'))
Beispiel #42
0
 def __init__(self):
     Action.__init__(self, _("Search With..."))
Beispiel #43
0
 def __init__(self):
     Action.__init__(self, _('Commit'))
Beispiel #44
0
 def __init__(self):
     Action.__init__(self, _("Search For..."))
Beispiel #45
0
 def __init__(self):
     Action.__init__(self, _("Gitk"))
Beispiel #46
0
 def __init__(self):
     Action.__init__(self, _("Rescan"))
Beispiel #47
0
	def __init__(self):
		Action.__init__(self, _("Show Source Code"))
Beispiel #48
0
 def __init__(self):
     Action.__init__(self, _("Copy"))
 def __init__(self):
     Action.__init__(self, name=_("Add Key"))
Beispiel #50
0
 def __init__(self):
     Action.__init__(self, _("Define"))
Beispiel #51
0
	def __init__(self):
		Action.__init__(self, _("Calculate"))
Beispiel #52
0
 def __init__(self):
     Action.__init__(self, _("Play"))
Beispiel #53
0
 def __init__(self):
     Action.__init__(self, name=_("Update Twitter Status"))
Beispiel #54
0
 def __init__(self):
     Action.__init__(self, _("Enqueue"))
Beispiel #55
0
	def __init__(self):
		Action.__init__(self, _('Edit Contact in Gmail'))
Beispiel #56
0
 def __init__(self):
     Action.__init__(self, _("Search in Tracker"))
Beispiel #57
0
 def __init__(self):
     Action.__init__(self, _("Run (Discard Result)"))
Beispiel #58
0
 def __init__(self):
     Action.__init__(self, _("Move To..."))
Beispiel #59
0
 def __init__(self):
     Action.__init__(self, _("Run (Take Result)"))
Beispiel #60
0
 def __init__(self):
     Action.__init__(self, _("Copy Content To clipboard"))