コード例 #1
0
ファイル: archivemanager.py プロジェクト: CharString/kupfer
	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",
			))
コード例 #2
0
	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
ファイル: skype.py プロジェクト: jablan/kupfer
	def __init__(self):
		Action.__init__(self, _("Call"))
コード例 #4
0
ファイル: __init__.py プロジェクト: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _('Compose Email in Gmail'))
コード例 #5
0
 def __init__(self):
     Action.__init__(self, name=_("Ultimo status"))
コード例 #6
0
 def __init__(self):
     Action.__init__(self, name=_("Username"))
コード例 #7
0
ファイル: commands.py プロジェクト: spiritedflow/kupfer
	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
ファイル: commands.py プロジェクト: cnheider/kupfer
 def __init__(self):
     Action.__init__(self, _("Run (Get Output)"))
コード例 #11
0
ファイル: commands.py プロジェクト: cnheider/kupfer
 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..."))
コード例 #12
0
ファイル: commands.py プロジェクト: cnheider/kupfer
 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
コード例 #13
0
ファイル: commands.py プロジェクト: cnheider/kupfer
 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
コード例 #14
0
 def __init__(self):
     Action.__init__(self, _("Open parent directory"))
コード例 #15
0
ファイル: pastie.py プロジェクト: MrMitch/kupfer-pastie
 def __init__(self):
     Action.__init__(self, self.language)
     self.syntax = SYNTAXES.index(self.language) + 1
コード例 #16
0
ファイル: skype.py プロジェクト: jablan/kupfer
	def __init__(self):
		Action.__init__(self, _('Change Global Status To...'))
コード例 #17
0
ファイル: audacious.py プロジェクト: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _("Dequeue"))
コード例 #18
0
 def __init__(self):
     Action.__init__(self, name="Jira Issue")
     Jiraya.__init__(self)
コード例 #19
0
ファイル: tsclient.py プロジェクト: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _('Start Session'))
コード例 #20
0
 def __init__(self):
     Jiraya.__init__(self)
     Action.__init__(self, name="Show Issue/Project")
コード例 #21
0
 def __init__(self):
     Action.__init__(self, _('Create Branch'))
コード例 #22
0
 def __init__(self):
     Action.__init__(self, name="Add Comment")
     Jiraya.__init__(self)
コード例 #23
0
ファイル: kupfer_plugins.py プロジェクト: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _("Show Information"))
コード例 #24
0
 def __init__(self):
     Action.__init__(self, name="Assign User")
     Jiraya.__init__(self)
コード例 #25
0
 def __init__(self):
     Action.__init__(self, name=_("Remove"))
コード例 #26
0
 def __init__(self):
     Action.__init__(self, name="Change Status")
     Jiraya.__init__(self)
コード例 #27
0
ファイル: google_search.py プロジェクト: pbx/kupfer
 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, _("SearchTabs"))
コード例 #32
0
ファイル: skype.py プロジェクト: jablan/kupfer
	def __init__(self):
		Action.__init__(self, _("Open Chat"))
コード例 #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):
     Action.__init__(self, _("Locate Files"))
コード例 #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
ファイル: google_translate.py プロジェクト: jchtt/kupfer-adds
 def __init__(self):
     Action.__init__(self, _("Translate To..."))
コード例 #37
0
ファイル: audacious.py プロジェクト: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _("Play"))
コード例 #38
0
ファイル: google_translate.py プロジェクト: jchtt/kupfer-adds
 def __init__(self):
     Action.__init__(self, _("Show Translation To..."))
コード例 #39
0
ファイル: ssh_hosts.py プロジェクト: cjparsons74/kupfer
	def __init__(self):
		Action.__init__(self, name=_("Connect"))
コード例 #40
0
 def __init__(self):
     Action.__init__(self, _("Autorotate"))
コード例 #41
0
 def __init__(self):
     self.branch_filter = fil_remove_local
     Action.__init__(self, _('Push'))
コード例 #42
0
 def __init__(self):
     Action.__init__(self, _("Scale..."))
コード例 #43
0
 def __init__(self):
     Action.__init__(self, _('Commit'))
コード例 #44
0
 def __init__(self, name, rotation):
     Action.__init__(self, name)
     self.rotation = rotation
コード例 #45
0
 def __init__(self):
     Action.__init__(self, _("Gitk"))
コード例 #46
0
ファイル: devhelp.py プロジェクト: guns/kupfer
 def __init__(self):
     Action.__init__(self, _("Search in Devhelp"))
コード例 #47
0
ファイル: kupfer_plugins.py プロジェクト: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _("Show Source Code"))
コード例 #48
0
ファイル: defaultmail.py プロジェクト: jchtt/kupfer-adds
 def __init__(self):
     Action.__init__(self, _('Compose Email'))
コード例 #49
0
 def __init__(self):
     Action.__init__(self, name=_("Add Key"))
コード例 #50
0
ファイル: defaultmail.py プロジェクト: jchtt/kupfer-adds
 def __init__(self):
     Action.__init__(self, _('Send in Email To...'))
コード例 #51
0
ファイル: calculator.py プロジェクト: JUBBA/kupfer
	def __init__(self):
		Action.__init__(self, _("Calculate"))
コード例 #52
0
ファイル: templates.py プロジェクト: jchtt/kupfer-adds
	def __init__(self):
		Action.__init__(self, _("Create Document In..."))
コード例 #53
0
ファイル: tuiuiu.py プロジェクト: hugosenari/Kupfer-Plugins
 def __init__(self):
     Action.__init__(self, name=_("Update Twitter Status"))
コード例 #54
0
ファイル: templates.py プロジェクト: jchtt/kupfer-adds
	def __init__(self):
		Action.__init__(self, _("Create New Document..."))
コード例 #55
0
ファイル: __init__.py プロジェクト: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _('Edit Contact in Gmail'))
コード例 #56
0
 def __init__(self):
     Action.__init__(self, _("Search Package Name..."))
コード例 #57
0
ファイル: higherorder.py プロジェクト: pbx/kupfer
 def __init__(self):
     Action.__init__(self, _("Run (Discard Result)"))
コード例 #58
0
 def __init__(self):
     Action.__init__(self, _("Show Package Information"))
コード例 #59
0
ファイル: higherorder.py プロジェクト: pbx/kupfer
 def __init__(self):
     Action.__init__(self, _("Run (Take Result)"))
コード例 #60
0
 def __init__(self):
     Action.__init__(self, name=_("Ver nos correios"))