Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2013-12-04 00:20:19 (GMT)
committer Walter Bender <walter@sugarlabs.org>2013-12-04 00:20:19 (GMT)
commitd06dbab73aa047776fe629ac17ae247ced0d055a (patch)
tree1313e2928dd823abd15de9f178197edeb745d2c5
parent54d650047ae80f0730227e65eb6bc439b7934365 (diff)
Add project rather than Load project to suggest that the newly lkoaded blocks are 'added' to the existing blocks
-rw-r--r--TurtleArtActivity.py2
-rwxr-xr-xturtleblocks.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py
index f3cb17f..1bffa3a 100644
--- a/TurtleArtActivity.py
+++ b/TurtleArtActivity.py
@@ -1129,7 +1129,7 @@ class TurtleArtActivity(activity.Activity):
self.keep_button = self._add_button(
'filesaveoff', _('Save snapshot'), self.do_keep_cb, toolbar)
self.load_ta_project = self._add_button(
- 'load-from-journal', _('Load project'),
+ 'load-from-journal', _('Add project'),
self.do_load_ta_project_cb, toolbar)
# Only enable plugin loading if installed in $HOME
if activity.get_bundle_path()[0:len(home)] == home:
diff --git a/turtleblocks.py b/turtleblocks.py
index 2ac7a74..051d447 100755
--- a/turtleblocks.py
+++ b/turtleblocks.py
@@ -423,7 +423,7 @@ return %s(self)" % (p, P, P)
MenuBuilder.make_menu_item(menu, _('Show sample projects'),
self._create_store)
MenuBuilder.make_menu_item(menu, _('Open'), self._do_open_cb)
- MenuBuilder.make_menu_item(menu, _('Load project'), self._do_load_cb)
+ MenuBuilder.make_menu_item(menu, _('Add project'), self._do_load_cb)
MenuBuilder.make_menu_item(menu, _('Load plugin'),
self._do_load_plugin_cb)
MenuBuilder.make_menu_item(menu, _('Save'), self._do_save_cb)