@@ -27,7 +27,7 @@ def get_entry_actions(self, row, entry):
2727 actions = [
2828 {"name" : "view-online" ,
2929 "icon" : "eye" ,
30- "tooltip" : f"view circle { entry ['name' ]} online" ,
30+ "tooltip" : f"View circle { entry ['name' ]} online" ,
3131 "function" : partial (webbrowser .open , url )}
3232 ]
3333 return actions
@@ -49,12 +49,12 @@ def get_entry_actions(self, row, entry):
4949 actions = [
5050 {"name" : "download" ,
5151 "icon" : "angle-down" ,
52- "tooltip" : f"download collection { entry ['name' ]} " ,
52+ "tooltip" : f"Download collection { entry ['name' ]} " ,
5353 "function" : partial (self .download_item .emit ,
5454 "collection" , entry ["name" ], False )},
5555 {"name" : "download-condensed" ,
5656 "icon" : "angles-down" ,
57- "tooltip" : f"download condensed collection { entry ['name' ]} " ,
57+ "tooltip" : f"Download condensed collection { entry ['name' ]} " ,
5858 "function" : partial (self .download_item .emit ,
5959 "collection" , entry ["name" ], True )},
6060 {"name" : "share" ,
@@ -69,7 +69,7 @@ def get_entry_actions(self, row, entry):
6969 "collection" , entry ["name" ])},
7070 {"name" : "view-online" ,
7171 "icon" : "eye" ,
72- "tooltip" : f"view collection { entry ['name' ]} online" ,
72+ "tooltip" : f"View collection { entry ['name' ]} online" ,
7373 "function" : partial (webbrowser .open , url )}
7474 ]
7575 return actions
@@ -91,12 +91,12 @@ def get_entry_actions(self, row, entry):
9191 actions = [
9292 {"name" : "download" ,
9393 "icon" : "angle-down" ,
94- "tooltip" : f"download dataset { entry ['name' ]} " ,
94+ "tooltip" : f"Download dataset { entry ['name' ]} " ,
9595 "function" : partial (self .download_item .emit ,
9696 "dataset" , entry ["id" ], False )},
9797 {"name" : "download-condensed" ,
9898 "icon" : "angles-down" ,
99- "tooltip" : f"download condensed dataset { entry ['name' ]} " ,
99+ "tooltip" : f"Download condensed dataset { entry ['name' ]} " ,
100100 "function" : partial (self .download_item .emit ,
101101 "dataset" , entry ["id" ], True )},
102102 {"name" : "share" ,
@@ -111,7 +111,7 @@ def get_entry_actions(self, row, entry):
111111 "dataset" , entry ["id" ])},
112112 {"name" : "view-online" ,
113113 "icon" : "eye" ,
114- "tooltip" : f"view dataset { entry ['name' ]} online" ,
114+ "tooltip" : f"View dataset { entry ['name' ]} online" ,
115115 "function" : partial (webbrowser .open , url )},
116116 ]
117117 return actions
@@ -141,12 +141,12 @@ def get_entry_actions(self, row, entry):
141141 actions = [
142142 {"name" : "download" ,
143143 "icon" : "angle-down" ,
144- "tooltip" : f"download resource { entry ['name' ]} " ,
144+ "tooltip" : f"Download resource { entry ['name' ]} " ,
145145 "function" : partial (self .download_item .emit ,
146146 "resource" , entry ["id" ], False )},
147147 {"name" : "view-online" ,
148148 "icon" : "eye" ,
149- "tooltip" : f"view resource { entry ['name' ]} online" ,
149+ "tooltip" : f"View resource { entry ['name' ]} online" ,
150150 "function" : partial (webbrowser .open , url )},
151151 ]
152152 if is_dc_resource_dict (entry ):
@@ -155,7 +155,7 @@ def get_entry_actions(self, row, entry):
155155 1 ,
156156 {"name" : "download-condensed" ,
157157 "icon" : "angles-down" ,
158- "tooltip" : f"download condensed resource { entry ['name' ]} " ,
158+ "tooltip" : f"Download condensed resource { entry ['name' ]} " ,
159159 "function" : partial (self .download_item .emit ,
160160 "resource" , entry ["id" ], True )},
161161 )
0 commit comments