Changeset 140
- Timestamp:
- 03/30/2009 02:51:08 PM (3 years ago)
- Location:
- trunk/WordPress/plugin/transposh
- Files:
-
- 5 edited
-
core/parser.php (modified) (1 diff)
-
transposh.php (modified) (2 diffs)
-
transposh_admin.php (modified) (2 diffs)
-
transposh_db.php (modified) (1 diff)
-
transposh_widget.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WordPress/plugin/transposh/core/parser.php
r128 r140 945 945 } 946 946 947 $img = "<img src=\"$plugin_url/ translate$add_img.png\" alt=\"translate\" class=\"".IMG_PREFIX."\" id=\"" . IMG_PREFIX . "$segment_id\" ".947 $img = "<img src=\"$plugin_url/img/translate$add_img.png\" alt=\"translate\" class=\"".IMG_PREFIX."\" id=\"" . IMG_PREFIX . "$segment_id\" ". 948 948 "onclick=\"translate_dialog('$original','$translation','$segment_id'); return false;\" ". 949 949 "onmouseover=\"hint('$original'); return true;\" ". -
trunk/WordPress/plugin/transposh/transposh.php
r120 r140 27 27 */ 28 28 29 require_once("logging.php"); 30 require_once("constants.php"); 31 require_once("globals.php"); 32 require_once("utils.php"); 29 require_once("core/parser.php"); 33 30 require_once("transposh_db.php"); 34 require_once("parser.php");35 31 require_once("transposh_widget.php"); 36 32 require_once("transposh_admin.php"); … … 348 344 } 349 345 //include the transposh.css 350 wp_enqueue_style("transposh","$plugin_url/ transposh.css",array(),'1.0.1');346 wp_enqueue_style("transposh","$plugin_url/css/transposh.css",array(),'1.0.1'); 351 347 logger("Added transposh_css"); 352 348 } -
trunk/WordPress/plugin/transposh/transposh_admin.php
r119 r140 22 22 */ 23 23 24 require_once(" logging.php");25 require_once("co nstants.php");24 require_once("core/logging.php"); 25 require_once("core/constants.php"); 26 26 27 27 /* … … 107 107 $i++; 108 108 109 echo "<td><img src=\"$plugin_url/ flags/$flag.png\" alt=\"\"/> $language</td>";109 echo "<td><img src=\"$plugin_url/img/flags/$flag.png\" alt=\"\"/> $language</td>"; 110 110 echo '<td align="center"> <input type="checkbox" id="' . $code .'_view" name="' . 111 111 $code . '_view" onchange="chbx_change(\'' . $code . '\')" ' . is_viewable($code) . '/></td>'; -
trunk/WordPress/plugin/transposh/transposh_db.php
r120 r140 24 24 */ 25 25 26 require_once(" logging.php");27 require_once("co nstants.php");28 require_once(" utils.php");26 require_once("core/logging.php"); 27 require_once("core/constants.php"); 28 require_once("core/utils.php"); 29 29 30 30 // -
trunk/WordPress/plugin/transposh/transposh_widget.php
r121 r140 21 21 * mode. 22 22 */ 23 require_once(" logging.php");24 require_once("co nstants.php");23 require_once("core/logging.php"); 24 require_once("core/constants.php"); 25 25 require_once("transposh.php"); 26 26 … … 86 86 87 87 //include the transposh_widget.css 88 wp_enqueue_style("transposh_widget","$plugin_url/ transposh_widget.css",array(),'1.0.1');88 wp_enqueue_style("transposh_widget","$plugin_url/css/transposh_widget.css",array(),'1.0.1'); 89 89 logger("Added transposh_widget_css"); 90 90 } … … 139 139 140 140 echo "<a href=\"" . $page_url2 . "\">". 141 "<img src=\"$plugin_url/ flags/$flag.png\" title=\"$language\" alt=\"$language\"".141 "<img src=\"$plugin_url/img/flags/$flag.png\" title=\"$language\" alt=\"$language\"". 142 142 " style=\"padding: 1px 3px\"/></a>"; 143 143 $is_showing_languages = TRUE; … … 197 197 echo "</form>"; 198 198 //echo "<button onClick=\"do_auto_translate();\">translate all</button>"; 199 echo "<div id=\"credit\">by <a href=\"http://transposh.org\"><img src=\"$plugin_url/ tplogo.png\" title=\"Transposh\" alt=\"Transposh\"/></a></div>";199 echo "<div id=\"credit\">by <a href=\"http://transposh.org\"><img src=\"$plugin_url/img/tplogo.png\" title=\"Transposh\" alt=\"Transposh\"/></a></div>"; 200 200 echo $after_widget; 201 201 }
Note: See TracChangeset
for help on using the changeset viewer.
