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