Skip to content

Commit

Permalink
Removing domain from translations
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Adams committed Oct 24, 2011
1 parent 3090764 commit 89013c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classes/struts/option/color.php
Expand Up @@ -25,7 +25,7 @@ protected function standard_validation( $value ) {
protected function label_html() {
if ( $this->label() ) {
echo "<label class='struts-label' for='{$this->html_id()}'>{$this->label()} ";
echo '<a href="#" class="struts-color-chooser-toggle">' . __( 'show color picker', 'TODO' ) . '</a>';
echo '<a href="#" class="struts-color-chooser-toggle">' . __( 'show color picker' ) . '</a>';
echo "</label>";
}
}
Expand Down
4 changes: 2 additions & 2 deletions classes/struts/section.php
Expand Up @@ -73,14 +73,14 @@ public function add_option( Struts_Option $option ) {

public function to_html() {
echo "<div class='struts-section'>";
echo "<h3>{$this->title()} <a href='#'>" . __( 'Edit', 'TODO' ) . '</a></h3>';
echo "<h3>{$this->title()} <a href='#'>" . __( 'Edit' ) . '</a></h3>';
echo "<div class='struts-section-body clear'>";
foreach ( $this->options() as $option ) {
$option->to_html();
}

echo '<div class="struts-save-button submit">';
echo '<input type="submit" class="button-primary struts-save-button" value="' . __( 'Save changes', 'TODO' ) . '" />';
echo '<input type="submit" class="button-primary struts-save-button" value="' . __( 'Save changes' ) . '" />';

echo "</div></div></div>";

Expand Down

0 comments on commit 89013c7

Please sign in to comment.