diff --git a/symphony/content/content.blueprintsdatasources.php b/symphony/content/content.blueprintsdatasources.php
index 2119e19..aff78a2 100644
--- a/symphony/content/content.blueprintsdatasources.php
+++ b/symphony/content/content.blueprintsdatasources.php
@@ -706,7 +706,7 @@
 			$div->appendChild(Widget::Input('action[save]', ($isEditing ? __('Save Changes') : __('Create Data Source')), 'submit', array('accesskey' => 's')));
 			
 			if($isEditing){
-				$button = new XMLElement('button', 'Delete');
+				$button = new XMLElement('button', __('Delete'));
 				$button->setAttributeArray(array('name' => 'action[delete]', 'class' => 'confirm delete', 'title' => __('Delete this data source'), 'type' => 'submit'));
 				$div->appendChild($button);
 			}
diff --git a/symphony/content/content.blueprintssections.php b/symphony/content/content.blueprintssections.php
index 9af7e39..facec54 100644
--- a/symphony/content/content.blueprintssections.php
+++ b/symphony/content/content.blueprintssections.php
@@ -322,7 +322,7 @@
 			$navgroupdiv = new XMLElement('div', NULL);
 			$sectionManager = new SectionManager($this->_Parent);
 			$sections = $sectionManager->fetch(NULL, 'ASC', 'sortorder');
-			$label = Widget::Label('Navigation Group <i>Choose only one. Created if does not exist</i>');
+			$label = Widget::Label(__('Navigation Group <i>Choose only one. Created if does not exist</i>'));
 			$label->appendChild(Widget::Input('meta[navigation_group]', $meta['navigation_group']));
 
 			if(isset($this->_errors['navigation_group'])) $navgroupdiv->appendChild(Widget::wrapFormElementWithError($label, $this->_errors['navigation_group']));
diff --git a/symphony/content/content.systemauthors.php b/symphony/content/content.systemauthors.php
index 55ad6da..b3dc14d 100644
--- a/symphony/content/content.systemauthors.php
+++ b/symphony/content/content.systemauthors.php
@@ -86,12 +86,12 @@
 				$tableActions->setAttribute('class', 'actions');
 				
 				$options = array(
-					array(NULL, false, 'With Selected...'),
-					array('delete', false, 'Delete')									
+					array(NULL, false, __('With Selected...')),
+					array('delete', false, __('Delete'))									
 				);
 				
 				$tableActions->appendChild(Widget::Select('with-selected', $options));
-				$tableActions->appendChild(Widget::Input('action[apply]', 'Apply', 'submit'));
+				$tableActions->appendChild(Widget::Input('action[apply]', __('Apply'), 'submit'));
 				
 				$this->Form->appendChild($tableActions);					
 			}

